/* 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 div {
	padding: 0;
	margin: 0;
	list-style: none;
}
	
.simply-scroll-list div 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;
	width: 15px;
	height: 17px;
	/*height:auto;	*/
	cursor: pointer;
	float: left;	
}

.simply-scroll-btn-up {
	/*left: 6px;
	top: 50px;*/
	margin: 575px 0px 0px 639px;
	background-image: url(../ftn-images/common/arrow-up.png);
	/*background-position: -126px -44px;*/
	overflow:auto;
	position: absolute;
	float: right;
}
.simply-scroll-btn-up.disabled {
	/*background-position: -126px 0 !important;*/
}
.simply-scroll-btn-up:hover {
	/*background-position: -126px -88px;*/
}
	
.simply-scroll-btn-down {
	/*right: 10px;
	bottom: 6px;*/	
	margin: 597px 0px 0px 639px;
	background-image: url(../ftn-images/common/arrow-down.png);	
	overflow:auto;
	position: absolute;
	float: right;
}
.simply-scroll-btn-down.disabled {
	/*background-position: -42px 0 !important;*/
}
.simply-scroll-btn-down:hover {
	/*background-position: -42px -88px;*/
}

/* Custom class modifications - adds to / overrides above

Vertical scroller example, with custom base class */

/* Container DIV */
.vert { 
	/*width: 450px; /* wider than clip for custom button pos. */
	/*height: 200px;
	margin-bottom: 1.5em;
	*/
	
	float: left;
	/*margin: 10px 20px 15px 10px;*/
	width: 635px;
	height: 623px;
}

/* Clip DIV */
.vert .simply-scroll-clip {
	width: 635px;
	height: 623px;
}

/* Explicitly set height/width of each list item */
.vert .simply-scroll-list div {
	width: 635px;
	height: 623px;
}

/* Modified button positions, overriding previous styles */
/*.vert .simply-scroll-btn-up { 
	right: 0;
	top:0;	
}

.vert .simply-scroll-btn-down { 
	right: 0;
	top:0;	
}*/
