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

#slider {
	position:relative;
	min-height:400px;
    margin:0 0 30px 0;
    background:#fff url(../images/common/loader.gif) no-repeat 50% 50%;
    width: 1000px; /* Make sure your images are the same size */
    text-align:center;
    overflow:hidden;
}

/* The Nivo Slider styles */
.nivoSlider {
    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%;*/
	height:400px;
	border:0;
	padding:0;
	margin:0;
	z-index:10;
    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;
	left:0px;
	bottom:0px;
	background:#000;
	color:#fff;
	opacity:0.8; /* Overridden by captionOpacity setting */
	width:100%;
	z-index:8;
    font-family: Helvetica, Arial, sans-serif;
}
.nivo-caption p {
	padding:5px;
	margin:0;
}
.nivo-caption a {
    color:#fff;
    border-bottom:1px dotted #fff;
}

.nivo-caption a:hover {
    color:#fff;
}
.nivo-html-caption {
    display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position:absolute;
	top:45%;
	display:block;
	width:30px;
	height:30px;
	background:url(../images/common/bt_arrows_right.png) no-repeat;
	text-indent:-9999px;
	border:0;
	cursor: pointer;
}

.nivo-prevNav {
	position:absolute;
	left:0px;
	height:30px;
}
.nivo-nextNav {
	position:absolute;
	right:0px;
	height:30px;
}

a.nivo-nextNav {
	position:absolute;
	background-position:-30px 0;
	right:15px;
	height:30px;
	z-index:13;
}
a.nivo-prevNav {
	position:absolute;
	left:15px;
	height:30px;
	z-index:13;
}

/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
	position:absolute;
	right:10px; /* ACR̕ + ] */
	bottom:10px; /* ACR̍ + ] */
	width:930px;
	text-align: right;
	z-index:15;
}
.nivo-controlNav a {
	cursor: pointer;
	width:90px;
	height:36px;
	text-indent:-9999px;
	border:0;
	margin-left:6px;
	display: inline-block;
	padding: 2px;
}
.nivo-controlNav a:hover {
	filter: alpha(opacity=60);
	-moz-opacity:0.6;
	opacity:0.6;
}
.nivo-controlNav a.active {
	padding: 0;
	border:2px solid #fff;
}

.nivo-controlNav a img {
    position: static;
    width:90px;
	height:36px;
	display:inline;
}