/* Container DIV - automatically generated */
.simply-scroll-container { 
	position: relative;
}

/* Clip DIV - automatically generated */
.simply-scroll-clip {
	position: relative;
	overflow: hidden;
	z-index: 2;
}

/* UL/OL/DIV - the element that simplyScroll is inited on
Class name automatically added to element */
.simply-scroll-list {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	overflow: hidden;
	margin: 0;
	padding: 0;
	list-style: none;	
}
	
.simply-scroll-list li {
	padding: 0;
	margin: 0;
	list-style: none;
}
	
.simply-scroll-list li img {
	border: none;
	display: block;
}

/* Master button styles - note that up and down versions 
have been removed in this example */

.simply-scroll-btn {
	position: absolute;
	background:url(../images/buttons.png) no-repeat;
	width: 20px;
	height: 142px;	
	z-index:3;
	cursor: pointer;
}
	
.simply-scroll-btn-left {
	left: -3px;
	top: 0px;
	background-position: 0 0;

}
.simply-scroll-btn-left.disabled {
	background-position: -21px 0;
}
.simply-scroll-btn-left:hover {
	background-position: -21px 0;
}

.simply-scroll-btn-right {
	right: 3px;
	top: 0px;
	background-position: -42px 0;
}
.simply-scroll-btn-right.disabled {
	background-position: -63px 0;
}
.simply-scroll-btn-right:hover {
	background-position: -63px -0;
}

/* Custom class modifications - adds to / overrides above

.simply-scroll is default base class */

/* Container DIV */
.simply-scroll { 
	width: 630px;
	margin-left:10px;
	margin-right:10px;
	height: 162px;
	margin-bottom: 1em;
}

/* Clip DIV */
.simply-scroll .simply-scroll-clip {	
	left:20px;
	top:5px;
	width: 600px;
	height: 135px;
	background:#000;
}
	
/* Explicitly set height/width of each list item */	
.simply-scroll .simply-scroll-list li {
	float: left; /* Horizontal scroll only */
	
	height: 135px;
}

