@charset "utf-8";
/* CSS Document */


/* CSS Dropdown Nav Bar*/
/* Original code by Stu Nicholls of*/
/* http://www.cssplay.co.uk/ */
/* Edited by me for content, formatting and some elements */
/* Please help support CSSPlay at: */
/* http://www.cssplay.co.uk/support.html */


/* CSS Section */

/* style the outer div to give it width */
.menu {
	margin: auto;
	position:relative; /*Make the container moveable*/
	width:780px;     /*Main bar total width*/
	font-size:1em;
	padding-bottom:0px; /*Padding between the bottom of your mainbar and the rest of your page */
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
}
/* 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:160px; /* Cell size. Divide the main width (750px) by the number of cells you need */
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
float:left;
width:auto; /* Cell size. Divide the main width (750px) by the number of cells you need */
position:relative;
}
/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	font-size:11px;
	text-decoration:none;
	color:#FFFFFF;
	width:auto; /* Defines the main box dimensions. */
	height:25px;
	padding-left:10px;
	padding-right:10px;
	line-height:25px; /*Adjust this to vertically center your text in each cell. Should be about the same as height. */
	background-color: #336633;
	padding-top: 5px;
	padding-bottom: 5px;
	border-top-width: 0px;
	border-right-width: 1px;
	border-bottom-width: 0;
	border-left-width: 0;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #fff;
	border-right-color: #fff;
	border-bottom-color: #fff;
	border-left-color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-align: center;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
	width:auto;
	w\idth:60px;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	color: #FFFFFF;
	background-color: #336633;
}
/* style the second level hover */
.menu ul ul a.drop:hover{
	background-color: #99CC66;

}
.menu ul ul :hover > a.drop {
	background-color: #99CC66;
	text-decoration: none;

}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
background:#e2dfa8;
}
/* style the third level hover */
.menu ul ul ul a:hover {
background:#b2ab9b;
}
.menu ul ul ul :hover > a {
background:#b2ab9b;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:39px;
	left:0;
	width:160px;  /* Size of the daughter cells */
}
/* another hack for IE5.5 */
* html .menu ul ul {
	top:39px;
	t\op:38px; /* IE gap between main bar and the dropdown items */
}


/* position the third level flyout menu */
.menu ul ul ul{
left:125px; 
top:0;
width:125px;
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
left:-125px;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	color:#FFFFFF;
	height:auto;
	line-height:20px;
	padding:5px 10px;
	width:155px;
	background-color: #336633;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 0px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	font-weight: bold;
	text-align: left;
}
* html .menu ul ul a{
width:155px;
w\idth:159px;
}


/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
	color:#fff;
	background-color: #99CC66;
	text-decoration: none;
}
.menu :hover > a, .menu ul ul :hover > a {
	color:#fff;
	background-color: #99CC66;
	text-decoration: none;
}

/* make the second level visible when hover on first level list OR link */
.menu ul :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;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover 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;
}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul { 
visibility:visible;
}

/* End Navbar Code */

