/*------------------------------------------------------------*/
/*               Basic text formatting for menus              */
/*                                                            */
/*              Change colors, fonts, borders, etc.           */
/*------------------------------------------------------------*/

.menuActuator a { 
	color: #333;
	font-weight:bold;
	font-size:12px;
	font-family: arial;
}

.menu {
	background-color: #EEEFF0;
	/* for ns4 */
	layer-background-color: #EEEFF0;
 	border-style: outset;
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	padding: 0;
	text-align: left;
	z-index: 201; 
}
.menu ul {
	list-style-image:none;
	list-style-position:outside;
	list-style-type:none;
	padding: 0;
	margin: 0;
}

.menu li {
	display: inline;
}

.menu a {
	display: block;
 	font-family: verdana, arial, tahoma, sans-serif;
 	text-decoration: none;
 	color: #000000;
 	font-size: 11px;
	border-top: 1px solid #B0B2B4; /* color of border between cells*/
 	padding: 4px 0 4px 6px;
 	width: 200px;
}

.menuTopBordered a {
	border-top: 4px solid #B0B2B4;
}

.menu a:hover, .menu .hover {
	display: block;
 	text-decoration: none;
 	color: #000000;
 	background-color: #B0B2B4;
}

.menuFrame {
	overflow: hidden;
	position: absolute;
	z-index: 200; 
	top: 0;
	left: 0;
}
		
body {
	margin: 0;
	padding: 0;
}

*.menuFrame *.menu *.menuItem {
	height: 18px;
	background-color: #FFFEF0;
	height: 18px;
}

/** Added for drop down menu -- iFrame to hide select boxes**/
.menuIFrame {
	z-index: 99;
	display: none;
	position: absolute;
	background-color: transparent;
}
