.slide-panel {
	position: relative;
	width: 1200px;
	height: 400px;
}
.slide-panel section {
	position: absolute;
	bottom: 0;
	left: 0;
	margin: 0;
	z-index: 0;
}

/* SLIDESHOW CONTROLS */
.slides-container {
	position: relative;
	display: block;
	float: left;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
.slides-pagination {
	z-index: 15;
	display: block;
	position: absolute;
	bottom: 15px;
	left: 50px;
	margin: 0;
	padding: 0;
}
.slides-pagination li {
	display: block;
	float: left;
	margin: 0 15px 0 0;
	padding: 0;
	background: none;
}
.slides-pagination li a {
	display: block;
	position: relative;
	width: 15px;
	height: 15px;
	background: #C1A25F;
	line-height: 10px;
	text-indent: -999em;
	cursor: pointer;
	/**/
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-ms-border-radius: 100%;
}
.slides-pagination li a:hover {
	background: #F1DBB2;
}
.slides-pagination li.current a {
	background: #218E9E;
}

/* SLIDESHOW CONTROLS > NEXT + PREV */
.slide-control-next,
.slide-control-prev {
	z-index: 15;
	display: block;
	position: absolute;
	top: 0;
	width: 50px;
	height: 350px;
	border-bottom: 0;
	color: #FFF;
	background: #A2C9D0;
	font: normal 40px/350px "Courier New", Courier, monospace;
}
.slide-control-next {
	right: 0;
	border-left: 25px solid #218E9E;
	background: #A2C9D0 url(../../es/src/slides/next-arrow.png) no-repeat center center;
	text-indent: -999em;
}
.slide-control-prev {
	left: 0;
	display: none;
}
a:hover.slide-control-next,
a:hover.slide-control-prev {
	color: #11454F;
}
a:hover.slide-control-next {
	background-position: center right;
}
