/* SCROLLING HORIZONTAL    */


/* Styles for scrolling layers  
	 Specify width and height in hold and wn, and in clip for wn */
div#hold	{ 
	position:relative;
	overflow:hidden;
	width:640px;
	height:140px;
	z-index:100
	}
div#wn	{ 
	position:absolute; 
	left:0px;
	top:0px; 
	width:640px;
	height:140px; 
	clip:rect(0px, 640px, 140px, 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 */
#t1 td {
	padding: 0 7px;
	height:140px; 
	vertical-align:middle;
	text-align:center
}  

td#leftArrow{
	width: 50px;
	text-align: center;
}
td#rightArrow{
	width: 50px;
	text-align: center;
}
td#gallery{
	text-align: center;
}




/* SCROLLING VERTICAL    */
div.content	{ 
	position:absolute; 
	left:0px; 
	top:0px; 
	z-index:1; 
	}
div#wn2	{ 
	position:relative; 
	width:750px; 
	height:256px; 
	clip:rect(0px, 750px, 256px, 0px); 
	overflow:hidden;	
	z-index:2; 
	}
div#wn3	{ 
	position:relative; 
	width:750px; 
	height:230px; 
	clip:rect(0px, 750px, 230px, 0px); 
	overflow:hidden;	
	z-index:2; 
	}
.arrowScrollingV {
	margin: 15px 5px;
}
