/* root element for scrollable */

div.scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
 
    /* vertical scrollers have typically larger height than width */ 
    height: 260px; 
    width: 290px; 
    float:right;
    margin:0 20px 0 0;
} 
 
/* root element for scrollable items */ 
div.scrollable div.items { 
    position:absolute; 
 
    /* this time we have very large space for the height */ 
    height:20000em; 
}

/* root element for scrollable items */
.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}


/* the action buttons above the scrollable */
#actions {
	width:100px;
	margin:10px 30px 0 0;	
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	

.panelBoxHeading{
    float:right;
    margin:0 20px 0 0;
    width:270px;
}

.panelBoxHeading h1{  
    color:#000000;
    font-size:16px;
    font-weight:100;
    margin:0 35px 7px 0;
    padding:3px 0 0 0;
    text-align:center;
}
