/* main container */
.timeline {
	width:940px;
	height: 58px;
	background-color: #eee;
	border-top: #CCC 1px solid;
	border-bottom: #CCC 1px solid;
	margin:0;
}

/* play button area */
.playpause {
	margin: 7px 0 0 23px;
	float: left;
	cursor: pointer;
}
.playpause .btn{
	width: 50px;
	height: 40px;
	background-color: #000;
	border: #fff solid 1px;
	background-repeat: no-repeat;
	/*rounded corners except IE*/
	-moz-border-radius: 8px; 
	-webkit-border-radius: 8px; 
	-khtml-border-radius: 8px; 
	border-radius: 8px; 
}
.play {
	background-image: url(../images/play.png);

}
.pause {
	background-image: url(../images/pause.png);
	display:none;
}


/* slider */
.slidercontainer {
	width: 750px;
	margin: 20px 0 0;
	float: left;
}
.slider {
	margin:0;
	background-color: #FFF;
	height: 10px;
	position: relative;
	width: 675px;
	z-index: 0;
	cursor: pointer;
}

/* slider handle */
.slider .ui-slider-handle { 
	z-index: 3; 
	 -moz-user-select: none;
	 -khtml-user-select: none;
	 -webkit-user-select: none;
	 user-select: none;
	 outline: none;
}

/* tickmarks */
.slider .tick { 
	z-index: 2; 
	position: absolute; 
	height: 100%; 
	font-size: 1.8em; 
	line-height: 1.8em; 
	background: none; 
	border-top: none; 
	border-right: none; 
	border-bottom: none; 
	text-align: center; 
}

/* year labels */
.hashmarks {
	float: left;
	margin: 0px;
	padding: 0px;
	/*cursor: pointer;*/
}

.hashmark {
	float: right;
	height: 14px;
	margin-top: 5px;
	margin-left: 0px;
	position: relative;
	text-align:center;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000;
}

/* big year label that updates with slider values */
.title-holder {
	text-align:center;
	font-family:'PrattHeavy', Georgia, 'Times New Roman', serif;
	font-size:40px;
	width:100px;
	margin:5px 0 0;
	float: left;
}
/*Option List*/
#option-list{
	width: 240px;
	height: 40px;
    overflow: hidden;
	position:relative;
	top:-10px;
}
#option-list select{
	width: 240px;
	padding: 5px;
	font-size: 16px;
	border: 1px solid #ccc;
	height: 30px;
	
	text-transform: uppercase;
	font-size:12px;	
    font-family: Arial,Verdana,sans-serif;
	font-weight:bold;
	color:#000;
	
}