/* CSS Document */

body{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #3D2A19;
	font-size: 12px;
	font-weight: 300;
	line-height: 1.5;
	overflow: scroll;
	margin-top: 0px;
}

table.tMain{
	background-color: #E4E5CE;
}

.menuVertical{
	color: #E4E5CE;
}

.oHeading1{
	font-size: 24px;
	font-weight: bold;
}

.oHeading3{
	font-size: 22px;
	font-weight: bold;
	color: #8E1D06;
}


a.menuText{
	color: #E4E5CE;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
	vertical-align: middle;
}

a.menuText:hover{
	color: #FFFFFF;
}

.footerText{
	text-align: center;
	color: #E4E5CE;
	font-size: 11px;
}

/* block styles and lists */

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	color: #fff;
	font: Arial, Helvetica, sans-serif;
}

#nav a {
	display: block;
	text-align: center;
	width: auto;
	padding-right: 15px;
	padding-left: 15px;
}

#nav li { /* all list items */
	float: left;
	width: auto; /* width needed or else Opera goes nuts */
	background-color: #8E1D06;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background-color: #8E1D06;
	color: #fff;
	width: auto;
	padding-top: 2px;
	padding-bottom: 3px;
	text-align: left;
	line-height: 16px;
	margin-top: 0px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	background-color: #8E1D06;
	color: #fff;
}

#nav li:hover, #nav li.sfhover {
	background: #8E1D06;
}

