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

	/* vertical scrollers have typically larger height than width */	
	height: 302px;	 
	width: 315px;
}

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

/* single scrollable item */
.items div {
	background-image:url(../images/bg_conteudo.gif);
	margin-bottom:16px;
	font-size:14px;
	height:90px;
	width:315px;
}

/* elements inside single item */
.items img {
	float:left;
	margin-right:3px;
	height:88px;
	width:153px;
}

.items h3 {
	font-size:18px;
	color:#456;
	font-weight:normal;
}
.items p{
	margin-bottom:26px;
}
.items a{
	color:#336;
	text-decoration:none;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
}
.linkAssistir{
	margin-top:10px;

}
.linkAssistir a{
	color:#C60;
	text-decoration:underline;
}


/* the action buttons above the scrollable */
#actions {
	width:315px;
	margin-top:5px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

#actions a {
	font-size:14px;		
	cursor:pointer;
	color:#336;
}

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

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	

.scrollable vertical{
	width:315px;
	height:302px;
}

