/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 840px;
	height:235px;
	
}
.clasificados-portada {
	background-image: url(../ima/scrollable/h300largo.png)!important;
	background-position: center bottom!important;
	background-repeat: no-repeat;
}
.clasificados-portada h1 {
	color: #72071b;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: none;
}
.clasificados-portada span a {
	color: #989898;
	text-transform: lowercase;
	text-decoration: none;
	margin-left: 8px;
	margin-top: 3px;
	font-family: Arial, Helvetica, sans-serif;
	height: 14px;
}


/*
	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;
	left: 2px;
}

/* single scrollable item */


.scrollable span {
	float:left;
	background-color:#fff;
	border:1px solid #ccc;
	cursor:pointer;
	width:130px;
	height:214px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	margin-top: 9px;
	margin-right: 2px;
	margin-bottom: 10px;
	margin-left: 2px;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 2px;
}
.scrollable p {
	font-weight: normal;
	display: block;
	clear: left;
}
.titClasifHome {
	text-transform: uppercase;
	color: #333333;
	text-align: center;
	display: block;
	text-decoration: none;
}
.scrollable img {
	float:left;
	background-color:#fff;
	border:1px solid #ccc;
	cursor:pointer;
	/*
	width:115px;
	height:145px;*/
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	margin-top: 2px;
	margin-right: 2px;
	margin-bottom: 2px;
	margin-left: -3px;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 2px;
}

.scrollable label {
	float:left;
	cursor:pointer;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	display: block;
	width:120px;
	height: 22px;
	padding-right: 6px;
	padding-left: 6px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}
