﻿* html ul#nav  
{
    position:absolute;
               
               }

#navigation ul { /* all lists */
    list-style:none;
    margin:0;
    padding: 0;
    z-index:1000;
	min-height:1px;
}
#navigation ul:after { content:"."; clear:left; display:block; height:0; visibility:hidden; } /* :hack:float enclosing */

#navigation ul ul{ /* all lists */
	padding: 6px 0;
	margin: 0;
	list-style: none;
	z-index:1000;
	position:relative;
}

#navigation li { /* all list items */
	float: left;
	font: 1.1em/20px 'Trebuchet MS', Arial, Helvetica, sans-serif;
	padding:0;
	background:none;

	/*width: 140px;  width needed or else Opera goes nuts */
}

#navigation li li { /* all list items */
	float: left;
	width: 195px;  /*width needed or else Opera goes nuts */
	font-size:1em;
}

#navigation ul li a {
	display:block;
    text-decoration:none;
    color:#fff;
    padding:0 33px;
    margin:0;
    border-left: solid 1px #666;
}


#navigation li ul li a {
	display:block;
    width:150px;
    text-decoration:none;
    color:#fff;
    text-align:left;
    padding:5px 17px 5px 35px;
    margin:0;
    border-bottom:solid #000;
	border-width: 0 0 1px;
	background:#130d0e
}

#navigation li ul li a:hover
{
}

#navigation ul li a:hover
{
    color: #2a609d;
}

#navigation li ul { /* second-level lists */
	position: absolute;	
	width: 163px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#navigation li ul ul { /* third-and-above-level lists */
	margin: -2.7em 0 0 170px;
	background-color:#fff;
}


#navigation li:hover ul ul, #navigation li:hover ul ul ul, #navigation li.sfhover ul ul, #navigation li.sfhover ul ul ul {
	left: -999em;
}

#navigation li:hover ul, #navigation li li:hover ul, #navigation li li li:hover ul, #navigation li.sfhover ul, #navigation li li.sfhover ul, #navigation li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

LI:hover UL {
DISPLAY: block;
	
}
}
LI.over UL {
DISPLAY: block;

}


/* Support for the "iehover-fix.js" */

* html ul#nav iframe, * html ul.nav iframe {
	position: absolute;
	/* account for the border */
	left: -0.25em;
	top: -0.25em;
	z-index: 0;
	filter: progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0);
}



/* this is for IE 5.0
select.hide { visibility: hidden; }

/* End Support for the "iehover-fix.js" */