@charset "utf-8";
/* CSS Document */
/* class for the menu bar */
.menu {
clear:both;
width:970px;
color:#ffffff; 
background-color:#61396E;
margin:0px;
padding:0px;
margin-bottom:2px;
margin-top:2px;	
font-family: Arial, Helvetica, sans-serif;
font-size: 1.0em;
position:relative;
z-index:100;
height:30px;
}
.menu a {
	color:#ffffff;
	text-decoration: none;
}
/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
	color:#fff;
	background:#61396E;
	font-weight: bold;
}
.menu :hover > a, .menu ul ul :hover > a {
	color:#fff;
	background:#61396E;
	font-weight: bold;
}

.menu ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

.menu li { /* all list items */
	float: left;
	position: relative;
	width: 12em;
	text-align:left;
}

.menu li ul { /* second-level lists */
	display: none;
	position: absolute;
	top:100%;
	left:0; 
	background-color:#61396E;
	padding:0.5em 0 1em 0;
}

.menu li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: 12px;
	left: 10px;
}

.menu li:hover ul, .menu li.over ul { /* lists nested under hovered list items */
	display: block;
}
