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

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


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

Main navigation code begins here ...

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

#navigation  {
margin: 0px 0px 0px 0px;
border-top: none;
border-left: none;
padding: 0;
width: 100%;
height: 3.4em;
font-family: helvetica, Verdana, Arial, Helvetica, sans-serif;
background-color:#6B5F54;
background-image:url(../images/menubackground.png);
background-repeat: repeat-x;
background-position: 0px 0px;
}

.dropdown{
background-image:url(../images/rightarrow.png);
background-repeat: no-repeat;
background-position: 6px 13px;
padding: 0px 0px 0px 5px;
margin: 0px;
}
body #navigation .dropdown:hover{
background-image:url(../images/rightarrow.png);
background-repeat: no-repeat;
background-position: 6px 13px;
}
/* remove indents/bullets from ul and define width of menu */
#navigation ul{ 
		margin: 0px;
		padding: 0px;
		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;
		font-size: 1.25em;
		/* 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: 2.7em;  /* 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: 1.95em;  /* note IE6/Win does not like the em height designation */
		text-decoration: none;
		color: #444;
		padding: 10px 5px 0px 20px;
		margin: 0px 0px 0px 0px;
		font-weight: bold;
		/* border-bottom: 0; */

		}
#navigation ul li a.current{
		background-color: #6B5F54;
		color:#fff;
		 -moz-border-radius-topleft: 4px;
        -khtml-border-top-left-radius: 4px;
        -webkit-border-top-left-radius: 4px;
        border-top-left-radius: 4px;
        -moz-border-radius-topright: 4px;
        -khtml-border-top-right-radius: 4px;
        -webkit-border-top-right-radius: 4px;
        border-top-right-radius: 4px;
}
/* menu hover stylings - changes background and text color for main & sub-menus */		
#navigation ul li a:hover{
background: #6B5F54 none repeat scroll 0%;
color: #fff;
-moz-border-radius-topleft: 4px;
-khtml-border-top-left-radius: 4px;
-webkit-border-top-left-radius: 4px;
border-top-left-radius: 4px;
-moz-border-radius-topright: 4px;
-khtml-border-top-right-radius: 4px;
-webkit-border-top-right-radius: 4px;
border-top-right-radius: 4px;			
			   }	
#navigation ul li ul li{
font-size: 1em;
border-top: none;
letter-spacing: .5px;
}
#navigation  ul li ul li a{
padding: 10px 5px 13px 20px;
background-color: #EBE8E5;
border: 1px solid #ededed;
border-top: none;
color:#444;
font-size: 1em;
font-weight: bold;
font-family:  helvetica, verdana, Arial,  sans-serif;
background-image: url(../images/downarrow.gif);
background-repeat: no-repeat;
background-position: 5px 15px;
-moz-border-radius-topleft: 0px;
-khtml-border-top-left-radius: 0px;
-webkit-border-top-left-radius: 0px;
border-top-left-radius: 0px;
-moz-border-radius-topright: 0px;
-khtml-border-top-right-radius: 0px;
-webkit-border-top-right-radius: 0px;
border-top-right-radius: 0px;
}
#navigation  ul li ul li a:hover{
border-top: none;
background-image: url(../images/downarrow.gif);
background-repeat: no-repeat;
background-position: 5px 15px;
background-color:#fff;
color:#333;
font-weight: bold;
text-decoration: none;
-moz-border-radius-topleft: 0px;
-khtml-border-top-left-radius: 0px;
-webkit-border-top-left-radius: 0px;
border-top-left-radius: 0px;
-moz-border-radius-topright: 0px;
-khtml-border-top-right-radius: 0px;
-webkit-border-top-right-radius: 0px;
border-top-right-radius: 0px;
}	
/*  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 ul:hover, #navigation ul:hover li:hover a.dropdown {
background: #6B5F54 none repeat scroll 0%;
color: #fff;
-moz-border-radius-topleft: 4px;
-khtml-border-top-left-radius: 4px;
-webkit-border-top-left-radius: 4px;
border-top-left-radius: 4px;
-moz-border-radius-topright: 4px;
-khtml-border-top-right-radius: 4px;
-webkit-border-top-right-radius: 4px;
border-top-right-radius: 4px;			

}

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

Search bar CSS starts here. 

***********************************************/
#search{
width: 370px;
margin: 0px 0px 40px 635px;
padding: 5px 5px 5px 5px;
background-image:url(../images/search.png);
background-repeat: no-repeat;
background-position: -55px -2px;
}
#search span{
padding-right: 5px;
}