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

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

/* UL/OL/DIV - the element that simplyScroll is inited on
Class name automatically added to element */
.simply-scroll-list { 
	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 left and right 
versions are included although they are not used in this example */

.simply-scroll-btn {
	position: absolute;
	background: url('../img/icons/arrow-up-down.png');
	width: 16px;
	height: 16px;
	z-index:3;
	cursor: pointer;
}
	
.simply-scroll-btn-up {
	right: 0;
	top: 0;
	background-position: -0px -16px;
}
.simply-scroll-btn-up.disabled {
	background-position: -0px 0 !important;
}
.simply-scroll-btn-up:hover {
	background-position: -0px -32px;
}
	
.simply-scroll-btn-down {
	right: 0px;
	bottom: 0px;
	background-position: -16px -16px;
}
.simply-scroll-btn-down.disabled {
	background-position: -16px 0 !important;
}
.simply-scroll-btn-down:hover {
	background-position: -16px -32px;
}

/* Custom class modifications - adds to / overrides above

Vertical scroller example, with custom base class */

/* Container DIV */
.vert { 
	width: 260px; /* wider than clip for custom button pos. */
	height: 270px;
	margin-bottom: 1.5em;
}

/* Clip DIV */
.vert .simply-scroll-clip {
	width: 290px;
	height: 200px;
	top:25px;
}

/* Explicitly set height/width of each list item */
.vert .simply-scroll-list li {
	width: 260px;
	height: 100px;
}

/* Modified button positions, overriding previous styles */
.vert .simply-scroll-btn-up { 
	right: 0;
	top: 0;
}

.vert .simply-scroll-btn-down { 
	right: 17px;
	top: 0;
}