/*****************************************************************************/

/*TOP NAV CSS */

/*****************************************************************************/



#topnav {
	height: 36px;
}



.menu {
	
	font: bold 10px Arial, Helvetica, sans-serif;
	position:relative;
	z-index:300;
}






/* 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:115px; */

/*width:400px;*/

}



menu ul ul li {
	border:1px #CCCCCC solid;
}



#nav1, #nav2, #nav3, #nav4, #nav5, #nav6 { border:0px solid #fff; height:36px; }
#nav7 { text-decoration:none; }
/* 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;
margin-bottom:0px; /* Added on 8-25-07 to fix the menu item spacing bug */
}



/* style the links for the top level */

.menu a, .menu a:visited {

color: #494949;
text-decoration: none;

font: bold 10px Arial, Helvetica, sans-serif;
background-color: #F5F5F5;
text-align:center;
display:block;

border-color: #CCCCCC;
height: 36px;
overflow: hidden;

}



/* a hack so that IE5.5 faulty box model is corrected */

* html .menu a, * html .menu a:visited {

/* width:117px;

w\idth:106px; */

}



/* style the second level background */

.menu ul ul a.drop, .menu ul ul a.drop:visited {
	text-align:left;
	background-color: #F5F5F5;
	font-weight:normal;
	width:220px;
	border-bottom:1px #FFFFFF solid;
	/* height:36px; */
	font-size: 10px;
	color: #1D4A73;
}



.menu ul ul li {

width:220px;

}



/* style the second level hover */

.menu ul ul a.drop:hover{
	background-color: #F5F5F5;
	font-weight:normal;
	width:220px;
	color: #494949;
}

.menu ul ul :hover > a.drop {
	background-color: #F0F0F0;
	width:220px;
	color: #494949;
}

/* style the third level background */

.menu ul ul ul a, .menu ul ul ul a:visited {
	background-color: #388b23;
	font-weight:normal;
}

/* style the third level hover */

.menu ul ul ul a:hover {
	background-color: #97be63;
	font-weight:normal;
}





/* 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:36px;

left:0; 

width:217px;

font-size: 10px;

}

/* another hack for IE5.5 */

* html .menu ul ul {

top:36px;

t\op:36px;

}



/* position the third level flyout menu */

.menu ul ul ul{

left:117px; 

top:0;

width:115px;

}

/* position the third level flyout menu for a left flyout */

.menu ul ul ul.left {

left:-117px;

}



/* style the table so that it takes no ppart 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 {

	text-align:left;

	background-color:#F5F5F5;

	color:#FFFFFF;

	height:auto;

	/* width:96px; */

	padding:5px 15px 5px 5px; /* yet another hack for IE5.5 */

	font-weight:normal;

}

* html .menu ul ul a{
	width:150px;
	w\idth:150px;
}





/* style the top level hover */

.menu a:hover, .menu ul ul a:hover{

}





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

}

/*******************************************************************************************/