/**
 * Owl Carousel v2.1.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */

.owl-dots
{
	margin-top: 10px;
	text-align: center;
	-moz-user-select: none;
}
.owl-dot
{
	display: inline-block;
	cursor: pointer;
}
.owl-dot span
{
	background-color: #B62A3E;
	border-radius: 20px;
	display: block;
	height: 12px;
	margin: 5px 7px;
	opacity: 0.5;
	width: 12px;
}
.owl-dot.active span
{
	opacity: 1;
}
.owl-nav
{
	
}
.owl-nav > div
{
	position: absolute;
	font-size: 50px;
	margin-top: -30px;
	top: 50%;
	vertical-align: center;
	width: 60px;
	height: 60px;
	line-height: 1;
	text-align: center;
	display: inline-block;
	z-index: 10;
	color: #fff;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
	opacity: 0.7;
	content: ' ';
	font-family: serif;
}
.owl-nav > div:hover
{
	opacity: 1;
}
.owl-prev
{
	left: 0;
}
.owl-next
{
	right: 0;
}
.owl-prev:before
{
	content: '\2039';
}
.owl-next:before
{
	content: '\203a';
}


