@charset "utf-8";
/* CSS Document */

#mapa {
	position: relative; 
	margin: 10px auto 0px auto;
}

/* Hide the original tooltips contents */
.pin {
	display: none;
}

/* Begin styling the tooltips and pins */
.tooltip-up, .tooltip-down {
	position: absolute;
	background:url(../img/arrow-up-down.png);
	width: 55px;
	height: 52px;
	z-index:998;
}

.tooltip-down {
	background-position: 0 -52px;
}

.tooltip {
	display: none;
	width: 200px;
	cursor: help;
	position: absolute;
	top: 10px;
	left: 50%;
	z-index: 999;
	margin-left: -115px;
	padding:15px;
	color: #222;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-moz-box-shadow: 0 3px 0 rgba(0,0,0,.7);
	-webkit-box-shadow: 0 3px 0 rgba(0,0,0,.7);
	box-shadow: 0 3px 0 rgba(0,0,0,.7);
	background: ##CFCECE;
	background: -webkit-gradient(linear, left top, left bottom, from(#CFCECE), to(#919090));
	background: -webkit-linear-gradient(top, #CFCECE, #919090);
	background: -moz-linear-gradient(top, #CFCECE, #919090);
	background: -ms-linear-gradient(top, #CFCECE, #919090);
	background: -o-linear-gradient(top, #CFCECE, #919090);
	background: linear-gradient(top, #CFCECE, #919090);			
}

.tooltip::after {
	content: '';
	position: absolute;
	top: -10px;
	left: 50%;
	margin-left: -10px;
	border-bottom: 10px solid #fff1d3;
	border-left: 10px solid transparent;
	border-right :10px solid transparent;
}

.tooltip-down .tooltip {
	bottom: 45px;
	top: auto;
}

.tooltip-down .tooltip::after {
	bottom: -10px;
	top: auto;
	border-bottom: 0;
	border-top: 10px solid #551D1D;
}

.tooltip h2 {
	font: bold 1.3em 'Trebuchet MS', Tahoma, Arial;
	margin: 0 0 10px;
}

.tooltip ul {
	margin: 0;
	padding: 0;
	list-style: none;
}		