/****************************************************
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: 340px;
}

/* 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: 983px;
	padding-left: 0px;
	padding-right: 0px;
	height: 40px;
	background: white url(../statimages/navtopbg.png) no-repeat top left;
}

#topMenu li
{
	line-height:31px;
	background: transparent url(../statimages/topMenuDivider.gif) no-repeat center right;
    color:#FFF;
    	padding: 0 7px 0 7px;
        z-index:50;

}


#topMenu a
{
	padding: 0 0px 0 0px;
        z-index:50;
}

#topMenu a, #topMenu a:visited
{
	color: #fff;
}

#topMenu ul
{
	border: 1px solid black;
    background-color:#0095bf;
	z-index: 99;
}

#topMenu ul li
{
    text-align:left;
    color:#FFF;
	line-height:25px;
    background-image:none !important;
        z-index:50;
}

#topMenu ul li a:hover
{
    color:#f2f2f2;
}



