/* Styles für den Zeitstrahl */

div#timebar{
	overflow:hidden;
}

div.scrollable {  
	margin: 0 auto;
	position:relative;
	overflow:hidden;
	width: 510px;	 
	height:250px;	
	border: 1px dashed #ccc;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}

#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
}

a.prev, a.next {margin-top:118px;}

#thumbs div {
	float:left;
	width:170px;
	height:250px;
	cursor:pointer;
}

#thumbs div.hover,#thumbs div.focus {
	background-color:#AAA;
}

#thumbs div.active {
	background-color:#360;
	color:#fff;
	cursor:default;
}

#thumbs div.active h2{
	background:#360;
	color:#ffffff;
}

#thumbs p, #thumbs span {
	margin-left:8px;
	margin-right:8px;
	margin-top:-5px;
	font-size:12px;
}

#thumbs h2{
	font-size:16px;
	background:#ffffff;
	color:#360;
	padding:3px;
	margin-top:2px;
}

#thumbs p{
	font-size:11px;
	text-align:justify;
	line-height:15px;
}

#thumbs em {
	font-style:normal;
	color:orange;
}

div.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:18px;
	height:18px;
	background:url(../images/left.png) no-repeat;
	float:left;
	margin:120px 10px;
	cursor:pointer;
	font-size:1px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -18px;		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../images/right.png);
	clear:right;	
}



/*********** navigator ***********/


/* position and dimensions of the navigator */

#navigator {
	display:block;
	margin: 0 auto;
	height:20px;
	width:200px;
}


/* items inside navigator */
#navigator a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../images/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
#navigator a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
#navigator a.active {
	background-position:0 -16px;     
} 	

