/* 
	THIS IS THE NAG DROPDOWN CODE - TRYING TO EDIT THIS TO MAKE IT ZNR STYLE
	ul.dropdown  "bg" colour changes the nav bar bg colour
	ul.dropdown "width"&"padding left" = change these to change the nav bar centering, and size
	ul.dropdown li "bg" colour changes the button bg colour
	ul.dropdown li:hover "bg" colour changes the button hover colour
*/

.transparent {
		filter: alpha(opacity=85);
		-moz-opacity: 0.85;
		-khtml-opacity: 0.85;
		opacity: 0.85;
}
/* 
	LEVEL ONE
*/
ul.dropdown                         { position: absolute; z-index: 2; color: #fff; background-color: #373636; width: 932px; margin: 0; list-style: none; 
														font-family: Trebuchet MS, tahoma, Arial, geneva; padding-left: 32px;}
ul.dropdown li                      { font-weight: 550; float: left; background: #373636; }
ul.dropdown a:hover		            { color: #fff; }
ul.dropdown a:active                { color: #1e90ff; }
ul.dropdown li a                    { display: block; padding: 8px 34px; border-right: 1px solid #333; color: #fff; }
ul.dropdown li:last-child a         { border-right: none; } /* Doesn't work in IE */
ul.dropdown li.hover,
ul.dropdown li:hover                { background: #681d22; color: white;  position: relative; }
ul.dropdown li.hover a              { color: white; }

/* 
	LEVEL TWO
*/
ul.dropdown ul 						{ width: 200px; visibility: hidden; position: absolute; top: 100%; left: 0; list-style: none; padding: 0 0; }
ul.dropdown ul li 					{ font-weight: normal; background: #000; color: #f6f6f6; 
									  			border-bottom: 1px solid #ccc; float: none; }
									  
                                    /* IE 6 & 7 Needs Inline Block */
ul.dropdown ul li a					{ border-right: none; width: 100%; display: inline-block; }  
