@charset "UTF-8";
/* CSS Document */

 /* the horizontal menu starts here */
div#listmenu {
	width:814px;	 /* draws line on bottom edge of div */
	font-size:11px; /* TEMPORARY - pushes the div away from the top of the browser for clarity in this example*/
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	height: 32px;
	background-image: url(../images/navbackground.gif);
	background-repeat: repeat-x;
	background-position: 0px 0px;	
	}
div#listmenu ul {
	height: 31px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 20px;
	}
div#listmenu li {
	float:left;	/* causes the list to align horizontally instead of stack */
	list-style-type:none;
	height: 24px;
	padding-top: 8px;
	margin-top: 0px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #0A1F6A;
	}
div#listmenu li:hover {
	}
div#listmenu a {
	text-decoration:none;
	padding-right: 30px;
	padding-left: 30px;
	margin-top: -8px;
	padding-top: 6px;
	color: #000099;
	display: block;
	height: 26px;
	font-weight: bold;
	}
div#listmenu a:hover {
	color:#F2D43F;
	font-size: 11px;
	background-color: #0A1F6A;
	}
* html  div#listmenu  li {
	float:left;	/* causes the list to align horizontally instead of stack */
	list-style-type:none;
	height: 0px;
	margin-top: 0px;
}
/* the horizontal menu ends here */
/* THE HACK ZONE - */
/* hack for IE (all flavors) so the menu has a vertical line on the left */
* html div#listmenu ul {
	float:left;
	margin-left: 20px;
	}
* html #listmenu a {
	display:block;
	margin-top: -8px;
	padding-top: 6px;
	padding-bottom: 0px;
	float: left;
	font-weight: bold;
	background-repeat: repeat-y;
	background-position: 0px 0px;
	height: 26px;
}
.borderleft {
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #OA1F6A;
}

