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

	/* required settings */
	position:relative;
	overflow:hidden;
	height:360px;
	width:1000px;
	margin:0;
}

/*
	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;
	border-top: 3px solid #FFFFFF;
}

.items div {
    color: #DEDEDE;
    float: left;
    margin: 0 0 0 0;
    width:1000px;

}


.items div a {
    color: #DEDEDE;
    float: left;
    height: 360px;
    margin: 0 0 0 0;
    width: 1000px;
    background:#3F3F3F;
    display:block;
}

.items div a p {
    color: #fff;
    padding: 20px 0 0 0;
    text-align: left;
    background:url(/img/slider-bg.png);
    display:block;
    height:30px;
    position:relative;
    top:-40px;
}

.items div a:hover p {
    padding: 20px 0 0 0;
    height:30px;
    top:-40px;
}

/* single scrollable item */
.scrollable img {
	margin:0 0 0 0;
	padding:0;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}

