<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.clear {clear:both}
/* remove the list style */
ul, menu, dir {
padding: 10px;
}



#nav {
	margin:0;
	padding:0;
	list-style:none;
	float: left;
	z-index: 3000;
}  
     
    /* make the LI display inline */
    /* it's position relative so that position absolute */
    /* can be used in submenu */
    #nav li {
	float:left;
	display:block;
	position:relative;
	z-index:500;
	margin-top: 0;
	margin-right: 10px;
	margin-bottom: 0;
	margin-left: 1px;
    }
         
    /* this is the parent menu */
    #nav li a {
	display:block;
	font-weight:normal;
	height:23px;
	text-decoration:none;
	color:#fff;
	text-align:left;
	color:#FFF;
	font-size: 18px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding-top: 5px;
	padding-right: 8px;
	padding-bottom: 5px;
	padding-left: 8px;
	text-shadow: 1px 1px 3px #004766;
    }
 
    #nav li a:hover {
	color:#fff;
	background-color: #F5821F;
	text-shadow: 0px 0px 0px #f58220;
    }
     
	 
	#nav li .current {
	color:#fff;
	background-color: #F5821F;
	text-shadow: 0px 0px 0px #f58220;
    } 
	 
	 
    /* you can make a different style for default selected value */
    #nav a.selected {
	background-image: url(/images/mainmenu/arrow-down.png);
	background-repeat: no-repeat;
	background-position: right center;
    }
	

     
        /* submenu, it's hidden by default */
        #nav ul {
	position:absolute;
	left:0;
	display:none;
	list-style:none;
	background-color: #0089C6;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: -10px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-topright: 0px;
	-moz-border-radius-bottomright: 4px;
	-moz-border-radius-bottomleft: 4px;
	-webkit-border-radius: 0px 0px 4px 4px;
	border-radius: 0px 0px 4px 4px;
	z-index: 3000;
	padding-top: 10;
	padding-right: 0;
	padding-bottom: 10;
	padding-left: 10;
        }
         
        #nav ul li {
	width:220px;
	float:left;
	height: auto;
	clear: both;
        }
         
        /* display block will make the link fill the whole area of LI */
        #nav ul a {
	display:block;
	color:#FFF;
	font-size: 12px;
	text-decoration: none;
	padding-top: 8px;
	padding-right: 7px;
	padding-bottom: 8px;
	padding-left: 7px;
	height: auto;
	font-weight: bold;
        }
         
        #nav ul a:hover {
	text-decoration:none;
        }
 
/* fix ie6 small issue */
/* we should always avoid using hack like this */
/* should put it into separate file : ) */
*html #nav ul {
    margin:0 0 0 -2px;
}
#nav .w1 {
	width: 83px;
	white-space: nowrap;
}
#nav .w2 {
	width: 132px;
}
#nav .w3 {
	width: 168px;
}
#nav .w4 {
	width: 105px;
	white-space: nowrap;
}
#nav .w5 {
	width: 146px;
}
#nav .w6 {
	width: 55px;
}
#nav .w7 {
	width: 92px;
}
#nav .w8 {
	width: 205px;
	white-space: nowrap;
}
</pre></body></html>