.marker{
    position: absolute;
    border: 6px solid;
    border-radius: 50%;
    width: 6px;
    height: 6px;
}
.map {
    width: 100%;
    max-width: 700px;
    margin: auto;
    position: relative;
}
.map .markers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.map .markers .marker {
    position: absolute;
    border: 6px solid;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.map .markers .marker:hover,
.map .markers .marker.active {
    background-color: #ffffff !important;
    transform: scale(1.3);
}
.map .img-map {
    width: 100%;
    height: auto;
    margin: 0;
}

.info-message{
    background: none repeat scroll 0 0 #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 6px 6px 6px 6px;
    left: 0;
    right: 0;
    padding: 10px;
    text-align: center;
    z-index: 15;
}