/*
*  Navigation Menu Styles
*  Original work:  Dave Lindquist (http://www.gazingus.org)
*
*  Modified to support sub menus 2/27/2004 by Ryan Tyer
*
*/ 

/* The menu bar */
#menuDiv {
	position: absolute;
	height: 25px;
	top: 96px;
	font-weight: bold;
	color: white;
	padding: 0px 0px 0px 10px;
	border: 1px;
	width: 100%;
	border-color: white;
	z-index: 1;
}

.menuList {
	position: absolute;
	top: 1px;
	margin: 3px;
	padding: 0px;
}

.menuList ul {
	margin: 0px;
	padding: 0px;
	z-index: 1;
	border-top-left-radius: 5px;
  	border-bottom-left-radius: 5px;
  	border-top-right-radius: 5px;
  	border-bottom-right-radius: 5px;
}



.menuList li {
	display: inline;
	list-style: none;
	overflow:display;
}

/* The menu name */
a.actuator,a.standalone {
	background-color: transparent;
	color: white;
	font-size: 14px;
	line-height: 2em;
	margin: 0px;
	padding-right: 6px;
	padding-left: 10px;
	padding-top: 0px;
	text-decoration: none;
	border: none;
}


/* The menu name hovering */
a.actuator:hover {
	color: #FF9E1B;
	border: 0px;
	text-decoration: none;
}

/* for submenu */
a.subactuator {
	background-image: url(../images/expand1.png);
	background-repeat: no-repeat;
	background-position: 100% 0px;
}

/*
  This is what modifies the display position of the submenu.
*/
.submenu {
	width: 185px;
	font-family: sans-serif;
	font-weight: bold;
	background-color: #FAFAFA;
	color: #2F4F4F;
	border: 1px solid #CCCCCC;
	position: absolute;
	visibility: hidden;
	text-decoration: none;
	z-index: 10;
}

/* 
  The width on the menu's is used in the submenu class. 
  If you change it here, it must be changed in submenu.
*/
.menu {
	background-color: #FAFAFA;
	color: #2F4F4F;
	border: 1px solid #CCCCCC;
	position: absolute;
	visibility: hidden;
	z-index: 5;
	
}

.menu li a {
	border: 1px solid #FAFAFA;
	color: black;
	display: block;
	font-size: 12px;
	line-height: 1.75em;
	padding: 0px 10px;
	text-decoration: none;
	border-top-left-radius: 5px;
  	border-bottom-left-radius: 5px;
  	border-top-right-radius: 5px;
  	border-bottom-right-radius: 5px;
}

.menu li a:hover {
	color: #fd9d30;/* #FF9E1B; */
}

span.key {
	text-decoration: none;
}

.standalone {
	font-size: 35px;
	width: 100px;
	/* font-family: "Times New Roman", Times, serif; */
}

.standalone:hover {
	color: #FF9E1B;
	text-decoration: none;
}