@charset "UTF-8";
/* CSS Document */

div.scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
 
    /* vertical scrollers have typically larger height than width */ 
    height: 265px; 
    width: 488px; 
} 
 
/* root element for scrollable items */ 
div.scrollable div.items { 
    position:absolute; 
 
    /* this time we have very large space for the height */ 
    height:20000em; 
}

div.scrollable div.items div {
	height:265px;
}


a.up {
	display:block;
	background:url(../images/scroll-up.gif) no-repeat center top;
	height:32px;
	overflow:hidden;
	text-indent:-9999px;
	cursor:pointer;
}

a.down {
	display:block;
	background:url(../images/scroll-down.gif) no-repeat center top;
	height:32px;
	text-indent:-9999px;
	cursor:pointer;
}

.scroll-head {
	display:block;
	font-size:15px;
	color:#0073cf;
	margin-bottom:18px;
}

.scroller p {
	margin:0 !important;
}

.scroller {
	margin-top:18px;
}
