/*
 * 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: 21/02/2009 00:34
 *
 */
.simply-scroll-container { /* Container DIV - automatically generated */
	position: relative;
}

	.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;
		background-image: url(images/buttons.png);
		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-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;
	}
.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 li {
			float: left;
			width: 290px;
			height: 200px;
		}
	/* --- //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// --- */
.vert { /* wider than clip to position buttons to side */
	width: 150px;
	height: 390px;
margin-top:50px;
}
	.vert .simply-scroll-clip {
		width: 140px;
		height: 385px;
	}
		.vert .simply-scroll-list {
				padding-left:40px;
				
		}
		.vert .simply-scroll-list li {
			padding:0;
			margin:0;
			height:90px;
		}

	.vert .simply-scroll-btn-up { /* modified btn pos */
		right: 50px;
		top: -45px;
	}
	.vert .simply-scroll-btn-down { /* modified btn pos */
		right: 50px;
		top: 385px;
	}

	
