/*tooltip*/
.tooltip{
background: rgb(52,52,52); /* Old browsers */
background: -moz-linear-gradient(top, rgba(52,52,52,1) 0%, rgba(85,85,85,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(52,52,52,1)), color-stop(100%,rgba(85,85,85,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(52,52,52,1) 0%,rgba(85,85,85,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(52,52,52,1) 0%,rgba(85,85,85,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(52,52,52,1) 0%,rgba(85,85,85,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(52,52,52,1) 0%,rgba(85,85,85,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#343434', endColorstr='#555555',GradientType=0 ); /* IE6-9 */
width:356px;
height:217px;
border-radius:3px;
color:#fff;
text-decoration:none;
padding:8px;
display: none;
margin:10px 0 50px -3px;
}
/*.tooltip:after{
content: ' ';
height: 0;
position: absolute;
width: 0;
border: 10px solid transparent;
}
.tooltip.arriba.centro:after{
border-top-color: #f90;
top:100%;
left:50%;
margin-left: -10px;
margin-top: 3px;
}
.tooltip.abajo.centro:after{
border-bottom-color: #f90;
top:0;
left:50%;
margin-left: -10px;
margin-top: -23px;
}
.tooltip.centro.derecha:after{
border-right-color: #f90;
left:0;
top:50%;
margin-top:-10px;
margin-left:-23px;
}*/