/* LEVEL ONE*/
ul.dropdown { 
	position: relative;
	top:-6px;
	z-index:999;
	margin-left:0px;
	padding-left:30px;
}

ul.dropdown li{ 
	font-weight: bold; 
	float: left; 
	background: #105286; 
	width: 70px; 
	height: 72px; 
	margin-right: 10px; 
	list-style: none; 
	color: white;
}

ul.dropdown li a { 
	display: block;  
	color: white; 
	width: 70px; 
	height: 72px; 
	border-width:3px;
	border-style: solid;
	border-color:#105286;
	background-color: #105286;
	text-decoration: none;
	text-align: center;
}

ul.dropdown li a:hover {
	color: #105286;
	border-width:3px;
	border-style: solid;
	border-color:#ffffff;
	background-color: #f7f2ee;
	text-decoration: none;
}

ul.dropdown a:active {
	color: #ffa500;
}



ul.dropdown li.hover, ul.dropdown li:hover {
	background: #f8f3ef; 
	color: black; 
	position: relative;
}

ul.dropdown li.hover a { 
	color: black; 
}

/* LEVEL TWO*/

ul.dropdown ul { 
	width: 95px; 
	visibility: hidden; 
	position: absolute; 
	top: 78px; left: -38px;
}

ul.dropdown ul li { 
	font-weight: normal; 
	background: #f6f6f6; 
	color: #000;  
	float: none;
	width:95px;
	height: auto;
}		
							  
/* IE 6 & 7 Needs Inline Block */
ul.dropdown ul li a { 
	border-right: none; 
	width: 100%; 
	display: inline-block;
	height: 40px !important;
	width:95px;
	background-color: #105286;
	text-decoration: none;
	border-bottom: 1px solid #ccc;
	text-align: center;
}

ul.dropdown ul li a:hover { 
	border-bottom: 1px solid #fff !important;
	
} 

/* LEVEL THREE*/
ul.dropdown ul ul { 
	left: 64%; 
	top: 0;
	width: 95px;
}

ul.dropdown ul ul li { 
	height: auto !important;
}

ul.dropdown ul ul li a { 
	min-height: 40px !important;
	height: auto !important;
}


ul.dropdown li:hover > ul { 
	visibility: visible;
}



