
/* 
	LEVEL ONE

ol.dropdown                         { position: relative; }
ol.dropdown li                      { font-weight: bold; float: left; zoom: 1; background: #ccc; }
ol.dropdown a:hover		            { color: #000; }
ol.dropdown a:active                { color: #ffa500; }
ol.dropdown li a                    { display: block; padding: 4px 8px; border-right: 1px solid #333;
	 								  color: #222; }
ol.dropdown li:last-child a         { border-right: none; } 
ol.dropdown li.hover,
ol.dropdown li:hover                { background: #F3D673; color: black; position: relative; }
ol.dropdown li.hover a              { color: black; }

*/
ol.dropdown li a:hover {
	color: #cb2e32;
	text-decoration: none;
}
	
ol.dropdown{
	z-index:500;
	height: 33px;
	list-style:none;
}
ol.dropdown li {
	float: left;
	
	padding-right: 15px;
	height:33px
}

ol.dropdown li a {
	font-size: 13px;
	font-family: Arial, Helvetica, sans-serif;
	color: #343536;
	text-align: left;
	text-decoration: none;
}
	

/* 
	LEVEL TWO
*/
ol.dropdown ol {
	
	z-index:501;
	
	list-style: none;
	visibility: hidden;
	position: absolute;
	top: 100%;
	
	width: 228px;
	
	background: url('../i/dropdown-bot.png') no-repeat;
	background-position: bottom;
	
	margin-left: -19px;
	
	padding-bottom: 22px; /*pad the height of bottom image*/
	
	border:none;
}

ol.dropdown ol li {
	border: none;
	
	font-size: 13px;
	
	color: #fff; 
	height: 30px;
	background: url('../i/dropdown-bg.png') repeat-y;
	
	float: none;
	
	padding: 0 19px 0 19px; /*19 = padding for highlight*/
}
									  

ol.dropdown ol li a {
	
	font-size: 13px;


	line-height: 20px;
	border-right: none;
	
	width: 180px;
	
	height: 20px;
	
	padding-left: 5px;
	padding-right: 5px;

	
	margin: 5px 0 5px 0;
		
	/* IE 6 & 7 Needs Inline Block */
	display: inline-block;
	color: #858585;
	
	
} 
ol.dropdown ol li a:hover {
	color: white;
	background-color: #cb2e32;
}

/* 
	LEVEL THREE
*/
ol.dropdown ol ol 					{ left: 100%; top: 0; }


ol.dropdown li:hover a{
	color: #cb2e32;
}

ol.dropdown li:hover li a{
	color: #858585;
}

ol.dropdown li:hover li a{
	color: #fff;
}

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



