/*
    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/
*/
.anythingSlider {
	background-image:url("../images/background_slider.png");
	background-repeat:no-repeat;
	height:262px;
	margin:10px 40px 15px auto;
	position:relative;
	width:706px;
	float: left;
}

.anythingSlider .wrapper {
	height:262px;
	left:15px;
	overflow:auto;
	position:absolute;
	top:0;
	width:676px;
	margin:0;
}

/* Width below is max for Opera */
.anythingSlider .wrapper ul {
	width:32700px;
	list-style:none;
	position:absolute;
	top:0;
	left:0;
	margin:15px 0 0;
}

.anythingSlider ul li {
	display:block;
	float:left;
	height:233px;
	margin:0;
	padding:0;
	width:676px;
	background-color: #666;
}

.anythingSlider .arrow {
	background:url("../images/button_plus_slider.png") no-repeat scroll 0 0 transparent;
	cursor:pointer;
	display:block;
	height:41px;
	position:absolute;
	text-indent:-9999px;
	top:200px;
	width:42px;
	background-repeat:no-repeat;
	margin:0;
}

.anythingSlider .forward {
	background-position:0 0;
	right:-10px;
}

.anythingSlider .back {
	display: none;
	visibility: hidden;
}
	
/*
  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;
}
