#wrapper {
	border: 1px solid #ccc;
	background-color: #fff;
	width: 800px;
	height: 1600px;
	padding: 20px;
	box-shadow: 0 5px 10px #ccc;
}
#inner {
	position: relative;
	width: 800px;
	height: 1600px;
	overflow: hidden;
}
#carousel img {
	display: block;
	float: left;
    width: 800px;
	height: 1600px;
}
 
#navi {
	background-color: #333;
	background-color: rgba(30, 30, 30, 0.2);
	border-top: 1px solid #000;
	width: 800px;
	height: 70px;
	bottom: -60px;
	left: 0;
	z-index: 10;
}
#timer {
	background-color: #222;
	background-color: rgba(20, 20, 20, 0.2);
	width: 0;
	height: 70px;
	position: absolute;
	z-index: 20;
	top: 0;
	left: 0;
}
#prev, #next, #play {
	display: block;
	position: absolute;
	z-index: 30;
	opacity: 0.6;
}
#prev, #next {
	width: 47px;
	height: 47px;
	top: 13px;
}
#play {
	width: 53px;
	height: 53px;
	top: 10px;
	background: url(../Carousel/ui/pause.png) 0 0 no-repeat transparent;
	left: 50%;
	margin-left: -27px;
}
#play.paused {
	background: url(../Carousel/ui/play.png) 0 0 no-repeat transparent;
}
#prev {
	background: url(../Carousel/ui/prev.png) 0 0 no-repeat transparent;
	left: 220px;
}
#next {
	background: url(../Carousel/ui/next.png) 0 0 no-repeat transparent;
	right: 220px;
}