
/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 465px;	
	height:275px;	
	
	/* custom decorations */
	padding: 0;	
	/*border:1px outset #ccc;*/
	/*background-color:#efefef;	*/			
}

/* 
	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:40000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */
	margin-left:0px;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
/* custom decoration */
	text-align:left;
	width:465px;
	padding:5px 0 0 0;
	font-size:14px;
	color:#3b1e0e;
	font-family:Helvetica, sans-serif;
	/*margin-right: 20px;*/	
}
#div.scrollable div.items ul{
	list-style:disc;
	margin:0;
	/*padding-left:12px;*/
	padding-top: 4px;}
#div.scrollable div.itemsli {
	font-family:Helvetica, sans-serif;
	font-size:15px;
	color:#3b1e0e;
	line-height:24px;}
	
#div.scrollable div.items div.nutritionList ul{
	list-style:disc;
	margin: 0 0 0 10px;
	/*padding-left:40px;*/
	padding-top: 2px;}
#div.scrollable div.items div.nutritionList li {
	font-family:Helvetica, sans-serif;
	font-size:6px;
	color:#3b1e0e;
	line-height:16px;}


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



/* 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:15px;
	height:20px;
	background:url(../images/leftArrow2.png) no-repeat;
	float:right;
	margin:-22px 20px 10px 20px;
	cursor:pointer;
}

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

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

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../images/rightArrow2.png);
	/*clear:right;*/	
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left:660px;
	width:60px;
	height:20px;
	padding-top:20px;
/*	border:thin #06C dashed;*/
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background-image:url(../images/navigator.png);
	background-position: 0 0;
	background-repeat: no-repeat;     
	cursor:pointer;	
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 
