/*
 * 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;
	left: 0;
	width: 12px;
	height: 100%;
}

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

.jspCap{
	display: none;
}

.jspHorizontalBar .jspCap{
	float: left;
}

.jspTrack{
	background: #7c7c7c;
	position: relative;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
}

.jspDrag{
	background: #ed1c24;
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
}

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

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

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

.jspVerticalBar .jspArrow{
	height: 16px;
}

.jspHorizontalBar .jspArrow{
	width: 12px;
	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;
}

.photo-gallery .scroll-pane{
    width: auto;
    height: 114px;
    overflow: auto;
    outline: 0;
}
.photo-gallery .jspVerticalBar{
    display: none!important;
}
.photo-gallery .jspPane{
    height: 114px;
    margin-left: 0!important;
    top:0!important;
}
.photo-gallery .jspContainer{
    height: 114px;
}

.scroll-arrows{
    display: none;
}
.scroll-left, .scroll-right{
    position: absolute;    
    top: 34px;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    display: block;
    z-index: 1;
    color: #fff;
    background-color: #333;
    background-color: rgba(0, 0, 0, 0.6);
}
.scroll-left:before, .scroll-right:before{
    content:"";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
    width: 0;
    height: 0; 
    background: #ed1c24;
    background: rgba(237, 28, 36, 0.7);
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
.scroll-left{
    left: 0;
}
.scroll-right{
    right: 0;
}
.scroll-left:hover, .scroll-right:hover{
    color:#fff;
}
.scroll-left:hover:before, .scroll-right:hover:before{
    width:100%;
    height:100%;
    left: 0;
    top: 0;
}