/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 635px;
	height:240px;
	background-image: url(/img/global/gradient/h300.png);
	background-repeat: repeat-x;
	margin-bottom: 20px;
	margin-top: 20px;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
	margin: 0px;
	padding: 0px;
}

/* single scrollable item */
.scrollable .items .pLista {
	float:left;
	padding:2px;
	cursor:pointer;
	width:200px;
	height:200px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	margin-top: 0px;
	margin-right: 6px;
	margin-bottom: 20px;
	margin-left: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #ccc;
	border-right-color: #ccc;
	border-bottom-color: #ccc;
	border-left-color: #ccc;
}


.scrollable .items .pLista img
{
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding-left: 5px;
}
.scrollable .items .pLista .titulo{
	height: 25px;
	display: block;
	font-size: 12px;
	font-weight: bold;
	color: #000000;
	padding-left: 7px;
	text-align: center;

}
.scrollable .items .pLista .info {
	font-size: 11px;
	height: 42px;
	display: block;
	margin-top: 4px;
	padding-left: 6px;
}

.scrollable .items .pLista  a
{
	height: 210px;
	width: 210px;
	display:block;
	text-decoration: none;
	font-size: 12px;
	color: #ff5700;
	background-image: url(../images/proyectos1.png);
	background-position: left top;
	background-repeat: no-repeat;
}
.scrollable .items .pLista a:hover
{
	background-position: center -210px;
	color: #015bff;
}
/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}
