/* 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(../img/buttons.png);
	width: 42px;
	height: 44px;
	z-index:3;
	cursor: pointer;
	margin-right:-10px;
	
}
	
.simply-scroll-btn-left {
	background-image:url(../img/arrow_l.png);
	left: 6px;
	bottom: 6px;
	width:48px;
	height:48px;
}
.simply-scroll-btn-left.disabled {
}
.simply-scroll-btn-left:hover {
}
	
.simply-scroll-btn-right {
	background-image:url(../img/arrow_r.png);
	right: 15px;
	bottom: 6px;
	width:48px;
	height:48px;
}
.simply-scroll-btn-right.disabled {
}
.simply-scroll-btn-right:hover {
}
	
.simply-scroll-btn-up {
	right: 6px;
	top: 6px;
	background-position: -126px -44px;
}
.simply-scroll-btn-up.disabled {
	background-position: -126px 0 !important;
}
.simply-scroll-btn-up:hover {
	background-position: -126px -88px;
}
	
.simply-scroll-btn-down {
	right: 6px;
	bottom: 6px;
	background-position: -42px -44px;
}
.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 */

.horz{width:98%; height:290px; position:relative}
.horz .simply-scroll-clip{width:100%; height:290px;}
.horz .simply-scroll-list li {width:auto;float: left;}
.horz .simply-scroll-list li img {border: none;display: block; cursor:pointer;}
.horz .simply-scroll-list li .sel { background:#666;}

.horzfront{width:100%; height:290px; position:relative; top:5px;left:0;}
.horzfront .simply-scroll-clip{width:100%; height:290px;margin: 0 0 0 0;}
.horzfront .simply-scroll-list li #box{width:190px; height:290px; float:left; background:url(../images/bg.png) repeat;}
.horzfront .simply-scroll-list li #dv {width:5px; height:290px; float:left; background:none;}
.horzfront .simply-scroll-list li #box img {border: none; margin-left:auto; margin-right:auto; margin-top:auto; margin-bottom:auto }
.horzfront .simply-scroll-btn-right { 
	left:360px;
	top: 310px;
	z-index:1;
}
.horzfront .simply-scroll-btn-left { 
	left: 300px;
	top: 310px;
	z-index:1;

}

/* Container DIV */
.vert { 
	/*width: 340px; /* wider than clip for custom button pos. */
	height: 100%;
	margin-bottom: 0;
	width:90%;
}

/* Clip DIV */
.vert .simply-scroll-clip {
	/*width: 290px;*/
	height: 100%;
}

/* Explicitly set height/width of each list item */
.vert .simply-scroll-list li {
}

.vert .simply-scroll-list p {
}

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

.vert .simply-scroll-btn-down { 
	right: -50px;
	top: 175px;
}
