


#slider {
	max-width: 1200px;
	height: 549px;
	margin: 0 auto;
	position: relative;
}

.slide
{
	max-width: 100%;
	height: 549px;
	position: absolute;
	z-index: 0;
}

#slide_left {
	width: 0;
	height: 549px;
	background-color: rgba(34,34,34,0.5);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
	transition: width 1s;
}

#slide_right {
	width: 0;
	height: 549px;
	background-color: rgba(34,34,34,0.5);
	position: absolute;
	right: 0;
	top: 0;
	z-index: 3;
	transition: width 1s;
}

#slider:hover #slide_left {
	display: block;
	width: 100px;
}

#slider:hover #slide_right {
	display: block;
	width: 100px;
}

.active {
	z-index: 1;
}

#left_arrow {
	position: relative;
	top: 220px;
	left: 5px;
}

#right_arrow {
	position: absolute;
	top: 220px;
	right: 5px;
}

#dots, #dots2 {
	width: 100%;
	text-align: center;
	height: auto;
	color: white;
	z-index: 3;
	position: absolute;
	bottom: 40px;
}

.one_dot {
	width: 20px;
	height: 20px;
	margin: 10px;
}


