.teaser{
	position:absolute;
	top:40px;
	left:9px;
	width:640px;
	padding:2px;
}
.teasernews{
	margin-top:2px;
	background-image:url(./scrollable/newsback.png);
	padding-top:6px;
	padding-bottom:6px;
	padding-left:10px;
	color:#FFFFFF;
	font-size:11px;
}
.teasercontainer{
	margin-bottom:10px;
}
.teasercontainer2{
	width:540px;
	margin-bottom:10px;
}
.teasercontainer2 h1{
	font-size:15px;
}
.teasernews a,.teasernews a:visited{
	border:0px;
	color:#FFFFFF;
	text-decoration:underline;
	font-weight:normal;
}
.teasernews a:hover{
	color:#00FFFF;
}
/* SCROLLABLE */
/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
div.scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    width: 540px; 
    height:30px; 
} 
 
/* 
    root element for scrollable items. Must be absolutely positioned 
    and it should have a extremely large width to accomodate scrollable items. 
    it's enough that you set width and height for the root element and 
    not for this element. 
*/ 
div.scrollable div.items { 
    /* this cannot be too large */ 
    width:20000em; 
    position:absolute; 
} 
 
/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 
div.scrollable div.items div { 
    float:left; 
} 
 
/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}
/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(./scrollable/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:0px 10px;
	cursor:pointer;
	font-size:1px;
	border:0px;
}

/* right */
a.right 				{ background-position: 0 -30px; clear:right; margin-right: 0px;}
a.right:hover 		{ background-position:-30px -30px; }
a.right:active 	{ background-position:-60px -30px; } 


/* left */
a.left				{ margin-left: 10px; } 
a.left:hover  		{ background-position:-30px 0; }
a.left:active  	{ background-position:-60px 0; }


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