/*
 * jQuery Nivo Slider v2.3
 * 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;
}
.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%;
}

/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position:absolute;
	top:45%;
	z-index:99;
	cursor:pointer;
}
.nivo-prevNav {
	left:0px;
}
.nivo-nextNav {
	right:0px;
}
/* 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;
}




/*============================*/
/*=== Custom Slider Styles ===*/
/*============================*/
#slider-wrapper {
    width:515px;
	height:267px;
	margin-top:28px;
    margin-left:29px;	
}

#slider {
	position:relative;
    width:515px;
    height:267px;
    margin-left:0px;
	background:url('../bilder/loading.gif') no-repeat 50% 50%;
}
#slider img {
	position:absolute;
	top:0px;
	left:0px;
	display:none;
}
#slider a {
	border:0;
	display:block;
}

.nivo-controlNav {
	position:relative;
	float:right;
	margin-right:15px;
	margin-top:15px;
}

.nivo-controlNav a {
	display:block;
	width:16px;
	height:15px;
	padding-top:1px;
	/*
	background:url('../bilder/bullet.png') no-repeat;
	*/
	margin-right:5px;
	float:left;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:0.7em;
	text-align:center;
	color:#fff;
	border:none;
}

.nivo-controlNav a.active {
	background-position:0 -16px;
	font-weight:bold;
	background-color:#852c24;
	color:#fff;
}

.nivo-directionNav a {
	display:block;
	width:30px;
	height:30px;
	background:url('../bilder/arrows.png') no-repeat;
	text-indent:-9999px;
	border:0;
}
a.nivo-nextNav {
	background-position:-30px 0;
	right:15px;
}
a.nivo-prevNav {
	left:15px;
}


/* Caption styles */
.nivo-caption {
    text-shadow:none;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:0.8em;
	color:#000000;
	opacity:0.8; /* Overridden by captionOpacity setting */	
	width:625px;
	height:62px;
	background-color:#e2dfdf;
	position:absolute;
	left:0px;
	bottom:0px;
	z-index:89;
	margin-bottom:0px;	
}

.nivo-caption a { 
    color:#000000;
    text-decoration: none;
	display:inline !important;
}

.nivo-caption p, .nivo-html-caption p {
	padding-left:10px;
	padding-right:10px;
	padding-top:3px;
	padding-bottom:5px;
	line-height:0.7em;
	margin:0px;
	color:#000000;	
}

.nivo-caption h3, .nivo-html-caption h3 {
	padding-left:10px;
	padding-right:10px;
	padding-top:2px;
	padding-bottom:0px;
	line-height:0.85em;
	margin:0px;
	color:#000000;	
}

.nivo-caption em, .nivo-html-caption em{
	font-weight:normal;
	color:#000000;	
}

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




