/* html, body {
 height: 100%;
 padding: 0;
 margin: 0;
 }
 body {
 min-height: 400px;
 background-color: #fff;
 }
 body * {
 font-family: Arial, Geneva, SunSans-Regular, sans-serif;
 font-size: 14px;
 color: #333;
 line-height: 22px;
 }*/

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

#wrapper {
	/* margin: -175px 0 0 -495px;

	 position: absolute;
	 top: 50%;
	 left: 50%;*/
	position: relative;
	overflow: hidden;
}
#bg {
	background: url(../images/slider-back.jpg) repeat-x;
	/*background-image: -moz-linear-gradient(center top , rgba(59, 59, 59, 0.9), rgba(38, 38, 38, 0.9));*/
	border-radius: 8px;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5) inset, 0 2px 1px 0 rgba(255, 255, 255, 0.2) inset;
	width: 100%;
	height: 270px;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	border-radius: 10px;
}
#carousel {
	position: relative;
	z-index: 2;
}
#carousel div {
	position: relative;
	float: left;
}
#carousel div > * {
	position: absolute;
}
#carousel img.img-front {
	border-radius: 10px;
	box-shadow: 0 0 13px #000000;
	height: 190px;
	left: 160px;
	top: 50px;
	width: auto;
	z-index: 4;
}
#carousel img.img-back {
	left: 0px;
	top: 0px;
	height: 270px;
	border-radius: 10px 0 0 10px;
	z-index: 3;
}
#carousel h3 {
	font-size: 30px;
	font-weight: bold;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	width: 300px;
	left: 475px;
	top: 35px;
	margin: 0;
}
#carousel p {
	color: #ccc;
	font-size: 16px;
	width: 275px;
	left: 475px;
	top: 70px;
	margin: 0;
}
#carousel a {
	color: #fff;
	font-size: 18px;
	text-shadow: 0 1px 2px rgba(0,0,0,0.5);
	text-decoration: none;
	text-align: center;
	line-height: 40px;
	outline: none;
	display: block;
	background-color: #888;
	border: 1px solid #666;
	width: 175px;
	height: 40px;
	left: 500px;
	top: 253px;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.5);
	background-image: -moz-linear-gradient(bottom, #666 25%, #888 75%);
	background-image: -webkit-linear-gradient(bottom, #666 25%, #888 75%);
	background-image: -ms-linear-gradient(bottom, #666 25%, #888 75%);
	background-image: linear-gradient(bottom, #666 25%, #888 75%);
}
#carousel a:hover {
	background-color: #777;
	background-image: -moz-linear-gradient(top, #666 25%, #888 75%);
	background-image: -webkit-linear-gradient(top, #666 25%, #888 75%);
	background-image: -ms-linear-gradient(top, #666 25%, #888 75%);
	background-image: linear-gradient(top, #666 25%, #888 75%);
}

#prev, #next {
	background-color: #fff;
	display: block;
	width: 50px;
	height: 50px;
	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: -25px;
}
#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;
	right: 25px;
}
#next:hover span {
	border-left-color: #999;
}