/* root element for scrollable */
div.scroll_folgen {  
	position:relative;
	overflow:hidden;	
	height: 435px;	 
	width: 370px;	
	padding: 0 15px;
	margin-top:20px;
	float:left;
}

div.scroll_akt {  
	position:relative;
	overflow:hidden;	
	height: 435px;	 
	width: 370px;	
	padding: 0 15px;
	margin-top:20px;
	float:left;
}

/* root element for scrollable items */
div.items {	
	position:absolute;	
	height:20000em;	
	overflow:hidden;
}

div.scroll_el_div {
	width:370px !important;
	height:100px;
	padding:5px;
	font-size:10px;
}

/* active item */
div.active {
	display:block;
	width:370px;
	height:100px;
	padding:5px;
	margin:0;
	border:1px inset #ccc;
}

div.scroll_el_div a {
	display:block;
	width:370px;
	height:100px;	
	color:#000;
	text-decoration:none;
}

div.scroll_el_div img {
	border:none;
	margin-right:10px;
}

div.scroll_el_div h3 {
	font-size:12px;
	font-weight: bolder;
	text-decoration:none;
	text-align:left;
	padding:0;
	margin:0;
}

div.scroll_el_div p {
	text-decoration:none;
	text-align:left;
	padding: 0;
	margin: 0;
}

/* prev, next, prevPage and nextPage buttons */
a.prev,  a.prevPage {
	display:block;
	width:30px;
	height:18px;
	background:url(up.gif) no-repeat;
	margin:200px 0 0 400px;
	cursor:pointer;
}

/* prev, next, prevPage and nextPage buttons */
a.next, a.nextPage {
	display:block;
	width:30px;
	height:18px;
	background:url(up.gif) no-repeat;
	margin:0 0 0 400px;
	cursor:pointer;
}

/* 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(down.gif);
	clear:right;
}