#mainnav {
	height: 44px;
	font-size: 7pt;
}

/* -------------------------- */
/* We begin by styling the main navigation on the page... */
/* -------------------------- */
/* Overall main navigation styles */
#nav, #nav ul {
	z-index: 100; /* put on top of content/detail divs - issue with Google Maps API on Store Locator page? */
	float: left;
	list-style: none;
	line-height: 1em;
	color: #999;
	background-color: transparent;
	font-weight: bold;
	padding: 0;
	margin: 0;
}
/* -------------------------- */
/* The top main navigation links */
#nav img {
	border: 0;
}
#nav a {
	display: block;
	color: #242424;
	text-decoration: none;
	/* background-color: transparent; */
}
#nav .logo {
	margin-right: 100px;
}
#nav li {
	float: left;
	padding: 0;
}
#nav li.top {
	margin-right: 12px;
}
#nav .nolink {
	cursor: default;  /* remove hand cursor on items that aren't links */
}
/* -------------------------- */
/* The dropdown links lists */
#nav li ul {
	position: absolute;
	left: -999em;
	height: auto;
	width: 80px;
	font-weight: normal;
	background-color: #fff;
	margin: 0px;
}
#nav li li {
	border: 1px solid #bfbfbf;
	margin-top: 1px;
	padding: 0;
	width: 80px;
}
#nav li.first {
	margin-top: -1px;
	_margin-top: 0px;
}

#nav li ul a {
	padding: 5px 6px;
	xborder: 1px solid red; 
	width: 68px;
	* html width: 68px;  /* Hack for IE? */
}
/* This controls the flyout location of the second level dropdowns */
#nav li ul ul {
	margin: -2em 0 0 80px;
}
#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul {
	left: auto;
}
/* -------------------------- */
/* Here is the background of the main nav link while looking at the dropdown */
#nav li:hover, #nav li.sfhover {
	/* background-color: #fff; */
}
/* -------------------------- */
/* The dropdown links list colors */
#nav li ul.under a {
	color: #555;
	background-image: none;
}
#nav li ul.under a:hover {
	background: #f2f2f2;
	color: #000;
}
/* -------------------------- */
/* The background of the second level links while looking at the dropdown under it... */
#nav li ul.under li:hover a.daddy, #nav li ul.under li.sfhover a.daddy {
	color: #000;
}
#nav li ul.under li:hover, #nav li ul.under li.sfhover {
	color: #000;
	background-color: #fff;
}
/* Fix for IE7 */
#nav li:hover, #nav li.hover {
	position: static;
}
/* -------------------------- */

/* -------------------------- */
/* Hide the logo and home button */
body#home .logo, 
body#home .home 
{ visibility: hidden; }
/* -------------------------- */
