/*
 * jQuery Nivo Slider v3.1
 * 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 {
	background:#fff url(loading.gif) no-repeat 50% 50%;
	height:100%;
	margin-bottom:10px;
	position:relative;
	width:100%;
}
.nivoSlider a {
	border:0;
	display:block;
}
.nivoSlider img {
	display:none;
	left:0px;
	height:308px !important;
	max-width: none;
	position:absolute;
	top:0px;
}
.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;
}

/* 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 {
	background:rgba(255, 255, 255, 0.8);
	display: none;
	left:20px;
	height:288px;
	opacity: 0.8;
	overflow: hidden;
	padding:10px 0;
	position:absolute;
	top:0px;
	width:360px;
	z-index:8;
}
.nivo-caption p {
	color:#357bc3;
	font-family: 'GothicBold';
	font-size:34px;
	font-weight:bold;
	line-height:40px;
	margin:0;
	height:210px;
	overflow:hidden;
	padding:5px;
	position:absolute;
	top:25%;
}
.nivo-caption a {
	display:inline !important;
}
.nivo-caption a:hover {
    color:#357bc3;
}
.nivo-html-caption {
    display:none;
}

/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav {}
.nivo-directionNav a {
	border: 0 none;
	cursor:pointer;
    display: block;
    height: 60px;
    /*opacity: 0;*/
	position:absolute;
    text-indent: -9999px;
	top:40%;
    width: 17px;
	z-index:9;
	
	-webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}
.nivo-directionNav a.nivo-prevNav {
	background:url(../images/slider-prevnav.png) no-repeat;
	left:-27px;
}
.nivo-directionNav a.nivo-nextNav {
	background:url(../images/slider-nextnav.png) no-repeat;
	right:-27px;
}
/*#slider:hover .nivo-directionNav a { opacity: 1; }*/

/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
	text-align:center;
	padding: 10px 0;
}
.nivo-controlNav a {
	background:url(../images/slider-thumb-default.jpg) no-repeat;
	border:0 none;
	cursor:pointer;
	display:inline-block;
	height:22px;
	margin: 0 2px;
	text-indent:-9999px;
	width:22px;
}
.nivo-controlNav a.active {
	background:url(../images/slider-thumb-active.jpg) no-repeat;
	font-weight:bold;
}

/* Control nav styles (image thumb) */
.theme-default .nivo-controlNav.nivo-thumbs-enabled {
	width: 100%;
}
.theme-default .nivo-controlNav.nivo-thumbs-enabled a {
	width: auto;
	height: auto;
	background: none;
	margin-bottom: 5px;
}
.theme-default .nivo-controlNav.nivo-thumbs-enabled img {
	display: block;
	width: 120px;
	height: auto;
}