/* ------------------------------------------------------------------------------------------------------------------------ main site nav links */

a.footer:link, a.footer:visited {
color: #cc6600;
font-weight: bold;
}

a.footer:hover {
color: #666633;
font-weight: bold;
text-decoration: none;
}

a.common:link, a.common:visited, a.common:active {
color: #cc6600;
border-bottom: dashed 1px;
text-decoration: none;
font-weight: bold;
}

a.common:hover {
color: black;
font-weight: bold;
}

a.img:link, a.img:visited, a.img:active, a.img:hover {
text-decoration: none;
}

a.www:link, a.www:visited, a.www:active {
color: #666633;
font-style: italic;
text-decoration: none;
}

a.www:hover {
color: #000000;
text-decoration: underline;
}

a.solid:link, a.solid:visited, a.solid:hover, a.solid:active {
color: #cc6600;
font-style: italic;
}

/* ------------------------------------------------------------------------------------------------------------------------ youth min links */

a.nav-youth:link, a.nav-youth:visited, a.nav-youth:active {
color: white;
text-decoration: none;
}

a.nav-youth:hover {
text-decoration: underline;
}

a.footer-youth:link, a.footer-youth:visited, a.footer-youth:active {
color: #e0d08d;
font-weight: bold;
text-decoration: underline;
}

a.footer-youth:hover {
color: #FFFFFF;
font-weight: bold;
text-decoration: none;
}

a.common-youth:link, a.common-youth:visited, a.common-youth:active {
color: white;
font-weight: bold;
text-decoration: underline;
}

a.common-youth:hover {
font-weight: bold;
color: #FFFFFF;
text-decoration: none;
}

/* ------------------------------------------------------------------------------------------------------------------------ youth hedge postcards */

.nav_postcards {
font-size: .85em;
}


/* ------------------------------------------------------------------------------------------------------------------------ the horizontal menu */

.listmenu {
margin-bottom: 3em;
text-align: left;
float: left;
font-size: .75em;
font-family: Arial, Helvetica;
z-index: 2;
width: 880px;
}

.listmenu ul {
margin:0 0 0 0px;
}

.listmenu li {
float: left;
position: relative;
list-style-type: none;
background-color: #da8d42;
border: 1px solid black;
}

.listmenu li:hover { 
background-color: #f0f0e1;
}

.listmenu a {
display: block;
padding: 1px 6px;
text-decoration: none;
color: black;
}

.listmenu a:hover {
color: black;
}
/* the menu ends here ------------------------------------------------------------------------------------------------------------------------------------- */

/* the drop-down starts here ----------------------------------------------------------------------------------------------------------------------------- */

.listmenu ul li ul {
margin: 0px; 
z-index: 10; /* puts drop-down on top of div - Safari needs this as menu is 1px higher */
position:absolute; /* positions the drop-down ul in relation to its relatively positioned li parent */
width:12em; /*sets the width of the menu - in combo with the li's 100% width, makes the menu stack*/
border-right:0; /* stops SCBs drops having two right borders - they inherit the border, IE doesn't */
left:-1px; /*aligns the drop exactly under the menu */
}

.listmenu ul li ul li {padding:0;
width:100%; /* makes the list items fill the list container (ul) */
background-color: #f0bd8a;
}

.listmenu ul li ul li a {padding:1px .5em;}

.listmenu ul li ul li:first-child {
}

/* make the drop-down display as the menu is rolled over ---------------------------------------------------------------------------------- */

.listmenu ul li ul {display:none;} /* conceals the drop-down when menu not hovered */

.listmenu ul li:hover ul {display:block; } /* shows the drop-down when the menu is hovered */

/* pop-out starts here ------------------------------------------------------------------------------------------------------------------------------------- */

body .listmenu ul li ul li ul  {
position:absolute; 
visibility:hidden; /* same effect as display:none in this situation */
top:-1px;
left:10em;
}

.listmenu ul li ul li:hover ul {visibility:visible;} /* same effect as display:block in this situation */

/* second level popouts start here -------------------------------------------------------------------------------------------------------------------- */

.listmenu ul li ul li:hover ul li ul {visibility:hidden;}

.listmenu ul li ul li ul li:hover ul {visibility:visible;} /* same effect as display:block in this situation */

/* THE HACK ZONE ---------------------------------------------------------------------------------------------------------------------------------------- */
/* hack for IE (all flavors) so the menu has a vertical line on the left */
* html .listmenu ul {
float:left; /* makes the ul wrap the li's */
	}

/* add a top line to drops and pops in IE browsers - can't read :first-child */

* html  .listmenu ul li ul {
	}
/* the Tantek hack to feed IE Win 5.5-5.0 a lower value to get the pop-out to touch the drop-down */
* html  .listmenu ul li ul li ul { 
  left:9.85em; 
  voice-family: "\"}\""; 
  voice-family:inherit;
  left:10em;
  } 
/* and the "be nice to Opera" rule */
html>body .listmenu ul li ul li ul {
  left:10em;
} 

/* an Opera-only hack to fix a redraw problem by invisibly extending the ul */
/* the first-level drop stays open for 100px below the bottom but at least it works */
/* this can be reduced to as little as 22px if you don't have pop-outs */
/* the pop-out menu stays open for 22px below the bottom but at least it works */
	@media all and (min-width: 0px){
   body .listmenu ul li ul {padding-bottom:100px;}
   body .listmenu ul li ul li ul {padding-bottom:22px;}
   ul li ul li ul li ul li:hover {visibility:visible;} /* same effect as display:block in this situation */

   }
/*end Opera hack */
/* END OF HACK ZONE */
/* the drop-down ends here */
/* END OF LIST-BASED MENU */
 </style>
<style type="text/css">
/* finally after feeding values to all others, we deal with MAc5 IE */
/* IE5 Mac can't do drop-downs so we need to present the info in a different way*/
/* we present the drop down choices in a row and never show any second-level drops */
 /* this stylesheet is read by IE5 Mac only - hack omits 'url' and leave no space between @import and ("   */
@import("/scripts/ie51_menu_hack.css");