
div.scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    width: 850px; 
    height:600px; 
	padding: 20px 20px 20px 10px;
    
} 
 

div.scrollable div.items { 
    /* this cannot be too large */ 
    width:10000em; 
	 position:absolute; 

} 
 

div.scrollable div.items div { 
    float:left; 
    width: 100px;
	height: 151px;
	padding: 3px;
	
} 
div.scrollable div.items div img{ 
    position: relative;
    float:left; 
	width: 70%;
	height: 70%;
	z-index: 100;
	margin-top: 300px;
	opacity:0.8;filter:alpha(opacity=80)
} 
 
/* you may want to setup some decorations to active item */ 
div.items div.active { 
    background-color:#fff; 
    width: 250px;
	height: 376px;
    margin-left: 0px;
	margin-right: 150px


}

div.items div.active img.act{ 
    position: relative;
	background-color:#fff; 
	 width: 250px;
	height: 376px;
	z-index: 999;
	margin-top: 0px;
    z-index: 1;
	opacity:1.0;filter:alpha(opacity=100)
	
}


