/*
 * 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 */

#slider-wrapper{
margin-bottom:-10px;
margin-top:0px;
}


 .nivoSlider  {
	position:relative;
	width:99%;
	height:315px;
	margin-top:0px;
	margin-left:30px;
	margin-bottom:0px;
	/*border:solid 2px blue;*/
	overflow: hidden;
	visibility: visible;
}

#slider-wrapper .nivo-caption p img{
        width:400px;
        height:40px;
		margin:15px 10px 10px 30px ;
		float:right;
		display: inline-block;
    }
#slider-wrapper .nivo-main-image {
	
	display: block !important;
	position: relative !important; 
	width: 450px !important;
}

 #slider-wrapper .nivoSlider img{
		float: left;
        width:450px;
        height:300px;
		margin-top:0px;
		margin-right:5px;
        margin-bottom:-10px !important;
		margin-left:0px;
        /*border-radius:15px;*/
		position:absolute;
		max-width: 450px;
		display:none;
		
    }
	


/* 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:5;
	display:none;
}
/* The slices and boxes in the Slider--the following caused a problem with the pics loading with
extra space on the bottom*/
.nivo-slice {
	display:block;
	position:absolute;
	top:0;
	height: 100%;
	z-index:5;
} 
.nivo-box {
	display:block;
	/*position:absolute;*/
	z-index:5;
	overflow:hidden;
}

 .nivo-box img { display:block; }


/*Caption styles */
.nivo-caption {
	position:relative;
	float:left;
	width:450px;
	height: 300px;
	z-index:8;
	margin:0px 10px 0px 20px;
	opacity: .8;
	overflow:visible;
	display:none;
	-moz-opacity: .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{font-size: .95em; font-family:sans-serif, Verdana;}
.nivo-caption h3{	font-size: 1.3em; margin-top:0px;}

.nivo-caption h3 a:link{text-decoration:none; color: black; }
.nivo-caption h3 a:visited{text-decoration:none; color: black;}
.nivo-caption h3 a:hover{text-decoration:underline; color: #74a1b3;}


/*following are added from theme- this shows the little circles when picture and text change*/
 .nivo-controlNav {
	text-align:center;
	padding: 20px 0 ;
}
 .nivo-controlNav a {
	display:inline-block;
	width:22px;
	height:22px;
	background:url(/slider/bullets.png) no-repeat;
	text-indent:-9999px;/*this keeps  1 2 3 4 from showing up under the bullets*/
	border:0;
	margin: -25px 2px 0 2px;
		 
}
 .nivo-controlNav a.active {
	background-position:0 -22px;
}/*this places the active bullet*/

 .nivo-directionNav a {
	display:block;
	width:30px;
	height:30px;
	text-indent:-9999px;
	border:0;
	opacity: .5;
	-webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all200ms ease-in-out;
    transition: all 200ms ease-in-out;
}


 a.nivo-nextNav {
	background-position:-30px 0;
	right:15px;
}
 a.nivo-prevNav {
	left:15px;
}


/*above are added from theme*/




