1 /* required styles */
\r 
   5 .leaflet-marker-icon,
\r 
   6 .leaflet-marker-shadow,
\r 
   7 .leaflet-tile-container,
\r 
   9 .leaflet-pane > canvas,
\r 
  11 .leaflet-image-layer,
\r 
  17 .leaflet-container {
\r 
  21 .leaflet-marker-icon,
\r 
  22 .leaflet-marker-shadow {
\r 
  23         -webkit-user-select: none;
\r 
  24            -moz-user-select: none;
\r 
  26           -webkit-user-drag: none;
\r 
  28 /* Safari renders non-retina tile on retina better with this, but Chrome is worse */
\r 
  29 .leaflet-safari .leaflet-tile {
\r 
  30         image-rendering: -webkit-optimize-contrast;
\r 
  32 /* hack that prevents hw layers "stretching" when loading new tiles */
\r 
  33 .leaflet-safari .leaflet-tile-container {
\r 
  36         -webkit-transform-origin: 0 0;
\r 
  38 .leaflet-marker-icon,
\r 
  39 .leaflet-marker-shadow {
\r 
  42 /* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
\r 
  43 /* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
\r 
  44 .leaflet-container .leaflet-overlay-pane svg,
\r 
  45 .leaflet-container .leaflet-marker-pane img,
\r 
  46 .leaflet-container .leaflet-shadow-pane img,
\r 
  47 .leaflet-container .leaflet-tile-pane img,
\r 
  48 .leaflet-container img.leaflet-image-layer {
\r 
  49         max-width: none !important;
\r 
  50         max-height: none !important;
\r 
  53 .leaflet-container.leaflet-touch-zoom {
\r 
  54         -ms-touch-action: pan-x pan-y;
\r 
  55         touch-action: pan-x pan-y;
\r 
  57 .leaflet-container.leaflet-touch-drag {
\r 
  58         -ms-touch-action: pinch-zoom;
\r 
  59         /* Fallback for FF which doesn't support pinch-zoom */
\r 
  61         touch-action: pinch-zoom;
\r 
  63 .leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
\r 
  64         -ms-touch-action: none;
\r 
  67 .leaflet-container {
\r 
  68         -webkit-tap-highlight-color: transparent;
\r 
  70 .leaflet-container a {
\r 
  71         -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
\r 
  77 .leaflet-tile-loaded {
\r 
  78         visibility: inherit;
\r 
  83         -moz-box-sizing: border-box;
\r 
  84              box-sizing: border-box;
\r 
  87 /* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
\r 
  88 .leaflet-overlay-pane svg {
\r 
  89         -moz-user-select: none;
\r 
  92 .leaflet-pane         { z-index: 400; }
\r 
  94 .leaflet-tile-pane    { z-index: 200; }
\r 
  95 .leaflet-overlay-pane { z-index: 400; }
\r 
  96 .leaflet-shadow-pane  { z-index: 500; }
\r 
  97 .leaflet-marker-pane  { z-index: 600; }
\r 
  98 .leaflet-tooltip-pane   { z-index: 650; }
\r 
  99 .leaflet-popup-pane   { z-index: 700; }
\r 
 101 .leaflet-map-pane canvas { z-index: 100; }
\r 
 102 .leaflet-map-pane svg    { z-index: 200; }
\r 
 104 .leaflet-vml-shape {
\r 
 109         behavior: url(#default#VML);
\r 
 110         display: inline-block;
\r 
 111         position: absolute;
\r 
 115 /* control positioning */
\r 
 118         position: relative;
\r 
 120         pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
\r 
 121         pointer-events: auto;
\r 
 125         position: absolute;
\r 
 127         pointer-events: none;
\r 
 145 .leaflet-right .leaflet-control {
\r 
 148 .leaflet-top .leaflet-control {
\r 
 151 .leaflet-bottom .leaflet-control {
\r 
 152         margin-bottom: 10px;
\r 
 154 .leaflet-left .leaflet-control {
\r 
 157 .leaflet-right .leaflet-control {
\r 
 158         margin-right: 10px;
\r 
 162 /* zoom and fade animations */
\r 
 164 .leaflet-fade-anim .leaflet-tile {
\r 
 165         will-change: opacity;
\r 
 167 .leaflet-fade-anim .leaflet-popup {
\r 
 169         -webkit-transition: opacity 0.2s linear;
\r 
 170            -moz-transition: opacity 0.2s linear;
\r 
 171              -o-transition: opacity 0.2s linear;
\r 
 172                 transition: opacity 0.2s linear;
\r 
 174 .leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
\r 
 177 .leaflet-zoom-animated {
\r 
 178         -webkit-transform-origin: 0 0;
\r 
 179             -ms-transform-origin: 0 0;
\r 
 180                 transform-origin: 0 0;
\r 
 182 .leaflet-zoom-anim .leaflet-zoom-animated {
\r 
 183         will-change: transform;
\r 
 185 .leaflet-zoom-anim .leaflet-zoom-animated {
\r 
 186         -webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
\r 
 187            -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
\r 
 188              -o-transition:      -o-transform 0.25s cubic-bezier(0,0,0.25,1);
\r 
 189                 transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
\r 
 191 .leaflet-zoom-anim .leaflet-tile,
\r 
 192 .leaflet-pan-anim .leaflet-tile {
\r 
 193         -webkit-transition: none;
\r 
 194            -moz-transition: none;
\r 
 195              -o-transition: none;
\r 
 199 .leaflet-zoom-anim .leaflet-zoom-hide {
\r 
 200         visibility: hidden;
\r 
 206 .leaflet-interactive {
\r 
 210         cursor: -webkit-grab;
\r 
 213 .leaflet-crosshair,
\r 
 214 .leaflet-crosshair .leaflet-interactive {
\r 
 217 .leaflet-popup-pane,
\r 
 221 .leaflet-dragging .leaflet-grab,
\r 
 222 .leaflet-dragging .leaflet-grab .leaflet-interactive,
\r 
 223 .leaflet-dragging .leaflet-marker-draggable {
\r 
 225         cursor: -webkit-grabbing;
\r 
 226         cursor:    -moz-grabbing;
\r 
 229 /* marker & overlays interactivity */
\r 
 230 .leaflet-marker-icon,
\r 
 231 .leaflet-marker-shadow,
\r 
 232 .leaflet-image-layer,
\r 
 233 .leaflet-pane > svg path,
\r 
 234 .leaflet-tile-container {
\r 
 235         pointer-events: none;
\r 
 238 .leaflet-marker-icon.leaflet-interactive,
\r 
 239 .leaflet-image-layer.leaflet-interactive,
\r 
 240 .leaflet-pane > svg path.leaflet-interactive {
\r 
 241         pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
\r 
 242         pointer-events: auto;
\r 
 245 /* visual tweaks */
\r 
 247 .leaflet-container {
\r 
 251 .leaflet-container a {
\r 
 254 .leaflet-container a.leaflet-active {
\r 
 255         outline: 2px solid orange;
\r 
 257 .leaflet-zoom-box {
\r 
 258         border: 2px dotted #38f;
\r 
 259         background: rgba(255,255,255,0.5);
\r 
 263 /* general typography */
\r 
 264 .leaflet-container {
\r 
 265         font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
\r 
 269 /* general toolbar styles */
\r 
 272         box-shadow: 0 1px 5px rgba(0,0,0,0.65);
\r 
 273         border-radius: 4px;
\r 
 276 .leaflet-bar a:hover {
\r 
 277         background-color: #fff;
\r 
 278         border-bottom: 1px solid #ccc;
\r 
 283         text-align: center;
\r 
 284         text-decoration: none;
\r 
 288 .leaflet-control-layers-toggle {
\r 
 289         background-position: 50% 50%;
\r 
 290         background-repeat: no-repeat;
\r 
 293 .leaflet-bar a:hover {
\r 
 294         background-color: #f4f4f4;
\r 
 296 .leaflet-bar a:first-child {
\r 
 297         border-top-left-radius: 4px;
\r 
 298         border-top-right-radius: 4px;
\r 
 300 .leaflet-bar a:last-child {
\r 
 301         border-bottom-left-radius: 4px;
\r 
 302         border-bottom-right-radius: 4px;
\r 
 303         border-bottom: none;
\r 
 305 .leaflet-bar a.leaflet-disabled {
\r 
 307         background-color: #f4f4f4;
\r 
 311 .leaflet-touch .leaflet-bar a {
\r 
 316 .leaflet-touch .leaflet-bar a:first-child {
\r 
 317         border-top-left-radius: 2px;
\r 
 318         border-top-right-radius: 2px;
\r 
 320 .leaflet-touch .leaflet-bar a:last-child {
\r 
 321         border-bottom-left-radius: 2px;
\r 
 322         border-bottom-right-radius: 2px;
\r 
 327 .leaflet-control-zoom-in,
\r 
 328 .leaflet-control-zoom-out {
\r 
 329         font: bold 18px 'Lucida Console', Monaco, monospace;
\r 
 333 .leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
\r 
 338 /* layers control */
\r 
 340 .leaflet-control-layers {
\r 
 341         box-shadow: 0 1px 5px rgba(0,0,0,0.4);
\r 
 343         border-radius: 5px;
\r 
 345 .leaflet-control-layers-toggle {
\r 
 346         background-image: url(images/layers.png);
\r 
 350 .leaflet-retina .leaflet-control-layers-toggle {
\r 
 351         background-image: url(images/layers-2x.png);
\r 
 352         background-size: 26px 26px;
\r 
 354 .leaflet-touch .leaflet-control-layers-toggle {
\r 
 358 .leaflet-control-layers .leaflet-control-layers-list,
\r 
 359 .leaflet-control-layers-expanded .leaflet-control-layers-toggle {
\r 
 362 .leaflet-control-layers-expanded .leaflet-control-layers-list {
\r 
 364         position: relative;
\r 
 366 .leaflet-control-layers-expanded {
\r 
 367         padding: 6px 10px 6px 6px;
\r 
 371 .leaflet-control-layers-scrollbar {
\r 
 372         overflow-y: scroll;
\r 
 373         overflow-x: hidden;
\r 
 374         padding-right: 5px;
\r 
 376 .leaflet-control-layers-selector {
\r 
 378         position: relative;
\r 
 381 .leaflet-control-layers label {
\r 
 384 .leaflet-control-layers-separator {
\r 
 386         border-top: 1px solid #ddd;
\r 
 387         margin: 5px -10px 5px -6px;
\r 
 390 /* Default icon URLs */
\r 
 391 .leaflet-default-icon-path {
\r 
 392         background-image: url(images/marker-icon.png);
\r 
 396 /* attribution and scale controls */
\r 
 398 .leaflet-container .leaflet-control-attribution {
\r 
 400         background: rgba(255, 255, 255, 0.7);
\r 
 403 .leaflet-control-attribution,
\r 
 404 .leaflet-control-scale-line {
\r 
 408 .leaflet-control-attribution a {
\r 
 409         text-decoration: none;
\r 
 411 .leaflet-control-attribution a:hover {
\r 
 412         text-decoration: underline;
\r 
 414 .leaflet-container .leaflet-control-attribution,
\r 
 415 .leaflet-container .leaflet-control-scale {
\r 
 418 .leaflet-left .leaflet-control-scale {
\r 
 421 .leaflet-bottom .leaflet-control-scale {
\r 
 422         margin-bottom: 5px;
\r 
 424 .leaflet-control-scale-line {
\r 
 425         border: 2px solid #777;
\r 
 428         padding: 2px 5px 1px;
\r 
 430         white-space: nowrap;
\r 
 432         -moz-box-sizing: border-box;
\r 
 433              box-sizing: border-box;
\r 
 436         background: rgba(255, 255, 255, 0.5);
\r 
 438 .leaflet-control-scale-line:not(:first-child) {
\r 
 439         border-top: 2px solid #777;
\r 
 440         border-bottom: none;
\r 
 443 .leaflet-control-scale-line:not(:first-child):not(:last-child) {
\r 
 444         border-bottom: 2px solid #777;
\r 
 447 .leaflet-touch .leaflet-control-attribution,
\r 
 448 .leaflet-touch .leaflet-control-layers,
\r 
 449 .leaflet-touch .leaflet-bar {
\r 
 452 .leaflet-touch .leaflet-control-layers,
\r 
 453 .leaflet-touch .leaflet-bar {
\r 
 454         border: 2px solid rgba(0,0,0,0.2);
\r 
 455         background-clip: padding-box;
\r 
 462         position: absolute;
\r 
 463         text-align: center;
\r 
 464         margin-bottom: 20px;
\r 
 466 .leaflet-popup-content-wrapper {
\r 
 469         border-radius: 12px;
\r 
 471 .leaflet-popup-content {
\r 
 475 .leaflet-popup-content p {
\r 
 478 .leaflet-popup-tip-container {
\r 
 481         position: absolute;
\r 
 483         margin-left: -20px;
\r 
 485         pointer-events: none;
\r 
 487 .leaflet-popup-tip {
\r 
 492         margin: -10px auto 0;
\r 
 494         -webkit-transform: rotate(45deg);
\r 
 495            -moz-transform: rotate(45deg);
\r 
 496             -ms-transform: rotate(45deg);
\r 
 497              -o-transform: rotate(45deg);
\r 
 498                 transform: rotate(45deg);
\r 
 500 .leaflet-popup-content-wrapper,
\r 
 501 .leaflet-popup-tip {
\r 
 504         box-shadow: 0 3px 14px rgba(0,0,0,0.4);
\r 
 506 .leaflet-container a.leaflet-popup-close-button {
\r 
 507         position: absolute;
\r 
 510         padding: 4px 4px 0 0;
\r 
 512         text-align: center;
\r 
 515         font: 16px/14px Tahoma, Verdana, sans-serif;
\r 
 517         text-decoration: none;
\r 
 519         background: transparent;
\r 
 521 .leaflet-container a.leaflet-popup-close-button:hover {
\r 
 524 .leaflet-popup-scrolled {
\r 
 526         border-bottom: 1px solid #ddd;
\r 
 527         border-top: 1px solid #ddd;
\r 
 530 .leaflet-oldie .leaflet-popup-content-wrapper {
\r 
 533 .leaflet-oldie .leaflet-popup-tip {
\r 
 537         -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
\r 
 538         filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
\r 
 540 .leaflet-oldie .leaflet-popup-tip-container {
\r 
 544 .leaflet-oldie .leaflet-control-zoom,
\r 
 545 .leaflet-oldie .leaflet-control-layers,
\r 
 546 .leaflet-oldie .leaflet-popup-content-wrapper,
\r 
 547 .leaflet-oldie .leaflet-popup-tip {
\r 
 548         border: 1px solid #999;
\r 
 554 .leaflet-div-icon {
\r 
 556         border: 1px solid #666;
\r 
 561 /* Base styles for the element that has a tooltip */
\r 
 563         position: absolute;
\r 
 565         background-color: #fff;
\r 
 566         border: 1px solid #fff;
\r 
 567         border-radius: 3px;
\r 
 569         white-space: nowrap;
\r 
 570         -webkit-user-select: none;
\r 
 571         -moz-user-select: none;
\r 
 572         -ms-user-select: none;
\r 
 574         pointer-events: none;
\r 
 575         box-shadow: 0 1px 3px rgba(0,0,0,0.4);
\r 
 577 .leaflet-tooltip.leaflet-clickable {
\r 
 579         pointer-events: auto;
\r 
 581 .leaflet-tooltip-top:before,
\r 
 582 .leaflet-tooltip-bottom:before,
\r 
 583 .leaflet-tooltip-left:before,
\r 
 584 .leaflet-tooltip-right:before {
\r 
 585         position: absolute;
\r 
 586         pointer-events: none;
\r 
 587         border: 6px solid transparent;
\r 
 588         background: transparent;
\r 
 594 .leaflet-tooltip-bottom {
\r 
 597 .leaflet-tooltip-top {
\r 
 600 .leaflet-tooltip-bottom:before,
\r 
 601 .leaflet-tooltip-top:before {
\r 
 605 .leaflet-tooltip-top:before {
\r 
 607         margin-bottom: -12px;
\r 
 608         border-top-color: #fff;
\r 
 610 .leaflet-tooltip-bottom:before {
\r 
 614         border-bottom-color: #fff;
\r 
 616 .leaflet-tooltip-left {
\r 
 619 .leaflet-tooltip-right {
\r 
 622 .leaflet-tooltip-left:before,
\r 
 623 .leaflet-tooltip-right:before {
\r 
 627 .leaflet-tooltip-left:before {
\r 
 629         margin-right: -12px;
\r 
 630         border-left-color: #fff;
\r 
 632 .leaflet-tooltip-right:before {
\r 
 634         margin-left: -12px;
\r 
 635         border-right-color: #fff;
\r