/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 874px;
	height:240px;

	background:url(skins/tango2/graystar.jpg) repeat-x;
}

.scrollable2 {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 890px;
	height:240px;

	background:url(skins/tango/redstar.jpg) repeat-x;
}

.scrollable3 {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 450px;
	height:415px;
	margin-left:auto;
	margin-right:auto;
	background-color:#9E111A;
	border:#818181 solid 0px;
}

.scrollable4 {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 160px;
	height:600px;
	margin-left:auto;
	margin-right:auto;
	background-color:#D4D4D4;
	border:#818181 solid 1px;
}

/*
	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;
}

.scrollable2 .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.scrollable3 .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.scrollable4 .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}


/* single scrollable item */
.scrollable div {
	float:left;
/*	margin:20px 5px 20px 21px;*/
	padding:5px;
/*	border:1px solid #ccc;*/
	cursor:pointer;
	width:205px;
	height:110px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

.scrollable2 div {
	float:left;
/*	margin:20px 5px 20px 21px;*/
	padding:5px;
	padding-top:10px;
/*	border:1px solid #ccc;*/
	cursor:pointer;
	width:209px;
	height:110px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

.scrollable3 div {
	float:left;
/*	margin:20px 5px 20px 21px;*/
/*	padding:5px;
	padding-top:10px;*/
	/*border:#000000 solid 1px;*/
	cursor:pointer;
	width:460px;
	height:480px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

.scrollable4 div {
	float:left;
/*	margin:20px 5px 20px 21px;*/
	padding:5px;
	padding-top:10px;
	/*border:#000000 solid 1px;*/
	cursor:pointer;
	width:140px;
	height:140px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}



/* active item */
.scrollable .active {
/*	border:2px solid #000;*/
	z-index:9999;
	position:relative;
}

.scrollable2 .active {
	/*border:2px solid #000;*/
	z-index:9999;
	position:relative;
}

.scrollable3 .active {
	/*border:2px solid #000;*/
	z-index:9999;
	position:relative;
}

.scrollable4 .active {
	/*border:2px solid #000;*/
	z-index:9999;
	position:relative;
}

