@charset "UTF-8";
/* CSS Document */


#menuh{
	position:relative;
	top:130px;
	right:12px;
	float:right;
}

#menu2{
	margin:auto;
	width:380px;
	margin:auto;
}

.moduletable_menu{
	position:relative;
	font-size: small;
	font-family: arial, helvetica, sans-serif;
	float:left;
}
		
.moduletable_menu a{
	text-align: center;
	display:block;
	border: 1px solid royalblue;
	white-space:nowrap;
	margin:0;
	padding: 0.3em;
}

/* menu at rest */
.moduletable_menu a:link, .moduletable_menu a:visited, .moduletable_menu a:active{
	color: white;
	background-color:royalblue;
	text-decoration:none;
}

/* menu on mouse-over  */
.moduletable_menu a:hover{
	color: white;
	background-color: cornflowerblue;
	text-decoration:none;
}	

/* attaches down-arrow to all top-parents */
.moduletable_menu a.top_parent, .moduletable_menu a.top_parent:hover{
	background-image: url(../navdown_white.gif);
	background-position: right center;
	background-repeat: no-repeat;
}

/* attaches side-arrow to all parents */
.moduletable_menu a.parent, .moduletable_menu a.parent:hover{
	background-image: url(../nav_white.gif);
	background-position: right center;
	background-repeat: no-repeat;
}

.moduletable_menu li{
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	width:150px;	/* width of all menu boxes */
}
/* NOTE: For adjustable menu boxes you can comment out the above width rule.
However, you will have to add padding in the "#menh a" rule so that the menu boxes
will have space on either side of the text -- try it */

.moduletable_menu ul{
	position:relative;
	min-height: 1px;		/* Sophie Dennis contribution for IE7 */
	vertical-align: bottom;		/* Sophie Dennis contribution for IE7 */
}

.moduletable_menu ul ul{
	position:relative;
	z-index:500;
	top:auto;
	display:none;
	padding: 1em;
	margin:-1em 0 0 -1em;
}

.moduletable_menu ul ul ul{
	top:0;
	left:100%;
	}

div.moduletable_menu li:hover{
	cursor:pointer;
	z-index:100;
}

div.moduletable_menu li:hover ul ul,
div.moduletable_menu li li:hover ul ul,
div.moduletable_menu li li li:hover ul ul,
div.moduletable_menu li li li li:hover ul ul
{display:none;}

div.moduletable_menu li:hover ul,
div.moduletable_menu li li:hover ul,
div.moduletable_menu li li li:hover ul,
div.moduletable_menu li li li li:hover ul
{display:block;}

/* End CSS Drop Down Menu */
