/* CSS Document */

.menu {	
	position:relative;
	z-index:100;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#FFFFFF;
	padding:12px 0px 0px 5px;
	float: left;
	font-weight:normal;
}


/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float:left;
	position:relative;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:normal;
}

/* style the links for the top level */
.menu a, .menu a:visited {
	display:inline;
	text-decoration:none; 
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:normal;
	color:#fff;
	min-height:12px;
	padding:0px 5px 0px 5px;

}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
	width:50px;
	padding:0px 5px 0px 5px;
	height:12px;
}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	left:5px; 
	width:200px;
	font-size:11px;
}

/* another hack for IE5.5 */
* html .menu ul ul {
	top:14px;
	t\op:14px;
}



/* yet another hack for IE5.5 */
}
* html .menu ul ul a{
	width:200px;
	w\idth:200px;
}
/* style the top level hover */
.menu a:hover{
	color:#6eb9f5;
	background-color:#2974ae;
}

.present {
	display:block;
	text-decoration:none; 
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:normal;
	color:#6eb9f5;
	min-height:12px;
	padding:0px 5px 0px 5px;
}
* html .present {
	width:50px;
	padding:0px 5px 0px 5px;
	height:12px;
}


.present2 {
	display:block;
	background-color:#2974ae;
	color:#fff; 
	padding:0px; 
	width:200px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight:normal;

/* yet another hack for IE5.5 */
}
* html .present2{
	width:200px;
	w\idth:200px;
}


