ul#menu {
	margin: 0; padding: 0;
	float: left;
	width: 1015px;
	list-style: none;
	position: relative; /*--Set relative positioning on the unordered list itself - not on the list item--*/
	font-size: 12px;
	font-variant:small-caps;
	font-weight:bold;

}

ul#menu li {
	float: left;
	margin: 0; padding: 0;
	border-right: 1px solid #555; /*--Divider for each parent level links--*/
}

ul#menu li:last-child {
	float: left;
	margin: 0; padding: 0;
	border-right:none
}

ul#menu li a {
	padding: 5px 8px;
	display: block;
	color: black;
	text-decoration: none;
	font-family: "Verdana Regular",sans-serif;
}

/*ul#menu li:hover { background: white  }*/

ul#menu li span {
	float: left;
	padding: 0 0;
	position: absolute;
	left: 0; top:23px;
	display: none; /*--Hide by default--*/
	width: 1000px;
	background: #1376c9;
	color: #fff;
	/*--Bottom right rounded corner--*/
	-moz-border-radius-bottomright: 5px;
	-khtml-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	/*--Bottom left rounded corner--*/
	-moz-border-radius-bottomleft: 5px;
	-khtml-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
}
ul#menu li:hover span { display: block; } /*--Show subnav on hover--*/
ul#menu li span a { float : left ; display: inline; } /*--Since we declared a link style on the parent list link, we will correct it back to its original state--*/
ul#menu li span a:hover {text-decoration: none;}
