/* root element for the whole scrollable setup */



div.scrollable {
        
         
        position:relative;
        overflow:hidden;
        
        height:284px;
	
 	/*background-color: #493838;
	width: 583px;
	
	*/

}

/*
        root element for scrollable items. It is
        absolutely positioned with large width.
*/
#thumbs {
        position:absolute;
        width:80000em;
        clear:both;
         
}


#blatt {
        width: 256px;
	padding: 0px 0px 0px 10px;
        text-align:left;
	color:#EAB7AE;

}


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



/* single item */
#thumbs div {
        float:left;
        width:553px;
        height:280px;
         /*background-image: url(../images/addic.png); 
        cursor:pointer;
		border:1px solid #fff; */
		margin:13px;
        font-family:Verdana;
        font-size:11px;
        color:#a0a0a0;	
        
        margin:0px 0px 0px 30px;

}

/* style when mouse is over the item */
#thumbs div.hover {
		font-family:Verdana;
        font-size:11px;
        color:#b78d86;
        }

/* style when element is active (clicked) */
#thumbs div.active {
           font-family:Verdana;
        font-size:12px;
        color:#fff;
        cursor:default;
}



 <!--#thumbs h3,
 #thumbs p, -->
 #thumbs span {
        margin:13px;
        font-family:Verdana;
        font-size:12px;
        color:#000;
}








/* 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:29px;
        height:28px;
        background:url(../images/left.png) no-repeat;
        float:left;
	border: none;
        margin:0px 22%;
        cursor:pointer;
	text-decoration: none;

}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
        background-position:-29px 0px;
	border: none;
	text-decoration: none;
}

/* disabled navigational button */
a.disabled {
        visibility:visible !important;
	text-decoration: none;
	border: none;
}

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




