/*
 * CSS Styles that are needed by jquery.step-scroller for it to operate correctly.
 *
 * Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jquery.step-scroller
 * may not operate correctly without them.
 */

.stepScrollerContainer {
	overflow: hidden;
	position: relative;
}

.stepScrollerPane {
	position: absolute;
}

.stepScrollerVerticalBar {
	position: absolute;
	top: 0;
	right: 0;
	width: 16px;
	height: 100%;
	background: red;
}

.stepScrollerTrack {
	background: #dde;
	position: relative;
}

.stepScrollerDrag {
	background: #bbd;
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
}

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

.stepScrollerArrow.stepScrollerDisabled {
	cursor: default;
	background: #80808d;
}

.stepScrollerVerticalBar .stepScrollerArrow {
	height: 16px;
}

.stepScrollerVerticalBar .stepScrollerArrow:focus {
	outline: none;
}

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

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