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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 750px;
	height:140px;

	/* custom decorations */
	border:1px solid #5e5e5e;
	/* background:url(../images/h300.png) repeat-x; */
	background-color: #e5e5e5;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
}

/*
	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;
}


/* single scrollable item image */
.scrollable img {
	float:left;
	margin:10px 6px 10px 9px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
	width:175px;
	height:116px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}

/* Added Text Elements */
.scrollable .tx1 {
	position:relative;
	float:left;
	margin:10px 6px 10px 9px;
	background-color:#f2f2f2;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
	width:170px;
	height:116px;
	display: block;
		
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}
.scrollable .tx2 {
	position:relative;
	float:left;
	margin:10px 6px 10px 9px;
	background-color:#f2f2f2;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
	width:336px;
	height:116px;
	display: block;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

sll {
	display:block;
	margin:0px 5px 3px 5px;
	font-family: arial,helvetica,sans-serif;
	font-size: 12px;
	text-align:left;
}
slr {
	display:block;
	margin:0px 5px 3px 5px;
	font-family: arial,helvetica,sans-serif;
	font-size: 12px;
	text-align:right;
}
.arrow { /* class */
	width:22px;
	height:22px;
	display:block;
	border:0px solid #ccc;
	}
		
	#one { /* ID */
		display:block;
		background:url("../imgs_slides/al.png") top left no-repeat;
	}
		
	#two {
		display:block;	
		background:url("../imgs_slides/ar.png") no-repeat;
		float:right;
	}
