.carousel  {
	overflow: hidden;
	height:auto;
}
.carousel {
	position: relative;
}
.carousel .cImg {
	position: relative;
	top:0;
	left:0;
	transition: opacity 2s;
	z-index: 0;
	opacity: 0;
	width: 100%;
	height:0px;
	overflow: hidden;
}
.carousel .cImg .author {
	position: absolute;
	bottom: 10px;
	right:10px;
	background-color:rgba(255,255,255,.6);
	opacity: .8;
	padding: 0 5px;
	border-radius: 4px;
}
.carousel > .active {
	opacity: 1 !important;
	height: auto !important;
	z-index: 100;
}
.cControl {
	position: absolute;
	bottom: 20px;
	left: 50%;
	opacity: 0;
	z-index: 110;
}
.cControl a {
	margin: 5px 2px;
	display: block;
	position: relative;
	width: 10px;
	height: 10px;
	background: #ddd;
	border: 1px solid #555;
	border-radius: 10px;
	z-index: 110;
	float:left;
	cursor: pointer;
}
.cControl .active {
	background: #999;
}
