/* CSS Style Sheet For 2 Level Menu System */

#nav,  										/*	 all lists								*/
#nav ul {						 
	padding: 		1px 2px 1px 2px;
	margin: 		0;
	list-style: 	none;
	line-height: 	1;
	}

#nav a {
	display: 		block;
	background:		#B09C78;				/* 	Color Before Hoover						*/
	border:         1px solid Black;        /* 	Space/Border width between 1st level menu items    	*/
	padding:        1px 2px 1px 2px;        /*       Top, Right, Bottom, Left                                                     	*/
	}
	
#nav li { 									/* 	all list items							*/
	float: 			left;
}

#nav li ul { 						 			/* 	second-level lists 							*/
	position: 		absolute;
	background: 	#E5EBED;				/*    	Background Color Before Hover Effect			*/
	width: 			125px;					/*      Controls width of dropdown effectively making it a vertical list - 1 per line */
	left: 			-999em; 				/* 	using left instead of display to hide menus 			*/
	font-family:    Arial;					/*	Text Font								*/
	font-size:		10px;					/*	Text Size								*/
}

#nav li ul a  {									/*  	Controls 2nd Level Menu Items displayed column width	*/
  color:           	black;					/*	Color Of Text							*/
  display:         	block;					/*      BLOCK    for horizontal menu presentations                    	*/
											/*      ONLINE   for vertical   menu presentations                   	*/
  width:           	117px;                  /*      Text Width of column - Width above - left and right pad	*/
  padding:      	4px 4px 4px 4px;		/*	Pad Areas Around The Text					*/
  border-color: 	white;					/*	Border Color							*/
  border-width:     1px;					/* 	Border Width							*/
  text-align:		left;					/* 	Align Text Left When Displayed				*/
  text-decoration:	none;       			/*	Do Not Underline Links   					*/
  list-style-type:	none}					/*	Turns Off List Bullets						*/
  
#nav li:hover ul,								
#nav li.sfhover ul { 	
	left: 			auto;					/*	Makes Second Level Lists Displayable On Hover		*/
}	

#nav a:hover, li li li.sfhover {
  background: white}                 		/* 	Specifies Hover background color				*/

	image {border-width:	1px;				/*	Image Border Size						*/
        border-color:   black;				/*	Image Border Color						*/
		}