/* -------------------------------- Horizontal Navigation Vertical Drop Down ---------------------------------*/
/*----------------- START DROPDOWN NAV -------------------*/
#dropNavContainer { /* Drop Down Container for td */ /* Keep in here in case a different background or color is wanted here later */
	color: #000000;
	vertical-align: middle;
	width: 800px;
}
#dropNav { /* Drop Down */
	z-index: 1000;
	width: 795px;
 	/*margin-top: -10px; /* You MIGHT need this for IE, otherwise there is a gap above the nav */
}
/*------- START MAIN BUTTON SECTION -------*/
#dropNav ul { /* Sets unordered list for links in horizontal bar */
	margin: 0;
	padding: 0;
	list-style: none;
}
#dropNav ul li { /* Sets list items for links in horizontal bar */
	float: left; /*You need this for FireFox - affects Horizontal Alignment */
	position: relative;
	width: 180px; /* Set to the same size as your individual <li> tags in the html itself IF you want the drop downs to be uniform to your container. */
}
#dropNav ul li a:link,
#dropNav ul li a:visited { /* Settings for links in horizontal bar */
	display: block;
	color: #000000;
	font-size: 12px;
	font-weight: normal;
	text-decoration: none;
	background: #978B50 /*url('images/fadeBG.gif') repeat-x top left*/;
/*	border: 1px solid #877126;*/
	padding: 5px 0 5px 0;
}
#dropNav ul li a:hover { /* Settings for hover state on links in horizontal bar */
	color: #000000;
	font-weight: normal;
	background: #ffffff /*url('images/fadeBG.gif') repeat-x top left*/;
}
/*-------- END MAIN BUTTON SECTION --------*/
/*----- START DROPDOWN MENUS SECTION ------*/
#dropNav ul {
}
#dropNav li ul { /* Sets list items in drop down menus */
	position: absolute;
	top: 23px; /* Adjusts the position of the drop down menus */ /* Change 20px to -1px for vertically stacked Main Buttons */
	left: 0; /* controls the offset from the bottom of the main button */ /* Change -1px to 1 less then the actual width of the Dropdown menu to have them work with vertically stacked Main Buttons */
	width: 160px; /* Sets the width of the overall Drop Down Menu */
	display: none; /* Hides the drop down menus when not under the mouse*/
	text-align: left;
	z-index: 7500;
}
#dropNav li ul li a:link,
#dropNav li ul li a:visited { /* Sets list items within for links in drop down menus */
	display: block;
	color: #000000;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
	background: #978B50 /*url('images/fadeBG.gif') repeat-x top left*/;
/*	border: none;*/ /* Needed if you use a border on the above UL LI tag and don't want border here */
	border-bottom: 1px solid #978B50;
	padding: 4px;
	padding-top: 5px;
	z-index: 6250;
/* Has this transparency deal ever worked for anyone??? */
	filter: alpha(opacity=100); /* Adjusts the transparancy of the drop down menus (IE) */
	-moz-opacity: 10.0; /* Adjusts the transparancy of the drop down menus (FireFox) */
}
#dropNav li ul li a:hover { /* Dropdown Menus Hover State - Design */
	color: #000000;
	background: #ffffff /*url('images/fadeBG.gif') repeat-x top left*/;
}
/*------ END DROPDOWN MENUS SECTION -------*/
/*------- START DO NOT EDIT SECTION -------*/
/* DO NOT EDIT -- */		
#dropNav li:hover ul,
#dropNav li.over ul {
	display: block;
}
/* DO NOT EDIT -- */
/* DO NOT EDIT -- Fix IE. Hide from IE Mac \*/
* html #dropNav ul li { 
	float: left;
	height: 1%;
	z-index: 6000;
}
* html #dropNav ul li a {
	height: 1%;
}
/* DO NOT EDIT -- End Fix IE. Hide from IE Mac */
/*-------- END DO NOT EDIT SECTION --------*/
/*------------------ END DROPDOWN NAV --------------------*/
#navList { /* This is an id called by the javascript. It needs to be in the <ul> to call from the script properly. Probably doesn't NEED to be in this CSS though. */
}
/* -------------------------------- End Horizontal Navigation Vertical Drop Down ---------------------------------*/