.karousel {
	position: relative;
	overflow: hidden;
}
.karousel .next,
.karousel .prev {
	position: absolute;
	bottom: 158px;
	z-index: 2;
	font-size: 30px;
	font-weight: bold;
	text-decoration: none;
	color: #fff;
}
.karousel .next {
	right:0px;
}
.karousel .prev {
	left:0px;
}
.karousel .indicators {
	position: absolute;
	bottom: 20px;
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
	list-style: none;
}
.karousel .indicators li {
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0;
	padding: 0 2px;
	background: url(../img/indicator.png) 0 0 no-repeat;
	text-indent: -9999px;
	cursor: pointer;
}
.karousel .indicators li.current {
	background-position: 0 -20px;
}

