/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 1140px;	
	height:600px;
	
	height: 480px;	
	float:left;
	/* custom decorations */
	padding:0;	
/*
	border:1px outset #ccc;
*/
	background-color:transparent;				
}

/* 
	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;
	clear:both;		
	
	/* decoration */
	margin-left:0;
}

/* single scrollable item */
div.scrollable div.items div.scrollableItemsFix {
	float:left;
	position:relative;
	/* custom decoration */
	text-align:center;
	width:1180px;
	height:600px;
	padding:0 0px 0 0;
/*	font-size:30px;*/
/*
	font-family: 'bitstream vera sans';
*/
/*
	border:1px outset #ccc;
	background-color: #ddd;*/

	margin-right: 20px;	
	-moz-border-radius:5px;
}

/* active item */
div.scrollable div.items div.active {
/*
	border:1px inset #ccc;		
	background-color:#fff;*/

}


/*********** navigator ***********/
	

.menu{
	width:780px;
	float:left;
	margin:0 0 5px 107px;
/*
	font-size: 0.775em;
*/
	padding: 0 0 0 0;
}

.menu li{
	list-style:none;
	float:left;

	padding: 0 0 3px 0;
	outline: none;
	margin: 0 20px 0 0;
	cursor:pointer;
}

.menu li.empty{
	margin: 0;
}

.menu li.active {
	background:url('/a/img/global/activeMenu.jpg') no-repeat bottom left;	  
}

.menu li a {
	text-decoration: none;
	color:#6d7998;
}

.menu li:hover {

	color:#54295f;
}

.menu li a:hover {

	color:#54295f;
}
