
/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 600px;	
	height: 280px;	
	
	/* custom decorations */
	padding:10px 0;	
	background-color:#ffffff;				
}


/* 
	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:10px;
} 

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	font-family: arial, san-serif;
	font-size: small;
	/* custom decoration */
	text-align:center;
	width:600px;
	padding:5px 0px;
	margin-right: 20px;	
	
	/* font-size:30px;
	font-family: 'bitstream vera sans';
	border:1px outset #ccc;
	background-color: #ddd;
	-moz-border-radius:5px; */
}




div.scrollable div.items div div{
	font-family: arial, san-serif;
	color: #444444;
	height: 280px;
	left: 250px; 
	top: 10px; 
	position: relative; width: 280px; text-align: left;
	
}

div.scrollable div.items div div h1{
	font-size: 16pt;
	color: #993300;
	font-weight: normal;
	font-family: Cambria, Georgia, "Times New Roman", Times, serif;
	
}
div.scrollable div.items div a{
color: #993300;
text-decoration: none;
font-weight: bold;
	}

div.scrollable div.items div a:hover{
color: #993300;
text-decoration: none;
	}

div.scrollable div.items div .small{
font-family: "Times New Roman", Times, serif;
font-size: 8pt;
	
}
 
/* active item */
div.scrollable div.items div.active {
	/*border:1px inset #ccc;*/
	background-color:#fff;
}




/* prevbrochure, next buttons */
a.prev, a.next {
	display:block;
	position: relative;
	top: -35px;
	width:18px;
	height:18px;
	background:url(/images/prev.png) no-repeat;
	float:left;
	cursor:pointer;
	left: 540px;
} 


/* disabled navigational button 
a.disabled {
	visibility:hidden !important;		
}
*/


/* next button uses another background image */
a.next {
	background:url(/images/next.png) no-repeat;
	clear:right;
	left: 545px;

}

/* mouseover state */
a.prev:hover, a.next:hover{
	background-position:0px -18px;		
}
