@charset "utf-8";
/* CSS Document */

#wrapper {
	width: 100%;
	height: auto;
	overflow: hidden;
	border-top-width: 3px;
	border-top-style: solid;
	border-top-color: #fff;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #fff;
	box-shadow: 0 0 0 5px #3A3A3A;
	display: block;
			}

			#carousel {
	display: block;
	float: left;
	position: relative;
	width: 300px;
		}
    .div_car {
	vertical-align: top;
	display: inline-block;
	width: 98%;
	
			}
			.img_car {
	border: 5px solid #FFF;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	width: 98%;
			}
			.img_car:hover {
-moz-transform: scale(0.8);-webkit-transform: scale(0.8);-o-transform: scale(0.8);-ms-transform: scale(0.8);transform: scale(0.8);
}
			
			#prev, #next {
				background: center center no-repeat #fff;
				width: 5%;
			}
			#prev:hover, #next:hover {
	            background-color: #D2DBE8;
			}
			#prev {
				background-image: url( img/gui-prev.png );
				left: 0;
			}
			#next {
				background-image: url( img/gui-next.png );
				right: 0;
			}
