﻿/*RESET*/
* {
	margin: 0;
	padding: 0;
}

/*BOX*/
.box{
	width: 800px;
	margin: 0 auto;
	position: relative;
}

/*SLIDER*/
.slider{
	width: 800px;
	height: 400px;
	overflow: hidden;
	margin:0 auto;
}

.slider-item{
	width: 90%;
	position: relative;

}

.slider-item p{
	padding: 10px;
	width: 270px;
	font: normal 15px Verdana;
	line-height: 22px;
	color: #fff;
	background: rgba(0,0,0,0.5);
	position: absolute;
	bottom: 20px;
	left: 5px;
	text-align: left;
}

/*PAGER*/
.pager {
	position: absolute;
	z-index: 999;
	top: 20px;
	right: 20px;

}


.pager a{
	display: block;
	width: 6px;
	height: 6px;
	padding: 5px;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	background:#333;
	float: left;
	margin: 0 3px;
	cursor: pointer;
	
}

.pager a:hover {
	background: #C5E105
}

pager a.sliderativado {
	background: #CCC
	}
