/*horizontal scroll styles*/

/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 59.88em;	
	height:32.50em;	
	
			
}

/* 
	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;		
	
	
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
	/* custom decoration */

	width:59.88em;
	padding:0;
	margin: 18px 0 0 0;


}
div.scrollable div.items div img {
margin-bottom: 4px;
}
body.features div.scrollable div.items div.subItemLft {
	float: left;
	width: 60em;
	margin:0;
}
div.scrollable div.items div.subItemLft {
	float: left;
	width: 12em;
	margin:0;
}
div.scrollable div.items div.subItemRght {
	float: left;
	width: 22.00em;
	margin-left: 25px;
}
div.scrollable div.items div.subItemRghtsm {
	float: left;
	width: 14.25em;
	margin-left: 25px;
}

div.scrollable div.items div.subItemRght li {
	padding:0;
	font-size: 0.750em;
	margin: 0.50em 0;
}

div.scrollable div.items div.subItemCntrd {
	float: left;
	width: 41em;
	margin-left: 25px;
}


/* this makes it possible to add next button beside scrollable 
div.scrollable {
	float:left;		
}*/

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:33px;
	height:31px;
	background:url(../images/btn_prev.gif) no-repeat;
	position:absolute;
	left:5px;
	top:465px;
	z-index: 100;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0 1px;		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../images/btn_next.gif);
	left: 920px;	
}


