/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
    position:relative; 
    overflow:hidden; 
    width: 270px; 
    height:95px; 
	/* custom decorations */
	border:1px solid #ccc;
	background:url(/img/global/gradient/h300.png) repeat-x;
}

.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:10px 10px 10px 10px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
	width:100px;
	height:75px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

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

/*tooltip de los mapas*/

#tooltip {
    position: absolute;
    z-index: 3000;
    border: 1px solid #111;
    background-color: #eee;
    padding: 5px;
    opacity: 0.85;
	font-size:10px;
	color:#000000;
}
#tooltip h3, #tooltip div { margin: 0; }
#tooltip h3 {font-size: 1.3em;color:#A00000;}
#tooltip p {color:#000000;font-size: 1em;}
#tooltip.pretty {
    border: none;
    width: 210px;
    padding:20px;
    height: 135px;
    opacity: 0.8;
    background: url(img/shadow.png);
}

/*Tooltip*/
/*#demotip { 
	display:none;
	background:url(img/black_arrow_big.png);
	height:163px;
	padding:25px 25px 10px 25px;
	width:210px;
	font-size:11px;
	color:#fff;
   
} 

/* use a semi-transparent image for the overlay */ 
/*#overlay {
	background-image:url(http://static.flowplayer.org/img/overlay/transparent.png);
	color:#efefef;
	height:450px;
}

/* container for external content. uses vertical scrollbar, if needed */
/*div.contentWrap {
	height:441px;
	overflow-y:auto;
}

/* use a semi-transparent image for the overlay */ 
#overlay {
	display:none;
	background-image:url(http://static.flowplayer.org/img/overlay/transparent.png);
	color:#efefef;
	height:450px;
	width: 500px;
}
 
/* container for external content. uses vertical scrollbar, if needed */ 
div.contentWrap { 
    height:441px; 
    overflow-y:auto; 
}



