/* Haber drop nav */
.menu-container {
width: 865px;
margin: 0 auto;
padding: 0px;
background-color: #183145;
}
.menu {
width:865px; 
padding: 0px;
font-size:0.8em;
position:relative;
z-index:100;
background-color: #183145;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
background-color: #183145;
display: inline-block;
}
.menu ul ul {
width: 150px;
background: #183145;
}
/* float the list to make it horizontal and a relative position so that you can control the dropdown menu positon */
.menu li {
float:left;
position:relative;
padding:0;
margin:0;
}

/* style the links for the top level */
.menu a, .menu a:visited {
	display: block !important;
	display: inline;
	font-family: Geneva, sans-serif;
	font-size: 11px;
	text-decoration: none;
	color: #fff;
	padding: 0 8px;
	height: 30px;
	background: #183145;
	line-height: 29px;
}


/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
background:#2b4962;

}
/* style the second level hover */
.menu ul ul a.drop:hover{
background:#2b4962;
}
.menu ul ul :hover > a.drop {
background:#c9ba65 url(../../graphics/drop.gif) bottom right no-repeat;
}
/* hide the third level */
.menu ul ul ul {
	display: none;
}



/* hide the sub levels and give them a position absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
height:0;
top:30px;
left:0; 
width:150px;
}
/* another hack for IE5.5 */
* html .menu ul ul {
top:30px;
t\op:31px;
}

/* position the third level flyout menu */
.menu ul ul ul{
left:150px; 
top:0;
width:150px;
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
left:-150px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
background:#93bad4; 
color:#fff; 
height:auto; 
line-height:1em;
padding: 5px;
width:150px;
text-align: left;
/* yet another hack for IE5.5 */
}
* html .menu ul ul a{
width:150px;
w\idth:129px;
}


/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
color:#fff; 
background:#32526c;
}
.menu :hover > a, .menu ul ul :hover > a {
color:#fff;
background:#32526c;
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ 
visibility:visible;
}

/*.sub-nav-cat a, .sub-nav-cat a.drop:visited{
text-align: left;
font-weight: bold;
background-color: #000000;
}*/

.division {
background-color:#FFD396;
color:#1D425A;
font-weight:bold;
}