/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 660px;	
	
	/* custom decorations */
	background-color:#EFF3D1;				
}


/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super 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;		

}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
	/* custom decoration */
	text-align: left;
	width:1180px;
	background-color: #EEF8F9;	
	-moz-border-radius:5px;
	font-size: 1.0em;

}

/* active item */
div.scrollable div.items div.active {
	border:1px inset #ccc;		
	background-color:#fff;
}



div.scrollable-features {
	position:relative;
	overflow:hidden;	 	
	width:100%;	
	height:100%;
	
	/* custom decorations */
	padding: 0;	
	/*border:1px outset #ccc;*/
	background-color: transparent;	
			
}

div.scrollable-features div.items {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
}

/* single scrollable item */
div.scrollable-features div.items div {
	float:left;
	
	/* custom decoration */
	text-align: left;
	width:717px;
	padding:20px 9px;
	/*border:1px outset #ccc;*/
	background-color: transparent;
	margin-right: 20px;	
	-moz-border-radius:5px;
	font-size: 1.0em;


}

/* active item */
div.scrollable-features div.items div.active {
	border:1px inset #ccc;		
	background-color:#fff;
}


#content ul.tabs {
	/*clear: both;*/
	float: right;
	margin: 10px 0 0;
}

#content ul.tabs li {
	list-style-type: none;
	display: inline;
}

#content ul.tabs li a {
	border: 1px solid #ccc;
	background-color: #dff3fa;
}

#content ul.tabs li a.active {
	background-color: #75969d;
}

#content ul.tabs li.active a {
	background-color: #75969d;
}


/*div.scrollable-features div.navi {
	clear: both;
	float: right;
}

div.scrollable-features div.navi a {
	border: 1px solid #ccc;
	background-color: #dff3fa;
	margin-right: 10px;
	line-height: 2px;
	padding-right: 9px;
	padding-left: 9px;
}

div.scrollable-features div.navi a.active {
	background-color: #75969d;
}*/
