﻿/*
 * jQuery Nivo Slider v2.0
 * 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


/* ----------------------  Slider Layout -------------------------- */
 
#slider-wrap{
	width: 920px;
	height: 300px;
	background: #FFF url('http://linkture.com/images/slider-shadow.png') no-repeat center bottom;
	padding: 0 0 34px 0;
	margin: 20px auto 0 auto;
}
#slider{
	z-index: 5;
	width: 900px;
	height: 300;
	position: relative;
}
#slider img{
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}
#slider a {
	border: 0;
}

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


/* ----------------------  Image With 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;
}


/* ----------------------  Slider Slices -------------------------- */

.nivo-slice {
	display:block;
	position:absolute;
	z-index:50;
	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;
	top: 43%;
	z-index: 99;
	display: block;
	width: 47px;
	height: 60px;
	text-indent: -9999px;
	border: 0;
	cursor: pointer;
}
.nivo-prevNav{
	background: url('http://linkture.com/images/left-arrow.png') no-repeat;
	left: 15px;

}
.nivo-nextNav{
	background: url('http://linkture.com/images/right-arrow.png') no-repeat;
	right: 15px;
}
.nivo-prevNav:hover{
	background-position: 0 -60px;
}

.nivo-nextNav:hover{
	background-position: 0 -60px;
}


/* ----------------------  Control nav styles (e.g. 1,2,3...) -------------------------- */

.nivo-controlNav a{
	position: relative;
	z-index: 99;
	cursor: pointer;
}
.nivo-controlNav a.active{
	font-weight: bold;
}
.nivo-controlNav{
	position: absolute;
	left: 47%;
	bottom: -20px;
}
.nivo-controlNav a{
	display: block;
	width: 10px;
	height: 8px;
	text-indent: -9999px;
	border: 0;
	margin-right: 3px;
	float: left;
}

.nivo-controlNav a{
	background: #828282;
}
.nivo-controlNav a.active{
	background: #333;
}