/*
 * 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
 *
 */

.simply-scroll-container { /* Container DIV - automatically generated Wider than clip to allow for buttons*/
	    position: relative;
    	width: 298px;
	    height: 200px;
	    margin-bottom: 1.5em;
}
	.simply-scroll-clip { /* Clip DIV - automatically generated */
		width: 270px;
	    height: 200px;
        left: 30px;
        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;
        border: none;
		display: block;
        width: 298px;
		height: 20px;
		list-style: none;
		}
	.simply-scroll-btn {
		position: absolute;
		background-image: url(buttons.png);
		width: 21px;
		height: 22px;
		z-index:3;
		cursor: pointer;
	}
	.simply-scroll-btn-up {
		right: 275px;
		top: 26px;
		background-position: -21px -22px;
	}
	.simply-scroll-btn-up.disabled {
		background-position: -21px 0 !important;
	}
	.simply-scroll-btn-up:hover {
		background-position: -21px -22px;
	}
	
	.simply-scroll-btn-down {
		right: 275px;
		bottom: 26px;
		background-position: 0px 22px;
	}
	.simply-scroll-btn-down.disabled {
		background-position: 0px 0 !important;
	}
	.simply-scroll-btn-down:hover {
		background-position: 0px 22px;
	}





	
	
