/*
 * CSS Styles that are needed by jScrollPane for it to operate correctly.
 *
 * Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
 * may not operate correctly without them.
 */

.jspContainer
{
	overflow: hidden;
	position: relative;
}

.jspPane
{
	position: absolute;
}

.jspVerticalBar
{
	position: absolute;
	top: 0;
	right: 0;
	width: 16px;
	height: 100%;
	background: red;
}

.jspHorizontalBar
{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 16px;
	background: #b4b5b5;
}

.jspVerticalBar *,
.jspHorizontalBar *
{
	margin: 0;
	padding: 0;
}

.jspCap
{
	display: none;
}

.jspHorizontalBar .jspCap
{
	float: left;
}

.jspTrack
{
	background: #b4b5b5;
	position: relative;
}

.jspDrag
{
	background: #2B3137;
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
	
	background: -moz-linear-gradient(top, #40464B, #2B3137); /* Firefox */
	background: -ms-linear-gradient(#40464B, #2B3137); /* IE10 */
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#40464B), to(#2B3137)); /* Safari & Chrome */
	background: -webkit-linear-gradient(#40464B, #2B3137); /* Safari 5.1+, Chrome 10+ */
	background: -o-linear-gradient(#40464B, #2B3137); /* Opera 11.10 */
	background: linear-gradient(#40464B, #2B3137); /* the standard */
	filter:  progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#40464B', endColorstr='#2B3137'); /* IE6 & IE7 */
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#40464B', endColorstr='#2B3137')"; /* IE8 */
}

.jspHorizontalBar .jspTrack
/*, .jspHorizontalBar .jspDrag */
{
	float: left;
	height: 100%;
}

.jspHorizontalBar .jspDrag
{
	float: left;
	margin :3px 0;
	height: 10px;
	
	
}

.jspArrow
{
	text-indent: -20000px;
	display: block;
	cursor: pointer;
}

/*
.jspArrow.jspDisabled
{
	
	cursor: default;
	background : #313131 url("/images/JQueryImageRotator/arrow-left.png") no-repeat center;
}
*/

.jspVerticalBar .jspArrow
{
	height: 16px;
}

.jspHorizontalBar .jspArrow
{
	width: 10px;
	float: left;
	height: 10px;
	margin :3px 0;
}

.jspVerticalBar .jspArrow:focus
{
	outline: none;
}

.jspArrowLeft
{
	border-left : solid 3px #b4b5b5;
	border-right : solid 3px #b4b5b5;
	background : url("/images/JQueryImageRotator/arrowLeft.png") no-repeat center;
}

.jspArrowRight
{
	border-left : solid 3px #b4b5b5;
	border-right : solid 3px #b4b5b5;
	background : url("/images/JQueryImageRotator/arrowRight.png") no-repeat center;
}

.jspCorner
{
	background: #eeeef4;
	float: left;
	height: 100%;
}

/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner
{
	margin: 0 -3px 0 0;
}