body {
 background: #fff;
 font-family: "Lucida Grande", Helvetica, Arial, sans-serif;
 font-size: 12px;
}
/* style the outer div to give it width */
.menu {font-size:12px; width:1002px;height:57px; background-image:url(bg_08.jpg); color:#FFFFFF;}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {padding:0;margin:0;list-style-type:none;}

/* style the sub-level lists */
.menu ul ul {width:1002px;}

/* float the top list items to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu ul li {float:left;height:3em;line-height:3em; display:block; width:100px; text-align:center;}

/* style the sub level list items */
.menu ul ul li {display:block;width:130px;height:20px; line-height:20px; padding-top:0px;}

/* style the links for the top level */
.menu a:link, .menu a, .menu a:visited {display:block;height:20px;text-decoration:none;color:#ffffff; font-weight:bold; }
/* hack IE5.x to get the correct the faulty box model and get the width right */
* html .menu a, * html .menu a:visited {width:100px;}

/* style the sub level links */
.menu ul ul a:link, .menu ul ul a, .menu ul ul a:visited {display:block; color:#000000;width:130px;line-height:1em;background-color:#cccccc; vertical-align:middle; text-decoration:none; font-weight:normal;}
* html .menu ul ul a, * html .menu ul ul a:visited  {width:130px;}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {border-collapse:collapse; padding:0; margin:-1px; width:0; height:0; font-size:1em; z-index:1;}

/* style the level hovers */
/* first */
* html .menu a:hover {color:#FF9900; position:relative; z-index:100;}
.menu li:hover {position:relative;}
.menu :hover > a {color:#FF9900;}
/* second */
* html .menu ul ul a:hover{
	color:#FF9900;
	position:relative;
	z-index:110;
	background-color: #FFFFFF;
}
.menu ul ul li:hover {position:relative;}
.menu ul ul :hover > a {color:#FF9900;background-color: #FFFFFF;}

/* 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:30px; left:0;}
/* make the second level visible when hover on first level list OR link */
.menu ul :hover ul{visibility:visible; height:auto; left:-3em;}

