#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	/* line-height: 1; */
}

#nav, #nav ul {
	font-family: Arial, Helvetica, sans-serif; 
	font-size: 8pt; 
	font-weight: bold;
}

#nav a {
	display: block;
	margin: 0;
}

#nav a {
	color: #FFFFFF; 
	text-decoration: none;
}

#nav a:hover {
	color: #FF0000;
}

#nav li { /* all list items */
	float: left;
	position: relative;
}

/* menu colors */
#nav li, #nav li ul {
	background: #0099FF;
}
#nav li.active, #nav li.active ul, #nav li.active li {
	background: #66CC55;
}



#nav li ul { /* second-level lists */
	position: absolute;
	width: 20em;
	top: auto;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

/* second-level lists */
#nav li ul li { 
	height: 1em; /**/
	float: none;
	padding: 0.25em;
}

/* 
 pops submenus into view; works for all levels (up to four here) -- IE Overrides
*/
#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li:hover ul ul ul ul {
	left: -999em;
}
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li li li li:hover ul { 
	left: auto;
}

/* Third+ level lists - IE overrides */
#nav li ul ul { 
	margin: -1.6em 0 0 19.6em;
}


/* arrows for subcategories */
#nav ul li ul li a {
	width: 19em;	
}
#nav a.parent {
	background: transparent url(https://checkout.netsuite.com/c.305045/site/menu/rightarrow.gif) no-repeat scroll right center;
}
#nav a.parent:hover {
	background: transparent url(https://checkout.netsuite.com/c.305045/site/menu/rightarrow-red.gif) no-repeat scroll right center;
}

/* rounded corners */
#nav a img {
	border: none;
	height: 16px;
	margin-bottom: -3px;
}
#nav a img.tableft {
	background: transparent url(https://checkout.netsuite.com/c.305045/site/menu/left.gif) no-repeat scroll left top;
}
#nav a img.tabright {
	background: transparent url(https://checkout.netsuite.com/c.305045/site/menu/right.gif) no-repeat scroll right top;
}
