// one line comment

/* for more than
one line comments
do this */

//Don't use numbers to start the name of a style or class

//pagelayout

body { margin: 0px}

//fonts

body {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
}

td {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
}

th {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
}

.bold {
	font-weight: bold;
}


.italic {
	font-style: italic;
}

.gnbold {
	color: #336600;
	font-weight: bold;
}


.bodystyle {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
}

.px09 {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 9px;
}

.px10 {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 10px;
}

.px10wt {
	color: #FFFFFF;
	font-size: 10px;
}

.px11 {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 11px;
}

.px14 {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
}

.px16 {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 16px;
}

.expanded {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 2px;
}

.expbold {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	line-height: 13px;
	letter-spacing: 1px;
}

//links

/* Documentation

#336600 green
#000000 black
#666666 grey
#FFFFFF white

active links stay active on refresh until the next link is selected
include alternate a link styles as a class within the a tag

*/

a:link {
	color: #336600;
}

a:visited {
	color: #000000;
}

a:hover {
	text-decoration: none;
}

a:active {
	color: #666666;
}

a.nav:link {
	color: #FFFFFF;
	text-decoration: none;
	font-size: 10px;
}

a.nav:visited {
	color: #FFFFFF;
	text-decoration: none;
	font-size: 10px;
}

a.nav:hover {
	color: #FFFFFF;
	text-decoration: underline;
	font-size: 10px;
}

a.menu {
	color: #336600;
	font-size: 10px;
	text-decoration: underline;
}

a.menu:visited {
	color: #336600;
	font-size: 10px;
	text-decoration: underline;
}

a.menu:hover {
	color: #336600;
	font-size: 10px;
	text-decoration: none;
}


