
/* slideshow */

.slideshow  
{
	/*box-shadow: 0 0 8px rgba(0,0,0,0.6);*/
	width: 740px;
	height: 270px;
	overflow: hidden;
	position: relative;
}

.slideshow .slide 
{
	/* stack */
	left: 0;
	position: absolute;
	top: 0;
}

.slideshow .slide 
{
	/* inline */
/*	margin: 0;
	padding: 0;
	position: static;*/
}

.slideshow .slide 
{
	/* reveal */
/*	height: 300px;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 720px;*/
}

.slideshow .hidden 
{
	display: none;
}

.slideshow-controls 
{
	width: 740px;
	height: 25px;
	margin: 10px 0 0 0;
	text-align: center;
}

.slideshow-controls .goto,
.slideshow-controls #play, 
.slideshow-controls #stop 
{
	width: 14px;
	height: 15px;
	margin: 2px;
	padding: 4px;
	text-decoration: none;
	text-align: center;
	vertical-align: middle;
	color: #666;
	border: 1px solid #ccc;
	cursor: pointer;
}

.slideshow-controls #play,
.slideshow-controls #stop
{
	display: none;
}

.slideshow-controls .goto
{
	width: 3px;
	height: 3px;
	font-size:1px;
	float: none;
	display: inline-block;

	background-color: #fff;
	-webkit-transition: background-color 1000ms linear;
    -moz-transition: background-color 1000ms linear;
    -o-transition: background-color 1000ms linear;
    -ms-transition: background-color 1000ms linear;
    transition: background-color 1000ms linear;

	color: #fff;
	-webkit-transition: color 1000ms linear;
    -moz-transition: color 1000ms linear;
    -o-transition: color 1000ms linear;
    -ms-transition: color 1000ms linear;
    transition: color 1000ms linear;

	border: 2px solid #fff;
	-webkit-transition: border 1000ms linear;
    -moz-transition: border 1000ms linear;
    -o-transition: border 1000ms linear;
    -ms-transition: border 1000ms linear;
    transition: border 1000ms linear;
}

.slideshow-controls .active
{
	background-color: #eee;
	-webkit-transition: background-color 1000ms linear;
    -moz-transition: background-color 1000ms linear;
    -o-transition: background-color 1000ms linear;
    -ms-transition: background-color 1000ms linear;
    transition: background-color 1000ms linear;

	color: #eee;
	-webkit-transition: color 1000ms linear;
    -moz-transition: color 1000ms linear;
    -o-transition: color 1000ms linear;
    -ms-transition: color 1000ms linear;
    transition: color 1000ms linear;

	border: 2px solid red;
	-webkit-transition: border 1000ms linear;
    -moz-transition: border 1000ms linear;
    -o-transition: border 1000ms linear;
    -ms-transition: border 1000ms linear;
    transition: border 1000ms linear;
}
