/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow:hidden;
	width: 660px;	 
	height:144px;
	margin-top:0px;
}
*html ul#navmenu-h {
	margin-left:-3px;
}
/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
}

/* custom positioning for navigational links */
a.prev, a.next {
	margin-top:100px;	
}

/* single item */
#thumbs div {
	float:left;
	width:166px;
	height:144px;
	background: url(../img/verlauf_box_scroll.jpg);
	color:#000;
	border-top:0px solid #ccc;
	border-left:0px solid #ccc;
	border-right:0px solid #ccc;
	margin: 0px 0px 0px 0px;
}

*html #thumbs div {
	margin: 0px 0px 0px 0px;
	width:166px;
}


/* style when mouse is over the item */
#thumbs div.hover {
	background-color:#444;	
}

/* style when element is active (clicked) */
#thumbs div.active {
	background-color:#066;
	cursor:default;
}



#thumbs p, #thumbs span {
	margin:4px;		
	font-family: Verdana, Helvetica, Arial, sans-serif;
	color:#666;	
}
*html #thumbs p, #thumbs span {
	font-size:90%;
}
*+html #thumbs p, #thumbs span {
	font-size:90%;
}
/*Firefox, Opera, Safari Boxhack*/
html> #thumbs p, #thumbs span {
	font-size:85%;
}




#thumbs h3 {
	margin: 8px 4px 8px 4px;	
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-style:bold;
	font-size:10px;
	color:#666;	
}

#thumbs a.head:hover{
		color:#e28800;
	}
	
	
#thumbs a.head{
		color:#666;
	}

#thumbs a.mehr:hover{
		color:#666;
	}
	
	
#thumbs a.mehr{
		color:#e28800;
	}



/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;		
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:16px;
	height:35px;
	background: url(../img/left.gif) no-repeat;
	float:left;
	margin:54px 2px;
	cursor:pointer;
}


*html a.prev, a.next, a.prevPage, a.nextPage {
	margin:54px 1px; 
}


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

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

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






