/*your custom style goes in this file*/
/*if you're overriding style blocks from genstyle.css, you only need to include the attributes you're overriding, not the whole block*/

/* body: describes page background color and all non-table text not governed by any other style */
BODY {
	background-image : url('leaves.jpg');
	color : #665544;
	font-family : Arial, Helvetica, sans-serif;
	font-size: 12px;
}

/* link: normal links, active: links in use */
A:LINK, A:VISITED {
	color : #4E7076;
}

/* visited: previously visited links */
A:ACTIVE, A:HOVER {
	color: #6CABAE;
}
/*for css dropdown menus*/
#mnav, #mnav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

#mnav a {
	display: block;
	width: 8em;
	padding-top: 2px;
	padding-bottom: 2px;
	font-size: 11px;
	text-align: center;
	text-decoration:none;
}

#mnav li { /* all list items */
	float: left;
	width: 8em; /* width needed for Opera */
	margin-right: 2px;
	text-align: left;
	background: #B4D1D6; /*same as "databack" background color */
	border-bottom:1px solid #777;
	border-right:1px solid #777;
	border-top:1px solid #B4D1D6; /*same as "databack" background color */
	border-left:1px solid #B4D1D6; /*same as "databack" background color */
}

#mnav li ul { /* second-level lists */
	border-top: 1px solid #777;
	border-left: 1px solid #777;
	border-right: 1px solid #777;
	background: #ffffff;
	position: absolute;
	width: 13em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#mnav li ul li {
	border: 0px;
	width: 13em;
	background: #eeeeee; /*inactive dropdown menu color*/
	margin-right: 0px;
	margin-top: 1px;
	border-bottom: 1px solid #777;
}

#mnav li ul li a {
	width: 13em;
	padding-top: 2px;
	padding-bottom: 2px;
	font-size: 12px;
	text-align: left;
	text-decoration:underline;
}

#mnav li:hover, #mnav li.sfhover { /* lists nested under hovered list items */
	background-color: #ffffff;
	border-top:1px solid #aaa;
	border-left:1px solid #aaa;
}

#mnav li:hover li, #mnav li.sfhover li { /* lists nested under hovered list items */
	border-top:none;
	border-left:none;
}

#mnav li:hover ul, #mnav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
