/* style the outer div to give it width */
/*
#menu {
	float: left;
	padding-left: 0px;
	width: 559px;
}
*/

.menu {
	float: right;
	height:31px;
}
/* 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: 100px;
}
			.menu ul li {
				height: 31px;
			}

/* third level alignmen */
.menu ul ul li {
	display: block;
	border-left: none;
	border-right: none;
	position: relative;
	
	padding-left: 0px;
	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: 9px;
	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 2px;
}
.menu_span {
	background: transparent url('/images/menu_round_left.png') no-repeat;
	display: block;	
	height: 31px; /*38*/
	padding-top: 7px;
	line-height: 12px; 
	padding-left: 20px;
	padding-right: 20px;
}


/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a,* html .menu a:visited {
	w\idth: 137px; /* 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: #3566CC;
}

.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: #3566CC;
}

/* style the third level hover */
.menu ul ul ul a:hover {
	color: #FFFFFF;
	text-decoration:underline;
}
.menu ul ul ul :hover>a {
	color: #FFFFFF;
	text-decoration:underline;
}

/* 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: 16px; /*24*/
	left: 0;
	width: 137px;
	
}
/* another hack for IE5.5 */
* html .menu ul ul {
	top: 16px;
	t\op: 16px;
}

/* position the third level flyout menu */
.menu ul ul ul {
	left: 150px; /* 149 */
	top: 0;
	width: 137px;
}

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
	left: -137px;
}

/* 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 {
	background: #3566CC; /* sub-bk */
	color: #FFFFFF;
	height: auto;
	/* margin-top:2px; */
	position: relative;
	top: 4px;
	
	line-height: 25px; /*12*/
	padding: 4px 5px;
	width: 139px /* yet another hack for IE5.5 */
}

* html .menu ul ul a {
	width: 137px;
	w\idth: 139px;
}

/* style the top level hover */
.menu a:hover,.menu ul ul a:hover {
	color: #FFFFFF;
	font-weight:bold;
	text-decoration:underline;
}

.menu :hover>a,.menu ul ul :hover>a {
	color: #FFFFFF;/* top level */
	font-weight:bold;
	text-decoration:underline;
}
/*
.menu_span:hover {
	background: transparent url('../images/menu_round_left_over.png') no-repeat;
	display: block;	
}
*/

.menu ul ul :hover>a {
	color: #FFFFFF;
	font-weight:bold;
	text-decoration:underline;
}

/* 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;
}
