/* ** start of navigation bar style attributes */

#navigation, #navigation ul {
	float				  : none;
	text-align			  : left;
	width                 : 100%;
	list-style            : none;

	/* this controls the height of the navigation bar */
	line-height           : 1.2em;
	
	/* the backgound color for the navigation bar */
	/*background-color      : #FFFFFF;*/

	font-weight           : bold;
	padding               : 0px;
	margin                : 0px 0px 0px 55px;

}

#navigation a {
	display               : block;
	font-family           : Arial, Verdana, Helvetica, sans-serif;
	font-size             : .78em;
	text-decoration       : none;
	padding               : 0.5em;
	color                 : #FFCA2F;
}

#navigation li {
	float                 : left;
	padding               : 0em;
	color                 : #ffffff; /* foreground color of unhighlighted items */
	
}

/* actual dropdowns */

#navigation li ul {
	background-color	  : #000000;
	position              : absolute;
	left                  : -999em;
	height                : auto;
	width                 : 17em;
	font-weight           : bold;
	border-width          : 1px;
	border-color		  :	#CC9933;
	margin                : 0em;
	
	/* borders */
	border-style          : solid;
	border-width          : 1px;
	border-color          : #FFFFFF;

	/* soft white curve along the bottom
	background-image	  : url(../images/nav-bg.gif);
	background-repeat     : repeat-x;
	background-position   : bottom;  */

}

#navigation li li {
	width                 : 17em;
}

#navigation li ul a {
	width                 : 17em;
}

#navigation li ul ul {
	margin                : -2em 0 0 16.5em;
}

#navigation li:hover ul ul, #navigation li:hover ul ul ul, #navigation li.ie_hover ul ul, #navigation li.ie_hover ul ul ul {
	left                  : -999em;
	
}

#navigation li:hover ul, #navigation li li:hover ul, #navigation li li li:hover ul, #navigation li.ie_hover ul, #navigation li li.ie_hover ul, #navigation li li li.ie_hover ul {
	left                  : auto;
		
}

#navigation li:hover, #navigation li.ie_hover {

	/* the color of highlighted items in top and lower navigation*/
	background            : #222121;
	
	/* foreground color of highlighted items */
	color                 : #000000; }

	
#navigation li:hover

{background	  : #ffffff;
	text-decoration:underline;}
	

#navigation img {
	border                : none;
	margin-top            : 0em;
	margin-bottom         : 0em;
	margin-left           : 0em;
	margin-right          : 0.5em;
}

/* ** end of navigation bar style attributes */

/*

	note: because the navigation bar is "float : left", the first element
		  under the navigation bar needs to have the following styles so
		  as not to break the page layout:
	
			clear : left;

*/
