/*
 * jQuery Nivo Slider v2.3
 * http://nivo.dev7studios.com
 *
 * Copyright 2010, Gilbert Pellegrom
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 * 
 * March 2010
 */
 
 
/* 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:60;
	display:none;
}
/* The slices in the Slider */
.nivo-slice {
	display:block;
	position:absolute;
	z-index:1;
	height:100%;
}
/* Caption styles */
.nivo-caption {
	position:absolute;
	left:0px;
	bottom:0px;
	background:#000;
	color:#fff;
	opacity:0.8; /* Overridden by captionOpacity setting */
	width:100%;
	z-index:89;
}
.nivo-caption p {
	padding:5px;
	margin:0;
}
.nivo-caption a {
	display:inline !important;
}
.nivo-html-caption {
    display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position:absolute;
	bottom:15px;
	z-index:99;
	cursor:pointer;
}
.nivo-prevNav {
	right:135px;
	background-image:url(images/arrows.png);
	height:30px; 
	width:30px;
	text-indent:-9999px;
}
.nivo-nextNav {
	right:85px;
	bottom:20px;
	background-image:url(images/arrows.png);
	height:30px; 
	width:30px;
	background-position:-30px top;
	text-indent:-9999px;
}
/* Control nav styles (e.g. 1,2,3...) 
.nivo-controlNav { display:none;}  This can also be turned off in the jquery.nivo.slider.pack.js file*/

.nivo-controlNav a{
	position:relative;
	z-index:99;
	cursor:pointer;
	display:none;
}
.nivo-controlNav a.active {
	font-weight:bold;
}

#slider {
    position:relative;
    width:648px; /* Change this to your images width */
    height:292px; /* Change this to your images height */
/*    background:url(images/loading.gif) no-repeat 50% 50%;*/
border:1px solid #808080;
}
#slider img {
    position:absolute;
    top:0px;
    left:0px;
    display:none;
}
#slider a {
    border:0;
    display:block;
}


/* - funtions that can be edited in the jquery.nivo.slider.pack.js file for the slider

http://nivo.dev7studios.com/#usage

        effect:'random', //Specify sets like: 'fold,fade,sliceDown'  (set this in the string of line 62)
        slices:15,
        animSpeed:500, //Slide transition speed
        pauseTime:3000,
        startSlide:0, //Set starting Slide (0 index)
        directionNav:true, //Next & Prev
        directionNavHide:true, //Only show on hover
        controlNav:true, //1,2,3...
        controlNavThumbs:false, //Use thumbnails for Control Nav
        controlNavThumbsFromRel:false, //Use image rel for thumbs
        controlNavThumbsSearch: '.jpg', //Replace this with...
        controlNavThumbsReplace: '_thumb.jpg', //...this in thumb Image src
        keyboardNav:true, //Use left & right arrows
        pauseOnHover:true, //Stop animation while hovering
        manualAdvance:false, //Force manual transitions
        captionOpacity:0.8, //Universal caption opacity
        beforeChange: function(){},
        afterChange: function(){},
        slideshowEnd: function(){}, //Triggers after all slides have been shown
        lastSlide: function(){}, //Triggers when last slide is shown
        afterLoad: function(){} //Triggers when slider has loaded
		*/
