@charset "utf-8";
.mhead a {
	font: 11px Arial, Helvetica, sans-serif;
	color: #000;
	width: 176px;
	_width: 183px; /* IE 6*/
	border-bottom: 1px solid #E4E4E4;
	border-left: 0px;
	border-right: 0px;
	cursor: pointer;
	padding: 6px 0px 6px 4px;
	display: block;
	text-decoration: none;
	text-align: left;
	margin: 2px 0 0 0;
	background-color: #E4E4E4;
}
.mhead a:hover {
	background-color: #E4E4E4;
	display: block;
	color: #000;
}
.menu {
	font-size: 11px;
	display: none;
	margin: 0;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	position: relative;
	z-index: 500;
	padding: 0;
	margin: 0;
	list-style-type: none;	
	width: 178px;
}
/* style the list items */
.menu li { /* Drawer */
	background-color: #FFFFFF;
	width: 178px; /* FF - IE7*/
	_width: 160px; /* IE6 hack*/
	float: left;
	margin: 0;
	padding: 0;
	display: block;
	text-align: left;
	border: 1px solid #FFF;
	border-color: #FFF #FFF #D8D8D8 #FFF;
}
.menu li.sub {
	/*background: #FFFFFF url(/img/bullet-arrow2.gif) no-repeat right center;*/
	background-position: 174px;
	margin-right: 0px;
}
.subd {
	background: url(/img/expanded.gif) no-repeat right center;
	background-position: 174px;
	margin-right: 0px;
}
.subd:hover {
	background: url(/img/expanded.gif) no-repeat right center;
}
	
/* get rid of the table */
.menu table {
	position: absolute;
	border-collapse: collapse;
	top: 0;
	left: 0;
	z-index: 100;
	font-size: 11px;
}
/* style the links */
.menu a {
	display: block;
	width: 169px;
	_width: 163px; /* IE6 hack */
	color: #000000;
	padding: 5px 0px 5px 10px;
	text-decoration: none;
}

/* hack for IE5.5 */
* html .menu a {
	w\idth: 173px;
	width: 176px;
	
}
/* style the link hover */
* html .menu a:hover {
	color: #000000;
	background-color: #D7EBFF; /* IE5 & 6 */
	position: relative;
}
.menu li:hover {
	position: relative;
}
/* retain the hover colors for each sublevel IE7 and Firefox etc */
.menu li:hover > a {
	color: #000000;
	background-color: #D7EBFF;
}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu li ul {
	visibility: hidden;
	position: absolute;
	top: -4px;
	/* set up the overlap (minus the overrun) */
	left: 178px;
	_left: 180px;
	/* set up the overrun area */
	padding: 2px 5px 2px 2px;
	_padding: 2px;
	/* this is for IE to make it interpret the overrrun padding */
	background: #FFF  url(/img/transparent.gif);
	border: 1px solid #CCC;
}
.menu .no-bottom {
	border-bottom: 1px solid #FFF;
}

/* for browsers that understand this is all you need for the flyouts */
.menu li:hover > ul {
	visibility: visible;
}
/* for IE5.5 and IE6 you need to style each level hover */

/* keep the third level+ hidden when you hover on first level link */
.menu ul a:hover ul ul {
	visibility: hidden;
}
/* keep the fourth level+ hidden when you hover on second level link */
.menu ul a:hover ul a:hover ul ul {
	visibility: hidden;
}
/* keep the fifth level hidden when you hover on third level link */
.menu ul a:hover ul a:hover ul a:hover ul ul {
	visibility: hidden;
}
/* make the second level visible when hover on first level link */
.menu ul a:hover ul {
	visibility: visible;
}
/* make the third level visible when you hover over second level link */
.menu ul a:hover ul a:hover ul {
	visibility: visible;
}
/* make the fourth level visible when you hover over third level link */
.menu ul a:hover ul a:hover ul a:hover ul {
	visibility: visible;
}
/* make the fifth level visible when you hover over fourth level link */
.menu ul a:hover ul a:hover ul a:hover ul a:hover ul {
	visibility: visible;
}
