/* NAVIGATION */
#nav {
	height: 38px;
	width: 890px;
	background-color: #7797d6;
}

#nav ul {
	list-style: none;
	margin-left: 25px;
}

#nav ul li {
	float: left;
}

#nav ul li a {
	height: 38px;
	display: block;
}

#nav ul li a:hover {
	background-position: 0 -38px !important;
}

#nav ul li#home a {
	background:url(../images/nav/home.gif) no-repeat top;
	width:120px;
}

#nav ul li#screen_printing a {
	background:url(../images/nav/screenprinting.gif) no-repeat top;
	width:175px;
}

#nav ul li#request_quote a {
	background:url(../images/nav/request_quote.gif) no-repeat top;
	width:215px;
}

#nav ul li#quote_screenprinting a {
	background:url(../images/nav/quote_screenprinting.gif) no-repeat top;
	width:215px;
}

#nav ul li#quote_embroidery a {
	background:url(../images/nav/quote_embroidery.gif) no-repeat top;
	width:215px;
}

#nav ul li#embroidery a {
	background:url(../images/nav/embroidery.gif) no-repeat top;
	width:150px;
}

#nav ul li#contact-us a {
	background:url(../images/nav/contact.gif) no-repeat top;
	width:140px;
}

#nav ul li ul { /* second-level lists */
	position: absolute;
	width: 203px;
	margin: 0;
	background-color: #7e9ddc;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

/*HIDING AND SHOWING NAVIGATION LISTS ---> */
#nav ul li:hover ul ul, #nav ul li.sfhover ul ul {
	left: -999em;
}

/*show*/
#nav ul li:hover ul, #nav ul li.sfhover ul {
	left: auto;
}
#nav ul li:hover a, #nav ul li.sfhover a { background-position: 0 -38px !important; }
#nav ul li:hover ul a, #nav ul li.sfhover ul a { background-position: 0 0 !important; }
#nav ul li:hover ul a:hover, #nav ul li.sfhover ul a:hover { background-position: 0 - 38px !important; }