/*
 * simplyScroll 2 - a scroll-tastic jQuery plugin
 *
 * http://logicbox.net/jquery/simplyscroll
 * http://plugins.jquery.com/project/simplyScroll
 *
 * Copyright (c) 2009-2011 Will Kelly - http://logicbox.net
 *
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * Last revised: 31/01/2012
 *
*/

/* Default/Master classes

Example markup format (for horizontal scroller)
Note all DIVs are generated and should not be hard-coded

<div class="your-custom-class simply-scroll-container">
	<div class="simply-scroll-btn simply-scroll-btn-left"></div>
	<div class="simply-scroll-btn simply-scroll-btn-right"></div>
	<div class="simply-scroll-clip">
		<ul class="simply-scroll-list">
			<li>...</li>
			...
		</ul>
	</div>
</div>


*/

/* 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 up and down versions 
have been removed in this example */

.simply-scroll-btn {
	position: absolute;
	/*background-image: url("buttons.png");*/
	width: 35px;
	height: 42px;
	z-index:3;
	cursor: pointer;
}
	
.simply-scroll-btn-left {
	background-image: url('../../leftArrow.png');
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
    position: absolute;
    border: 1px solid #cfcfcf;
    left: 0;
    top: 0;
    box-shadow: 2px 0px 1px rgba(0,0,0,.06);
}
.simply-scroll-btn-left:hover, .simply-scroll-btn-left.disabled  {
    background-position: center center !important;
}

.simply-scroll-btn-right {
	 background-image: url('../../rightArrow.png');
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
    position: absolute;
    border: 1px solid #cfcfcf;
    top: 0;
    right: 0;
    box-shadow: -2px 0px 1px rgba(0,0,0,.06);
}
.simply-scroll-btn-right:hover, .simply-scroll-btn-right.disabled {
    background-position: center center !important;
}

/* Custom class modifications - adds to / overrides above

.simply-scroll is default base class */

/* Container DIV */
.simply-scroll { 
	width: 100%;
	height: auto;
	margin-bottom: 1em;
}

/* Clip DIV */
.simply-scroll .simply-scroll-clip {
	width: 90%;
	left: 35px;
	height: auto;
}
	
/* Explicitly set height/width of each list item */	
.simply-scroll .simply-scroll-list li {
	float: left; /* Horizontal scroll only */
	width: auto;
	height: 200px;
}
/* NOTE left-right classes wouldn't be needed on vertical scroller */