/*
 * jQuery Nivo Slider v3.1
 * http://nivo.dev7studios.com
 *
 * Copyright 2012, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */

.nivoSlider {
	position:relative;
	height:372px; 
	width:980px;
	margin:0 100px 0 100px;
}
.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	display:none;
	max-width: none;
}
.nivoSlider a {
	border:0;
	display:block;
}
 
/* The Nivo Slider styles */
.nivo-main-image {
	display: block !important;
	position: relative !important; 
	width: 100% !important;
}

/* 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:6;
	display:none;
}
/* The slices and boxes in the Slider */
.nivo-slice {
	display:block;
	position:absolute;
	z-index:5;
	height:100%;
	top:0;
}
.nivo-box {
	display:block;
	position:absolute;
	z-index:5;
	overflow:hidden;
}
.nivo-box img { display:block; }

/* Caption styles */
.nivo-caption {
	z-index:100;
	position:absolute; 
	height:36px; 
	width:700px; 
	top:270px;
	left:30px;  
	color:#d8d8d8; 
	font-size:36px; 
	font-family:Myriad-SemiBold, sans-serif;
	text-shadow:2px 2px #333333; 
}
.nivo-caption p {
	padding:5px;
	margin:0;
}
.nivo-caption a {
	display:inline !important;
	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%;
	cursor:pointer;
	z-index:100;
	display:block;
	height:20px; 
	width:14px;
	border:0;
	-webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}
.nivo-prevNav {
	background-image:url(../../images/slider-pfeil-left-white.png);
	background-size:14px 20px;
	left:-85px;
}
.nivo-nextNav {
	background-image:url(../../images/slider-pfeil-right-white.png);
	background-size:14px 20px;
	right:-85px;
}
.nivo-nextNav:hover {
	background-image:url(../../images/slider-pfeil-right-orange.png);
}
.nivo-prevNav:hover {
	background-image:url(../../images/slider-pfeil-left-orange.png);
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
	z-index:100;
	position:absolute;
	top:311px;
	left:130px;
	text-align: center;
	padding: 10px 0;
}
.nivo-controlNav a {
	cursor:pointer;
	display:inline-block;
	width:11px;
	height:11px;
	background-image:url(../../images/slider-punkt-inactive.png);
	background-size:11px 11px;
	text-indent:-9999px;
	border:0;
	margin: 0 2px;
}
.nivo-controlNav a.active {
	font-weight:bold;
	background-image:url(../../images/slider-punkt-active.png);
}