ul.dropdown 						{ margin: 0; padding: 0; }
ul.dropdown							{ font: 1.25em "Helvetica Neue",Helvetica,Tahoma,Arial,Verdana Sans-Serif; } 
/*#page-wrap							{ width: 800px; margin: 25px auto; }*/ 
ul.dropdown a						{ text-decoration: none; }
ul.dropdown							{ list-style-type: none; }

/* 
	LEVEL ONE
*/
ul.dropdown                         { position: relative; }
ul.dropdown li                      { font-weight: bold; float: left; zoom: 1; background: #FFF; color:#600; list-style-type:none; width:12.3em;}
ul.dropdown a:hover		            { color: #FFF; }
ul.dropdown a:active                { color: #FFF; } /*F3D673 is the gold color we used to use*/
ul.dropdown li a                    { display: block; padding: 4px 8px; border-right: 1px solid #EEE;}
ul.dropdown li:last-child a         { border-right: none; } /* Doesn't work in IE */
ul.dropdown li.hover,
ul.dropdown li:hover                { background: #ccc; color: #FFF; position: relative; } /*F3D673 is the gold color we used to use with white text*/
ul.dropdown li ul li:hover a		{ color: #FFF; }


/* 
	LEVEL TWO
*/
ul.dropdown ul 						{ width: 220px; visibility: hidden; position: absolute; top: 100%; left: 0; list-style-type:none;}
ul.dropdown ul li 					{ font-weight: normal; background: linear-gradient(#F9F9F9, #E5E5E5); color: #000; border-bottom: 1px dotted #999; float: none;} 
									  
                                    /* IE 6 & 7 Needs Inline Block */
ul.dropdown ul li a					{ border-right: none; width: 100%; display: inline-block; } 

/* 
	LEVEL THREE
*/
ul.dropdown ul ul 					{ left: 100%; top: 0; }
ul.dropdown li:hover > ul 			{ visibility: visible; }