/* jscrollpane */
/*
 * 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: 6px;
	height: 100%;
	background:#c4c4c4;
	z-index:100;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

.jspHorizontalBar
{
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	height: 12px;
	background: #757575;
	z-index:100;
}

.jspVerticalBar *,
.jspHorizontalBar *
{
	margin: 0;
	padding: 0;
}

.jspCap
{
	display: none;
}

.jspHorizontalBar .jspCap
{
	float: left;
}

.jspHorizontalBar .jspTrack
{
	background: #757575;
	position: relative;
}

.jspHorizontalBar .jspDrag
{
	background: #292929;
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag
{
	float: left;
	height: 100%;
}


.jspVerticalBar .jspTrack
{
	background: url(../images/bg-track-vertical.png) repeat-y;
	position: relative;
}

.paneHome .jspVerticalBar .jspTrack
{
	background: url(../images/bg-track-vertical.png) repeat-y;
	position: relative;
	top:15px; /* alterei o js do plugin pra diminuir 30px do tamanho original, então deve-se dar uma margem do topo de 15px */
}

.jspVerticalBar .jspDrag
{
	background: #b7081d;
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}


.jspArrow
{
	background: #50506d;
	text-indent: -20000px;
	display: block;
	cursor: pointer;
}

.jspArrow.jspDisabled
{
	cursor: default;
	background: #80808d;
}

.jspArrow
{
	height: 16px;
}

.jspHorizontalBar .jspArrow
{
	width: 16px;
	float: left;
	height: 100%;
}

.jspVerticalBar .jspArrowUp {
	height:0;
	width:6px;
	background:url(../images/arrow-scrollpane-top.png) no-repeat;
}

.jspVerticalBar .jspArrowDown {
	height:0;
	width:6px;
	background:url(../images/arrow-scrollpane-bottom.png) no-repeat;
}

.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;
}



