/* the horizontal menu starts here */
div#listmenu {
	width:900px; 	/* makes the div full width */
	float:left; /*makes the div enclose the list */
		 /* draws line on bottom edge of div */
	font-size: 70%;	/* SET FONT-SIZE HERE */
	letter-spacing:.2em;
	background-color:#CCF; /* colors the div */
	margin-top:0px; /* TEMPORARY - pushes the div away from the top of the browser for clarity in this example*/
	background-color:#ffffff; /* colors the div */
	height: 21px;
	text-transform:uppercase;
	}
div#listmenu ul {padding:0 0 0 10px;/* indents ul from edge of container */
	}
div#listmenu li {
	float:left;	/* causes the list to align horizontally instead of stack */
	position:relative; /* positioning context for the absolutely positioned drop-down */
	list-style-type:none;	/* removes the bullet off each list item */
	background-color:#FFA; /*sets the background of the menu items */
	background-color: #ffffff; /*sets the background of the menu items */
	color: #FFF;
	}
div#listmenu li:first-child {
	
	}
div#listmenu li:hover { 
	background-color:#97a2ab; /*sets the background of the menu items */
	}
div#listmenu a {
	display:block; /*makes list items in drop down highlight and wrapped lines indent correctly */
	padding:2px 20px 4px 23px; /*creates space each side of menu item's text */
	text-decoration:none;	 /* removes the underlining of the link */
	color:#780606;	/* sets the type color */
	}
div#listmenu a:hover {
	color:#222222;
	}
/* the horizontal menu ends here */



/* THE HACK ZONE - */

/* hack for IE (all flavors) so the menu has a vertical line on the left */
* html div#listmenu ul {
	
	float:left; /* makes the ul wrap the li's */
	 /* adds the rightmost menu vertical line to the ul */
	margin-left:0px; /* IE doubles the given value above - why? */
	}
/* add a top line to drops and pops in IE browsers - can't read :first-child */
* html  div#listmenu ul li ul {
	border-top:1px solid #069;
	border-left:0px; /* stops the drop inheriting the ul border */
	}
/* 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  div#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 div#listmenu ul li ul li ul {
  top:-1px;
  left:10em;
  }
  
  #listmenu ul li a#here {
  color: #FFF;
  background-color:#780606;
}