#slider {
	position: relative;
}

.rslides {
	position: relative;
	list-style: none;
	overflow: hidden;
	width: 100%;
	padding: 0;
	margin: 0;
}

.rslides li {
	-webkit-backface-visibility: hidden;
	position: absolute;
	display: none;
	width: 100%;
	left: 0;
	top: 0;
	list-style: none;
}

.rslides li:first-child {
	position: relative;
	display: block;
	float: left;
}

.rslides img {
	display: block;
	height: auto;
	float: left;
	width: 100%;
	border: 0;
}

.rslides .caption {
	display: block;
	position: absolute;
	width: 100%;
	margin: 0;
	padding: 1em;
	bottom: 0;
	font-size: smaller;
	color: white;
}

@media ( min-width : 480px ) {
	.rslides .caption {
		font-size: 1em;
	}
}

@media ( min-width : 768px ) {
	.rslides .caption {
		bottom: 2em;
	}
}

/* slide pagination */ 
.rslides_nav {
	position: absolute;
	z-index: 9999;
	top: 30%!important;
	margin: 0;
	padding: .2em;
	font-family: entypo;
	font-size: 1.5em;
	text-align: center;
	line-height: 1;
	color: white;
	background: black;
	background: rgba(0, 0, 0, 0.5);
}

.rslides_nav.prev {
	left: 0;
}
.rslides_nav.prev:after {
	content: '\e60a';
}

.rslides_nav.next {
	right: 0;
}
.rslides_nav.next:after {
	content: '\e60d';
}

@media ( min-width : 480px ) {
	.rslides_nav {
		top: 35%!important;
		font-size: 2em;
	}
}

@media ( min-width : 768px ) {
	.rslides_nav {
		display: none;
		top: 45%!important;
		font-size: 3em;
	}
	
	#slider:hover .rslides_nav {
		display: block;
	}
}

/* slide navigation */
.rslides_tabs {
	list-style: none; 
	padding: .5em 0; 
	margin: 0; 
	width: 100%;
	text-align: right;
}

.rslides_tabs li {
	list-style: none;
	display: inline-block;
	padding: 0 .25em;
}


.rslides_tabs li a {
	display: block;
	width: 18px;
	height: 18px;
	text-align: center;
	line-height: 1;
	color: #999;
	background: #999;
	border-radius: 100%;
}

.rslides_tabs li.rslides_here a {
	color: #666;
	background: #666;
}

@media ( min-width : 768px ) {
	.rslides_tabs {
		position: absolute;
		z-index: 9999;
		bottom: 0;
		padding: 1em; 
	}
}





