/**
 * Stylesheet for the Photo gallery
 * Mostly based on the jquery tools Scrollable original stylesheet
*/

/*
	gallery wrapper
*/
#gallery {
	border: 2px solid #7D6F6C;
	padding: 5px 0;
	width: 407px;
	text-align: center;
}

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width:405px;
	height:90px;

	/* custom decorations */
	border-bottom:1px solid #ccc;
}

/*
	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;
	left: 0;
	clear:both;
}

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

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

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

/*******************************************************
 * Buttons
 ******************************************************/
/* prev, next, prevPage and nextPage buttons */
a.browse {
	background-repeat: no-repeat;
	display:inline-block;
	width:18px;
	height:18px;
	margin:5px 5px;
	cursor:pointer;
	font-size:1px;
}
a.browse:hover { background-position: 0 -18px; }

a.right { background-image: url(../img/gallery/arrow/right.png); }
a.left { background-image: url(../img/gallery/arrow/left.png); }

.buttons { text-align: center;  width: 60px; margin: 5px auto; }

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

