  

/* Example wrapper */
.wrap {
	position: relative;
	float: left;
	width: 90%;
	margin: 0 0 3em 0;
}
.wrap:nth-child(2n) { margin-right: 0; }

/* Frame */
.frame {
	width: 100%;
	height: 1000px;
	overflow: hidden;
}
.frame .slidee {
	padding: 20px 25px;
	background: #fff;
}
.frame ul.items {
	list-style: none;
	margin: -20% 0 0 0;
	padding: 0 0 0 11%;
	width: 100%;
	font-size: 24px;
	line-height: 15px;
}
.frame ul.items li {
	float: left;
	width: 100%;
	margin: 0 0 12px;
	padding: 0;
	color: #696969;
	text-align: center;
	cursor: pointer;
}
/* Scrollbar */
.scrollbar {
	position: absolute;
    right: 15px;
    width: 3px;
	height: 1000px;
	background: #4a4a4a;
	line-height: 0;
}
   .scrollbar .up, .scrollbar .down {
   content: "";
   position: absolute;
   right: -23px;
   display: inline-block;
   width: 50px;
   height: 50px;
   z-index: 4;
   cursor: pointer;
}

.scrollbar .down {
   bottom: -21px;
   background: url(/images/line-arrow-down.png) no-repeat center / 23px;
}
.scrollbar .up {
   top: -18px;
   background: url(/images/line-arrow-up.png) no-repeat center center / 23px;
}

.scrollbar .handle {
	width: 100%;
	height: 100px;
	background: #4a4a4a;
	cursor: pointer;
}
.scrollbar .handle:before {

}
.scrollbar .handle:after {

}
.scrollbar .handle .mousearea {
	position: absolute;
	top: 14px;
	left: -10px;
	width: 22px;
	height: 97%;
}

/* Pages */
.pages {
	list-style: none;
	margin: 20px 0;
	padding: 0;
	text-align: center;
}
.pages li {
	display: inline-block;
	width: 14px;
	height: 14px;
	margin: 0 4px;
	text-indent: -999px;
	border-radius: 10px;
	cursor: pointer;
	overflow: hidden;
	background: #fff;
	box-shadow: inset 0 0 0 1px rgba(0,0,0,.2);
}
.pages li:hover {
	background: #aaa;
}
.pages li.active {
	background: #666;
}

/* Controls */
.controls { margin: 25px 0; text-align: center; }


.items li h3 {
    margin-bottom:0;
}
.items li.active h3{
    font-size: 3em;
    color: #abca4b;
    border-bottom: 2px solid #676767;
    padding-bottom: .1em;
}
.items li h3{
    font-size:.8em;
    font-weight:bold;
    color: #7d7d7d;
}
.items li p {
    display:none;
}
.items li.active p {
    display: inline-block;
    line-height: 26px;
    font-size: .6em;
    width: 400px;
    margin: 15px auto;
} 
.items li.disabled-item1 h3,
.items li.disabled-item3 h3{
    font-size: 1.5em;
    color: #4a4a4a;
}
.items li.disabled-item2 h3,
.items li.disabled-item4 h3{
    font-size: 1.1em;
    color: #636363;
}