/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
#scroll1.scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
} 
#scroll2 { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
} 
 
/* 
    root element for scrollable items. Must be absolutely positioned 
    and it should have a extremely large width to accomodate scrollable items. 
    it's enough that you set width and height for the root element and 
    not for this element. 
*/ 
#scroll1 div.items { 
    /* this cannot be too large */ 
    width:20000em; 
    position:absolute; 
} 
 #scroll2 div.items { 
    /* this cannot be too large */ 
    width:20000em; 
    position:absolute; 
}
/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 

 
/* you may want to setup some decorations to active the item */ 
.gallery {  
    /* required settings */ 
    position:relative; 
    overflow:hidden;
	width: 530px;
	height: 100px; 
} 
.gallery div.items { 
    /* this cannot be too large */ 
    width:20000em; 
    position:absolute; 
}

div.gallery div.items div { 
    float:left; 
} 
.gallery div.items img{
	padding: 3px;
	margin: 2px 4px 2px 0;
	border: 1px solid #333;
	cursor: pointer;
} 
.gallery div.items .active { 
    border: 1px dotted #666;
}
.image_wrap {
	border:1px solid #333333;
	margin: 3px 0;
	padding:0;
	text-align:center;
	width:520px;
	position: relative;
}
.image_wrap img {
	margin: 10px 10px 7px 10px;
	padding: 0px; 
	cursor: pointer;
}
.image_wrap .desc {
	position: absolute;
	bottom: 0;
	margin: 10px;
	background: #000;
	padding: 10px;
	font-style: italic;
	color: #ffffff;	
	font-size: 12px;
	text-align: left;
	width: 480px;
	height:  20px;
	
}
.random_image_display{
	width: 124px;
	margin: 0px auto; 
}
.gallery-block img{
	padding: 3px;
	border: 1px solid #000;
	margin: 5px auto;
}
.spacer{clear:both; height:1%;}