@charset "utf-8";
/* CSS Document */
.tob_banner {
	display: block;
	width: 95%;
	position: relative;
	margin-bottom: 40px;
	margin-right: auto;
	margin-left: auto;
}
#wrapper {
	width: 100%;
	height: 100px;
	overflow: hidden;
	display: block;
			}

			#carousel {
	display: block;
	float: left;
	position: relative;
	width: 150px;
		}
    .div_car {
	vertical-align: top;
	display: inline-block;
	width: 150px;
	height: 100px;
			}
			.img_car {
	border: 5px solid #FFF;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	height: 100px;
	display: block;
	margin-right: auto;
	margin-left: auto;
			}
			.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 {
	height: 50px;
	position: absolute;
	top: 40%;
	width: 40px;
	display: block;
	background-color: rgba(255,255,255,0.5);
	background-repeat: no-repeat;
	background-position: center center;
			}
			#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;
			}
