﻿ul#nav, ul#nav li { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

ul#nav  {
	padding-top: 9px;
}

ul#nav li { /* all list items */
	float: left;
	position: relative;
}

ul#nav li ul { /* second-level lists */
	display: none;
	position: absolute;
	padding-top: 7px;
	top: 1em;
	left: 0;
	width: 150px;
	margin-left: -1px;
	border-left: solid 1px #b1b1b1;
}

ul#nav 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;
}

ul#nav li:hover ul, ul#nav li.over ul { /* lists nested under hovered list items */
	display: block;
	float: left;
	clear: both;
}

ul#nav li ul li {
	background-image: url(images/nav_bullet.gif);
	background-repeat: no-repeat;
	background-position: 10px 7px;
	background-color: #fff;
}

ul#nav a {
	padding: 2px 10px 2px 10px;
	border-right: solid 1px #b1b1b1;
	color: #666;
	font-size: 11px;
	text-decoration: none;
	text-transform: uppercase;
	min-height: 15px;
}

* html ul#nav a {
	height: 15px;
}

ul#nav li ul li a {
	padding-left: 25px;
	width: 130px;
	border: solid 1px #b1b1b1;
	border-top: none;
	border-left: none;
	float: left;
	clear: both;
	text-transform: none;
	background-color: transparent;
}

ul#nav a:hover {
	color: #17487d;
}