/* Launcher */
.mapLaunch {

}

/* Mapa */
.mapChooserDialog {
	display: none;
}

.mapTitle {
	
}

.mapLeft {
	float: left;
	margin-top: 80px;
}

/* Imagen del fondo */
.mapImage {
	float:left;
    position: relative;
    display: block;
    width: 520px;
    height: 400px;
    background-image: url('../img/map.jpg');
    background-repeat: no-repeat;
    /* FIXME: Cambiar el lienzo de la imagen para que coincida con el origen de coordenadas */
    background-position: 30px 6px;
    background-color: white;
    overflow: visible;
}

/* Punto del mapa */
.mapTarget {
    display: inherit;
    position: absolute;

    border: 0 none transparent;
    background-color: transparent;
    background-image: url('../img/map-point.png');
    background-repeat: no-repeat;
    background-position: center center;

    width: 10px;
    height: 10px;
    font-size: 1pt;       /* IE Hack */
}
.mapButton {
    cursor: pointer;
}

/* Tooltip */
.mapContent {
    display: none;        /* required */
    position: absolute;   /* required */
    z-index: 100000;      /* required */
    overflow: visible;
    min-width: 200px;

    padding: 5px;
    border: 1px solid black;
    font-size: 8pt;
    background-color: #eee;
}
.mapContentMinWidthIeHack {
    width: 200px;       /* Igual que el min-width de mapContent */
    height: 1px;
    font-size: 1pt;     /* IE Hack */
}
