/*
 * 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
{	height:590px;
    overflow: hidden;
    position: relative;
}
.scroll-pane{
    width: 758px;
    height: 590px;
    overflow: auto;
}

.jspPane
{
    position: absolute;
	background-color:#fff;
}

.jspVerticalBar
{
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
	-moz-border-radius:		2px;
		-webkit-border-radius:	2px;
		-khtml-border-radius:	2px;
		border-radius:			2px;
		behavior: url(PIE.htc);
}

.jspHorizontalBar
{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 16px;
    background: red;
}

.jspVerticalBar *,
.jspHorizontalBar *
{
    margin: 0;
    padding: 0;
}
.jspDrag:hover {
	background: #888;
	border-bottom:1px solid #3f3f3f;
	
}

.jspCap
{
    display: none;
}

.jspHorizontalBar .jspCap
{
    float: left;
}

.jspTrack
{
    position: relative;
    background-color: #f0f0f0;
	-moz-border-radius:		2px;
		-webkit-border-radius:	2px;
		-khtml-border-radius:	2px;
		border-radius:			2px;
		behavior: url(PIE.htc);
}

.jspDrag
{
    background: #b7041c;
    position: relative;
    top: 0;
    left: 0;
    cursor: pointer;
    width: 18px;
		-moz-border-radius:		2px;
		-webkit-border-radius:	2px;
		-khtml-border-radius:	2px;
		border-radius:			2px;
		behavior: url(PIE.htc);

	    /* Legacy browsers */
	    background: #373737 url("../images/gradient-bg.png") repeat-x top;
	    -o-background-size: 100% 100%;
	    -moz-background-size: 100% 100%;
	    -webkit-background-size: 100% 100%;
	    background-size: 100% 100%;
	    /* Internet Explorer */
	    *background: #373737;
	    background: #373737\0/;
	    filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr=#FF464646, endColorstr=#FF373737);
	    /* Recent browsers */
	    background-image: -webkit-gradient(
	        linear,
	        left top, left bottom,
	        from(#464646),
	        to(#373737)
	    );
	    background-image: -webkit-linear-gradient(
	        top,
	        #464646,
	        #373737
	    );
	    background-image: -moz-linear-gradient(
	        top,
	        #464646,
	        #373737
	    );
	    background-image: -o-linear-gradient(
	        top,
	        #464646,
	        #373737
	    );
	    background-image: linear-gradient(
	        top,
	        #464646,
	        #373737
	    );
		border-bottom:1px solid #000;
		margin:0 auto;
}

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

.jspCorner
{
    background: #eeeef4;
    float: left;
    height: 100%;
}

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