#wrapper, #carousel, #carousel > div {
	width: 990px;
	height: 350px;
}

#wrapper {
	margin: 575px 0 0 -495px;
	overflow: hidden;
	position: absolute;
	margin: auto;
}

#carousel {
	position: relative;
	z-index: 2;
	
}

#carousel div {
	position: relative;
	float: left;
}

#carousel div > * {
	position: absolute;
    margin-left: 10px;
}

.img-front {
	left: 40px;
	top: 10;
	z-index: 3;
	width: 900px;
    height: 350px;

}


#carousel a {
	font-family: 'Pt Sans', sans-serif;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
	text-align: center;
	line-height: 40px;
	outline: none;
	display: block;
	background-color: #3E9FE4;
	width: 175px;
	height: 40px;
	left: 575px;
	top: 290px;
	border-radius: 3px;
	z-index: 4;
	
}

#carousel a:hover {
	background-color: #3dbfef;
	
}

#prev, #next {
	background-color: #fff;
	display: block;
	width: 50px;
	height: 0px;
	position: absolute;
	top: 110px;
	z-index: 10;
	border-radius: 25px;
	box-shadow: 0 0 5px rgba(0,0,0,0.4);
}

#prev span, #next span {
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	top: 19px;
}

#prev {
	left: 0px;
}

#prev span {
	border-right: 10px solid #ccc;
	left: 25px;
}

#prev:hover span {
	border-right-color: #999;
}

#next {
	right: -25px;
}

#next span {
	border-left: 10px solid #ccc;
	
}

#next:hover span {
	border-left-color: #999;
}