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

/* style the outer div to give it width */
.menu {
	padding: 0px 0px 0px 85px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	z-index:100;
	padding:0;
	margin:0;
	list-style-type:none;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	position:relative;
	font-family: "Calibri", Trebuchet MS, Arial, Helvetica, sans-serif;
	float: left;
}
/* style the links for the top level */
.menu ul li a:link, .menu ul li a:visited, .menu ul li a:focus {
	display:block;
	font-size:12px;
	text-decoration:none;
	color:#fff;
	line-height:17px;
	font-family: "Calibri", Trebuchet MS, Arial, Helvetica, sans-serif;
	margin: 0px;
	padding-top: 8px;
	padding-right: 10px;
	padding-bottom: 8px;
	padding-left: 10px;
	border-right: 1px solid #C50041;
}

.menu ul li a.selected{
	color:#FFF;
	background-color: #C00;
}

.menu ul li a:hover {
	text-decoration:none;
	color:#fff;
	background-color: #820035;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	bottom:34px;
	left:0;
	width:200px;
}


/* style the second level links */
.menu ul ul a:link {
	color:#EEE;
	height:auto;
	line-height:normal;
	font-size: 12px;
	font-weight: normal;
	padding-top: 5px;
	padding-right: 8px;
	padding-bottom: 5px;
	padding-left: 8px;/* yet another hack for IE5.5 */
	background-color: #820035;
	width: 150px;
}

.menu ul ul a:visited {
	color:#EEE;
	height:auto;
	line-height:normal;
	font-size: 12px;
	font-weight: normal;
	padding-top: 5px;
	padding-right: 8px;
	padding-bottom: 5px;
	padding-left: 8px;/* yet another hack for IE5.5 */
	background-color: #820035;
	width: 150px;
}

.menu ul ul a:hover {
	color:#FFF;
	background-color: #C1004F;
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible;
height:auto;
}
