/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 222px;	 
	width: 320px;
	border-top:1px solid #ddd;
}

/* root element for scrollable items */
.items {	
	position:absolute;
	width: 320px;
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
.items div {
	border-bottom:1px solid #ddd;
	margin: 0px 0px 0px 0px;
	padding:5px;
	height:100px;
	background: #181818; 
}

.items_onair div {
	border-bottom:1px solid #ddd;
	margin: 0px 0px 0px 0px;
	padding:5px;
	height:100px;
	background: #181818; 
}

#item_time {
	float:left;
	padding-top: 12px;
	color: #fff;
	margin-right:15px;
	height:83px;
	width:60px;
	background: #B00A0A url(../images/bg_primetime.gif) no-repeat;
	border-bottom:none;
}

#item_pf {
width: 320px;
}

#item_pf p {
line-height: 1.4em;
margin:5px 0px 5px 0px;
padding:0px 10px 0px 10px;
color: #fff;
}

#item_pf h3 {
font-size:1.2em;
color:#EFDC16;
font-weight:normal;
margin:5px 0px 8px 0;
background: none;
padding: 5px 0px 0px 0px;
}

/* elements inside single item */
.items img {
	float:left;
	margin-right:20px;
	height:100px;
	width:60px;
	background: #B00A0A;
}

.items h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}

/* the action buttons above the scrollable */
#actions {
	width:310px;
	margin:22px 0px 10px 0px;	
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
	margin-bottom: 10px;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.prevPage {
	float:left;
}

.nextPage {
	float:right;
}	


