/*  slideshow.css, version 0.3
 *  (c) Copyright 2007 Nathan Herald
 *
 *  slideshow.js is freely distributable under the terms of the GPL 2.0
 *  For details, see the slideshow.js web site: http://code.google.com/p/slideshow-js/
 *
 *------------------------------------------------------------------------------------*/

.slideshow {
	width: 700px;
	height: 450px;
	overflow: auto;
	position: relative;
}

.slideshow ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 100000px;
	position: absolute;
	top: 0;
	left: 0;
}

.slideshow ul li {
	float: left;
	margin-right: 10px;
}

.slideshow-nav {
	width: 700px;
	height: 50px;
	position: relative;
}

.slideshow-description {
	display: block;
	background: #fff;
	color: #666;
	font-size: 11px;
}

.slideshow-next-prev {
	text-align: center;
	padding:10px 0 0 0;
}

.slideshow-prev, .slideshow-next {
	font: bold 11px arial, sans-serif;
	color: #e86a1e;
	text-decoration: none;
	margin: 5px;
}




.slideshow-play-stop {
	float: left;
}

.slideshow-play, .slideshow-stop {
	font-size: 10px;
	font-weight: bold;
	color: 666;
	text-decoration: none;
	margin: 5px;
}

.slideshow-play-only .slideshow-stop {
	display: none;
}

.slideshow-stop-only .slideshow-play {
	display: none;
}

