/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 882px;
	height:175px;
	margin: 0px;
	padding: 0px;
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: none;
}

/*
	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;
}
.items div {
	float:left;
	width:211px;
	color:#fff;
	cursor:pointer;
	margin-right: 2px;
	background: url(../layout/fondos/cuadro.png) no-repeat center top;
	height: 164px;
	padding: 6px 4px 4px;
	text-align: left;
}

/* single scrollable item */
.scrollable img {
	float:left;
	border:1px solid #ccc;
	width:100px;
	height:75px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	margin-right: auto;
	margin-left: auto;
	padding-bottom: 8px;
	padding-left: 2px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}
.titulosCatWrapper {
	color: #FFFFFF;
	text-align: left;
	padding-left: 4px;
	font: normal 14px/1.1em "Myriad Web", "Myriad Pro", "Gill Sans MT", Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	display: block;
}

.SubtitulosCat {
	font: normal 11px "Myriad Web", "Myriad Pro", "Gill Sans MT", Arial, Helvetica, sans-serif;
	color: #1aab54;
	text-transform: uppercase;
	text-align: left;
	padding-left: 4px;
	display: block;
}
 
.scrollable img {
	width:207px;
	height: 120px;
	border-style: none;
}
