/* CSS Document */

/* top nav -- suckerfish dropdowns*/
#topnav {
	background-image: url(../images/topnav_button_bg.png);
	background-repeat: repeat-x;
}
#topnav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}
#topnav ul li { /* all list items */
	float: left;
	position: relative;
	width: 300px;
	background-image: url(../images/topnav_button_bg.png);
	background-repeat: repeat-x;
}
#topnav ul li a {
	display: block;
	padding: 1em 15px;
	font-size: .9em;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
}
#topnav ul li:hover, #topnav ul li:focus {
}
#topnav ul li a:hover, #topnav ul li a:focus {
	background-image: url(../images/topnav_button_bg_over.png);
}
#topnav ul li ul { /* second-level lists */
	display: none;
	position: absolute;
	border: 1px solid #222;
/*	top: 1em;	*/
	filter:alpha(opacity=95);
	opacity: .95;
	-moz-opacity: .95;	
	left: 0;
}
#topnav ul li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}
#topnav ul li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}
#topnav ul li:hover ul {
	border-left: 1px solid #222;
	border-right: 1px solid #222;
	margin-left: -1px;
	background-color: #ffffcc;
}
#topnav ul li:hover ul li {
	margin: 0px;
	border: none;
}
#topnav ul li:hover ul li a {
	text-align: left;
	border: none;
	font-size: .95em;
	border-bottom: 1px solid #222;
	padding: 5px 15px;
	background-image: none;
	background-color: #ffffcc;
	color: #756b3b;
}
#topnav ul li:hover ul li a:hover, #topnav ul li:hover ul li a:focus {
	color: #421010;
	background-color: #e8e1bc;
	background-image: none;
}








/* main nav */
#nav ul {
	list-style-type: none;
	margin-top: 5px;
}
#nav ul li {
	height: 20px;
	padding: 4px 0px 4px 15px;
}
#nav ul li a {
	text-transform: uppercase;
	color: #e1d9ad;
	font-size: 1.0em;
	text-decoration: none;
	font-weight: bold;
}
#nav ul li a:hover, #nav ul li a:focus {
	color: #fff;
}
