/* Styles for scrolling layers  
	 Specify width and height in hold and scroll_window, and in clip for scroll_window. 
   hold div height accommodates scrollbar in this example    
*/
div#hold { 
	position: relative;
	width: 100%;
	height: 400px;
	overflow: hidden;	
	z-index: 100;
}

div#scroll_window	{ 
	position: absolute; 
	left: 0px; 
	top: 0px; 
	width: 100%; 
	height: 400px; 
	clip: rect(0px, 100%, 400px, 0px); 
	overflow: hidden;
	z-index: 1;	
}

div#scroll_layer	{ 
	position:absolute; 
	visibility:hidden; 
	left:0px; 
	top:0px; 
	z-index:1; 
}

table#scroll_table td {
	padding: 0;
	vertical-align: bottom;
	text-align: center;
}
table#scroll_table td .product-image {
	height: 280px;
	width: 260px;
	padding: 0 15px;
}
table#scroll_table td .product-title {
	height: 20px;
	margin: 10px 0 0 0;
}
table#scroll_table td .product-title h2 {
	padding: 2px 3px;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	margin: 0 20px;
}
table#scroll_table td h2 a:link, 
table#scroll_table td h2 a:active, 
table#scroll_table td h2 a:visited {
	text-decoration: none;
	color: #fff;
}
table#scroll_table td .product-colors img {
	cursor: pointer;
	border: 1px solid #D0D0D0;
}

/* Set small font-size or size/position of div's will be off in some browsers  */
div#scrollbar {
	width: 516px;
	height: 9px;
	margin: 370px auto;
	font-size: 1px;
	z-index: 2;	
}
div#track {
	position: relative;
	width: 500px;
	height: 12px;	
	background-color: #7B7C7C;	
	z-index: 1;
}
div#dragBar {
	position: absolute;
	left: 1px; 
	top: 1px;
	width: 100px; 
	height: 10px; 	
	background-color: #F4F4F4;
	cursor: pointer;  
	z-index: 1;
}
