/*
    anythingSlider v1.2
    
    By Chris Coyier: http://css-tricks.com
    with major improvements by Doug Neiner: http://pixelgraphics.us/
    based on work by Remy Sharp: http://jqueryfordesigners.com/
	
	Modified by Svenskt Näringsliv
*/

.anythingSlider{
	width: 313px;
	height: 240px;
	position: relative;
	margin: 0 auto 5px;
}
.anythingSlider .wrapper{
	width: 313px;
	 overflow: auto;
	 height: 225px;
	 margin: 0 0;
	 position: absolute;
	 top: 0;
	 left: 0;
}
                                       /* Width below is max for Opera */
.anythingSlider .wrapper ul{
	width: 32700px;
	 list-style: none;
	 position: absolute;
	 top: 0;
	 left: 0;
}
.anythingSlider ul li{
	display: block;
	 float: left;
	 padding: 0;
	 height: 220px;
	 width: 313px;
	 margin: 0;
}
.anythingSlider .arrow{
	display: block;
	height: 130px;
	width: 60px;
	background: url(../img/arrows7.png) no-repeat 0 0;
	text-indent: -9999px;
	position: absolute;
	top: 30px;
	cursor: pointer;
}
.anythingSlider .forward{
	background-position: 65px 30px;
	right:-8px
}
.anythingSlider .back{
	background-position: -95px 30px;
	left: -4px;
}
.anythingSlider .forward:hover{
	background-position: 65px -175px;
}
.anythingSlider .back:hover{
	background-position: -95px -175px;
}

#thumbNav{
	position: relative;
	top: 215px;
	text-align: center;
}

#thumbNav a{
	color:#666;
	font: 11px;
	display: inline-block;
	padding: 2px 6px;
	height: 14px;
	margin: 0 4px 0 0;
	background-color: #a9a9a9;
	text-align: center;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
}
#thumbNav a:hover{
	background-color: #ff8e08;
	color:#000;
}
#thumbNav a.cur{
	background-color: #fff;
	color:#000;
}

#start-stop{
	background-color:#a9a9a9;
	background-image:url(../img/img_playpause.png);
	background-position:0 0;
	color: white;
	padding:0px;
	width: 19px;
	height:19px;
	text-align: center;
	position: absolute;
	right: 5px;
	top: 216px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
}
#start-stop.playing{
	background-color: #a9a9a9;
	background-position:0 -28px;
}
#start-stop:hover{
	background-color: #ff8e08;
	text-decoration:none;
}

/*
  Prevents
*/
.anythingSlider .wrapper ul ul{
	position: static;
	margin: 0;
	background: none;
	overflow: visible;
	width: auto;
	border: 0;
}
.anythingSlider .wrapper ul ul li{
	float: none;
	height: auto;
	width: auto;
	background: none;
}
