/* BUTTON LAYOUT */
.owl-theme .owl-controls {
	margin-top: 10px;
	text-align: center;
}

/* NEXT AND PREVIOUS BUTTONS */

/* common to both buttons */
.owl-theme .owl-controls .owl-buttons div{
	display: inline-block;
	position: absolute;
	width: 25px;
	height: 67px;
    top: 72px;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
}

/* shifting the previous button to the left hand */
.owl-theme .owl-controls .owl-buttons .owl-prev {
  left: -35px;
  background-image: url('../img/chevron-left.png');
}

/* shifting the previous button to the right hand */
.owl-theme .owl-controls .owl-buttons .owl-next {
  right: -35px;
  background-image: url('../img/chevron-right.png');
}

.owl-theme .owl-controls .owl-buttons .owl-prev:hover,
.owl-theme .owl-controls .owl-buttons .owl-next:hover {
	opacity: 1;
}

/* no buttons on very, very narrow screens */
@media (max-width: 390px) {
	.owl-theme .owl-controls .owl-buttons div{
		display: none;
	}
}


/* PAGINATION*/

/* pagination position container */
.owl-theme .owl-controls .owl-page {
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}

/* pagination position bullets */
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 10px;
	height: 10px;
	margin: 15px 5px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #d2d2d2;
	box-shadow: inset 0px 1px 0px rgba(122,122,122,0.85);
}

/* pagination position active */
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	background: #a5a5a5;
}
