.banner
{
	float:left;
	width:100%;
	position:relative;
	text-align: center;
	border-bottom:0px solid #333;
}

.banner ul
{
	width: 100%;
	padding:0px;
	list-style: none;
}

.banner ul li
{
	float:left;
	width:100%;

	display: block;

	-webkit-background-size: 100% 100%;
	-moz-background-size: 100% 100%;
	-o-background-size: 100% 100%;
	-ms-background-size: 100% 100%;
	background-size: 100% 100%;
}

.banner ul li p
{
	width:300px;
	margin:210px 50px;
	text-align:left;
	position:absolute;
	font-size:18px; 
}

.banner ul li h1
{
	margin:120px 50px;
	position:absolute;
	z-index:999;
	font-size:30px;
}

.banner ul li h2
{
	margin:170px 50px;
	position:absolute;
	z-index:999;
	font-size:26px; 
}

.banner ul li img
{
	//display:none;
	width:100%;
}

.banner .dot
{
	-webkit-filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
	-moz-filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
	-ms-filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
	-o-filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
	filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
}

.banner .dots
{
	position: absolute;
	left:0;
	right:0;
	bottom:20px;
}

.banner .dots li
{
	width:10px;
	height:10px;
	margin:0px 4px;
	display: inline-block;

	text-indent: -999em;

	border: 2px solid #111;
	border-radius: 6px;

	background:#cacaca;

	cursor: pointer;
	opacity: .4;

	-webkit-transition: background .5s, opacity .5s;
	-moz-transition: background .5s, opacity .5s;
	transition: background .5s, opacity .5s;
}

.banner .dots li.active
{
	background: #fff;
	opacity: 1;
}