@charset "utf-8";
/* CSS Menus */


/******************** left nav *****************/

#top_nav {
	position: absolute;
	top: 229px;
	left: 90px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	width: 800px;
	/*border: 1px solid red;*/
	text-align: center;
}

#top_nav ul {
	display: block;
	margin: 0;
	padding: 0;
}

#top_nav ul li {
	display: inline;
	color: #fff;
	margin-left: 2px;
	margin-right: 2px;
	
}

#top_nav ul li a{
	color: #fff;
	padding: 1px 6px 3px 6px;
	text-decoration: none;
}

#top_nav ul li a:hover {
	background-color: #242424;
}

#top_nav ul li a.selected {
	background-color: #242424;
}


/******************** left nav *****************/

/*
#left_nav {
	width: 200px;
	float: left;
	height: 400px;
	border: 1px solid #444;
	margin-left: 7px;
	margin-top: 18px;
}

#left_nav .leftnav_header {
	background: url('../images/side_nav_black_bg.jpg') no-repeat;
	width: 200px;
	color: #fff;
	font-size: 18px;
	padding: 4px 6px 6px 10px;
}

#left_nav .leftnav_subheader {
	background: url('../images/side_nav_grey_bg.jpg') repeat-x;
	width: 180px;
	color: #fff;
	font-size: 15px;
	padding: 5px 0px 4px 20px;
	font-weight: bold;
}

#left_nav ul {
	margin: 6px 10px 10px 6px;
	list-style-type: none;
}

#left_nav ul li {
	font-size: 14px;
	margin: 1px 0px 1px 0px;
}
*/


/* flyout menu styles */

#info {height:400px;}

.menu {
z-index:1000;
font-size:90%;
margin:25px 0 50px 15px; /* this page only */
	width: 180px;
	float: left;
	height: 400px;
	border: 1px solid #444;
	/*margin-left: 7px;*/
	/*margin-top: 18px;*/
	
	/*position: relative;*/
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
width:180px;
}
/* hack for IE5.5 */
* html .menu ul {margin-left:-16px; ma\rgin-left:0;}
/* position relative so that you can position the sub levels */
/*main nav*/

.menu li {
position:relative;
background:#444;
height:26px;
color: #fff;
width: 180px;
font-size: 16px;
}


/*2nd level (flyout)*/
.menu ul ul li {
position:relative;
background: #040281;
height:26px;
font-size: 12px;
width: 149px;
}

/* get rid of the table */
.menu table {position:absolute; border-collapse:collapse; top:0; left:0; z-index:100; font-size:1em;}

.menu a {
background:#fff;
_padding-right: 30px;
}


/*main nav*/
/* style the links */
.menu a, .menu a:visited {
display:block; 
text-decoration:none;
height:25px;
line-height:25px;
width:179px;
color:#000;
text-indent:5px;
border:1px solid #fff;
border-width:0 1px 1px 0;
font-size: 14px;

}

.menu ul ul li a {
background: #040281;
}

/*2nd level (flyout)*/
.menu ul ul li a, .menu ul ul li a:visited {
display:block; 
text-decoration:none;
height:25px;
line-height:25px;
width:149px;
color:#fff;
text-indent:5px;
border:1px solid #fff;
border-width:0 1px 1px 0;
font-size: 12px;
_background: #040281;
}


/* hack for IE5.5 */
* html .menu a, * html .menu a:visited {background:#fff; width:150px; w\idth:149px;}
/* style the link hover */
* html .menu a:hover {color:#666666; background:#eee;}

/*main nav item hover color*/
.menu :hover > a {
color:#444; 
background: #eee; /*original : #949e7c */
}

/*2nd level (flyout)*/
.menu ul ul :hover > a {
color: #fff; 
background: #444; /*original : #949e7c */
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
top:0;
left:180px; 
}
/* 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;
}
/* 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;
}








