/* Example wrapper */
.sly_wrap {
	position: relative;
	padding: 20px 0 20px;
}

/* Frame */
.sly_frame {
	height: 275px;
	overflow: hidden;
}
.sly_frame ul {
	list-style: none;
	margin: 0;
	padding: 0;
	height: 100%;
}
.sly_frame ul li {
	float: left;
	width: 130px;
	height: 100%;
	margin: 0 15px 0 0;
	padding: 0;
	color: #ddd;
	text-align: center;
	cursor: pointer;
}
.sly_frame ul li.active {
}

/* Scrollbar */
.sly_scrollbar {
	position: relative;
	margin: 0 0 1em 0;
	height: 2px;
	background: #ccc;
	line-height: 0;
}
.sly_scrollbar .handle {
	width: 100px;
	position: absolute;
	height: 6px;
	top: -2px;
	left: 0;
	background: #bcbcbc;
	cursor: pointer;
	border-radius: 3px;
}
.sly_scrollbar .handle .mousearea {
	position: absolute;
	top: -9px;
	left: 0;
	width: 100%;
	height: 20px;
}

/* Pages */
.sly_pages {
	list-style: none;
	margin: 20px 0;
	padding: 0;
	text-align: center;
}
.sly_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);
}
.sly_pages li:hover {
	background: #aaa;
}
.sly_pages li.active {
	background: #666;
}

/* Controls */
.sly_controls { margin: 25px 0; text-align: center; }


