.nav {
	width:770px; 
	height:36px; 
	position:relative; 
	z-index:100; 
	font-family:arial, sans-serif;
	background-repeat:no-repeat;
	margin:0 auto
}
/* hack to correct IE5.5 faulty box model */
* html .nav {
	width:770px; 
	w\idth:770px;
}

/* remove all the bullets, borders and padding from the default list styling */
.nav ul {
	padding:0;
	list-style-type:none;
	margin: 0;
}

.nav ul ul{
	margin-left:0px;
}
.nav ul ul a{
	font-weight:normal;
	font-size:10px;
	text-transform:uppercase
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.nav li {
	float:left;
	position:relative;
}

/* style the links for the top level */
.nav a, .nav a:visited {
	display:block;
	font-size:12px;
	text-decoration:none; 
	color:#fff;  
	height:36px;  
	background:#000000; 
	padding-left:10px;
	padding-right:10px; 
	line-height:29px; 
	font-weight:bold;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .nav a, * html .nav a:visited {
	width:149px; 
	w\idth:138px;
}

/* style the second level background */
.nav ul ul a.drop, .nav ul ul a.drop:visited {
	background:#FF0000 130px center;
	}

/* style the second level hover */
.nav ul ul a.drop:hover{
	background:#c9ba65 130px center;
}

.nav ul ul :hover > a.drop {
	background:#c9ba65 130px center;
	}
/* style the third level background */
.nav ul ul ul a, .nav ul ul ul a:visited {
	background:#FF0000;}

/* style the third level hover */
.nav ul ul ul a:hover {
	background:#b2ab9b;
}

.nav .submenu{
	background-color:#007ed9;
	width: 300px;
	height:auto;
}
.nav .submenu a{
	font-size:10px;
	font-weight:normal
	
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.nav ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:36px;
	left:0; 
	width:149px;
}

.nav ul ul a{
	border-bottom:#000000 0px solid
}

/* another hack for IE5.5 */
* html .nav ul ul {
	top:30px;
	t\op:31px;
}

/* position the third level flyout menu */
.nav ul ul ul{
	left:149px; 
	top:-1px; 
	width:149px;
}

/* position the third level flyout menu for a left flyout */
.nav ul ul ul.left {
	left:-149px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.nav table {
	position:absolute; 
	top:0; 
	left:0; 
	border-collapse:collapse;
}

/* style the second level links */
.nav ul ul a, .nav ul ul a:visited {
	background:#007ed9;
	color:#fff; 
	height:auto; 
	line-height:1.2em;
	padding:5px 5px; 
	width:135px;
	border-left:0px #000000 solid;
	border-right:0px #000000 solid;
	font-weight:normal
}

/* yet another hack for IE5.5 */
* html .nav ul ul a, * html .nav ul ul a:visited {
	width:150px;
	w\idth:128px;
}

/* style the top level hover */
.nav a:hover, .nav ul ul a:hover{
	color:#000; 
	background:#b7d186;
}
.nav :hover > a, .nav ul ul :hover > a {
	color:#000; 
	background:#007ed9;
}
.nav ul ul a:hover{
background-color:#36a9fd
}

/* make the second level visible when hover on first level list OR link */
.nav ul li:hover ul,.nav ul a:hover ul{
	visibility:visible;
}

/* keep the third level hidden when you hover on first level list OR link */
.nav ul :hover ul ul{
	visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.nav ul :hover ul :hover ul{ 
	visibility:visible;
}

