/* ================================================================ 
                         menu.css
						controls menu and drop-down behaviors
						    for www.streetsurfing.com
							special thanks to Stu Nicholls
								
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/final_drop.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
#wrapper .menuWrapper {
  	width: 900px;
	height: 25px;
	background-image:url(/res/ui/new_buttons-barBG.jpg);
	background-repeat:no-repeat;
}

 .menuWrapperFooter {
  	width: 900px;
	height: 25px;
	background-image:url(/res/ui/new_buttons-barBG.jpg);
	background-repeat:no-repeat;
}

.menu {
	width: 900px;
	font-size: 1.1em;
	font-weight: bold;
	position:relative;
	z-index:100;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding: 0;
	margin: 0;
	height: 25px;
	list-style-type: none;
}
.menu ul ul {
	width:125px;
}
/* float the list to make it horizontal and a relative positon
   so that you can control the dropdown menu positon */
.menu li {
	float: left;
	width:125px;           /*affects the spacing between menu items */
	position: relative;
}
/* style the links for the top level */
.menu a, .menu a:visited {
	display: block;
	font-size: 1em;
	text-decoration: none; 
	width: 115px;         /* width of actual menu items on the top level */
	height: 25px;
	padding-left: 10px; 
	line-height: 25px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
	width:125px;
	w\idth: 115px;
}
/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
background:#d4d8bd;
}
/* style the second level hover */
.menu ul ul a.drop:hover{
background:#c9ba65;
}
.menu ul ul :hover > a.drop {
background:#c9ba65;
}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
background:#e2dfa8;
}
/* style the third level hover */
.menu ul ul ul a:hover {
background:#b2ab9b;
}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
height:0;
top:25px;            /* affects start position below the category */
left:0; 
width:125px;
}
/* another hack for IE5.5 */
* html .menu ul ul {
  top: 25px;
  t\op:25px;
}
/* position the third level flyout menu */
.menu ul ul ul{
left:150px; 
top:0;
width:150px;
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
left:-150px;
}
/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {
	position:absolute; 
	top:0; 
	left:0;
  font-size: 100%;                 /* set up font and such again for IE 5.5 */
	font-family: Arial, sans-serif;
	font-size: 1em;
	color: #fff;
}
/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	background-image:url(../res/ui/new_buttons-subBG.jpg);
	color: #000;
	height:auto;
	line-height: 2em;
	border-top: none;
	width: 115px;
}
/* yet another hack for IE5.5 */
* html .menu ul ul a, 
* html .menu ul ul a:visited{
	width:125px;
	w\idth: 115px;
}
/* style the top level hover */
.menu a:hover, .menu ul a:hover, .menu ul ul a:hover{
  color:#fff; 
	background:#ccc;
	background-image:url(../res/ui/new_buttons-subBG-o.jpg);
}
/* hover for the top bar */
.menu :hover > a, .menu ul ul :hover > a {
	color: #fff;
	background-image:url(../res/ui/new_buttons-subBG-o.jpg);
}
/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{
	visibility: visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ 
visibility:visible;
}
/* STORE BUTTON */
#shopButton { 
	right:0px; 
	margin:0px; 
	width:25px; 
	background:url(../res/ui/button-shopping_cart2.gif) no-repeat;
}
#shopButton a{ 
	width:15px; 
}
#shopButton a:hover{
	background:url(../res/ui/button-shopping_cart2-o.gif) no-repeat;
}

/* THIS IS FOR THE PRESS PAGES NAV */
#pressNav {
	position:relative;
	width: 150px;
	margin-bottom: 30px;
	}
.pressNavLinks {
	padding:0px;
	}
.pressNavLinks ul {
	padding: 0;
	margin: 0;
	height: 25px;
	list-style-type: none;
}
.pressNavLinks li {
	height: 25px;
	background-color:#333;
	border: 1px solid #FFFFFF;
	margin-bottom: 5px;
}
.indent{
	padding-left: 10px;
	font-weight:bold;
}
.pressNavLinks a, .pressNavLinks a:visited {
	display: block;
	font-size: 1em;
	text-decoration: none; 
	width: 150px;         /* width of actual menu items on the top level */
	height: 25px;
	line-height: 25px;
}
.pressNavLinks ul a:hover{
	color:#fff;
	background-color: #FF0000;
	}