
/*
 * jScrollPane
 * -----------
 * CSS Styles that are needed by jScrollPane for it to operate correctly.
 */

.jspContainer {
	/*overflow: hidden;*/
	position: relative;
}

.jspPane {
	position: absolute;
}

.jspVerticalBar {
	position: absolute;
	top: 0;
	right: 0px;
	width: 6px;
	height: 100%;
	background: transparent;
}

.jspHorizontalBar {
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 100%;
	height: 6px;
	background: transparent;
}

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

.jspCap {
	display: none;
}

.jspCap
{
	display: block;
}

.jspVerticalBar .jspCap
{
}

.jspVerticalBar .jspCap.jspCapBottom
{
}

.jspHorizontalBar .jspCap {
	float: left;
}

.jspTrack {
	background: transparent;
	position: relative;
}

.jspDrag {
	background-color: #666;

	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-o-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;

	position: relative;
	top: 0;
	left: 0px;
	cursor: pointer;

	-webkit-transition: background-color ease-out 0.2s;
	-moz-transition: background-color ease-out 0.2s;
	-o-transition: background-color ease-out 0.2s;
	-ms-transition: background-color ease-out 0.2s;
	transition: background-color ease-out 0.2s;
}

.jspDrag:hover {
	cursor: ns-resize;
	background-color: #333;
}

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

.jspArrow {
	background: transparent;
	text-indent: -20000px;
	display: block;
	cursor: default;
}

.jspArrow.jspDisabled {
	cursor: default;
	background: transparent;
}

.jspVerticalBar .jspArrow {
	height: 16px;
}

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

.jspVerticalBar .jspArrow:focus {
	outline: none;
}

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

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


/* CUSTOM */

#works .jspVerticalBar .jspCap.jspCapTop {
	height: 103px;
}

#about .jspVerticalBar .jspCap.jspCapTop {
	height: 170px;
}


@media only screen and (max-width: 1258px) {

	#works .jspVerticalBar .jspCap.jspCapTop {
		height: 133px;
	}
}

@media only screen and (max-width: 1200px) {

	#about .jspVerticalBar .jspCap.jspCapTop {
		height: 142px;
	}
}

@media only screen and (max-width: 1000px) {

	#about .jspVerticalBar .jspCap.jspCapTop {
		height: 130px;
	}
}

