/*
 * 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: relative;
	width:600px;
	padding-bottom:20px;
}

.jspVerticalBar
{
	/*position: absolute;
	top: 0;
	right: 0;
	width: 16px;
	height: 100%;
	background: red;*/
	position: absolute;
	cursor: pointer;
	right: 0;
	top: 0;
	height: 100%;
	width:23px;
	background:#FFF url(../img/store/scroll_track.png) center center repeat-y;
}
.jspTrack
{
	/*background: #dde;
	position: relative
	*/
	position: relative;
	cursor: pointer;
	right: 0;
	top: 0;
	/*height: 100%;*/
	width:23px;
	background:#FFF url(../img/store/scroll_track.png) center center repeat-y;
	
	;
}

.jspDrag
{
	background: #dBddDD;
	position: relative;
	top: 0;
	left: 4px;
	cursor: pointer;
	/*position: relative;
	cursor: pointer;
	overflow: hidden;
	height:43px !important;
	background:#FFF url(../img/store/scroll_drag.png) center center no-repeat;*/
	
}

.jspCorner
{
	background: #eeeef4;
	float: left;
	/*height: 100%;*/
}

/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner
{
	margin: 0 -3px 0 0;
}


/* Styles specific to this particular page */
.scroll-pane,
.scroll-pane-arrows
{
	width: 100%;
	/*height: 200px;*/
	overflow: auto;
}

.jspDrag
{
	background:  #dBddDD;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	width:16px;
}

a.jspArrowUp {
	display: block;
	position: relative;
	z-index: 1;
	top: 0;
	right: 0;
	text-indent: -2000px;
	overflow: hidden;
	height:21px;
	width:23px;
}
a.jspArrowUp:hover{}

a.jspArrowDown {
	display: block;
	position: absolute;
	z-index: 1;
	bottom: 0;
	right: 0;
	text-indent: -2000px;
	overflow: hidden;
	height:21px;
	width:23px;
}

a.jspArrowDown:hover{}



