
/*
 * simplyScroll 1.0.3 - a scroll-tastic jQuery plugin
 *
 * http://logicbox.net/jquery/simplyscroll
 * http://logicbox.net/blog/simplyscroll-jquery-plugin
 * http://plugins.jquery.com/project/simplyScroll
 *
 * Copyright (c) 2009 Will Kelly - http://logicbox.net
 *
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * Last revised: 03/07/2009 21:13
 *
 */

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


*/

	.simply-scroll-container { /* Container DIV - automatically generated */
		position: relative;
		float: right;
		width: 226px !important;
	}

	.simply-scroll-clip { /* Clip DIV - automatically generated */
		position: relative;
		overflow: hidden;
		z-index: 2;
	}

	.simply-scroll-list { /* UL/OL/DIV - the element that simplyScroll is inited on */
		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;
	}
	
	.simply-scroll-btn {
		position: absolute;
		width: 28px;
		height: 16px;
		z-index:3;
		cursor: pointer;
		bottom: -25px;
		background: 0 0 no-repeat;
	}
	
	.simply-scroll-btn-up {
		right: 0;
		background-image: url("/img/u/ico-news-hp-carousel-up.png?v07290953");
	}
	.simply-scroll-btn-up.disabled {
		background-position: 0 -32px !important;
		cursor: default !important;
	}
	.simply-scroll-btn-up:hover {
		background-position: 0 -16px;
	}
	
	.simply-scroll-btn-down {
		right: 31px;
		background-image: url("/img/u/ico-news-hp-carousel-down.png?v07290953");
	}
	.simply-scroll-btn-down.disabled {
		background-position: 0 -32px !important;
		cursor: default !important;
	}
	.simply-scroll-btn-down:hover {
		background-position: 0 -16px;
	}


	.simply-scroll { /* Customisable base class for style override DIV */
		width: 576px;
		height: 200px;
		margin-bottom: 1em;
	}

	.simply-scroll .simply-scroll-clip {
		width: 576px;
		height: 200px;
	}

	.simply-scroll .simply-scroll-list {}

	/* Vertical scroller example */

	.vert {
		width: 100%;
		height: 275px;
	}

	.vert .simply-scroll-clip {
		height: 272px;
	}
