.scrollable_mediacont{
	position:relative;
	
}


/* root element for horizontal scrollables */ 
.scrollable, .scrollablestatic{ 
    position:relative; 
	overflow:hidden;
	width: 430px; 
    height:800px;
} 


 
/* root element for scrollable items */ 
.scrollable .items { 
    width:20000em; 
    position:absolute; 
    clear:both;
	height:350px;
	//border:1px solid red;
}


.scrollable .item { 

    float:left;
	margin:0 5px 0 0;
	position:relative;
	height:350px;
	width:450px;
	//border:1px solid red;
	
}


.scrollable_mediacont table {
	border-spacing:0px;
	border:none;
	height:350px;
	}

.scrollable_mediacont td {
	vertical-align: bottom;
	}
	



/* position and dimensions of the navigator */ 
.navi { 
position:absolute;
//top:359px;
top:358px;

z-index:1;
} 
 
 
/* items inside navigator */ 
.navi a {
	width:8px;
	height:6px;
	float:left;
	margin-right:4px;
	border:1px solid #777;
    display:block; 
	font-size:5px;
	font-family: Arial, Helvetica, sans-serif;
} 
 
/* mouseover state */ 
.navi a:hover { 
    background-position:0 -9px;
	background-color:#ccc;	
} 
 
/* active state (current page state) */ 
.navi a.active { 
    background-position:0 -18px;
	background-color:#ccc;
}