
/* root element for scrollable */
.verticalBig {  
	
	/* required settings 
	float: left;*/
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 433px;	 
	width: 500px;
	border-top:1px solid #ddd;	
}

.verticalSmall {  	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 300px;	 
	width: 500px;
	/* border-top:1px solid #ddd;	*/
}

/* root element for scrollable items */
.arrangementer {	
	position:absolute;
	/* this time we have very large space for height */	
	height:2000px;	
	width: 100%;
	margin: 0px;
	text-align: left;
}

/* single scrollable item */
.arrangementer div {
	/* width: 80% !Important; */
	border-bottom:1px solid #ddd;
	margin: 5px 0;
	padding: 5px;
	height: 82px;
	font-size:12px;	
	font-family:Arial,Verdana,Sans-serif;
}

/* elements inside single item */
.arrangementer img {	
	margin: 0px 5px 0px 0px;		
	/* 
	float:left;
	margin-right:15px;
	height:94px;
	width:125px; 
	*/
}

.arrangementer h3 {
	margin:0 0 0px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}


#footer {
	width:600px;
	margin: 0 0 0 0;	
}




/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	background:#fff url(/img/global/gradient/h300.png) 0 0;
	width: 400px;
	border:1px solid #333;	
	-background:#666;
}

/* accordion header */
#accordion h2 {
	background:#ccc url(/img/global/gradient/h30.png);
	margin:0;
	padding:5px 15px;
	font-size:14px;
	font-weight:normal;
	border:1px solid #fff;
	border-bottom:1px solid #ddd;
	cursor:pointer;		
}

/* currently active header */
#accordion h2.current {
	cursor:default;
	background-color:#000;
}

/* accordion pane */
#accordion .pane {
	border:1px solid #fff;
	border-width:0 2px;
	display:none;
	height:250px;
	padding:15px;
	color:#000;
	font-size:12px;
}

/* a title inside pane */
#accordion .pane h3 {
	font-weight:normal;
	margin:0 0 -5px 0;
	font-size:16px;
	color:#999;
}


/* ***************************************************************************** */
/* root element for tabs  */
ul.css-tabs {  
	margin:0 !important; 
	width: 505px !important;
	padding:0;
	height:30px;
	border-bottom:1px solid #666;	 	
}

/* single tab */
ul.css-tabs li {  
	float:left;	 
	padding:0; 
	margin:0;  
	list-style-type:none;	
}

/* link inside the tab. uses a background image */
ul.css-tabs a { 
	float:left;
	font-size:11px;
	display:block;
	padding:5px 20px;	
	text-decoration:none;
	border:1px solid #666;	
	border-bottom:0px;
	height:18px;
	background-color:#efefef;
	color:#777;
	margin-right:2px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright:4px;
	position:relative;
	top:1px;	
}

ul.css-tabs a:hover {
	background-color:#F7F7F7;
	color:#333;
}
	
/* selected tab */
ul.css-tabs a.current {
	background-color:#ddd;
	border-bottom:2px solid #ddd;	
	color:#000;	
	cursor:default;
}

	
/* tab pane */
.css-panes > div {
	display:none;
	/* width: 200px;
	border:1px solid #666;
	border-width:0 1px 1px 1px;	
	background-color:#ddd; */	
	min-height:150px;
	padding:5px 5px;		
}

/* ********************************************************************************************************** */

/* trigger button */
.download_now {
	background:transparent url(../img/google_32.png) no-repeat scroll 0 0;
	display:block;
	height:32px;		
	text-indent:-999em;	
	cursor:pointer;
}

/* mouseover state 
.download_now:hover {
	background-position:0 -44px ;		
} */

/* clicked state */
.download_now:focus {
	background-position:0 -88px;
}

/* tooltip styling */
.tooltip {
	display:none;
	/* background:url(http://static.flowplayer.org/tools/img/tooltip/black_arrow_big.png); */
	height:163px;
	padding:40px 30px 10px 30px;
	width:310px;
	font-size:11px;
	color:#fff;
}

/* a .label element inside tooltip */
.tooltip .label {
	color:yellow;
	width:35px;
}

.tooltip a {
	color:#ad4;
	font-size:11px;
	font-weight:bold;
}

