
#picholder {
	clear: both;
	min-height: 650px;
	position: relative;		
	background-image: url("loader.gif");
	background-repeat: no-repeat;
	background-position: center;
}

#pictr {
	/*position: absolute;*/
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin-top: auto;
	margin-bottom: auto;
	margin-left: auto;
	margin-right: auto;
}

.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 615px;
	height:100px;
	border:0;
}

.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:10px 5px 10px 26px;
	background-color:#333;
	padding:2px;
	border:1px solid black;
	cursor:pointer;
	width:50px;
	height:50px;
	opacity: 0.5;
	filter:alpha(opacity=50);
	-moz-opacity:0.5;
	-khtml-opacity: 0.5;
	
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}

/* active item */
.scrollable .active {
	border:1px solid #666;
	z-index:9999;
	position:relative;
	opacity: 1;
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	-khtml-opacity: 1;
}



