/* style the outer div to give it width */
.menu {
		font-family: "Adobe Caslon Pro", "Times New Roman", Times, serif;
		font-size: 14px;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	list-style-type: none;
	margin: 0;
	list-style-image: none;
	z-index: 999;
}
.menu ul ul {
	width: 150px;
}
/* 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;
	/*
	border-left: 1px solid #333333;
	border-right: 1px solid #000000;
	*/
}

.menu ul ul li {
	border-left: none;
	border-right: none;
}

/* style the links for the top level */
.menu a,.menu a:visited {
	display: block;
	text-decoration: none;	
	padding: 0px 10px 0px 7px; /* 0px 12px 0px 5px; */
	line-height: 32px; /*45*/
	height: 25px;/*20*/
	color: #9D9EA0;
}


/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a,* html .menu a:visited {
	w\idth: 30px;
}


/* style the top level hover */
	.menu ul a:hover {
		background: #2B292C;
		color: #BCBDBF; /* Grey 3 */
	}
	.menu ul :hover>a {
		background: #2B292C;
		color: #BCBDBF; /* Grey 3 */
	}


/* style the second level background */
.menu ul ul a.drop,.menu ul ul a.drop:visited {
	background: #EEE;	
}
/* style the second level hover */
	.menu ul li ul a:hover {
		background: #646567;
		color: #BCBDBF;
	}
	.menu ul li ul :hover>a {
		background: #646567;
		color: #BCBDBF;
	}
	
	/* ------------------------------------------ SUB MENU MARKER ------------------------------------------ */
	.menu ul li ul .submenu_marker, .menu ul li ul li ul .submenu_marker {
		/*
		background: #ff0000;
		color: #BCBDBF;
		*/
		background: right url(/images/arrow_submenu.gif) no-repeat;
	}
	.menu ul li ul a:hover.submenu_marker {
		background: #646567 right url(/images/arrow_submenu_on.gif) no-repeat;
		color: #BCBDBF; /*Grey 3*/
	}
	/*
	
	.menu ul li ul li a:link.submenu_marker,
	.menu ul li ul li a:active.submenu_marker {
		background: #006600;
	}
	.menu ul li ul li a:hover.submenu_marker {
		background: #660000;
	}
	*/
	/* ------------------------------------------ SUB MENU MARKER ------------------------------------------ */
	
/*
.menu ul ul a.drop:hover {
	background: #2B292C;
	color: #FFFFFF;
	
}

.menu ul ul :hover>a.drop {
	background: #2B292C;
	color: #FFFFFF;
}
*/

/* style the third level background */
.menu ul ul ul a,.menu ul ul ul a:visited {
	background: #2B292C; /*DED*/
}

/* style the third level hover */

	.menu ul ul ul a:hover {
		background: #646567; /*CCC*/
		color: #BCBDBF; /*D72007*/
	}

	.menu ul ul ul :hover>a {
		background: #646567; /*CCC*/
		color: #BCBDBF; /*D72007*/
	}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
/*border:1px solid #990000;*/
	visibility: hidden;
	position: absolute;
	height: 25px;
	top: 25px; /*20px*/
	left: 0;
	width: 190px; /*150px*/
}

/* another hack for IE5.5 */
* html .menu ul ul {
	top: 25px;
	t\op: 26px;
}

/* position the third level flyout menu */
.menu ul ul ul {
	z-index: 1;
	left: 189px; /*169px*/
	top: 0;
	width: 170px; /*150px*/
}

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
	z-index: 1;
	left: -169px;
}

/* 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 li {
/*	background: url(../images/menu_lvl2_bg.png) repeat-y; */
	background: #2B292C;
}

.menu ul ul a,.menu ul ul a:visited {
/*border:1px solid #00FF00;*/
	color: #9D9EA0;
	height: auto;
	line-height: 14px; /*1em*/
	padding: 7px 12px 2px 7px; /* padding: 5px 10px; */
	width: 170px; /* yet another hack for IE5.5: 149px */
}

* html .menu ul ul a {
	width: 170px; /*150px*/
	w\idth: 149px;
}

/* selected */
.menu a.selected {
	color: #FFFFFF; /*D72007*/
}

	/* style the top level hover */
	.menu a:hover, a.selected {
		/*
		background-image: url(../images/menu_over_bg.png);
		background-repeat: repeat-x;
		*/
		color: #FFFFFF; /*D72007*/
	}
	
	.menu :hover>a, a.selected {
		/*
		background-image: url(../images/menu_over_bg.png);
		background-repeat: repeat-x;
		*/
		color: #FFFFFF; /*D72007*/
	}

.menu ul ul a:hover {
	background-image: none;
	background: #2B292C;
}

.menu ul ul a {
	border-bottom: 1px solid #484649;
}

.menu ul ul :hover>a {
	/*
	background: #005B90;
	background-image: url(../images/bg_menu.gif);
	*/
	color: #FFFFFF; /*D72007*/
}

/* 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;
}
