/* ******************** drop down menus ******************** */
/* source: http://htmldog.com/articles/suckerfish/dropdowns/ */
#nav {
	position: relative;
	height: 26px;
	z-index: 1000;
}
#nav, #nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
#nav a {
	display: block;
	width: 186px; /* sets a default width */
	height: 26px;
	padding: 0;
	color: #ffffff;
	text-decoration: none;
	background: #5a7d9f;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	line-height: 20px;
}
#nav a:hover {
	background: #152d50;
}
#nav li {
	float: left;
	width: 186px;
}
#nav li ul {
	position: absolute;
	left: -999em;
	border: 1px solid #ffffff;
	width: 220px; /* if using a border, this needs to be 20px greater than width of #nav .drop1, #nav .drop2, etc. otherwise set to 10em */
	opacity: 0.85; /* for all modern standards-compliant browsers */
	filter:alpha(opacity=85); /* for ie */
	-moz-opacity:0.85; /* optional: for old versions of netscape navigator only */
	-khtml-opacity: 0.85; /* optional: for safari 1.x only */
}
#nav li:hover ul {
	left: auto;
}
#nav li:hover ul, #nav li.sfhover ul {
	left: auto;
}
/* set custom widths on top-level buttons */
#nav .btn1 { width: 186px; }
/* set widths and padding for first-level pulldown block */
#nav .drop1 { 
	font-weight: normal;
	width: 200px; 
	background-color: #315075;
}
#nav a.drop1 { 
	padding: 10px 10px; 
}
/* ******************** end drop down menus ******************** */

