/* styling for the image wrapper  */
	#image_wrap {
		/* dimensions */		
		float:left;
		height:525px;
		margin:0 auto;
		min-width:600px;	
		width:75%;
		/* centered */
		text-align:center;
		background-image:url(../../../images/ajax-loader.gif);
		background-position:center;
		background-repeat:no-repeat;
	}
/* root element for scrollable */

.vertical {  
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 450px;	 
	width: 185px;
}

/* root element for scrollable items */
.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}
/*individual blocks of items*/

.gall_scrollblock {
	height:450px;
	}
/* single scrollable item */
.item {

	height:75px;
}
/* elements inside single item */
.item img {
	float:left;
	padding:0 7.5px 15px;
	width:75px;
	height:75px;
	cursor:pointer;
}

