.menu {
/* width:750px; */
position:relative;
z-index: 11;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
	height: 18px;
	margin-top: 10px;
/*	border-left: 1px #DB9602 solid ! important; */
	}
.menu ul ul {
	height: auto;
	margin-top: 0px;
	width: 180px;
	border-left: 0px #DB9602 solid ! important;
	}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	height: 20px;
	float:left;
	position:relative;
	border-width: 0px 1px 0px 0px;
	border-color: #DB9602;
	border-style: solid;
	height: 16px;
	}
.menu li li {
	border-width: 1px 1px 1px 1px ! important;
	height: auto ! important;
	padding-top: 0px;
	}

/* style the links for the top level */
.menu a /*, .menu a:visited*/ {
	float: left;
	margin-top: 1px;
	margin-left: -1px;
	display: block;
	padding-right: 10px;
	padding-bottom: 12px;
	padding-left: 10px;
	color: #DB9602;
	font-weight: bold;
	text-decoration: none;
/*	background-image: url('../images/bg_menuitem.gif');
	background-position: center 0px;
	background-repeat: no-repeat;*/
}
li a.dropact {
	background-position: center -80px;
	color: #ffffff;
	}
li a.dropact:hover {
	background-position: center -120px;
	color: #ffffff;
	}

.menu ul ul li a {
	height: auto;
	border-width: 1px 1px 1px 1px ! important;
	margin: 0px ! important;
	margin-bottom: -1px ! important;
	font-weight: normal ! important;
/*	font-size: 11px;*/
	}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
width:auto;
w\idth:auto;
}
* html .menu ul ul a, * html .menu ul ul a:visited {
width:180px;
w\idth:180px;
}
 
/* style the second level background */
.menu ul ul a.drop /*, .menu ul ul a.drop:visited*/ {
background-color:#ebebeb;
 
}
/* style the second level hover */
.menu ul ul a.drop:hover{
background-color: #0075bb;
}
.menu ul ul :hover > a.drop {
background-color: #DB9602;
}
/* style the third level background */
.menu ul ul ul a /*, .menu ul ul ul a:visited*/ {
background-color:#ebebeb;
}
/* style the third level hover */
.menu ul ul ul a:hover {
background-color:#DB9602;
}
 
 
/* 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:26px;
left:0; 
width:180px;
}
/* another hack for IE5.5 */
* html .menu ul ul {
top:25px;
t\op:26px;
}
 
/* position the third level flyout menu */
.menu ul ul ul {
left:180px; 
top:0;
width:180px;
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
left:-180px;
}
 
/* 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*/ {
background:#ebebeb; 
color:#000; 
height:auto; 
line-height:1em; 
padding:5px 10px; 
width:159px;
	height: auto;
	background-image: none;
/* yet another hack for IE5.5 */
}
* html .menu ul ul a{
width:180px;
w\idth:180px;
}
 
 
/* style the top level hover */
.menu a:hover {
color: #ffffff ! important; 
	background-position: center -40px;
}
.menu ul ul a:hover{
color: #ffffff ! important; 
background:#ebebeb;
}

.menu :hover > a {
color: #ffffff ! important;
	background-position: center -40px;
}
.menu ul ul :hover > a {
color: #ffffff ! important;
background:#0075bb;
}
 
/* 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;
}
