/* CSS Document */

.menu {	
	position:relative;
	z-index:100;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#FFFFFF;
	padding:14px 0px 0px 7px;
	float: left;
	font-weight:normal;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
}
.menu ul ul {
	width:105px;
}

/* 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;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	background-color:#2974ae;
	color:#6caddf; 
	padding:0px; 
	width:200px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;

/* 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;
}
.menu ul ul a:hover{
	color:#fff; 
	background-color:#2974ae;
}
.menu ul ul :hover > a {
	color:#fff;
	background-color:#2974ae;
}
/* 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; 

}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
	visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ 
	visibility:visible;
}

.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;
}

