/* Styles for scrolling layers  
	 Specify width and height in hold and wn, and in clip for wn */
div#hold	{ 
	position:relative; overflow:hidden;
	width:728px; height:102px; z-index:100
	}
div#wn	{ 
	position:absolute; 
	left:0px; top:0px; 
	width:728px; height:102px; 
	clip:rect(0px, 728px, 102px, 0px); 
	overflow:hidden;	
	z-index:1; 
	}
div#lyr1	{ 
	position:absolute; visibility:hidden; 
	left:0px; top:0px; 
	z-index:1; 
	}
  
/* table containing images. adjust according to your images' sizes and numbers */
table#t1 { 
	/* width:700px; */
}
table#t1 td { width:104px; height:102px; vertical-align:middle; text-align:center; padding:0 2px 0 0; }
table#t1 td a img { border:1px solid #ccc }
table#t1 td a:hover img { border:1px solid #000 }
table#t1 td a.thumbImage_active img { border:1px solid #333 }

#scrollArrows {
	width:728px;
}

#scrollArrows p { margin:0 }

#scrollArrowLeft {
	float:left;
}

#scrollArrowRight {
	float:right;
}

#scrollArrowLeft a {
	display:block;
	width:67px;
	height:26px;
	background:url("../images/scrollArrow-left.gif") transparent no-repeat;
	text-indent:-1000px;
}

#scrollArrowLeft a:hover { background-image:url("../images/scrollArrow-left-on.gif"); }

#scrollArrowRight a {
	display:block;
	width:67px;
	height:26px;
	background:url("../images/scrollArrow-right.gif") transparent no-repeat;
	text-indent:-1000px;
}

#scrollArrowRight a:hover { background-image:url("../images/scrollArrow-right-on.gif"); }

#scrollArrowLeft .hideScrollArrow { background-image:none }
#scrollArrowRight .hideScrollArrow { background-image:none }
#scrollArrowLeft .hideScrollArrow:hover { background-image:none }
#scrollArrowRight .hideScrollArrow:hover { background-image:none }

#lyr1 { visibility: visible; left: -728px; top: 0px; }
