.simple-carousel
{
	width:100%;
	height:80px;
	position:relative;
}

.simple-carousel-inner
{
	width:100%;
	height:100%;
	position:relative;
	overflow:hidden;
	background-color: #cdcdcd;	
	-moz-box-shadow: 1px 1px 8px gray;
	-webkit-box-shadow: 1px 1px 8px gray;
	box-shadow: 1px 1px 8px gray;
}

.simple-carousel-item 
{
	list-style: none;
	position: absolute;
	max-height: 100%;
	margin: 0;
	white-space: nowrap;
}
.simple-carousel-item:nth-child(n+2)
{
	top:85px;	
}
.simple-carousel-item li
{
	display: inline-block;
	margin-bottom: 10px;	
}

.simple-carousel-item img
{
	max-width: none;
	width: auto;
	height: 80px;	
}

.simple-carousel-control 
{
	background: #333;
	background: rgba(0,0,0,.8);
	color: #fff;
	font-size: 25px;
	height: 30px;
	width: 30px;
	line-height: 27px;
	text-align: center;
	vertical-align: text-top;
	border-radius: 20px;
	position: absolute;
	top: 30%;
	z-index: 2;
	opacity: .5;
	cursor: pointer;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.simple-carousel.h2 { height: 165px; }

.simple-carousel-control:hover	{ opacity: 1; }
.simple-carousel-control.left	{ left: -22px; }
.simple-carousel-control.right	{ right: -22px; }