/* root element for scrollable */ 
div.scrollable { 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
	
	background-color:#CCCCCC;
	float:right;
	height:310px;
	margin:10px;
	width:380px;
	text-align:left;
} 
 
/* root element for scrollable items */ 
div.scrollable div.items { 
    position:absolute; 
 
    /* this time we have very large space for the height */ 
    height:20000em; 
	
	float:none;
	text-align:left;
}

div.scrollable div.items div {
	padding:24px 12px 0 18px;
	width:95%;
	text-align:left;
}

div.scrollable div.items div div{
	padding:0;
}

div#actions {
	float:right;
	margin:300px 45px 0 0;
}

div#actions *{
	display:block;
	border:none;
	padding:2px;
}
div#actions *:hover {
	background-color:#FF9;
}
div#actions *:active {
	background-color:#FF3;
}
