/* - - - ADxMenu: BASIC styles - - - */
/* remove all list stylings */
.menu, .menu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float: left; /* move all main list items into one row, by floating them */
	position: relative; /* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5; /* thus we need to apply explicit z-index here... */
}

.menu li:hover {
	z-index: 10000; /* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal; /* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

.menu li li {
	float: none; /* items of the nested menus are kept on separate lines */
}

.menu ul {
	visibility: hidden; /* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0; /* while hidden, always keep them at the top left corner, */
	top: 0; /* 		to avoid scrollbars as much as possible */
}

.menu li:hover>ul {
	visibility: visible; /* display submenu them on hover */
	top: 100%; /* 1st level go below their parent item */
}

.menu li li:hover>ul {
	/* 2nd+ levels go on the right side of the parent item */
	top: 0;
	left: 100%;
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}

.menu, .menu ul {
	/* IE7 float clear: */
	min-height: 0;
}

/* -- float.clear.END --  */
/* -- sticky.submenu --
	it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu ul {
	background-image: url(empty.gif); /* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 10px 30px 30px 30px;
	margin: -10px 0 0 -30px;
}

.menu ul ul {
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
}

/* -- sticky.submenu.END -- */
/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */
/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */
/* - - - ADxMenu: DESIGN styles - - - */
/* 		designers start here...       */
/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */
.menu, 
.menu li,
.menu ul li {
	color: #000;
}

.menu {
	margin-left: 27px;
	margin-top: 6px;
}

.menu ul {
	width: 220px;
}

/* left */#side_nav .menu{	margin-left: 15px;}
/* left */#side_nav .menu li{	margin: 0; width: 181px;}
/* left */.leftnav_parent ul { width: 181px;}

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
	The LINKS (:visited and :link)
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
.menu a:link, .menu a:visited 
/*top level*/ {
	text-decoration: none;
	color: #fff;
	padding: 0.5em 26px 0.5em 26px;
	display: block;
	font-weight: bold;
	text-transform: uppercase;
	background-color: #999;
	position: relative;
	outline: none;
}

/* Sub level */
li.topnav_parent a:link, li.topnav_parent a:visited{background: #999 url(/images/menu-subarrow.gif) no-repeat 95% 50%;
}

/* Sub-Sub level */
li.topnav_parent li a:link, li.topnav_parent li a:visited{	background-image: none;}


/* left */li.leftnav_noflyout a:link, li.leftnav_noflyout a:visited
/* top level */{
	background: transparent url(../images/btn_sprite.png) no-repeat 0px -660px;
	width: 181px;	height: 18px;
	padding: 10px;
	color: #000;
}

/* left */li.leftnav_parent a:link, li.leftnav_parent a:visited
/* top level */{
	background: transparent url(../images/btn_sprite.png) no-repeat 0px -740px;
	width: 181px;	height: 18px;
	padding: 10px;
	color: #000;
}

/* left */li.leftnav_parent ul li a:link, li.leftnav_parent ul li a:visited, 
li.leftnav_parent.selected ul li a:link, li.leftnav_parent.selected ul li a:visited 
/* sub level */{
	background-image: none;
	background-color: #999;
	width: auto;
	padding: .5em 20px .5em 20px;
	margin: 0;
	color: #fff;
}


/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
	The LINKS (:hover, :active and :focus)
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
.menu a:hover, .menu li:hover>a,
.menu a:active, .menu a:focus 
/*top level*/  {
	background-color: #000;
	outline: none;
}

/* Sub level */	
li.topnav_parent a:hover, li.topnav_parent:hover>a,
li.topnav_parent a:active, li.topnav_parent a:focus{
	background: #000 url(/images/menu-subarrowON.gif) no-repeat 95% 50%;
}

	
/* Sub-Sub level */
li.topnav_parent li a:hover, li.topnav_parent li a:active, li.topnav_parent li a:focus{
	background-color: #000;
	background-image: none;
}


/* left */li.leftnav_noflyout a:hover, li.leftnav_noflyout a:active, li.leftnav_noflyout a:focus, 
li.leftnav_noflyout.selected a:link, li.leftnav_noflyout.selected a:visited 
/* top level */{
	color: #ffffff;
	background: transparent url(../images/btn_sprite.png) no-repeat 0px -700px;
}

/* left */li.leftnav_parent a:hover, li.leftnav_parent a:active, li.leftnav_parent a:focus,
/* top level */li.leftnav_parent.selected a:link, li.leftnav_parent.selected a:visited{
	color: #ffffff;
	background: transparent url(../images/btn_sprite.png) no-repeat 0px -780px;
}

/* left */li.leftnav_parent ul li a:hover, li.leftnav_parent ul li a:active, li.leftnav_parent ul li a:focus, 
li.leftnav_parent.selected ul li a:hover, li.leftnav_parent.selected ul li a:active, li.leftnav_parent.selected ul li a:focus
/* sub level */{
	background-color: #000;
}


/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
	END The LINKS (:link, :visited, :hover, :active and :focus)
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
	the LI stuff
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
.menu li {
	position: relative;
	margin-right: 5px;
	margin-left: 5px;
}

.menu li li {
	/* create borders around each item */
	border: 1px solid #fff;
}

.menu ul>li + li {
	/* and remove the top border on all but first item in the list */
	border-top: 0;
}

/* left */ #side_nav .menu li:hover>ul {
	visibility: visible; /* display submenu them on hover */
	top: 5px; /* 1st level go below their parent item */
	left: 95%;
}


.menu li li:hover>ul {
	/* inset 2nd+ submenus, to show off overlapping */
	top: 5px;
	left: 95%;
}

/* special colouring for "Main menu:", and for "xx submenu" items in ADxMenu
	placed here to clarify the terminology I use when referencing submenus in posts */
.menu>li:first-child>a, .menu li + li + li li:first-child>a {
}


/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%  */
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%  */
/* ADDED EXTRA */


a#work_gear:link, a#work_gear:visited {
	background: transparent url(/images/btn_sprite.png) no-repeat -400px 0px;
	width: 105px;
	height: 32px;
	padding: 0;
	margin: 0;
}

a#work_gear:hover, a#work_gear:focus , a#work_gear:active, /* Needs to be repeated in menuIE6 */
.menu li:hover>a#work_gear 
{
	background: transparent url(/images/btn_sprite.png) no-repeat -400px -40px;
	width: 105px;
	height: 32px;
	padding: 0;
	margin: 0;
}

#work_gear span{
	position: absolute;
	top: -999em;
	left: -999em;
}

a#apparel:link, a#apparel:visited {
	background: transparent url(../images/btn_sprite.png) no-repeat -400px -80px;
	width: 86px;
	height: 32px;
	padding: 0;
	margin: 0;
}

a#apparel:hover, a#apparel:focus , a#apparel:active, /* Needs to be repeated in menuIE6 */
.menu li:hover>a#apparel
{
	background: transparent url(../images/btn_sprite.png) no-repeat -400px -120px;
	width: 86px;
	height: 32px;
	padding: 0;
	margin: 0;
}

#apparel span{
	position: absolute;
	top: -999em;
	left: -999em;
}

a#hats:link, a#hats:visited {
	background: transparent url(../images/btn_sprite.png) no-repeat -400px -560px;
	width: 63px;
	height: 32px;
	padding: 0;
	margin: 0;
}

a#hats:hover, a#hats:focus , a#hats:active, /* Needs to be repeated in menuIE6 */
.menu li:hover>a#hats{
	background: transparent url(../images/btn_sprite.png) no-repeat -400px -600px;
	width: 63px;
	height: 32px;
	padding: 0;
	margin: 0;
}

a#hats span{
	position: absolute;
	top: -999em;
	left: -999em;
}

a#footwear:link, a#footwear:visited {
	background: transparent url(../images/btn_sprite.png) no-repeat -400px -160px;
	width: 99px;
	height: 32px;
	padding: 0;
	margin: 0;
}

a#footwear:hover, a#footwear:focus , a#footwear:active, /* Needs to be repeated in menuIE6 */
.menu li:hover>a#footwear{
	background: transparent url(../images/btn_sprite.png) no-repeat -400px -200px;
	width: 99px;
	height: 32px;
	padding: 0;
	margin: 0;
}

#footwear span{
	position: absolute;
	top: -999em;
	left: -999em;
}

a#accessories:link, a#accessories:visited {
	background: transparent url(../images/btn_sprite.png) no-repeat -400px -240px;
	width: 119px;
	height: 32px;
	padding: 0;
	margin: 0;
}

a#accessories:hover, a#accessories:focus , a#accessories:active, /* Needs to be repeated in menuIE6 */
.menu li:hover>a#accessories{
	background: transparent url(../images/btn_sprite.png) no-repeat -400px -280px;
	width: 119px;
	height: 32px;
	padding: 0;
	margin: 0;
}

#accessories span{
	position: absolute;
	top: -999em;
	left: -999em;
}

a#toys_collectibles:link, a#toys_collectibles:visited {
	background: transparent url(../images/btn_sprite.png) no-repeat -400px -320px;
	width: 176px;
	height: 32px;
	padding: 0;
	margin: 0;
}

a#toys_collectibles:hover, a#toys_collectibles:focus , a#toys_collectibles:active, /* Needs to be repeated in menuIE6 */
.menu li:hover>a#toys_collectibles{
	background: transparent url(../images/btn_sprite.png) no-repeat -400px -360px;
	width: 176px;
	height: 32px;
	padding: 0;
	margin: 0;
}

#toys_collectibles span{
	position: absolute;
	top: -999em;
	left: -999em;
}

a#home_office:link, a#home_office:visited {
	background: transparent url(../images/btn_sprite.png) no-repeat -400px -400px;
	width: 129px;
	height: 32px;
	padding: 0;
	margin: 0;
}

a#home_office:hover, a#home_office:focus , a#home_office:active, /* Needs to be repeated in menuIE6 */
.menu li:hover>a#home_office{
	background: transparent url(../images/btn_sprite.png) no-repeat -400px -440px;
	width: 129px;
	height: 32px;
	padding: 0;
	margin: 0;
}

#home_office span{
	position: absolute;
	top: -999em;
	left: -999em;
}

a#cat_racing:link, a#cat_racing:visited {
	background: transparent url(../images/btn_sprite.png) no-repeat -400px -640px;
	width: 105px;
	height: 32px;
	padding: 0;
	margin: 0;
}

a#cat_racing:hover, a#cat_racing:focus , a#cat_racing:active, /* Needs to be repeated in menuIE6 */
.menu li:hover>a#cat_racing{
	background: transparent url(../images/btn_sprite.png) no-repeat -400px -680px;
	width: 105px;
	height: 33px;
	padding: 0;
	margin: 0;
}

a#cat_racing span{
	position: absolute;
	top: -999em;
	left: -999em;
}

/**************** END ADDED EXTRA ****************/










