/**
 * Dragdealer JS v0.9.5
 * http://code.ovidiu.ch/dragdealer-js
 *
 * Copyright (c) 2010, Ovidiu Chereches
 * MIT License
 * http://legal.ovidiu.ch/licenses/MIT
 */

.dragdealer {
	position: relative;
	height: 30px;
	background: #eddad0;
	width:925px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.dragdealer .handle {
	position: absolute;
	cursor: pointer;
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.dragdealer .red-bar {
	width: 78px;
	height: 30px;
	background: #333;
	color: #fff;
	line-height: 30px;
	font-family: "PT Sans Narrow", "Helvetica",sans-serif;
	font-size:0.8em;
	text-align: center;
}
.dragdealer .red-bar:hover{
	background-color:#000;
}
.dragdealer .disabled {
	background: #898989;
}

#timeline {
	height:50px;
	width:960px;
	/*margin-left:52px;*/
}
#timeline #play,
#timeline .slider-container {
	float:left;
}
#timeline #play {
	height:30px;
	line-height:30px;
	margin-right:5px;
}
#timeline #play a{
	font-weight:bold;
	text-decoration:none;
	font-size:20px;
	display: block;
	width: 30px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	text-align:center;
	line-height:34px;
	height:30px;
	background-color:#eddad0;
}
#timeline #play a:hover{
	background-color:#000;
	color:#fff;
}
.slider-labels {
	margin-top:4px;
}
.slider-labels ul {
	list-style-type: none;
	margin:0;
	padding:0;
}
.slider-labels ul li {
	font-family: "PT Sans Narrow", "Helvetica",sans-serif;
	font-size:0.8em;
	line-height:16px;
	float:left;
	width: 77px;
	margin:0;
	color:#333;
	text-align:center;
}
#play a{
	color:#333;
}