/*
 * CSS for Timeliner 1.2
 *
 * This CSS is for styling the plugin.
 * Use timeliner.css for functionality changes.
 */

/* The container */
#slideshow, #slides, .slide {
	z-index: 0;
}

#slides {
	background: #f5f4f4 url(../images/loading.gif) center no-repeat;
	position: relative;
}

/* Each slide */
#slides .slide{
	width: 960px;
	height: 400px;
	font: 20px helvetica,arial,sans-serif;
	line-height:120%;
	color:#3c3c3c;
}

.slide img { display: block; }
/* The timeline background */
#slides .timeline{
	background:#ddd;
}
/* The timeline fill bar */
#slides .innertimeline {
	background: #3c312f;
}
/* The time display */
#slides .timedisplay{
	color: #fff;
	font-weight: bold;
	text-shadow: 0px 1px 1px #000;
}
/* Each node */
#slides .node{
	background:url(../images/node.png) center no-repeat;
	width:26px;
	height:26px;
}
/* The active node */
#slides .node_active{
	background:url(../images/node_active.png) center no-repeat;
}
/* Each node tooltip */
#slides .tooltip{
	background:#fff;
	padding:5px 8px;
	-webkit-border-radius:6px;
	-moz-border-radius:6px;
	border-radius:6px;
	opacity:0.8;
	filter:alpha(opacity=80);
}
/* The time display inside a tooltip */
#slides .tooltiptime{
	font-size:8pt;
	font-weight:bold;
}
/* The pause/play button */
#slides .pause, #slides .play{
	width:80px;
	height:80px;
	-webkit-border-radius:6px;
	-moz-border-radius:6px;
	border-radius:6px;
	-webkit-box-shadow:0 0 10px #bbb;
	-moz-box-shadow:0 0 10px #bbb;
	box-shadow:0 0 10px #bbb;
}
/* The pause button */
#slides .pause{
	background:#fff url(../images/pause.gif) center no-repeat;
}
/* The play button */
#slides .play{
	background:#fff url(../images/play.gif) center no-repeat;
}
/* The previous/next buttons */
#slides .previous, #slides .next{
	width:43px;
	height:50px;
}
/* The previous button */
#slides .previous{
	background:#fff url(../images/previous.gif) center no-repeat;
	-webkit-border-radius:6px 0 0 6px;
	-moz-border-radius:6px 0 0 6px;
	border-radius:6px 0 0 6px;
}
/* The next button */
#slides .next{
	background:#fff url(../images/next.gif) center no-repeat;
	-webkit-border-radius:0 6px 6px 0;
	-moz-border-radius:0 6px 6px 0;
	border-radius:0 6px 6px 0;
}