body {
	font-family:"Lucida Grande","Lucida Sans Unicode","bitstream vera sans","trebuchet ms",verdana;
}

/* get rid of those system borders being generated for A tags */
a:active {
  outline:none;
}

:focus {
  -moz-outline-style:none;
}
/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 400px;	 
	width: 600px;
	border-top:1px solid #ddd;	
}

/* 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 {
	border-bottom:1px solid #ddd;
	margin:-8px 0;
	padding:15px;
	font-size:12px;
	height:180px;
	width:580px;
}

/* elements inside single item */
.items img {
	float:left;
	margin-right:20px;
	border: 4px solid #ccc;
	height:180px;
	
}
.items a:hover img{border: 4px solid #AEAEAE;}


.items h3 {
padding-top:50px;
	margin:0 0 5px 0;
	font-size:16px;
	letter-spacing: -1.7pt;
	font-weight:bold;
	color:#456;	
}

.titulogal {
	padding-left:40px; 
	padding-top:10px; 
	font-size:32pt;
	letter-spacing: -2pt;
	font-weight:bold;	
	color:#456;	
	line-height:25px;
}
.ver {
	padding-left:25px;
	font-size:10pt;
	color:#222222;
	font-weight:normal;
}
.ver a{ color:#222222; text-decoration:none;}
.ver a:hover{text-decoration:none;border-bottom:1px solid red; color:#222222;}
/* the action buttons above the scrollable */
#actions {
	width:600px;
	margin:10px 0 10px 0;	
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	

