/*
jScrollPane -- http://jscrollpane.kelvinluck.com/
*/

.scroll-pane {
	width: 380px;
	height: 400px;
	margin: 50px 40px 0 10px;
	padding: 0 20px 0 15px;
	overflow: auto;
}
.scroll-pane:focus, .jplayer-scroll-pane:focus {
	outline: none;
}
.jspContainer {
	overflow: hidden;
	position: relative;
}
.jspPane {
	position: absolute;
}
.jspVerticalBar {
	position: absolute;
	top: 0;
	right: 0;
	width: 16px;
	height: 100%;
}
.jspVerticalBar * {
	margin: 0;
	padding: 0;
}
.jspCap {
	display: none;
}
.jspTrack {
	position: relative;
}
.jspDrag {
	position: relative;
	top: 0;
	left: 0;
	width: 20px;
	cursor: pointer;
	background: url(../images/drag_bar.png) repeat-y;
}
.jspDrag:hover {
	background-position: -21px top;
}
.jspArrow {
	text-indent: -20000px;
	display: block;
	cursor: pointer;
}
.jspArrowUp {
	height: 40px;
	width: 20px;
	background: url(../images/arrows_up.png) no-repeat;
	outline: none;
	cursor: pointer;
}
.jspArrowUp:hover {
	background-position: -20px 0px;
}
.jspArrowUp.jspDisabled {
	cursor: default;
	background-position: -40px top;
}
.jspArrowDown {
	height: 40px;
	width: 20px;
	background: url(../images/arrows_down.png) left bottom no-repeat;
	outline: none;
}
.jspArrowDown:hover {
	background-position: -20px bottom;
}
.jspArrowDown.jspDisabled {
	cursor: default;
	background-position: -40px bottom;
}
.jspVerticalBar .jspArrow:focus {
	outline: none;
}
.jspCorner {
	float: left;
	height: 100%;
}

/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner {
	margin: 0 -3px 0 0;
}