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

body {
	margin: 0;
	padding: 0;
	/*background-color:#333;*/
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 10px;
}

h3 {
	margin: 0 0 5px;
	padding: 0;
	color: #3d3d3d;
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 0.8;
}

p {
	margin: 0;
	padding: 0;
	color: #696969;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
}

#slider-cont {
	width: 758px;
	height: 594px;
	margin: 0 auto;
	padding: 30px 20px;
	background-color:#FFF;
}
 
/* The Nivo Slider styles */
.nivoSlider {
	width: 758px;
	height: 530px;
	position:relative;
}

.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	display: none;
}

/* 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 {
	width: 758px !important;
	position: absolute;
	top: 560px;
	left: 60px;
	background: #fff;
	z-index: 89;
	opacity: 1;
	color: #b5b5b5;
	font-size: 13px;
	font-weight: bold;
}

.nivo-caption a {
	display:inline !important;
}

.nivo-html-caption {
    display:none;
}

/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	width: 12px;
	height: 18px;
	position:absolute;
	top: 161px;
	z-index:99;
	cursor:pointer;
	background-image: url('../../images/slider-arrows.gif');
	text-indent: -9999px;
}

.nivo-prevNav {
	left: -60px;
	background-position: 0 0;
}

.nivo-nextNav {
	right: -60px;
	background-position: 12px 0;
}

/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
	width: 150px;
	position: absolute;
	top: 360px;
	right: 0px;
	text-align: right;
	font-size: 14px;
}

.nivo-controlNav a {
	z-index:99;
	cursor:pointer;
}

.nivo-controlNav a:after {
	content: " / ";
}

.nivo-controlNav a:last-child:after {
	content: "";
}

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