/* root element for scrollable */ 
div.scrollable {   
     
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
 
    /* vertical scrollers have typically larger height than width */     
	height:265px;
	overflow:hidden;
	width:280px;
	top:50px;
	left:15px;
} 
 
/* root element for scrollable items */ 
#items {     
    position:relative; 
	left: 10px;
    _left: -140px;
    /* this time we have very large space for height */     
    height:20000em;   
}

#items div {
	width:245px;
	color:#23380a;
	text-align:left;
	margin: 10 auto 10px auto;
	padding:0;
	border:1px none blue;
}

#items h2 {
	color:#23380a  !important;
	font-size:11px;
	margin:0 0 5px 0 !important;
	padding:0 !important;
	font-weight:bold;
}
#items a {
	color:#23380a  !important;
	font-size:11px;
	margin:0 0 5px 0 !important;
	padding:0 !important;
	font-weight:bold;
}

#items p {
	color:#23380a;
	margin:0 !important;
	padding:0 !important;
	border:1px none red;
}
