@charset "utf-8";
/* CSS Document */

#banner {
	width: 1200px;
	height: 650px;
	background: #000;
	color: #fff;
	margin: auto;
}

.bannerImageRotate {
	display: none;
}
.bannerImageRotate:first-child {
	display: block;
}
#bannerController {
	width:1200px;
	position: absolute;
	/*
	background-color:red;
	opacity:0.5;
	*/
	top:805px;
	padding:20px 0;
}
#bannerController ul {
	/*width: 103px;*/
	height: 20px;
	margin: auto;
	bottom: 0;
}
#bannerController ul li {
	list-style: none;
	width: 22px;
	height: 22px;
	float: left;
	/*border: 1px solid #000;*/
	background: #C8C8C8;
	margin-right:5px;
	cursor: pointer;
	border-radius:100%;
	
	-webkit-transition: background-color 1s ease-in-out;
    -moz-transition: background-color 1s ease-in-out;
    -o-transition: background-color 1s ease-in-out;
    -ms-transition: background-color 1s ease-in-out;
    transition: background-color 1s ease-in-out;
}
#bannerController ul li:last-child {
	margin: 0px;
}
#bannerContainer .currentBanner {
	width: 100%;
	height: 650px;
	margin: auto;
	display: none;
	
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	
	-webkit-transition: background-image 1s ease-in-out;
    -moz-transition: background-image 1s ease-in-out;
    -o-transition: background-image 1s ease-in-out;
    -ms-transition: background-image 1s ease-in-out;
    transition: background-image 1s ease-in-out;
}
#bannerContainer ul {
	float: left;
	width: 100%;
	height: 700px;
}
#bannerContainer ul li {
	width: 100%;
	height: 100%;
	float: left;
	list-style: none;
}