@keyframes imgban {
	0% {opacity:1;}
	25% {opacity:0;}
	50% {opacity:0;}
	75% {opacity:0;}
	100% {opacity:1;}
}
@-moz-keyframes imgban {
	0% {opacity:1;}
	25% {opacity:0;}
	50% {opacity:0;}
	75% {opacity:0;}
	100% {opacity:1;}
}
.banner {
	position:relative;
	width:960px;
	height:400px;
	left:50%;
	margin-left:-480px;
	margin-top:0;
	border:5px;
	overflow:hidden;
}
.banner img {
	position:absolute;
	width:960px;
	height:400px;
	transform:scale(0.9,0.9);
	-moz-transform:scale(0.9,0.9);
	-webkit-transform:scale(0.9,0.9);
	margin: 0 auto;
	border:5px;
	padding:0;
	border: 5px solid transparent;
	border-top-left-radius:5px;
	border-top-right-radius:5px;
	border-bottom-left-radius:5px;
	border-bottom-right-radius:5px;
	box-shadow:0px 0px 5px black;
	animation:imgban 5s infinite ease-in-out;
	-moz-animation:imgban 5s infinite ease-in-out;
	animation-duration:25s;
	-moz-animation-duration:25s;
}
.banner img:nth-of-type(1){
	animation-delay:20s;
	-moz-animation-delay:20s;
}
.banner img:nth-of-type(2){
	animation-delay:15s;
	-moz-animation-delay:15s;
}
.banner img:nth-of-type(3){
	animation-delay:10s;
	-moz-animation-delay:10s;
}
.banner img:nth-of-type(4){
	animation-delay:5s;
	-moz-animation-delay:5s;
	z-index:-54;
}
.banner img:nth-of-type(5){
	animation-delay:0s;
	-moz-animation-delay:0s;
}