﻿/*
 * 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:980px; /* Make sure your images are the same size */
    height:400px; /* Make sure your images are the same size */
	position:relative;
	margin-left:-20px;
}


/* The Nivo Slider styles */
.nivoSlider {
	position:relative; 
}
.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
}

/* 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;
	left:120px;
	bottom:5px;
	height: 40px;
	background:#000;
	color:#fff;
	width:700px;
	text-align: center;
	z-index:8;
}
.nivo-caption p {
	padding:0 0 5px 20px;
	margin:0;
	font:21px/40px 'PT Sans Narrow', sans-serif;
	text-transform:uppercase;
}
.nivo-caption a {
	display:inline !important;
}
.nivo-html-caption {
    display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-controlNav {
    position:absolute;
    float:left;
	left:50%;
	bottom:-25px;
    margin-left:-65px; /* Tweak this to center bullets */
}

.nivo-controlNav a {
	background:url('../images/sliders/nivo/bullets.png') no-repeat;
	background-color: #222;
	width: 10px;
    display: block;
	height: 10px;
    margin-right:10px;
    text-indent:-9999px;
    float: left;
	-moz-transition:none;
	-o-transition: none;
	-transition: none;
	transition-property: none !important;
	-moz-transition-property: none !important;
	-o-transition-property: none !important;
	-webkit-transition-property: none !important;
	cursor:pointer;
}
.nivo-controlNav a.active {
/*    background-position:0 -10px;*/
	background-color: #ffe55a 
}

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

.nivo-directionNav a {
	position:absolute;
	top:46%;
	z-index:9;
	cursor:pointer;
    border:0;
    margin-right:7px;
    float:left;
    display:block;
    width:49px;
    height:49px;
    text-indent:-9999px;	
}
.nivo-prevNav {
	left:20px;
	display: block;
	position: absolute;
	background:url('../images/sliders/nivo/arrows.png') no-repeat;
	background-position: 0 0;
}
.nivo-prevNav:hover {
	background-position: 0 -49px;
}
.nivo-nextNav {
	display: block;
	position: absolute;
	background:url('../images/sliders/nivo/arrows.png') no-repeat;
	background-position: -49px 0;
	right:15px;
}
.nivo-nextNav:hover {
	background-position: -49px -49px;
}
