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

/* 
	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;
	padding-left: 10px;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	/* custom decoration */
	width:650px;
	padding: 0;
	margin: 0;
}

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

h2.category-title, p.post-meta {
  display: none;
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(/persistent/js/jquery.mousewheel/hori_large.png) no-repeat;
	display: block;
	width:30px;
	height:30px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.browseright 				{ background-position: 0 -30px; clear:right; margin-right: 0px;}
a.browseright:hover 		{ background-position:-30px -30px; }
a.browseright:active 	{ background-position:-60px -30px; } 


/* left */
a.browseleft				{ margin-left: 0px; } 
a.browseleft:hover  		{ background-position:-30px 0; }
a.browseleft:active  	{ background-position:-60px 0; }


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

/* position and dimensions of the navigator */ 
.navi {
		margin-left:300px;
		width: 200px; 
    height: 20px; 
}

/* items inside navigator */ 
.navi a { 
    width:8px; 
    height:8px; 
    float:left; 
    margin:3px; 
    background:url(/persistent/js/jquery.mousewheel/navigator.png) 0 0 no-repeat; 
    display:block; 
    font-size:1px; 
}

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

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