/*--CSS FOR THE MAIN NAVIGATION (HORIZONTAL), INCLUDING DROP-DOWN MENUS--*/

.menu {
	/*width:700px; */
width:auto;
	font-size:14px;
	position:relative;
	z-index:10;
	height: 37px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #454545;
	padding: 0px;
	background-image: url(../images/nav-bg.jpg);
	background-repeat: repeat-x;
	background-position: top;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
}

.menu ul ul {
	width:auto;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
float:left;
position:relative;
}

/* style the links for the top level */
.menu a, .menu a:visited {
display:block;
font-family:Arial, Helvetica, sans-serif;
/*letter-spacing:1px;*/
font-size:13px;
text-decoration:none;
color:#454545;
padding: 0px;
}

/* 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;
width:192px;
top:38px;
left:0; 
}


/* 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 {
	color:#850117;
	background-color: #f4f4f4;
	font-size:12px;
	text-decoration:none;
	height:22px;
	line-height:1em;
	padding-left:25px;
	padding-right:25px;
	width:192px;
	padding-top: 11px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #454545;
	border-bottom-color: #454545;
	border-left-color: #454545;
}


/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
color: #FFFFFF;
background-color: #830018;
text-decoration:none;
}

.menu :hover > a{
color: #FFFFFF;
text-decoration:none;
}

/* 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; 
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {

}
/* style the second level hover */
.menu ul ul a.drop:hover, .menu ul ul :hover > a{
color:#EFEFEF;
}
.menu ul ul :hover > a.drop {
color:#EFEFEF;
}