
/* 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 left and right 
versions are included although they are not used in this example */

.simply-scroll-btn {
	position: absolute;
/*	background-image: url(buttons.png);*/
	width: 22px;
	height: 22px;
	/*z-index:3;*/
	cursor: pointer;
}
	 
.simply-scroll-btn-up {
	right: 0px;
	top: 0px;
	/*background-position: -126px -44px;*/
	background-image: url(cat_up.png);
}
.simply-scroll-btn-up.disabled {
	
	/*background-position: -126px 0 !important;*/
	background-image: url(cat_up.png);
}
.simply-scroll-btn-up:hover {

	/*background-position: -126px -88px;*/
	background-image: url(cat_up.png);
}
	
.simply-scroll-btn-down {
	right: 0px;
	bottom: 10px;
	/*background-position: -42px -44px;*/
	background-image: url(cat_down.png);
}
.simply-scroll-btn-down.disabled {
	/*background-position: -42px 0 !important;*/
	background-image: url(cat_down.png);
}
.simply-scroll-btn-down:hover {
	/*background-position: -42px -88px;*/
	background-image: url(cat_down.png);
}

/* Custom class modifications - adds to / overrides above

Vertical scroller example, with custom base class */

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

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

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

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

.vert .simply-scroll-btn-down { 
	right: 3;
	top: 280px;
}
.vert a {
color:#FFFFFF;
}
