/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
#mainbox{
	margin:0px;
	width: 640px;
	padding: 198px 30px 0px 0px;
	float:right;
}
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	height: 560px;	
	
	/* custom decorations */
	padding:0px;	
}
/* 
	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 */
	text-align:center;
	width:192px;
	padding:0px 10px 0px 0px;
	margin: 0px;	
}
/* single scrollable item */
div.scrollable div.items div div {
	/*float:left;*/
	
	/* custom decoration */
	text-align:center;
	width:192px;
	height: 120px;
	padding:0px;
	/*margin-right: 10px;	*/

}
/* active item */
div.scrollable div.items div div.active {
	border:0px inset #ccc;		
	background-color:#fff;
}

div.scrollable div.items div.separator{
font-size:1px;
height:20px;
width:120px;
margin:0px;
padding:0px;
}


#pagebox{
	margin:0px;
	width: 590px;
	height:506px;
	padding: 0px;
}

div.pagescroll {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	height: 400px;	
	
	/* custom decorations */
	padding:0px;	
}
/* 
	root element for pagescroll items. Must be absolutely positioned
	and it should have a super large width to accomodate pagescroll items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
div.pagescroll div.items {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;		
	}
/* single pagescroll item */
div.pagescroll div.items div {
	float:left;
	
	/* custom decoration */
	text-align:center;
	width:295px;
	height: 402px;
	padding:0px;
	background-color: #ffffff;
	margin: 0px;	
}
/* active item */
div.pagescroll div.items div div.active {
	border:0px inset #ccc;		
	background-color:#fff;
}
.pagenavsep{
	font-size:1px;
	height: 10px;
	clear:both;
}

