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

/* styling for the image wrapper  */


#image_wrap {
	/* dimensions */
	width:502px;
	margin:0px 0 0px 10px;
	padding:0px 0;

	/* centered */
	text-align:center;

	/* some "skinning" */
	background-color:#000;
	border:0px solid #fff;
	outline:2px solid #de1f2b;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

#video_wrap {
	/* dimensions */
	width:502px;
	margin:0px 0 0px 10px;
	padding:0px 0;

	/* centered */
	text-align:center;

	/* some "skinning" */
	background-color:#000;
	border:0px solid #fff;
	outline:2px solid #de1f2b;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

#image_text {
	font-family: Arial, Verdana, Sans-serif;
	font-size: 12px;
	text-align:left;
	color:white;
	padding:3px 0px 0px 10px;
	}

.scrollable {

	/* required settings */
	position:relative;
	background-color:#fff;
	overflow:hidden;
	width: 478px;
	height:65px;
	/* custom decorations */
	border:0px solid #fff;
}

/*
	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;
	height:63px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	opacity:0.5;
	filter:alpha(opacity=50);
	background-color:#fff;
	padding:0px;
	border-top:1px solid #fff;
	border-bottom:1px solid #fff;
	border-right:1px solid #fff;
	cursor:pointer;
	height:63px;

}

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


