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