/*
----------------------------------------------------------------------------------
DROPDOWN MENU STYLES AND PROPERTIES (MAIN HORIZONTAL MENU)
----------------------------------------------------------------------------------
*/

/* minimum menu requirements for functionality */

.topmenu{
	list-style-type:none;
	float:left;
	position: static;           /* need this so that the z-index stuff works correctly */
	z-index: 20;                /* push the menu up in the layer order a bit so it isn't hidden behind anything */
								/* Browser plug-ins like Flash or Quicktime may not allow you to overlap then with this menu! */
}

.topmenuul{
	list-style-type:none;
	margin:0;
	padding:0;
	position: absolute;
}

.topmenuli{
	list-style-type: none;      /* disable the display of the list item bullets */
	float: right;                /* this is to allow for the horizontal main menu */
	background-color: #575757;  /* main menu item background color */
	color: #FFFFFF;             /* main menu item font color (not links) */
	margin: 0;   				/* spacing between main menu items */
	padding: 0;   				/* padding within main menu items */
	display: block;
	border-right: 1px solid;
}

.topmenutitle{
	display:block;
/*	width:100px; */

}

.submenuul{
	list-style-type:none;
	position:absolute;
	margin: 0;
	padding:0;
	display:none;
}

.submenuli{
	list-style-type:none;
	position:relative;
	margin: 0;
	padding:1px;
	display:block;
	border-bottom: 1px solid #AAAAAA;
}

.submenuli a{
	display:block;
	width:130px;
	margin: 0px 0px 0px 0px;
	padding: 0;
}

li:hover ul , li.over ul{ /* lists nested under hovered list items */
	display: block;
}

#dmenu li>ul { 
	top: auto;
	left: auto;
}

#content {
	clear: left;

}

/* menu design */

#dmenu {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:90%;
}

.topmenu {
	border: 0px solid #FFFFFF;
	margin: 0px 0px 0px 0px;    /* space around the list container */
	padding: 0px 0px 0px 98px;  /* space within the list container */
	background-color: #575757;  /* the default background color within the main menu container */
	color: #FFFFFF;             /* the default font color (not links) within the main menu container */
}

.topmenuul {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 90%;
	font-weight: normal;
	
}

.topmenutitle {
	text-indent:3px;
	text-decoration: none;
	/* border:1px solid #FFFFFF; */
	padding:3px;
	margin: 0px 4px 0px 0px;
	line-height:100%;
}

.topmenuli a{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 90%;
	background-color: #575757;  /* default background color for sub-menu container */
	color: #FFFFFF;             /* default font color (not links) for sub-menu container */
}
.topmenuli a:hover{
	text-decoration: none;
	background-color: #666666;
}

.topmenuli a:visited {
	color: #FFFFFF;
}

.submenuul {
	margin-top:-1px;
	background-color:#EEEEEE;
	border: 1px solid #575757;
	padding: 0;
	margin: 0;
}

.submenuli a{
	margin: 0;
	padding:3px;
	text-decoration: none;
	background-color: #EEEEEE;
	color: #575757;
}

.submenuli a:visited{
	text-decoration: none;
	color: #575757;
}

.submenuli a:hover{
	text-decoration: none;
	background:#575757;
	color: #FFFFFF;
}

