/****** Menu ******/

div#menu {
	width: 770px;
	background: url(/images/nav-bak.gif);
	height: 31px;
}

div#left {
	float: left;
	width: 10px;
	background: url(/images/nav-left.gif);
	height: 31px;
}

div#right {
	float: right;
	margin-right: 1px;
	width: 10px;
	background: url(/images/nav-right.gif);
	height: 31px;
}

div#menu ul { /* all lists */
	padding: 0px;
	margin: 0px;
	list-style: none;
}

div#menu li { /* all list items */
	float: left;
	position: relative;
	height: 31px;
	padding: 0px;
	margin: 0px;
	z-index: 3;
}

div#menu li.div { /* Menu dividers*/
	width: 2px;
	background: url(/images/nav-div.gif);
	margin: 0px 3px;
}

div#menu li ul li {
	position: relative;
	margin: 0px;
	padding:0 3px;
	height: 31px;
	width: 150px;
}

div#menu ul li a {
	display: block;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

div#menu a.top {
	text-align: center;
	text-decoration: none;
	color: #FFFFFF;
	font-weight: bolder;
	font-size: 14px;
}

div#menu a.top:hover {
	color: #FFFF00;
}

div#menu li ul { /* second-level lists */
	display: none;
	position: absolute;
	left: 0;
	top: 31px;
	background: #35498F;
}

div#menu li ul a {
	display: block;
	color: #fff;
	text-decoration: none;
}

div#menu li ul li a:hover {
	background: #fff;
	color: #000;
}

div#menu 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;
}

div#menu li:hover ul, #menu li.over ul { /* lists nested under hovered list items */
	display: block;
	padding: 0 3px;
}

div#menu li span {
	display: block;
	margin: 5px 0px;
	padding: 0px;
}

