/* CSS Document */

#navbar {
	border-top: solid 1px #AFAFAF;
	height: 22px;
	background: #4C4C4C; 
}

#navbar .home {
	padding-left: 15px;
}

#navbar li:hover {
	background: #0062c3;
	height: 22px;
}

#navbar ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

#navbar ul li a {
	margin: 0px;
	padding: 4px 5px 4px 15px;
	display: block;
	background-image: url(images/arrow.gif);
	background-repeat: no-repeat;

	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}

#navbar ul li a:hover {
	background: #0062c3;
	background-image: url(images/arrow.gif);
	background-repeat: no-repeat;
}

#navbar li { /* all list items */
	float: left;
	position: relative;
	height: 22px;
	padding: 0px;
	margin: 0px;
	background-image: url(images/arrow.gif);
	background-repeat: no-repeat;
}

#navbar li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 22px;
	left: 0px;
	width: 225px;
	z-index:999;
}

#navbar li ul li { /* second-level lists */
	width: 225px;
	height: 22px;
	background-color: #4C4C4C;
	border-top: solid 1px #fff;
}

#navbar li ul li:hover { /* second-level lists hover */
	background-color: #0062c3;
}

#navbar li ul li a { /* second-level lists - remove border from left */
	border-right: 0px;
	margin: 0px;
	margin-bottom: -4px;
	padding-bottom: 6px;
	display: block;
}

#navbar li ul li a:hover { 
	background-color: #0062c3;
	margin: 0px;
	margin-bottom: -4px;
	padding-bottom: 6px;
	display: block;
}

#navbar-disabled 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;
}

#navbar li:hover ul, #navbar li.over ul { /* lists nested under hovered list items */
	display: block;
}