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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 818px;
	height:118px;
    /*padding: 15px 0 0 0;
    margin-top: -15px;*/

	/* custom decorations */
	border:none;
}

/*
	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;
    z-index: 499;
}

.items div {
	float:left;
	width:680px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	/*margin:20px 5px 20px 21px;*/
	margin: 0 0 0 0;
	background-color:#fff;
	padding:0;
	border:0;
	height:119px;
    /*width: 150px;*/
	cursor: pointer;
}

/* active item */
.scrollable .active {
    z-index: 500;
    position: relative;
    /*margin-top: -11px;*/
	border: 2px solid #fff !important;
	height: 113px;
	position: relative;
    outline: solid 1px #000; 
}