/****************************************************
Standard menu styling for a jQuery Superfish menu

The first half of this file contains standard
build elements, the second half is for 'skinning'

****************************************************/

/* List elements for the top menu */
#topMenu li
{
	float: left;
	position: relative;
}

/* To fix the IE7 'sticky' bug, we need to set inherited visibility on the hover psuedo-tag */
#topMenu li:hover
{
	visibility: inherit;
}

/* Set the properties for distinct LI classes */
#topMenu li.first
{
	padding-left: 12px;
}

#topMenu li.noBackground
{
	background: none;
}

#topMenu li.last
{
	padding-right: 12px;
}

#topMenu li.rightAlign
{
	float: right;
}

#topMenu li.checkoutLink
{
}

#topMenu a
{
	display: block;
	position: relative;
}

/****************************************************
Submenus are stored in UL elements which are
positioned offscreen when the page loads.

Note: The submenu UL width must match the offset
value of sub-submenus in order for there to be no
overlap.

****************************************************/

/* Submenu UL */
#topMenu ul
{
	position: absolute;
	top: -999em;
	width: 250px;
}

/* Submenu LI */
#topMenu ul li
{
	width: 100%;
	text-align: center;
}

/* When the top li element is hovered over, change the ul
submenu element so that it's on the screen. Matches either on the
:hover psuedo element or jQuery will assign the topNavHover
class on mouse-over */
#topMenu li:hover ul, #topMenu li.topMenuHover ul
{
	top: 31px;
	z-index: 99;
}

ul#topMenu li:hover li ul, ul#topMenu li.topMenuHover li ul
{
	top: -999em;
}

ul#topMenu li li:hover ul, ul#topMenu li li.topMenuHover ul
{
	left: 250px;
	top: 0;
}

ul#topMenu li li:hover li ul, ul#topMenu li li.topMenuHover li ul
{
	top: -999em;
}

ul#topMenu li li li:hover ul, ul#topMenu li li li.topMenuHover ul
{
	left: 250px;
	top: 0;
}

/***************************************************************************************
Start of skinning section
***************************************************************************************/



#topMenu
{
	width: 984px;
	padding-left: 6px;
	padding-right: 0px;
	height: 41px;
}

#topMenu li
{
	line-height:31px;
	background: transparent url(../statimages/topMenuDivider.gif) no-repeat center right;
}


#topMenu a
{
	padding: 0 10px 0 10px;
}

#topMenu a, #topMenu a:visited
{
	color: #76787b;
}

#topMenu ul
{
	border: 1px solid black;
}


