@charset "utf-8";
/* CSS Document */

/* Reset */

#mainmenu *, #mainmenu {
	padding: 0;
	margin: 0;
	list-style-type: none;
	font-size: 100%;
	width: auto;
	font-weight: normal;
	float: none;
	z-index: 1;
}

/* Layout. Don't touch this unless you understand it. */

ul#nav a {
	display: block;
	height: 100%;
	text-decoration: none;
}

/* all lists */
ul#nav, #nav ul {
	height: 1%;
	margin: 0;
	list-style: none;
	text-align: left;
}

/* all list items */
ul#nav li { 
	float: left;
	position: relative;
}

/* second-level lists */
ul#nav li ul { 
	display: none;
	position: absolute;
	left: 0;
	top: 2.8em; /* Set to Line Height of First Level List */
	text-align: left;
}


/* 3rd Level Menu */
ul#nav ul li ul {
	display: none;
	position: absolute;
}


/* Roll Over Effects */
ul#nav li:hover ul, #nav li.over ul { /* lists nested under hovered list items */
	display: block;
}

/* 3rd Level Menu Roll-Overs */
ul#nav li:hover ul ul, #nav li.over ul ul {
	display: none;
}

ul#nav li li:hover ul, #nav ul li.over ul {
	display: block;
}