﻿/*
    anythingSlider v1.0
    
    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/
*/


.anythingSlider {
	width: 895px; 
	height: 190px;
	position: relative; 
	margin: 0;
	margin-top: 10px;
	}
	
.anythingSlider .wrapper {
	width: 895px; 
	height: 190px; 
	overflow: hidden; 
	margin: 0;
	position: absolute;
	top: 0; 
	left: 0; 
	}
	
.anythingSlider .wrapper ul {
	width: 99999px; 
	list-style: none; 
	position: absolute; 
	top: 0; 
	left: 0; 
	margin: 0;
	}
	
/* ITEM */	
.anythingSlider ul li {
	display: block;
	float: left; 
	padding: 0; 
	width: 895px; 
	height: 190px; 
	margin: 0;
	}
	
.slideitem img {
	width:	895px;
	height:	190px;
	}

/* NAVIGATIE */
.anythingSlider .arrow {
	display: none; 
	}

/* volgende */
.anythingSlider .forward {
	display: none; 
	}
	
.anythingSlider .forward:hover {
	display: none; 
	}
	

/* vorige */
.anythingSlider .back {
	display: none; 
	}

/* start-stop knop */
#start-stop {
	display: 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; }
