﻿
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/

.scrollable {
	/* required settings */
	position: relative;
	overflow: hidden;
	width: 180px;
	height: 210px;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;

	/* custom decorations */
	border-top:0px solid #777;
	border-right:0px solid #777;
	border-bottom:0px solid #777;
	border-left:0px solid #777;
	background:transparent;
}

/*
	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;
	margin: 0px;
    padding: 0px;
	background: transparent;
}
       
.items div {
	float: left;
	display: block;
	width: 180px;
	height: auto;
	font-weight: normal;
	margin: 0px;
    padding: 0px;
	background: transparent;
}

.items div:hover {
                  color: #000;
                  font-weight: normal;
                  border: none;
                  background-color: #eee;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:0px 0px 0px 0px;
*	margin: 0px 0px 0px -3px;
	background: transparent;
	padding:0px;
	border:0px solid #ccc;
	width:180px;
	height:180px;

	-moz-border-radius:0px;
	-webkit-border-radius:0px;
}

/* active item */
.scrollable .active {
	border:0px solid #000;
	position:relative;
	cursor:default;
	margin: 0px;
    padding: 0px;
}