/*
 * 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
{
	top: 0;
	position: absolute;
}

.jspVerticalBar
{
	position: absolute;
	top: 0;
	right: 0;
	width: 10px; /*niro: was 16px */
	height: 100%;
	background: white; /*red*/
}

.jspHorizontalBar
{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 10px; /*niro*//*16px*/;
	background: white; /*niro*//*red*/
}

.jspVerticalBar *,
.jspHorizontalBar *
{
	margin: 0;
	padding: 0;
}

.jspCap
{
	display: none;
}

.jspHorizontalBar .jspCap
{
	float: left;
}

.jspTrack
{
	background:transparent; 
	position: relative;
	
}

.XXXjspVerticalBar .jspTrack  /* niro */
{
	background: url(/css/scrollpane/osx_track.gif) repeat-y;
}

.jspDrag
{
	background: #aaa; 
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
}

.XXXjspVerticalBar .jspDrag /* niro */
{
	background: url(/css/scrollpane/osx_drag_middle.gif) repeat-y;
	min-height:10px; /*niro*/
}

/* copied from v1.0 */

.XXXjspDragTop {
	background: url(/css/scrollpane/osx_drag_top.gif) no-repeat;
	height: 6px;
    overflow: hidden;
	height: 7px;
	width:100%;
    position: absolute;
    top: 0;
    left: 0;
}
.XXXjspDragBottom {
	background: url(/css/scrollpane/osx_drag_bottom.gif) no-repeat;
    overflow: hidden;
	height: 7px;
	width:100%;
    position: absolute;
    bottom: 0;
    left: 0;
}
/* end copied from v1.0 */

.jspHorizontalBar .jspTrack
{
	float: left;
	height: 100%;
}
.jspHorizontalBar .jspDrag
{
	float: left;
	height: 8px; /* niro, was 100% */
	border:solid 1px #ffffff;
}

.jspArrow
{
	background: transparent;
	text-indent: -20000px;
	display: block;
	cursor: pointer;
}

.jspArrow.jspDisabled /*when scrollbar is at topmost*/
{
	cursor: default;
	opacity:0.9; /* niro: this exposes a bit the red color behind*/
}

.jspVerticalBar .jspArrow
{
	height: 16px;
}

.jspHorizontalBar .jspArrow
{
	width: 10px; 
	float: left;
	height: 100%;
}

.jspVerticalBar .jspArrow:focus
{
	outline: none;
}

.jspCorner
{
	background: #eeeef4;
	float: left;
	height: 100%;
}

/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner
{
	margin: 0 -3px 0 0;
}


/* copied from JSCROLLPANE v1.0 */

a.XXXjspArrowUp {
	height: 24px;
	width:100%;
	background: url(/css/scrollpane/osx_arrow_up.png) no-repeat 0 -30px;
}
a.jspArrowUp:hover {
	background-position: 0 0;
}
a.XXXjspArrowDown {
	height: 24px;
	width:100%;
	background: url(/css/scrollpane/osx_arrow_down.png) no-repeat 0 -38px;
}
a.jspArrowDown:hover {
	background-position: 0 -8px;
}
/* END from JSCROLLPANE v1.0 */


/* JSCROLLPANE 1.0 old code */

/*
.jScrollPaneTrack {
	background: url(/css/scrollpane/osx_track.gif) repeat-y;
}

.jScrollPaneDrag {
	background: url(/css/scrollpane/osx_drag_middle.gif) repeat-y;
}

.jScrollPaneDragTop {
	background: url(/css/scrollpane/osx_drag_top.gif) no-repeat;
	height: 6px;
}

.jScrollPaneDragBottom {
	background: url(/css/scrollpane/osx_drag_bottom.gif) no-repeat;
	height: 7px;
}
a.jScrollArrowUp {
	height: 24px;
	background: url(/css/scrollpane/osx_arrow_up.png) no-repeat 0 -30px;
}
a.jScrollArrowUp:hover {
	background-position: 0 0;
}
a.jScrollArrowDown {
	height: 24px;
	background: url(/css/scrollpane/osx_arrow_down.png) no-repeat 0 -30px;
}
a.jScrollArrowDown:hover {
	background-position: 0 0;
}


*/