/*
 * 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
 * 
 */

 
/* The Nivo Slider styles */
.nivoSlider {
        position:relative;
        width:940px; /* Change this to your images width */
        height:360px; /* Change this to your images height */
	background:url(../images/nivoSlider/loading.gif)  no-repeat 50% 50%; 
        }
        
.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	display:none;
        width:100%;
	height:100%;
        }
        
.nivoSlider a {
        border:0;
        display:block;
        }

/* 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;
	right: 0px;
	bottom: 70px;
	z-index: 8;
        text-align: right;
        }

.nivo-caption p {
        display: inline-block;
	color: #fff; 
        font-size: 32px;
        line-height: 35px;
        padding: 10px 17px;
        }
        
.nivo-caption  a {
	color: #fff !important;   
	display:inline !important;
        }

.nivo-caption a:hover {
	color:#fff;
	}
	
.nivo-html-caption {
        display:none;
        }


/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position:absolute;
	bottom: 0;
	z-index:9;
	cursor:pointer;	
	display:block;
	width:30px;
	height:30px;
	background:url(../images/nivoSlider/arrows.png) no-repeat;
	text-indent:-9999px;
	border:0;
	}
	
a.nivo-nextNav {
	background-position:-30px 0;
	right:0;
         background-color: #222;
	}

a.nivo-prevNav {
	right:32px;
         background-color: #222;
	}

/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav a {
	position:relative;
	z-index:9;
	cursor:pointer;	
	display:block;
	width:22px;
	height:22px;
	background:url(../images/nivoSlider/bullets.png) no-repeat;
	text-indent:-9999px;
	border:0;
	margin-right:1px;
	float:left;
        }
        
.nivo-controlNav a.active {
	font-weight:bold;	
	background-position:0 -22px;
        }

.nivo-controlNav {
	position: absolute;
	left: 10px;
	bottom: 0px;
	}