/*
    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 {
  float: left;
  position: relative;
  width: 590px;
  height: 230px;
}

.anythingSlider .wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 590px;
  height: 230px;
  overflow: hidden;
}

.anythingSlider .wrapper ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 9999px;
  margin: 0;
  padding: 0;
  list-style: none;
	/*background: #fff;*/
}

.anythingSlider ul li {
  float: left;
  width: 590px;
  height: 210px;
  padding: 20px 0 0 0;
  margin: 0;
  display: block;
}

.anythingSlider .wrapper ul ul {
	position: static;
	margin: 0;
	background: none;
	overflow: visible;
	width: auto;
	border: 0;
    padding: 0;
}

.anythingSlider .wrapper ul ul li {
	float: none;
	height: auto;
	width: auto;
	background: none;
    margin: 0;
    padding: 0;
}

#start-stop {
	position: absolute;
	left: 10px;
	top: 200px;
	background: transparent url(../img/bannerpips.png) no-repeat;
	background-position: 0 -340px;
	color: white;
	padding: 2px 0px;
	width: 14px;
	margin: 0;
	text-align: left;
	text-indent: -9999px;
}

#thumbNav {
	position: absolute;
	left: 35px;
	top: 200px;
	width: 200px;
	padding: 0;
	color: white;
	text-align: left;
}

#thumbNav a {
	width: 18px;
	height: 18px;
	padding: 0;
	margin-right: 5px;
	display: inline-block;
	overflow: hidden;
	color: black;
	background: transparent url(../img/bannerpips.png) no-repeat;
	background-position: 0 -40px;
 	text-indent: 20px;
	text-align: center;
}

#thumbNav a:hover {
	background-position: 0 -240px;
}

#thumbNav a.cur {
	background-position: 0 -140px;
}

#start-stop.playing {
	background: url(../img/bannerpips.png) no-repeat;
	background-position: 0 -440px;
}

#start-stop:hover {
	background: url(../img/bannerpips.png) no-repeat;
	background-position: 0 -340px;
}

li.slide1 {
  background-image: url(../img/car2.jpg);
  text-align: right;
}

li.slide2 {
  background-image: url(../img/slide2.jpg);
  text-align: left;
}

li.slide3 {
  background-image: url(../img/slide3.jpg);
  text-align: right;
}

.anythingSlider .wrapper ul li span {
  padding: 10px;
  margin: 0;
  background-color: #f00;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
}

