@charset "UTF-8";
/* CSS Document */

.productDiv {
	width:165px; 
	float:left;
	margin-right:5px;
	margin-left:11px;
	margin-bottom:20px;
	height:170px;
}


#handleTypes {
	text-align:left;
	padding-left:18px;
	padding-top:10px;
	background:url(../Images/03Products/arrowDown.jpg) no-repeat 30px 2px;
	
}

#hardwareTypes {
	text-align:left;
	padding-left:170px;
	padding-top:10px;
	background:url(../Images/03Products/arrowDown.jpg) no-repeat 480px 2px;
	
}

#plungerTypes {
	text-align:left;
	padding-left:470px;
	padding-top:10px;
	background:url(../Images/03Products/arrowDown.jpg) no-repeat 560px 2px;
	
}

#lockTypes {
	text-align:left;
	padding-left:100px;
	padding-top:10px;
	background:url(../Images/03Products/arrowDown.jpg) no-repeat 328px 2px;
	
}

#latchesTypes {
	text-align:left;
	padding-left:100px;
	padding-top:10px;
	background:url(../Images/03Products/arrowDown.jpg) no-repeat 283px 2px;
	
}

#hingesTypes {
	text-align:left;
	padding-left:250px;
	padding-top:10px;
	background:url(../Images/03Products/arrowDown.jpg) no-repeat 425px 2px;
	
}

#knobTypes {
	text-align:left;
	padding-left:120px;
	padding-top:10px;
	background:url(../Images/03Products/arrowDown.jpg) no-repeat 235px 2px;
	
}

#handwheelsTypes {
	text-align:left;
	padding-left:10px;
	padding-top:10px;
	background:url(../Images/03Products/arrowDown.jpg) no-repeat 115px 2px;
	
}

#leversTypes {
	text-align:left;
	padding-left:110px;
	padding-top:10px;
	background:url(../Images/03Products/arrowDown.jpg) no-repeat 190px 2px;
	
}

#feetTypes {
	text-align:left;
	padding-left:420px;
	padding-top:10px;
	background:url(../Images/03Products/arrowDown.jpg) no-repeat 641px 2px;
	
}

#catchTypes {
	text-align:left;
	padding-left:260px;
	padding-top:10px;
	background:url(../Images/03Products/arrowDown.jpg) no-repeat 375px 2px;

	
}


#nav{
	list-style:none;
	font-weight:normal;
	margin-bottom:10px;
	/* Clear floats */
	float:left;
	width:100%;
	/* Bring the nav above everything else--uncomment if needed.
	position:relative;
	z-index:5;
	*/
}
#nav li {
	float:left;
	padding-right:7px;
	padding-left:8px;
	position:relative;
	border-right:1px solid #666;
}
#nav a{
	display:block;
	text-decoration:none;
}
#nav a:hover{
	color:#66cc00;
	text-decoration:none;
}

/*--- DROPDOWN ---*/
#nav ul{
	background:#fff; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
	list-style:none;
	position:absolute;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
	border:1px solid #090;
	border-top:none;
	padding-top:5px;
	padding-bottom:5px;
	text-align:left;
	margin:0px;
}
#nav ul li{
	padding-top:1px; /* Introducing a padding between the li and the a give the illusion spaced items */
	float:none;
	border:none;
	margin:0px;
}
#nav ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}
#nav li:hover ul{ /* Display the dropdown on hover */
	left:-1px; /* Bring back on-screen when needed */
}
#nav li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	margin:0px;

}
#nav li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration:none;
	margin-left:-40px;
	*margin-left:0px;
	padding:2px;
}
#nav li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	
}
