/* style the outer div to give it width */
/*
#menu {
	float:left;
	padding-left:0px;
	width:680px;
}
*/

.menu {
	height:38px; /*38*/
	/* background: #666666; */
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {

	padding: 0;
	margin: 0;
	list-style-type: none;
}
.menu ul ul {

	width: 200px;
}

/* third level alignmen */
.menu ul ul li {
	display: block;
	border-left: none;
	border-right: none;
	position: relative;
	
	padding-left: 7px;
	top: 12px;
}

/* third level alignmen */
.menu ul ul ul li {
	display: block;
	border-left: none;
	border-right: none;
	position: relative;
	top: 0px;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float: left;
	position: relative;
	list-style-image : none;
	/* padding: 0px 3px 0px 3px; */
	list-style-type : none;
	margin-left: 0px;
	font-size: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: left;
	font-weight: bold;
}
/* style the links for the top level */
.menu a,.menu a:visited, .menu a:active {
	background: transparent url('/images/menu_round_r.png') no-repeat scroll top right;
	display: block;
	text-decoration: none;
	line-height: 30px; /*38*/
	font-weight: bold;
	color: #FFF;
	padding: 0px 8px 0px 7px;
	/* background-image: url(../images/bg_menu_bk.jpg); */
}
.menu_span {
	background: transparent url('/images/menu_round_left.png') no-repeat;
	display: block;	
	height: 38px;
	padding-top: 7px;
	line-height: 12px; /*38*/
	padding-left: 8px;
	padding-right: 0px;
}
.menu_span_orange {
	background: transparent url('/images/menu_round_orange.png') no-repeat;
	display: block;	
	height: 38px;
	padding-top: 7px;
	line-height: 12px; /*38*/
	padding-left: 8px;
	padding-right: 0px;
}
.menu_span_green {
	background: transparent url('/images/menu_round_green.png') no-repeat;
	display: block;	
	height: 38px;
	padding-top: 7px;
	line-height: 12px; /*38*/
	padding-left: 8px;
	padding-right: 0px;
}
.menu_span_red {
	background: transparent url('/images/menu_round_red.png') no-repeat;
	display: block;	
	height: 38px;
	padding-top: 7px;
	line-height: 12px; /*38*/
	padding-left: 8px;
	padding-right: 0px;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a,* html .menu a:visited {
	w\idth: 150px; /* 30 */
}
/* style the second level background */
.menu ul ul a.drop,.menu ul ul a.drop:visited {
	background: #FFF;
}
/* style the second level hover */
.menu ul ul a.drop:hover {
	background: #666666;
}

.menu ul ul :hover>a.drop {
	background: #c9ba65;
}

/* style the third level background */
.menu ul ul ul a,.menu ul ul ul a:visited {
	background: #666666;
}

/* style the third level hover */
.menu ul ul ul a:hover {
	color: #FF9000;
	/*
	background: #FF9000;
	
	background-image: url(../images/menu_bg_sel.jpg);
	background-repeat: repeat-x;
	*/
}
.menu ul ul ul :hover>a {
	color: #FF9000;
	
	/*
	background: #FF9000;
	background-image: url(../images/menu_bg_sel.jpg);
	background-repeat: repeat-x;
	*/
}

/* 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: 24px;
	left: 0;
	width: 150px;
	
}

/* another hack for IE5.5 */
* html .menu ul ul {
	top: 24px;
	t\op: 24px;
}

/* position the third level flyout menu */
.menu ul ul ul {
	left: 149px;
	top: 0;
	width: 150px;
}

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
	left: -150px;
}

/* style the table so that it takes no part 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 {
	/*
	border-right: 1px solid #CCC;
	border-left: 1px solid #CCC;
	*/
	background: #666666; /* sub-bk */
	color: #FFFFFF;
	font-weight:bold;
	height: auto;
	
	/* margin-top:2px; */
	position: relative;
	top: 4px;
	
	line-height: 12px;
	padding: 4px 5px;
	width: 139px /* yet another hack for IE5.5 */
}

* html .menu ul ul a {
	width: 150px;
	w\idth: 139px;
}

/* style the top level hover */
.menu a:hover,.menu ul ul a:hover {
	color: #FFFFFF;
	font-weight:bold;
	/* background-image: url(../images/bg_menu_hover.jpg); */
	
	/*
	background: #FFF;
	background-image: url(../images/menu_bg_sel.jpg);
	background-repeat: repeat-x;
	*/
}

.menu :hover>a,.menu ul ul :hover>a {
	color: #FF9000;/* top level */
	font-weight:bold;
	/*
	background: transparent url('../images/menu_round_r_over.png') no-repeat scroll top right;
	
	background: #3E6002;
	background-image: url(../images/menu_bg_sel.jpg);
	background-repeat: repeat-x;
	*/
}
/*
.menu_span:hover {
	background: transparent url('../images/menu_round_left_over.png') no-repeat;
	display: block;	
}
*/


.menu ul ul :hover>a {
	color: #FF9000;
	font-weight:bold;
	/*
	background: #FF9000;
	*/
}

/* 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;
}
