#Navigation {
	display: block;	
}
#Navigation UL {
	list-style:none;
	display:block;
	margin:0;
	padding:0;
	background-color: #303135;      /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
	cursor: default;             /* gives an arrow cursor */
}
#Navigation UL LI {
	display:block;
	float:left;
	background:#303135;
	color:#FFFFFF;
	font-weight:bold;
	font-size:.8em;
	border-left:1px solid #FFFFFF;
	margin:0;
	padding:0;
	position: relative;
	min-height:29px;
}
#Navigation UL LI.first {
	border:none;
}
#Navigation UL LI.last {
	text-align:right;
}
#Navigation UL LI A {
	color:#FFFFFF;
	display:block;
	padding:6px 10px;
	text-decoration:none;
}
#Navigation UL LI LI A {
	padding:3px 10px;
}
#Navigation UL LI A:hover {
}
#Navigation UL LI IMG#NavSpacer {
	height:23px;
}


/* Second Level */
#Navigation UL ul {
  width: 160px;                 /* sets the size of the menu blocks */
  background-color: #600;      /* background color of drop down menus - a bg-color MUST be included for IE to work properly! */
  padding-left: 0px;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
  list-style: none;
}

#Navigation UL li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  display: none;               /* hides child menu blocks - one of the most important declarations */
  position: absolute;          /* make child blocks hover without leaving space for them */
  top: 29px;                    /* position slightly lower than the parent menu item */
  left: 0px;                  /* this must not be more than the width of the parent block, or the mouse will
                                  have to move off the element to move between blocks, and the menu will close */

  float:none;
  
}

#Navigation UL li li{
	background: #600 url('../navImages/NavDividerLevel1.gif') no-repeat bottom left;
	left:0px;
	padding:3px;
	padding-right:1px;
	width:156px;
	border:none;
	min-height: inherit;
}
#Navigation UL li li.last{
	background-image: none;
	text-align: left;
}
#Navigation UL li ul li> ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  position: absolute;
  top:0px;
  left:160px;
}

#Navigation UL li:hover, #Navigation UL li.CSSToHighlight {
  background-color: #600;      /* gives the active menu items a yellow background */
  color: #FFFFFF;                 /* makes the active menu item text black */ 
}

#Navigation UL UL UL {	background-color:#633; }
#Navigation UL li li li { background: #633 url('../navImages/NavDividerLevel2.gif') no-repeat bottom left; }
#Navigation UL li li:hover, #Navigation UL li li.CSSToHighlight { background-color:#633; }

#Navigation UL UL UL UL {	background-color:#900; }
#Navigation UL li li li LI { background: #900 url('../navImages/NavDividerLevel3.gif') no-repeat bottom left;; }
#Navigation UL li li li:hover, #Navigation UL li li li.CSSToHighlight { background-color:#900; }

#Navigation UL UL UL UL UL {	background-color:#C00; }
#Navigation UL li li li li li { background: #C00 url('../navImages/NavDividerLevel4.gif') no-repeat bottom left; }
#Navigation UL li li li li:hover, #Navigation UL li li.CSSToHighlight { background-color:#C00; }

#Navigation UL li li li li li:hover, #Navigation UL li li.CSSToHighlight { background-color:#333; }


#Navigation UL ul.CSSToShow {     /* must not be combined with the next rule or IE gets confused */
  display: block;              /* specially to go with the className changes in the behaviour file */
  
}
#Navigation UL li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements
                                  the > targets only the child ul, not any child uls of that child ul */
  display: block;              /* makes the child block visible - one of the most important declarations */
}
/* and some link styles */
#Navigation UL li a { font-size : 11px;color: #FFFFFF; display: block; text-decoration: none; }
#Navigation UL ul li a {width:100%;}
#Navigation UL li a:hover, #Navigation UL li a.CSSToHighLink {
  color:#FFFFFF;
  text-decoration:none;
}
#Navigation UL li:hover > a { color: #FFFFFF; } /* supports links in branch headings - must not be display: block; */
/* extra LI block for use on products page, not here */
#Navigation UL li.hide { display:none; }