@charset "utf-8";
/* CSS Document */
/*Begin Navigation*/
#nav_tainer {
	display: block;
	height: 53px;
	padding-left: 20px;
	padding-top: 5px;
	padding-bottom: 20px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	font-size: 14px;
}

#nav a {
	display: block;
	width: 9em;
	padding-top: 10px;
	padding-bottom: 12px;
	text-align: center;
	color: #000;
	text-decoration: none;
}
#nav a:hover {
	background-image: url(images/roll.png);
	background-repeat: no-repeat;
}
#nav li { /* all list items */
	float: left;
	width: 9em; /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	background-color: #8c9c04;
	width: 10em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#nav li li a{
	display: block;
	padding-top: 8px;
	padding-bottom: 5px;
	text-align: left;
	color: #000;
	text-decoration: none;
	padding-left: 10px;
	background-color: #648d23;
	padding-right: 10px;
}

#nav li li a:hover{
	background-image: url(images/roll.jpg);
	background-repeat: no-repeat;
}
#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
/*End Navigation*/
/*Begin Footer*/
.twoColFixLtHdr #footer {
	padding: 15px 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	text-align: center;
} 
.twoColFixLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color:#FC3;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:small;
}

#footer h1 {
	color:#Fff;
	font-size: 1em;
	font-style:italic;
	font-weight: bold;
	
}
#footer a:link {
	color: #09F;
}
#footer a:visited {
	color: #FFC;
}
#footer a:hover {
	color: #000;
	background-color: #FC3;
}
#footer a:active {
	color: #FFC;
}

/*End Footer*/