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

.menu {
/*width:700px; */
padding-left: 0px;
float: right;
position:relative;
z-index:10;
background-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:180px;
}

/* 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:12px;
	text-transform:uppercase;
	text-decoration:none;
	color:#703112;
	padding-top: 0px;
	padding-left: 15px;
	padding-right: 10px;
	padding-bottom: 6px;
	font-weight: bold;
}

/* 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:180px;
top:18px;
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:#000000;
	font-size:11px;
	letter-spacing:0px;
	padding:7px 5px 7px 15px;
	width:150px;
	background:#FFFFFF;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E0E0E0;
	font-weight: normal;
	text-transform: uppercase;
	text-align: left;
}


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

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

/* 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 {
background:#FFFFFF;

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

