 
/**************************/
/**************************/
 #nav * {
	margin:0;
	display: block;
	padding-top: 2;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
 }
/**************************/
/**************************/
/* SET YOUR PREFERENCES!!! */
/* set your menu's font and colors here - the MENU MECHANICS  follow below */
#nav {
	behavior:url(scripts/csshover.htc);/* you must link to the hover.htc file for this menu to work in IE6 and earlier */
	/* need a copy? go to http://www.xs4all.nl/~peterned/htc/csshover.htc - copy the code into a text file and save it as csshover.htc */
 font-family: Verdana, Arial, Helvetica, sans-serif;
	background-color:transparent;    /* colors the div - div fills the parent element for a horizontal menu - set to background-color:transparent; if not needed */
	color: #FFFFFF;
	position: absolute;
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 0px;
	left: 30px;
	top: 85px;
	display: block;
 }

/**************************/
/**************************/
/* FIRST NAV - MENUS */
#nav ul {
	/*border:1px solid #000000;*/
	width: 100%;
	display: block;
	position: relative;
	white-space: nowrap;
 	}
#nav #currentpage a {
	color: #AFCA30;
}
#nav li {
	display: block;
	float: left;
	border-right-width: 0px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
	width: 100%;
 }                						    /* border-right is automatically removed from vert menu below  */ 
/**************************/
/**************************/
/* FIRST NAV - MENUS IN LINK STATES */
#nav li a {
	color:#FFFFFF;
	padding-top: 5px;
	padding-bottom: 5px;
	font-size: 11px;
	padding-right: 9px;
	padding-left: 0px;
	display: block;
	float: left;
	position: relative;
	text-transform: capitalize;
	letter-spacing: .05em;
 }
#nav li a:hover {
	color:#AFCA30;
 }

/**************************/
/**************************/
/* SECOND NAV - DROPDOWN ONE */
#nav ul li ul {
	width:160px;
	border:1px solid #FFFFFF;
	padding-top: 6px;
	background-image: url(../images/bkg_nav.png);
	background-repeat: repeat;
	padding-bottom: 0px;
	padding-right: 10px;
	text-align: left;
	float: left;
	padding-left: 0px;
	line-height: 12px;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 0px;
 }
#nav ul li a {
	color: #FFFFFF;
}
#nav li li {
	background-color:e4e4e4; /* lines between menu choices - set to 0px if not wanted */
	border-bottom-width: 0px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
	width: 160px;
	margin-right: 10px;
	padding-right: 10px;
}

/**************************/
/**************************/
/* SECOND NAV - DROPDOWN ONE - MENUS IN LINK STATES*/
#nav li li a {
	color:#FFFFFF;
	/* width: 140px; */
	padding-top: 0px;
	padding-bottom: 12px;
	font-size: 11px;
	font-weight: normal;
	padding-left: 15px;
	text-align: left;
	background-image: none;
	float: left;
 }
#nav li li a:hover {
	color:#AFCA30;
 }

/**************************/
/**************************/
/* THIRD NAV - POPOUT ONE - MENUS IN LINK STATES*/
#nav li li li a {
} /* SET BY EPHRAIM TO INHERIT THE STYLES FROM DROPDOWN ONE */
#nav li li li a:hover {
}
 
/**************************/
/**************************/ 
#nav ul li ul li ul  {
	top:-1px;
 } 
#nav li li li { 
 /* background-color:#EEB;          /* background color of the level 3 menu */
 }
#nav li li li li { 
 background-color:#DDA;         /* background color of the level 4 menu */
 }
#nav /* Want transparency on your menus? add the class 'transparent' to the multi_drop_menus div */
.transparent  ul  ul  li {
	/* note: the lower the value, the greater the transparency */
  opacity:0.9; /* CSS3 - range 0 to 1 */
	-moz-opacity:0.9; /* Firefox- range 0 to 1  */
	filter:alpha(opacity=80);  /* IE- range 0 to 100  */
  }
#nav /**************************/
/**************************/
/* ADDITIONAL PREFS FOR VERTICAL MENU - NO NEED TO TOUCH THESE IF LEVEL 1 IS HORIZONTAL */
.vertical  ul {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
 }
#nav.vertical li {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
 }
#nav.vertical ul ul  {
	top:-1px;            /* set to negative value of border-top for perfect pop-out alignment - set to 0 if border is 0 - don't remove!*/
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
 }
 
/* end vertical menu preferences */
/* END MENU PREFERENCES */
 
/**************************/
/**************************/
/* YOU ARE STRONGLY ADVISED NOT TO MODIFY THE CODE THAT FOLLOWS : ) */
/* the menu mechanics start here */
#nav {
	float:left;
	width:117px;
	}
#nav ul {
 float:left; /* makes ul wrap li */
font-size:1em; /* prevents inheritence from main text style sheet */
}
#nav li {
 float:left;  /*causes the list to align horizontally instead of stack */
 list-style-type:none; /* removes the bullet off each list item */
 position:relative; /* positioning context for the absolutely positioned drop-down */
 }
#nav a {
 display:block; /* makes link fill li so entire area is "hot" */
 text-decoration:none;  /* removes the underlining from the links */
 }

/* the horizontal menu ends here */

/**************************/
/**************************/
/* the DROP DOWNS start here */
#nav ul li ul {
	position:absolute;     /* positions the drop-down ul in relation to its relatively positioned li parent */
	border:1;         			/* stops inheritance from level 1 ul */
	margin-left:0px;        /* stops inheritance from level 1 ul */
	top: 0px; /* ADDED BY EPHRAIM to position the SECOND NAV in relation to the parent LIs height in the FIRST NAV */
	left: 117px; /* ADDED BY EPHRAIM to position the SECOND NAV - DROPDOWN in relation to the parent LI in the FIRST NAV */
 }
#nav ul li ul li {
	width:100%;
	padding:0 0 0 0px; /* stops inheritance */
	border-left:0; /* stops inheritance */
	border-right:0; /* stops inheritance */
 }
#nav ul li ul {display:none;} /* conceals the drop-down when menu not hovered */
#nav ul li:hover ul {
	display:block; /* shows the drop-down when the menu is hovered */
	z-index:1000; /* Safari needs this to display menu on top of other page elements */
	color: #AFCA30;
	} 

/**************************/
/**************************/
/* POP-OUTS start here */
body #nav ul li ul li ul  {
	position:absolute; /* associated menu with parent li positioning context */
	visibility:hidden; /* ensures that level 3 menu is not reveal when level 2 is reveled */
	left:93%;
	top:-3px; /* aligns level 3 and 4 pop-out with previous level */
	border-left-width: 1px;
	border-left-style: solid;
 }
#nav ul li ul li:hover ul {visibility:visible;} /* shows level 3 menu when associated level 2 li is hovered */
/* second and third level popouts here*/
#nav ul li ul li:hover ul li ul {
	visibility:hidden;
	color: #AFCA30;
} /* ensures that level 4 is not reveal when level 3 is reveled */
#nav ul li ul li ul li:hover ul {
	visibility:visible;
	color: #AFCA30;
}  /* shows level 4 menu when associated level 3 li is hovered */
/* the drop-downs end here */
 
/**************************/
/**************************/
/* extra styles for the VERTICAL menus */
#nav.vertical ul {
 border-left:0px; /* removes the border of the level 1 ul that can be used in the horizontal menu */
 margin-left:0;         /* removes left margin that is available on horizontal menu */
 }
.vertical ul { /* took off the id so the ul ul width setting in prefs was more specific */
	width:100%;
}
#nav.vertical li {
 position:relative; /* positioning context for the level 2 menu */
 width:100%;         /* set width of level 1 menu - MUST match left value in ul ul selector below */
 clear:left; /* makes the main menu stack - note: turning off floating (alternative way to create stacking) causes spacing problems in IE */
 border-right:0; /* removes right borders used by horiz level 1 */
}
#nav.vertical ul ul  {
 position:absolute; /* make ul position relative to parent li for all menu levels */
 left:100%;         /* align level 2 with level 1 - MUST match li width in selector above */
 top:-1px; /* aligns the level 2 pop-out */
 }
/* levels 2 -4 width */
#nav.vertical li li {
}
#nav.vertical ul ul ul {
 left:100%;          /* align level 2 with level 3 and 3 with 4 - MUST match li width in selector above */
 }
 
/* END MENU MECHANICS */
 
/**************************/
/**************************/
/* inevitable HACKS FOR IE6  and < */
* html #nav {
 z-index:1; /* IE6 won't respect high z-index on abs-pos'd child (ul li ul) without this on its parent rel-pos'd element */
 }				/* see http://www.last-child.com/conflicting-z-index-in-ie6/ */
* html #nav ul li ul {
  z-index:400; /*ensures menu is on top of other page elements */
 }
* html #nav a {
/* cannot find a way to get the top level 'a' to fill the unwidthed menu choices without drop-down in IE : ( */
} 
* html #nav.vertical a {
/* now hasLayout in IE - works on the vert menu as container has width */
 zoom:100%;
 } 
 * html #nav ul ul a { /* second level of horiz menu */
 zoom:100%;  /* now IE 'haslayout" - IE now makes background hot in horizontal menus */
 } 
#nav #currentpage a:hover {
	color: #FFFFFF;
}
