/* ----- Standard compliant css file, for FF and IE7 ----- */

/* --- List properties --- */

#nav {
	z-index: 3;
	padding: 0;
	margin: 0;
	position: relative;
	top: 1px;
	}
	
.menubar {     /* --- Expands the appearance of the menu --- */
	background-image: url(../images/menu_blue.jpg);
	background-repeat: repeat-x;
	margin: 0;
	height: 25px;
	width: 48px;;
	float: left;
	}
		
#nav ul{
	margin: 0;
	padding: 0;
	position: relative;
	/*font-family: Arial, Helvetica, Geneva, Swiss, SunSans-Regular;*/
	font-family: Tahoma, Geneva, sans-serif;
	}
	
/* --- Main menu properties --- */	
#nav li{
	/*padding: 1px;*/
	width: 115px;
	height: 25px;
	list-style: none;
	float: left;
	cursor: default;
	background-image: url(../images/menu_blue.jpg);
	background-repeat: repeat-x;
	position: relative;
	}

/* --- Drop down container --- */
#nav li ul{
	position: relative;
	z-index: 3;
	margin-top: 2px;
	padding-bottom: 8px;
	display: none;
	float: left;
	width: 115px;
	/*background-color: #99bbed;*/
	background-image: url(../images/drop_blue.jpg);
	background-repeat: repeat-y;
	border: 0;
	border-bottom: 1px solid #81a7c0;
}

/* ----- Items in dropdown container ----- */
#nav li li{
	/*border: 1px solid #000066;*/
	display: block;
	width: 115px;
	float: left;
	border: 0;
	background-color: transparent;	
	background-image: none;
}

/* ----- Dropdown effect from JS ----- */
#nav li>ul {
	top: auto;
	left: auto;
}

#nav li:hover ul { /*}, #nav li.over ul {*/
	display: block;
}

/* --- Main menu links --- */
#nav li a{
	font-weight: bold;
	padding-top: 5px;
	padding-bottom: 4px;
	text-align: center;
	font-size: 12px;
	text-decoration: none;
	/*color: #99bbed;*/
	color: #d3e7f4;
	display: block;
	width: 100%;
	}
	
#nav li a:visited{
	color: #d3e7f4;
	}
	
#nav li a:hover{
	color: #ffff33;
	text-decoration: underline;
	}
	
#nav li a:active{
	}
	
/* --- Sub menu links --- */
#nav li li a{
	font-weight: normal;
	text-align: left;
	margin: 3px 9px;
	font-size: 11px;
	text-decoration: none;
	color: #222;
	display: block;
	width: 100%;
	}
	
#nav li li a:visited{
	color: #222;
	}
	
#nav li li a:hover{
	font-weight: bold;
	color: #000066;
	text-decoration: underline;
	}
	
#nav li li a:active{
	}	
	
	

