/* basic.css */

body {
	/* background properties */
	background-color: white;

	/* text properties */
	color: black;
	text-decoration: none;

	/* font properties */
	font-family: sans-serif;	/* provide generic family */
	font-size: medium;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
}


/* anchor properties */
a:link		{ color: rgb(0, 150, 200) }
a:visited	{ color: rgb(50, 200, 50) }
a:active	{ color: rgb(250, 150, 0) }


/* center blocks/tables within <div class="c"></div> */
.c 		{ text-align: center; }
.c table {
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}

/* table properties */
table {
	border-spacing: 2pt;
	border-collapse: collapse;
}
/*
td {
	padding: 8pt;
}
*/


/* span properties */
span.b		{ font-weight: bold; }
span.i		{ font-style: italic; }
span.u		{ text-decoration: underline; }


/* form properties */
/*
form {
     text-size: medium;
}
*/


/* image properties */
img		{ border: none; }

