div.carousel {
	position: relative;
	display: block;
	width: 100%;
	height: inherit;
	background-position: center center;
	background-repeat: no-repeat;
    background-size: cover;
	overflow: hidden;
}

div.carousel > ul {
	position: relative;
	display: block;
	width: 100%;
	height: inherit;
}

div.carousel > ul > li {
	position: relative;
	display: none;
	width: 100%;
	height: inherit;
    background-size: cover;
    -o-transition:.5s;
	-ms-transition:.5s;
	-moz-transition:.5s;
	-webkit-transition:.5s;
	transition:.5s;
}

div.carousel > ul > li.active {
    display:block;
}

div.carousel > ul > li > figure  {
	position: relative;
	display: table;
    width: 100%;
    height: inherit;
	overflow: hidden;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	
}

div.carousel > ul > li > figure > img {
	position: relative;
	display: table;
	width: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0;
}

div.carousel > ul > li > div {
    position: absolute;
	display: table;
	top: 0px;
}

/*
dots
*/

div.dots {
	position: absolute;
	bottom:5px;
	left:50%;
	z-index: 2;
}

div.dots > ul {
	position: relative;
	display: table;
	margin-left: -50%;
}

div.dots > ul > li  {
	position: relative;
	display: table-cell;
	padding: 4px;
	cursor: pointer;
}

div.dots > ul > li > div {
	position: relative;
	display: block;
	width: 10px;
	height: 10px;
	-o-transition:.5s;
	-ms-transition:.5s;
	-moz-transition:.5s;
	-webkit-transition:.5s;
	transition:.5s;
	background-color:#FFFFFF;
}

div.dots > ul > li:hover > div,
div.dots > ul > li.active > div {
    opacity: 1;
    background-color: #000000;
}

/* timer */

div.dots > ul > li > div > span {
	position: relative;
	display: none;
	width: 0px;
	height: 100%;
	background-color: #000000;
}

div.dots > ul > li > div > span.status {
	display: block;
}