/*
 * jQuery Nivo Slider v2.1
 * 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;
	margin-top:10px;
	margin-left:10px;
}
.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:50;
	height:100%;
}
/* Caption styles */
.nivo-caption {
	position:relative;
	left:665px;
	bottom:0px;
	background:#000;
	color:#fff;
	opacity:0.8; /* Overridden by captionOpacity setting */
	width:285px;
	height: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;
	top:50%;
	z-index:1000;
	cursor:pointer;
	text-indent:-9999px;
	display:block;
	width: 30px;
    height: 30px;
}
.nivo-prevNav {
	left:20px;
	background: url("/public/images/arrow_left.png");
    display: block;
    width: 30px;
    height: 30px;
	xbackground-position: 0 0;
	z-index:1;
}
.nivo-prevNav:hover
{
background: url("/public/images/arrow_left.png");
}

.nivo-nextNav {
	right:20px;
	background: url("/public/images/arrow_right.png");
    display: block;
    width: 30px;
    height: 30px;
	xbackground-position: -80px 0;
	z-index:1;
}
.nivo-nextNav:hover
{
background: url("/public/images/arrow_right.png");
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
	position:absolute;
	right:45%;
	bottom:-30px;
	z-index:999999999;
}
.nivo-controlNav a {
	background: url("/public/images/slide_off.png") no-repeat;
	width:16px;
	height:17px;
	text-indent:-9999px;
	border:0;
	margin-right:10px;
	float:left;
	display:block;
	cursor:pointer;
}
.nivo-controlNav a.active {
	font-weight:bold;
	background: url("/public/images/slide_active.png") no-repeat;
}

.nivo-controlNav a.active:hover {
	background: url("/public/images/slide_active.png") no-repeat;
}

.nivo-controlNav a:hover {
	font-weight:bold;
	background: url("/public/images/slide_hover.png") no-repeat;
}

/* Fix for preloading images */
#slider img 
{
	position:absolute;
	top:0px;
	left:0px;
	display:none; /* For FF,Opera,Chrome */
}

#slider a {
	border:0;
	display:block; /* For IE */
}

#slider 
{
    float:left;
    margin:0;
    height:320px;
    width:954px;
    background:url(/public/images/progress.gif) no-repeat 50% 50%;
}