/* CSS Document */

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/



.galeria { position:relative;}
.home .galeria { margin-top:35px;}
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 727px;
	height:129px; 
	background-image:url("../img/css-img/back-thumbs.png"); background-repeat:no-repeat;
}

/*
	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 the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
	top:10px;
	margin-left:25px;
	left: -42px;
	padding-left:42px;
}

.items div {
	float:left;
	width:775px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:15px 4px 20px 3px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	width:100px;
	height:75px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	cursor:pointer;
}

/* active item */
.scrollable .active {
	border:1px solid #a79261;
	position:relative;
	cursor:default;
}


#image_wrap {
		/* dimensions */
		width:677px;
		margin:15px 0 0px 0px;

		/* centered */
		text-align:center;
	}
