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

#slideshow {
	width: 670px;
	height: 340px;
	margin: 0px;
	display: block;
	padding: 0px;
}
.anythingSlider {
	width: 670px;
	height: 290px;
	position: absolute;
	margin: 0px auto 15px;
}
.anythingSlider .wrapper {
	width: 670px;
	overflow: auto;
	height: 290px;
	margin: 0px;
	position: absolute;
	top: 0px;
	left: 0px;
	padding: 0px;
}
.anythingSlider .wrapper ul {
	width: 99999px;
	list-style: none;
	position: absolute;
	top: 0px;
	left: 0px;
	background: url(../images/bg_slideshow.jpg) repeat-x left top;
	border-top: none;
	margin: 0px;
	padding: 0px;
}
.anythingSlider ul li {
	display: block;
	float: left;
	padding: 0px;
	height: 290px;
	width: 670px;
	margin: 0px;
}

.anythingSlider .arrow {
	display: block;
	height: 20px;
	width: 67px;
	background: url(../images/arrows.png) no-repeat 0 0;
	text-indent: -9999px;
	position: absolute;
	top: 250px;
	cursor: pointer;
}
.anythingSlider .forward {
	background-position: 0 0;
	right: -20px;
}
.anythingSlider .back {
	background-position: -67px 0;
	left: -20px;
}
.anythingSlider .forward:hover {
	background-position: 0 -20px;
}
.anythingSlider .back:hover {
	background-position: -67px -20px;
}

.anythingSlider .wrapper .textSlide {
	display: block;
	float: left;
	height: 262px;
	width: 220px;
	overflow: hidden;
	margin: 12px 0px 0px;
	padding: 0px;
	font-size: 12px;
	line-height: 18px;
}
.anythingSlider .wrapper .textSlide p {
	font-size: 13px;
	line-height: 20px;
	margin-top: 0em;
	margin-bottom: .5em;
}
.anythingSlider .wrapper .textSlide h3 {
	font-size: 13px;
	line-height: 20px;
	margin-top: 0em;
	margin-bottom: .5em;
}
.anythingSlider .wrapper .textSlide h3 {
	font-size: 13px;
	line-height: 20px;
	margin-top: .5em;
	margin-bottom: 0em;
}
.anythingSlider .wrapper .textSlide h4 {
	font-size: 13px;
	line-height: 20px;
	margin-top: 0em;
	margin-bottom: .5em;
}

.anythingSlider .wrapper .imgSlide {
	background-position: 0px;
	margin: 8px;
	padding: 0px;
	display: block;
	height: 272px;
	width: 424px;
	overflow: hidden;
	float: left;
}
#thumbNav {
	position: relative;
	top: 290px;
	text-align: center;
}
#thumbNav a {
	color: black;
	font: 11px/18px Arial, Helvetica, sans-serif;
	display: inline;
	padding: 5px 8px;
	height: 18px;
	margin: 0px 5px 0px 0px;
	background: #DDDEE1 url(../images/cellshade.png) repeat-x;
	text-align: center;
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
}
#thumbNav a:hover {
	background-image: none;
}
#thumbNav a.cur {
	background: #CBCBCB;
}
#start-stop {
	background: #999 url(../images/cellshade.png) repeat-x;
	color: white;
	font: 11px/18px Arial, Helvetica, sans-serif;
	padding: 2px 5px;
	width: 40px;
	text-align: center;
	position: absolute;
	right: 45px;
	top: 290px;
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
}
#start-stop.playing {
	background-color: #666;
}
#start-stop:hover {
	background-image: 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;
}
