@charset "utf-8";
/* CSS Document */

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	background-color:#fff;
}

#nav a {
	text-decoration:none;
	color:#000;
	display: block;
}

#nav a:hover{
	color:#000;
}

.navMenuItems{
	font-weight:bold;
	width:140px;
	padding:3px 5px 3px 5px;
	border-bottom:1px solid #000;
	background-color:#fff;
	color:#000;

}

.navMenuItems:hover{
	background-color:#999;
	color:#FFF;
}

#nav li { /* all list items */
	float: left;

}

#nav li ul { /* second-level lists */

	border:1px solid #000;
	border-bottom:none;
	position: absolute;
	width: 150px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 130px;
}

#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 { /* lists nested under hovered list items */
	left: auto;
}

#nav li:hover, #nav li.hover {
    position: static;
}

.navDaddy {
	background-image: url("../images/nav_arrow.gif");
	background-repeat:no-repeat;
	background-position:center right;
}

#navspacerleft{
	width:70px;
	height:28px;
	text-indent:-9999px;
}

#navHome{
	display:block;
	width:81px;
	height:28px;
	text-indent:-9999px;
}

#navAbout{
	display:block;
	width:88px;
	height:28px;
	text-indent:-9999px;
}

#navShowroom{
	display:block;
	width:97px;
	height:28px;
	text-indent:-9999px;
}

#navStools{
	display:block;
	width:150px;
	height:28px;
	text-indent:-9999px;
}

#navCatalogs{
	display:block;
	width:87px;
	height:28px;
	text-indent:-9999px;
}

#navCustom{
	display:block;
	width:118px;
	height:28px;
	text-indent:-9999px;
}

#navContact{
	display:block;
	width:107px;
	height:28px;
	text-indent:-9999px;
}

#navspacerright{
	width:74px;
	height:28px;
	text-indent:-9999px;
}


