/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 550px;
	height:130px;
	margin-right: auto;
	margin-left: auto;
}
.scrollable2 {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 893px;
	height:120px;
}

/*
	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:20000px;
	position:absolute;
	clear:both;
	left: 21px;
	top: -1px;
}

.scrollable .items2 {
	/* this cannot be too large */
	width:20000px;
	position:absolute;
	clear:both;
}

.items div {
	float:right;
	width:550px;
}

.items div2 {
	float:left;
	width:680px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	width:170px;
	height:104px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	margin-top: 20px;
	margin-right: 13px;
	margin-bottom: 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	color: #FFFFFF;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}



#dark{

	background-image: url(images/overlay.png);
	background-repeat: repeat;
	height: 1000px;
	width: 100%;
	position:fixed;
	z-index:9999000;
}


 
	.dark_bg{
		display:none;
  	position: absolute;
	top: 0%;
	left: 0px;
	width: auto;
	height: auto;
	z-index:1002;
 
}
