/* 
 * 	Default theme - Owl Carousel CSS File
 *	v2.0.0
 */


/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-nav div{
	color: #FFF;
	display:block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	padding: 0.5em;
	background-color:#e30e14;
}

.blocAussi .owl-theme .owl-controls .owl-nav div{
	color: #b4aa96;
	display:block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	padding: 0.5em;
	background-color:#2F2D29;
}

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls .owl-nav div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling dots*/
.owl-theme .owl-dots .owl-dot, .puce .owl-dots .owl-dot{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}

.owl-theme .owl-dots .owl-dot span, .puce .owl-dots .owl-dot span{
	-webkit-backface-visibility: visible;
	display: block;
	width: 10px;
	height: 10px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #869791;
	transition-property: opacity;
  	transition-duration: 200ms;
  	transition-timing-function: ease;
}

.owl-theme .owl-dots .owl-dot.active span, .puce .owl-dots .owl-dot.active span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}

