﻿/*
 * jQuery Nivo Slider v2.6
 * http://nivo.dev7studios.com
 *
 * Copyright 2011, Gilbert Pellegrom
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 * 
 * March 2010
 */
 
#slider {
    width:630px; /* Make sure your images are the same size */
    height:360px; /* Make sure your images are the same size */
	position:relative;
    border: 5px solid #2a2a2a;   
}
#slider-item {
    width:630px; /* Make sure your images are the same size */
    height:360px; /* Make sure your images are the same size */
	position:relative;
}


/* The Nivo Slider styles */
.nivoSlider {
	position:relative;
	width:100%;
	height:auto;
	overflow: hidden;
}
.nivoSlider img {
	position:absolute;
	vertical-align: middle;
	top:0px;
	left:0px;
	max-width: 100%;
	height: auto;
}


/* 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%;
}
.nivo-box {
	display:block;
	position:absolute;
	z-index:5;
}
/* Caption styles */
.nivo-caption {
	position:absolute;
	width: 101%;
	left:0;
	bottom:0;
	color:#fff;
	text-align: left;
	display: block;
	z-index:8;
}
.nivo-caption p {
	font:12px/18px "Helvetica Neue", Helvetica, Arial, sans-serif;	
	background-color: #2a2a2a;
	color: #FFF;
	margin-bottom: 0;
	padding: 10px; 
}
.nivo-html-caption {
    display:none;
}

.nivo-caption h2 {
 margin-left: 10px; 
 margin-top: 10px;
  margin-right: 10px;
 margin-bottom: 0;
	background-color: #71767b;
	color: #fff;
	padding: 0 3px;
}
.nivo-caption h2 a {
	color: #fff;
	font: 18px/24px 'Open Sans', sans-serif;
	font-weight: 600;
	letter-spacing: 0;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-controlNav {
	visibility: hidden;
    position:absolute;
    float:left;
	right:10px;
	top:10px;

}

.nivo-controlNav a {
	width: 8px;
    display: block;
	height: 8px;
	border-radius: 10px;
	background-color: #FFF;
    margin-right:5px;
    text-indent:-9999px;
    float: left;
    background-color: #fff;
	cursor:pointer;


}
.nivo-controlNav a.active {
	background-color:#2a2a2a;
}

.nivo-controlNav a.active {
	font-weight:bold;
}



/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position:absolute;
	bottom:4px;
	cursor:pointer;
    width:40px;
    height:40px;
    text-indent:-9999px;		
	background:url('../images/sprites.png') no-repeat;
	z-index:1000;
}
a.nivo-prevNav {
	left:15px;
	top: 125px;
	background:url('../images/nivo_direction_nav_white.png') no-repeat;
	opacity: .3;
	z-index:10;

}
a.nivo-prevNav:hover {
	opacity: .8;
	background:url('../images/nivo_direction_nav_red.png') no-repeat;
	}
	
a.nivo-nextNav {
	background:url('../images/nivo_direction_nav_white.png') no-repeat -40px 0px;
	right:15px;
	top: 125px;
	opacity: .3;
	z-index:10;

}
a.nivo-nextNav:hover {
	opacity: .8;
	background:url('../images/nivo_direction_nav_red.png') no-repeat -40px 0px;

	}

/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav a {
	position:relative;
	z-index:9;
	cursor:pointer;
}
.nivo-controlNav a.active {
	font-weight:bold;
}

