/*Product Navigation Menu */

div#listmenu
{
	position: absolute;
	top: 188px;
	left: 20px;
 	height:31px;
	width:240px;
	z-index:9000;
}


div#listmenu .preload
{
	position:absolute;
	top:-1000px;
	left:-1000px;
	background-image:url(../images/bg-pop.jpg);
}


div#listmenu ul
{
	margin:0 0 0 0;/* indents ul from edge of container - NOTE: diff value for IE in hacks below */
}

* html #listmenu ul
{
	float:left; /* makes the ul wrap the li's */
}

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 */
	padding: 0 0 0 0;
	margin: 0 0 0 0;
}



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

div#listmenu ul li ul
{
	position:absolute; /* positions the drop-down ul in relation to its relatively positioned li parent */
	top:2px;
	left:-4px; /*aligns the drop exactly under the menu */
	margin:0;
	height:392px;
	z-index:10; /* puts drop-down on top of div - Safari needs this as menu is 1px higher */
	width:240px;
	border-right:0; /* stops SCBs drops having two right borders - they inherit the border, IE doesn't */
	background-image:url(../images/bg-pop.jpg);
	background-repeat: no-repeat;
	padding:40px 0 0 0;
}


div#listmenu ul li ul li
{
	width:214px; /* makes the list items fill the list container (ul) */
	text-align:left;
	padding: 1px 4px 1px 10px;
	margin-left:8px;
}

div#listmenu ul li ul li:hover
{
	width:214px; /* makes the list items fill the list container (ul) */
	background-color:#E8BC51;
}

div#listmenu ul li ul li a
{
	width:214px; /* makes the list items fill the list container (ul) */
	display:block;
  color:white;
  font-size:.7em;
}

div#listmenu ul li ul li a:hover
{
  color:black;
}

div#listmenu ul li ul li:first-child
{
}

div#listmenu ul li ul li:last-child
{
  padding-bottom:5px;
}


/* make the drop-down display as the menu is rolled over */
div#listmenu ul li ul {display:none;} /* conceals the drop-down when menu not hovered */
div#listmenu ul li:hover ul {display:block; } /* shows the drop-down when the menu is hovered */


/* THE HACK ZONE - */
/* hack for IE (all flavors) so the menu has a vertical line on the left */


/* 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 #000;
	border-left:0px; /* stops the drop inheriting the ul border */
}

* html div#listmenu ul li ul li
{
	margin-left:4px;
}

/* 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 {
  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 div#listmenu ul li ul {padding-bottom:100px;}
   body div#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 */
