/*
 * jQuery Nivo Slider v3.2
 * http://nivo.dev7studios.com
 *
 * Copyright 2012, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
 
/* The Nivo Slider styles */
.nivoSlider {
    position: relative;
    height: auto;
    margin: 0;
    z-index: 9;
}
.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	max-width: none;
}
.nivo-main-image {
	display: block !important;
	position: relative !important; 
	width: 100% !important;
}

/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink {
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	border:0;
	padding:0;
	margin:0;
	z-index:6;
	display:none;
	background:white; 
	filter:alpha(opacity=0); 
	opacity:0;
}
/* The slices and boxes in the Slider */
.nivo-slice {
	display:block;
	position:absolute;
	z-index:5;
	height:100%;
	top:0;
}
.nivo-box {
	display:block;
	position:absolute;
	z-index:5;
	overflow:hidden;
}
.nivo-box img { display:block; }

/* Caption styles */
.nivo-caption {
	position:absolute;
	left:0px;
	bottom:0px;
	background:#000;
	color:#fff;
	width:100%;
	z-index:8;
	padding: 5px 10px;
	opacity: 0.8;
	overflow: hidden;
	display: none;
	-moz-opacity: 0.8;
	filter:alpha(opacity=8);
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.nivo-caption p {
	padding:5px;
	margin:0;
}
.nivo-caption a {
	display:inline !important;
}
.nivo-html-caption {
    display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position:absolute;
	top:45%;
	z-index:9;
	cursor:pointer;
}
.nivo-prevNav {
	left:0px;
}
.nivo-nextNav {
	right:0px;
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
	border: 0 none;
	bottom: 10px;
	position: absolute;
	text-align: center;
	width: 100%;
	left: 0;
	z-index: 9;
}
.nivo-controlNav a {
	cursor: pointer;
	font-size: 0;
	height: 11px;
	width: 11px;
	margin: 0 5px;
	background: transparent;
	border: 1px solid #fff;
	position: relative;
	display: inline-block;
	vertical-align: top;
	transition: all 0.45s ease 0s;
	-webkit-transition: all 0.45s ease 0s;
	-moz-transition: all 0.45s ease 0s;
	-o-transition: all 0.45s ease 0s;
}
.nivo-controlNav a.active,
.nivo-controlNav a:hover {
	background: #c1a38b;
	border-color: #c1a38b;
	transition: all 0.45s ease 0s;
	-webkit-transition: all 0.45s ease 0s;
	-moz-transition: all 0.45s ease 0s;
	-o-transition: all 0.45s ease 0s;
}

.nivo-directionNav a {
    position: absolute;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    top: 45%;
    z-index: 999;
    text-indent: -9999px;
    overflow: hidden;
    text-decoration: none;
    height: 45px;
    width: 65px;
    opacity: 0;
    cursor: pointer;
}
#slider:hover .nivo-prevNav, #slider:hover .nivo-nextNav {
    opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -o-opacity: 1;
    -ms-opacity: 1;
}
.nivo-prevNav {
    left: 5%;
    right: auto;
    background: url("../../image/slider-left-border.png") no-repeat scroll center 0;
}
.nivo-nextNav {
    left: auto;
    right: 5%;
    background: url("../../image/slider-right-border.png") no-repeat scroll center 0;
}
.nivo-directionNav a:hover {
    background-position: center -120px;
}
.nivo-prevNav::before{
	background: url("../../image/slider-left.png") no-repeat scroll 35px 13px;
	content: "";
	bottom: 0;
	right: 0;
	position: absolute;
	left: 0;
	top: 0;
	transition: all 300ms ease 0s;
	-webkit-transition: all 300ms ease 0s;
	-moz-transition: all 300ms ease 0s;
	-ms-transition: all 300ms ease 0s;
	-o-transition: all 300ms ease 0s;
}
.nivo-prevNav:hover::before{
	background: url("../../image/slider-left-h.png") no-repeat scroll 25px 13px;
}
.nivo-nextNav::before{
	background: url("../../image/slider-right.png") no-repeat scroll 0 13px;
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: all 300ms ease 0s;
	-webkit-transition: all 300ms ease 0s;
	-moz-transition: all 300ms ease 0s;
	-ms-transition: all 300ms ease 0s;
	-o-transition: all 300ms ease 0s;
}
.nivo-nextNav:hover::before{
	background: url("../../image/slider-righ-h.png") no-repeat scroll 10px 13px;
}
@media (max-width: 1400px) {
	.nivo-prevNav {
		left: 15px;
	}
	.nivo-nextNav {
		right: 15px;
	}
}
@media (max-width: 767px) {
	.nivo-directionNav a{
		display: none;
	}
	.nivo-controlNav{
		bottom: 5px;
	}
}