
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/


.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 100%;
	height:100%;

	/* custom decorations */
	border:0px solid #fff;
	/* background:url(/img/global/gradient/h300.png) repeat-x; */
}

/*
	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 the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:40000em;
	position:absolute;
	clear:both;
}

.scrollable .reel {
	/* this cannot be too large */
	width:100%;
	height:100%;
	position:absolute;
	clear:both;
	pointer-events:none;
}

.scrollable .menu {
	/* this cannot be too large */
	width:200px;
	margin-top: 20px;
	margin-left: 20px;
	position:absolute;
	z-index: 10;
}

.scrollable .tickerbar {
	/* this cannot be too large */
	width:100%;
	margin-top: 20px;
	margin-left: 200px;
	position:absolute;
	z-index: 10;
}

/*  global  */
               
.scrollable .header .clocks{              
    padding:30px 0 0px 0; 
}

.scrollable .header .clocks{
    float:right;
}

/*clock*/

.clock img{position:absolute;left:0px;}
.clock{
    margin-right:10px;

    float:left; 
    width: 40px;
    height: 52px;
    background:#FFF;
    position:relative;
    overflow:hidden;
}
.clock .title{
    background:#FFF;
    position:absolute;
    bottom:0px;
    color:#737b84;
    font-size: 9px;
    text-align:center;
    width:100%;
    vertical-align: 2px;
    font-weight:normal;
    font-family:"lucida grande",tahoma,verdana,arial,sans-serif;

}
.clock .uhrenblatt{
    z-index:5;
}

.items div {
	float:left;
	
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:0px 0px 0px 0px;
	background-color:#fff;
	padding:0px;
	border:0px solid #fff;
	height:100%;
	
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
}

/* active item */
.scrollable .active {
	border:0px solid #fff;
	position:relative;
	cursor:default;
}

