
#winners {
	
	background:url(../elements/scroller_bg.jpg) no-repeat;
	width:990px;
	height:141px;
	margin:0px;
	padding:0px;
}

#winners_container {
	margin-left:218px;
	margin-top:10px;;
}



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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 635px;
	height:120px;

	/* custom decorations */
	/*border:1px solid #ccc;*/
	/*background:url(../capture_v2/elements/scroller_bg.jpg) 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;
}

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


.scrollable .imgBox {
	float:left;
	margin:17px 5px 20px 15px;
	padding:0px;
	cursor:pointer;
	width:107px;
	height:100px;
}

.scrollable .imgBox .imgContainer {
	border:1px solid #ccc;
	background-color:#fff;	
	padding:2px;	
	cursor:pointer;
}

.scrollable .imgBox .imgContainer img {
	width:101px;
	height:75px;
}

.scrollable .imgBox .caption {
	padding:5px;
	text-align:center;
	color:#FFF;
	font-size:11px;
	text-align:center;
}


/* active item */
.scrollable .active {
	border:none;
	z-index:9999;
	position:relative;
}



