/*
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: 760px;
  position: relative;
  margin: 0 auto 15px;
}

.anythingSlider .wrapper {
	width: 680px;
  overflow: auto;
  margin: 0 40px;
  position: absolute;
  top: 0;
  left: 0;
}

.anythingSlider .wrapper ul {
  width: 99999px;
  list-style: none;
  position: absolute;
  top: 0;
  left: 0;
  background: #eee;
  border-top: 3px solid #e0a213;
  border-bottom: 3px solid #e0a213;
  margin: 0;
}

.anythingSlider ul li {
  display: block;
  float: left;
  padding: 0;
  width: 240px;
  margin: 0;
  text-align: center;
  padding-right: 6px;
	z-index:1;
	height:300px;
}


/*  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;
}

/* slider customizations - Emerge Interactive*/

#start-stop {
  display: none;
}

.anythingSlider {
	background: #FFF url(/images/slider_bg.gif) no-repeat;
  width: 286px;
  margin: 0 0 0 0;
	float:left;
	height:200px;
}

.anythingSlider .constrain {
	margin:23px auto;
	position:relative;
	width:240px;
	height:220px;
}

.anythingSlider .wrapper ul {
  background: none;
  border: none;
  margin: 0;
}
	
.anythingSlider li img {
	height: 140px;
	width: 240px;
	display:block;
}	

.anythingSlider p {
	color: #666666;
	font-style: italic;
	text-align: center;
	width: 240px;
	top:16px;
	position:relative;
}

.anythingSlider a.arrow {
	background:#ffffff 0 0;
  display: block;
  width: 20px;
  height: 30px;
  text-indent: -999px;
	z-index:10;
	position:relative;
	top:-70px;
}

.anythingSlider a.arrow:hover {
  cursor: pointer;
}

.anythingSlider a.arrow.back {
  background: transparent url(/images/gallery_arrow_left.gif) no-repeat;
  float: left;
  margin: 0 0 0 5px;
}

.anythingSlider a.arrow.forward {
  background: transparent url(/images/gallery_arrow_right.gif) no-repeat;
  float: right;
  margin: 0 0 0 0;
}








