@charset "UTF-8";
/* CSS Document */

#navigation {
    z-index: 100;
    width: 100%;
}

#nav_center {
	height: 23px;
        text-align: center;
	background: url(/images/nav_bg.gif) repeat-x bottom left #000;
}

#nav_left {
	width: 23px;
	height: 20px;
	background: url(/images/nav_round_l.gif) no-repeat bottom left #D7DEEE;
}

#nav_right {
	width: 23px;
	height: 20px;
	background: url(/images/nav_round_r.gif) no-repeat bottom right #C6D9E8;
}


/***Actual navigation ***************************************************************************************************************/

.navigation {
	width: 100%;
	background: url(/images/nav_bg.gif) repeat-x top left #000;
	height: 23px;
	border-top:0px solid #000; 
	border-bottom:0px solid #000;
}

.navigation_wrap {
	width: 880px;
	text-align: center;
	margin: 0 auto;
	border-left: 0px solid #000;
}

.menu_main {
	text-align: center;
	margin: 0 auto;
	font-size:1.1em;
	position:relative;
	z-index:100;
	top: 0px;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu_main ul {
	text-align: center;
	margin: 0 auto;
	padding:0;
	margin:0;
	list-style-type:none;
}

.menu_main table a {
	border: 0px solid #000;	
	border-width:0;
}

.menu_main table a:after {
	border-bottom: 0px solid #000;	
}

.menu_main ul ul {
	width:110px;
	border: 0;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu_main positon */
.menu_main li {
	float:left;
	width:110px;
	position:relative;
}
/* style the links for the top level */
.menu_main a, .menu_main a:visited  {
	display:block;
	text-decoration:none; 
	color:#fc0; 
	width:110px; 
	background: url(/images/nav_bg.gif) repeat-x center #000;
	line-height: 20px;
}

.menu_main a, .menu_main a:visited, menu_main a:link  {
	font: bold 12px/20px arial;
	height: 20px; 
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu_main a, * html .menu_main a:visited {
	width:110px;
	w\idth:110px;
}

/* style the second level background */
.menu_main ul ul a.drop, .menu_main ul ul a.drop:visited {
	background:#ffffcc;
}

/* style the second level link */
.menu_main li li a, .menu_main  li li a:visited, .menu_main  li li a:link {
	height: auto;
	border-top:0px solid #000 !important;
	font: normal 11px/10px arial, verdana, lucida, sans-serif;
		border-bottom: 1px solid #000;

}

/* style the second level hover */
.menu_main ul ul a.drop:hover{
	background:#fc0;
}

.menu_main ul ul :hover > a.drop {
	background:#fc0;
}



/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu_main ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:23px;
	left:0;
	width:110px;
}

/* another hack for IE5.5 */
* html .menu_main ul ul {
	top:23px;
	t\op:23px;
}



/* style the table so that it takes no part in the layout - required for IE to work */
.menu_main table {position:absolute; top:0; left:-1px;}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu_main table table {position:absolute; top:0; left:0px;}

/* style the second level links */
.menu_main ul ul a, .menu_main ul ul a:visited {
	background: url(/images/nav_fade.jpg) repeat-x center #ffffcc; 
	color:#000; 
	height:auto; 
	line-height:10px; 
	padding:5px 10px; 
	width:90px
}

/* yet another hack for IE5.5 */
* html .menu_main ul ul a{
	width:110px;
	w\idth:90px;
}

/* style the top level hover */
.menu_main a:hover, .menu_main ul ul a:hover{
	color:#ffcc00; 
	background: url(/images/nav_fade_hover.jpg) repeat-x bottom left #000000;
}
.menu_main :hover > a, .menu_main ul ul :hover > a {
	color:#ffcc00;
	background: url(/images/nav_fade_hover.jpg) repeat-x bottom left #000000;
}

/* make the second level visible when hover on first level list OR link */
.menu_main ul li:hover ul,
.menu_main ul a:hover ul{
	visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.menu_main ul :hover ul ul{
	visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.menu_main ul :hover ul :hover ul{ 
	visibility:visible;
}

