/*
 * 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: 11px;
	height: 100%;
	padding:0 0 0 1px;
	
}
.jspHorizontalBar {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 16px;
}
.jspHorizontalBar * {
	margin: 0;
	padding: 0;
}
.jspCap {
	display: none;
}
.jspHorizontalBar .jspCap {
	float: left;
}
.jspTrack {
	background:#cecece url(/images/scroll_track.jpg) repeat-y;
	position: relative;
	border-top:1px solid #ebeced;
	border-bottom:1px solid #ebeced;
	
}
.jspDrag {
	background:#217bc3;
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
	border-top:1px solid #c0bfbf;
	border-bottom:1px solid #c0bfbf;
}
.jspVerticalBar{
	width:6px;	
	margin-left:5px;
}
.jspHorizontalBar .jspTrack, .jspHorizontalBar .jspDrag {
	float: left;
	height: 100%;
}
.jspArrow {
	/*background: #50506d;*/
	text-indent: -20000px;
	display: block;
	cursor: pointer;
}
.jspArrow.jspDisabled {
	cursor: default;
}

.jspVerticalBar .jspArrow {
	height: 11px;
}
.jspHorizontalBar .jspArrow {
	float: left;
	height: 100%;
}
.jspVerticalBar .jspArrow:focus {
	outline: none;
}
.jspCorner {
	background: #eeeef4;
	float: left;
	height: 100%;
}
.jscroll-pane{
	overflow:auto;
	width:500px;
	margin:0 auto;
	height:580px;
	padding:0 10px 0 0;	
}
.jspArrowUp, .jspArrowDown{
	width:9px;
	height:9px;
}
.jspArrowUp{
	background:url(/images/jsp_arror_up.jpg) 2px 2px no-repeat;
	border:1px solid #ebeced;	
}
.jspArrowDown{
	background:url(/images/jsp_arror_down.jpg) 2px 4px no-repeat;
	border:1px solid #ebeced;
	
}

/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner {
	margin: 0 -3px 0 0;
}
