.galleria {
	list-style:none;
	width:750px;
}
.galleria li {
	display:inline;
	width:80px;
	height:80px;
	overflow:hidden;
	float:left;
	margin:0 5px;
}
.galleria li a {
	display:none;
}
.galleria li div {
	position:absolute;
	display:none;
	top:0;
	left:180px;
}
.galleria li div img {
	cursor:pointer;
}
.galleria li.active div img,
.galleria li.active div {
	display:block;
}
.galleria li img.thumb {
	cursor:pointer;
	top:auto;
	left:auto;
	display:block;
	width:auto;
	height:auto;
}
.galleria li .caption {
	display:block;
	padding-top:.5em;
}
* html .galleria li div span {
	width:400px;
} /* MSIE bug */
div.scrollable { 
 
    /* required settings */ 
	float: left;
    position:relative; 
    overflow:hidden; 
    width: 600px; 
    height:120px;
	margin-bottom: 10px;
} 

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:18px;
	height:18px;
	background:url(images/left.png) no-repeat;
	float:left;
	margin:43px 10px;
	cursor:pointer;
	font-size:1px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -18px;		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(images/right.png);
	clear:right;	
}
 
/* 
    root element for scrollable items. Must be absolutely positioned 
    and it should have a super large width to accomodate scrollable items. 
    it's enough that you set width and height for the root element and 
    not for this element. 
*/ 
div.scrollable ul.items { 
    /* this cannot be too large */ 
    width:20000em; 
    position:absolute; 
} 
 
/* 
    a single item. must be floated on horizontal scrolling 
    typically this element is the one that *you* will style 
    the most. 
*/ 
div.scrollable ul.items li{ 
    float:left;
	border: 5px inset #00f;
	top: 5px;
} 
 
/* you may want to setup some decorations to active item */ 
div.scrollable ul.items li.active { 
    border: 5px outset #00f;
	top: -5px;
    background-color:#fff; 
}