@charset "utf-8";

/****************************************************************
 
Generic CSS Document for a horizontal drop-down menu

***************************************************************/


/***********************************************

Main navigation code begins here ...

***********************************************/

#navigation  {
margin: -2px 0px 20px 0px;
border-top: none;
border-bottom: none;
border-left: none;
padding: 0;
width: 99%;
height: 4.2em;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 1.14em;
}


/* remove indents/bullets from ul and define width of menu */
#navigation ul{ 
		margin: 0;
		padding: 0;
		list-style: none;		
	}


/* transform the first-level list into a horizontal menu bar */
/* alternately I could use "display: inline" but for this menu, I will float them to the left */
/* z-index is set here to let all sub-menus override everything underneath */
#navigation li {
		float: left;
		position: relative;
		width: 13em;
		/* z-index: 200; /* this is the z buddy that fixed that $#!t in IE/Win 5.01 - 6 */
	}

/* second-level lists that are the sub-menu themselves */
/*postition sub-menu items - appearing to the right of parent menu item*/
#navigation li ul {
		position: absolute;
		left: 0;
		top: 3.8em;  /* this sets how much the sub-menu 'drops' below the main navigation */
		display: none;
	   }
	   
	   
/* menu stylings - borders, boxes, color, etc */
#navigation  ul li a {
		display: block;
		height: 3em;  /* note IE6/Win does not like the em height designation */
		text-decoration: none;
		border-left: 2px solid #f4f4f4;
		color: #000;
		padding: 6px 5px 5px 10px;
		font-weight: normal;
		/* border-bottom: 0; */

		}


/* menu hover stylings - changes background and text color for main & sub-menus */		
#navigation ul li a:hover {
				background: #f9f9f9 none repeat scroll 0%;
				color: #005470;
			   }	
		
#navigation  ul li ul li a{
padding: 5px 5px 5px 20px;
background-color: #f9f9f9;
border: 1px solid #ededed;
border-top: none;
		background-image: url(../images/rightarrow1.gif);
		background-repeat: no-repeat;
		background-position: 5px 10px;
color:#666;
}
#navigation  ul li ul li a:hover{
border-top: none;
border-top: none;
		background-image: url(../images/rightarrow1.gif);
		background-repeat: no-repeat;
		background-position: 5px 10px;
		background-color:#fff;
}	
/*  removed to end conflict with height designation in main (ul li a) style 
	plus this menu is not being optimized for IE 5.x */
/* Fix IE - Hide from IE Mac \*/
/* html ul li { float: left; height: 1%; } /* added 'height: 1%' to fix IE 5.01 jumping/flickering menu bug */
/* html ul li a { height: 1%; }
/* End */ 
	

/* make sub-menus appear on hover - added "li.over ul" to accomodate javascript IE/Win fix */
#navigation  li:hover ul, li.over ul { display: block; z-index: 200; }	

#navigation ul li.last a{
border-right: 1px solid #fff;
}

/***********************************************

Main navigation code ends here ...

***********************************************/

