/* legal comments are c style */

/* syntax for common css line: selector.class { property1: value1; property2: value2 } where selector is an HTML element and property is an HTML attribute */

/*BODY { background-color: #cccc99; color: #6600ff; font-family: helvetica, arial, sans-serif; background-image: none }*/
BODY	
{	background-color: #cccc99; 
	color: #6600ff; 
	font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, Geneva, Lucida, Arial, Helvetica, sans-serif; 
	background-image: none;
}

.maincontent 
{	
	background-color: #ccccff; color: #6600ff; 
	margin-left: 15%;
	margin-right: 23%;
	width: 100%;
	border: 1px solid black;
}

/*	padding-top: 2em;
	padding-left: 2em;
	padding-right: 2em;
*/

.content 
{	
	width: 100%;
	padding-top: 2em;
	padding-left: 2em;
	padding-right: 2em;
	padding-bottom: 2em;
}

.negative { background-color: #6600ff; color: #ccccff; }

.noborder {width: 100%; border: 0; padding: 0; margin: 0; }

.footer 
{ 
	width: 100%;
	border-top: 2 solid #666666; 
	text-align: center; 
	position:	absolute;
	padding-top:	0.5em;
	padding-bottom:	3em;
	text-decoration: none;
	font-style: normal;
}

P { align: left; font-weight: normal;  font-size: -2 }
H1 { font-weight: bold; font-size: x-large; text-align: center; }
H2 { font-weight: bold; font-size: large; text-align: center; }
H3 { font-weight: bold; font-size: medium; text-align: left; text-decoration: underline}
H4 {}
H5 {}

/* lists */
LI {}	/* list item */
UL {}

TABLE {}
THEAD {}
TBODY {}
TR {}
TH {}
TD {}


FORM {}

A {}	/* anchor */

/* anchor pseudo classes */
A:link {text-decoration: none; font-style: normal; font-variant: normal; color: #cc0066;}
/* A:active {text-decoration: none; font-style: normal; font-variant: normal; color: #cc0066; background: yellow;} */
A:active {text-decoration: none; font-style: normal; font-variant: normal; color: #cc0066;}
A:visited {text-decoration: none; font-style: normal; font-variant: normal; color: #cc0066;}
A:hover {text-decoration: underline; font-style: normal; font-variant: normal; color: #cc0066;}

/* rollover menu from http://www.sovavsiti.cz/css/horizontal_menu.html */
.menu a { display: block; width: 100%; text-decoration: none; color: #ccccff; background-color: #6600ff }
.menu a:hover { background: #cc0066 none; font-style: normal; font-variant: normal; color: #ccccff;}

IMG {}

CODE {}
EM {}	/* emphasised text */

B {}	/* bold text */
BIG {}	/* big text */
I {}	/* italic text */
U {}	/* underlined text */

FRAMESET {}

DIV {}	/* generic block-level container */
SPAN {}	/* generic inline block-level container */

ADDRESS {}

BR {}	/* line break */

/* http://www.htmlhelp.com/reference/html40/ */
/* http://www.htmlhelp.com/reference/css/ */