/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 400px;	 
	width: 375px;
	border-top:1px solid #ddd;
	border-bottom:2px solid #ddd;
	background-color:#F5F5F5;
	margin-bottom:10px;
}

/* root element for scrollable items */
.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
	width:375px;
}

/* single scrollable item */
.items div {
	border-bottom:1px solid #ddd;
	margin:0;
	padding:15px;
	font-size:12px;
	height:50px;
	width:345px;
}
.items div:hover{
	background-color:#FCFCFC;
}
.items div a{
	font-family:Verdana, Geneva, sans-serif;
	font-size:12px;
	color:#036;
	font-weight:bold;
	text-decoration:none;
}
.items div a:hover{
	color:#C00;
	text-decoration:underline;
}
.items div P{
	font-family:Verdana, Geneva, sans-serif;
	font-size:10px;
	color:#666;
	margin:0 auto 6px auto;
}
/* elements inside single item */
.items img {
	float:left;
	margin-right:20px;
	height:180px;
	width:240px;
}

.items h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}

/* the action buttons above the scrollable */
#actions {
	width:371px;
	margin:5px 0 3px 0;
	font-family:Verdana, Geneva, sans-serif;
	background-color:#DDD;
	padding:2px;
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

#actions a:hover {
	text-decoration:underline;
	color:#333;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	

.prevPage {
	/*float:left;*/
}

#TituloNews {
	width:365px;
	background-color:#C00;
	color:#FFF;
	font-family:Verdana, Geneva, sans-serif;
	font-size:13px;
	font-weight:bold;
	padding:5px;
	margin:10px 0 0 0;
}