/* nav.css: navigation element styles and hacks */

/* the horizontal menu starts here */

div#listmenu ul
	{
	float: left;
	border-top:2px solid #001578;
	border-bottom:2px solid black;
	position:absolute;
	top:-18px;
	right:14px;
	}

div#listmenu li {
	float:left;
	list-style-type:none;
	background-color:#fff;
    	border-right:1px solid #001578;
    	font-size: small;
	}

div#listmenu li:first-child {
	border-left:1px solid #001578;
	}

div#listmenu li:hover {
	background-color:#FFF;
	}

div#listmenu a {
        padding:0 6px;
	text-decoration:none;
	color:#000;
	}

div#listmenu a:hover {
	color:#fff;
	background-color:#69c;
	}

div#listmenu li#current
	{
	background-color:#69c;
	}

div#listmenu li#current a
	{
	color:white;
	}

/* the horizontal menu ends here */

/* >> BEGIN NAV HACKS >> */

/* hack for IE (all flavors) so the menu has a vertical line on the left */

* html div#listmenu ul {
	float:left; /* makes the ul wrap the li's */
	border-left:1px solid #000;  /* adds the color black rightmost menu vertical line to the ul */
	margin-left:81px;
	}

/* <<END NAV HACKS<< */