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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 100%;
	height:620px;
	/* custom decorations */
	border:none;
	/*background:url(/img/global/gradient/h300.png) repeat-x;*/
}

/*
	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 div div{
	float:left;
	margin:0px 0px 0px 7px;
	padding:0px;
	cursor:pointer;
	color:#1F1F1F;
	font-size:10px;
	z-index:9998;

		/*-moz-border-radius:4px;
	-webkit-border-radius:4px;*/
}
.scrollable img {
	height:540px;
	width:auto;
	border:1px solid #333;
	filter:alpha(opacity=40);
	-moz-opacity:0.8;
	-khtml-opacity: 0.8;
	opacity: 0.8;
	
}
/* active item */
.scrollable .active {
	margin:0px 0px 0px 7px;
	padding:0px;
	z-index:9998;
	position:relative;
	color:#ccc;
}
.scrollable .active img{
	border:1px solid #ccc;
	filter:alpha(opacity=100);
	opacity: 1;
	-moz-opacity:1;
	-khtml-opacity: 1;
}
.scrollable .hover img{
	border:1px solid #333;
	filter:alpha(opacity=100);
	-moz-opacity:1.0;
	-khtml-opacity: 1.0;
	opacity: 1.0;
}
/* active item */
.scrollable .hover{
	margin:0px 0px 0px 7px;
	padding:0px;
	z-index:9999;
	position:relative;
	color:#282829;
}

.scrollable div div div img, .scrollable .active div img{
	filter:alpha(opacity=0);
	-moz-opacity:0;
	-khtml-opacity: 0;
	opacity: 0;
}

