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

	width: 42px;
	height: 44px;
	z-index:3;
	cursor: pointer;
}
	
.simply-scroll-btn-left {
	left: 6px;
	bottom: 6px;
	background-position: 0 -44px;
}
.simply-scroll-btn-left.disabled {
	background-position: 0 0 !important;
}
.simply-scroll-btn-left:hover {
	background-position: 0 -88px;
}
	
.simply-scroll-btn-right {
	right: 6px;
	bottom: 6px;
	background-position: 84px -44px;
}
.simply-scroll-btn-right.disabled {
	background-position: 84px 0 !important;
}
.simply-scroll-btn-right:hover {
	background-position: 84px -88px;
}
	
.simply-scroll-btn-down, .simply-scroll-btn-up {
  top: 0px;
  background-image:url(../images/scroll-up.png);background-repeat:no-repeat;background-position:center 5px ;
  width:122px;
  height:20px;	 
  border:1px solid #E7E4E4;
  filter:alpha(opacity=80);
  opacity:0.8;
}
.simply-scroll-btn-down{
	background-image:url(../images/scroll-down.png);

}
.simply-scroll-btn-up.disabled,.simply-scroll-btn-down.disabled{
 filter:alpha(opacity=20);
 opacity:0.2;
 border:1px solid #E7E4E4;
 cursor:default;
}

	



/* Custom class modifications - adds to / overrides above

Vertical scroller example, with custom base class */

/* Container DIV */
.vert { 
	width: 128px; /* wider than clip for custom button pos. */
	height: 440px;
}

/* Clip DIV */
.vert .simply-scroll-clip {
 position:relative;
 top:27px;
	width: 128px;
	height: 350px;
}

/* Explicitly set height/width of each list item */
.vert .simply-scroll-list li {
	width: 128px; /* wider than clip for custom button pos. */
	height: 117px;
	margin-bottom: 7px;
}

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

.vert .simply-scroll-btn-down { 
 left:5px;
	top: 380px;
}