@charset "utf-8";
/*
 * 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 */
#wrapper {background:url(images/loader.gif) no-repeat 50% 50%; position:relative;}
.nivoSlider {
	position:relative;
	width:100%;
	height:auto;
	overflow: hidden;
}
.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;
	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:50%;
	margin-top:-22px;
	z-index:9;
	cursor:pointer;
	background:url(../img/icon.png) no-repeat;
	width:44px; height:44px; text-indent:-9999px;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	opacity:0;
	background-color:#FFF;
}
.nivo-directionNav a.nivo-prevNav {
	left:-44px;
	background-position:0 -44px;
	border-radius:0 3px 3px 0;
}
.nivo-directionNav a.nivo-nextNav {
	right:-44px;
	background-position:-44px -44px;
	border-radius:3px 0 0 3px;
}
#wrapper:hover .nivo-directionNav a {opacity:1;}
#wrapper:hover .nivo-prevNav {left:0;}
#wrapper:hover .nivo-nextNav {right:0;}
.nivo-directionNav a:hover {background-color:#8FC237;}
.nivo-directionNav a.nivo-prevNav:hover {background-position:0 0;}
.nivo-directionNav a.nivo-nextNav:hover {background-position:-44px 0;}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
	text-align:center;
	position:absolute;
	width:100%;
	bottom:10px;
	z-index:1000;
}
.nivo-controlNav a {
	cursor:pointer;
	margin:0 5px;
	background:url(../images/quan.png) right center;
	height:16px; 
	width:16px;
	display:inline-block;
	text-indent:-99999px;
	
}
.nivo-controlNav a.active {
	background-position:left center;
}
@media (max-width: 768px) {
	.nivoSlider {width:100%; overflow:hidden; margin:0 auto;}
	
}