map23dlib-nolib.css 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896
  1. /* required styles */
  2. .leaflet-pane,
  3. .leaflet-tile,
  4. .leaflet-marker-icon,
  5. .leaflet-marker-shadow,
  6. .leaflet-tile-container,
  7. .leaflet-pane > svg,
  8. .leaflet-pane > canvas,
  9. .leaflet-zoom-box,
  10. .leaflet-image-layer,
  11. .leaflet-layer {
  12. position: absolute;
  13. left: 0;
  14. top: 0;
  15. }
  16. .leaflet-container {
  17. overflow: hidden;
  18. }
  19. .leaflet-tile,
  20. .leaflet-marker-icon,
  21. .leaflet-marker-shadow {
  22. -webkit-user-select: none;
  23. -moz-user-select: none;
  24. user-select: none;
  25. -webkit-user-drag: none;
  26. }
  27. /* Safari renders non-retina tile on retina better with this, but Chrome is worse */
  28. .leaflet-safari .leaflet-tile {
  29. image-rendering: -webkit-optimize-contrast;
  30. }
  31. /* hack that prevents hw layers "stretching" when loading new tiles */
  32. .leaflet-safari .leaflet-tile-container {
  33. width: 1600px;
  34. height: 1600px;
  35. -webkit-transform-origin: 0 0;
  36. }
  37. .leaflet-marker-icon,
  38. .leaflet-marker-shadow {
  39. display: block;
  40. }
  41. /* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
  42. /* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
  43. .leaflet-container .leaflet-overlay-pane svg,
  44. .leaflet-container .leaflet-marker-pane img,
  45. .leaflet-container .leaflet-shadow-pane img,
  46. .leaflet-container .leaflet-tile-pane img,
  47. .leaflet-container img.leaflet-image-layer {
  48. max-width: none !important;
  49. }
  50. .leaflet-container.leaflet-touch-zoom {
  51. -ms-touch-action: pan-x pan-y;
  52. touch-action: pan-x pan-y;
  53. }
  54. .leaflet-container.leaflet-touch-drag {
  55. -ms-touch-action: pinch-zoom;
  56. }
  57. .leaflet-container.leaflet-touch-drag.leaflet-touch-drag {
  58. -ms-touch-action: none;
  59. touch-action: none;
  60. }
  61. .leaflet-tile {
  62. filter: inherit;
  63. visibility: hidden;
  64. }
  65. .leaflet-tile-loaded {
  66. visibility: inherit;
  67. }
  68. .leaflet-zoom-box {
  69. width: 0;
  70. height: 0;
  71. -moz-box-sizing: border-box;
  72. box-sizing: border-box;
  73. z-index: 800;
  74. }
  75. /* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
  76. .leaflet-overlay-pane svg {
  77. -moz-user-select: none;
  78. }
  79. .leaflet-pane { z-index: 400; }
  80. .leaflet-tile-pane { z-index: 200; }
  81. .leaflet-overlay-pane { z-index: 400; }
  82. .leaflet-shadow-pane { z-index: 500; }
  83. .leaflet-marker-pane { z-index: 600; }
  84. .leaflet-tooltip-pane { z-index: 650; }
  85. .leaflet-popup-pane { z-index: 700; }
  86. .leaflet-map-pane canvas { z-index: 100; }
  87. .leaflet-map-pane svg { z-index: 200; }
  88. .leaflet-vml-shape {
  89. width: 1px;
  90. height: 1px;
  91. }
  92. .lvml {
  93. behavior: url(#default#VML);
  94. display: inline-block;
  95. position: absolute;
  96. }
  97. /* control positioning */
  98. .leaflet-control {
  99. position: relative;
  100. z-index: 800;
  101. pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
  102. pointer-events: auto;
  103. }
  104. .leaflet-top,
  105. .leaflet-bottom {
  106. position: absolute;
  107. z-index: 1000;
  108. pointer-events: none;
  109. }
  110. .leaflet-top {
  111. top: 0;
  112. }
  113. .leaflet-right {
  114. right: 0;
  115. }
  116. .leaflet-bottom {
  117. bottom: 0;
  118. }
  119. .leaflet-left {
  120. left: 0;
  121. }
  122. .leaflet-control {
  123. float: left;
  124. clear: both;
  125. }
  126. .leaflet-right .leaflet-control {
  127. float: right;
  128. }
  129. .leaflet-top .leaflet-control {
  130. margin-top: 10px;
  131. }
  132. .leaflet-bottom .leaflet-control {
  133. margin-bottom: 10px;
  134. }
  135. .leaflet-left .leaflet-control {
  136. margin-left: 10px;
  137. }
  138. .leaflet-right .leaflet-control {
  139. margin-right: 10px;
  140. }
  141. /* zoom and fade animations */
  142. .leaflet-fade-anim .leaflet-tile {
  143. will-change: opacity;
  144. }
  145. .leaflet-fade-anim .leaflet-popup {
  146. opacity: 0;
  147. -webkit-transition: opacity 0.2s linear;
  148. -moz-transition: opacity 0.2s linear;
  149. -o-transition: opacity 0.2s linear;
  150. transition: opacity 0.2s linear;
  151. }
  152. .leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  153. opacity: 1;
  154. }
  155. .leaflet-zoom-animated {
  156. -webkit-transform-origin: 0 0;
  157. -ms-transform-origin: 0 0;
  158. transform-origin: 0 0;
  159. }
  160. .leaflet-zoom-anim .leaflet-zoom-animated {
  161. will-change: transform;
  162. }
  163. .leaflet-zoom-anim .leaflet-zoom-animated {
  164. -webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
  165. -moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
  166. -o-transition: -o-transform 0.25s cubic-bezier(0,0,0.25,1);
  167. transition: transform 0.25s cubic-bezier(0,0,0.25,1);
  168. }
  169. .leaflet-zoom-anim .leaflet-tile,
  170. .leaflet-pan-anim .leaflet-tile {
  171. -webkit-transition: none;
  172. -moz-transition: none;
  173. -o-transition: none;
  174. transition: none;
  175. }
  176. .leaflet-zoom-anim .leaflet-zoom-hide {
  177. visibility: hidden;
  178. }
  179. /* cursors */
  180. .leaflet-interactive {
  181. /*cursor: pointer;*/
  182. }
  183. .leaflet-grab {
  184. cursor: -webkit-grab;
  185. cursor: -moz-grab;
  186. }
  187. .leaflet-crosshair,
  188. .leaflet-crosshair .leaflet-interactive {
  189. cursor: crosshair;
  190. }
  191. .leaflet-popup-pane,
  192. .leaflet-control {
  193. cursor: auto;
  194. }
  195. .leaflet-dragging .leaflet-grab,
  196. .leaflet-dragging .leaflet-grab .leaflet-interactive,
  197. .leaflet-dragging .leaflet-marker-draggable {
  198. cursor: move;
  199. cursor: -webkit-grabbing;
  200. cursor: -moz-grabbing;
  201. }
  202. /* marker & overlays interactivity */
  203. .leaflet-marker-icon,
  204. .leaflet-marker-shadow,
  205. .leaflet-image-layer,
  206. .leaflet-pane > svg path,
  207. .leaflet-tile-container {
  208. pointer-events: none;
  209. }
  210. .leaflet-marker-icon.leaflet-interactive,
  211. .leaflet-image-layer.leaflet-interactive,
  212. .leaflet-pane > svg path.leaflet-interactive {
  213. pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
  214. pointer-events: auto;
  215. }
  216. /* visual tweaks */
  217. .leaflet-container {
  218. background: #ddd;
  219. outline: 0;
  220. }
  221. .leaflet-container a {
  222. color: #0078A8;
  223. }
  224. .leaflet-container a.leaflet-active {
  225. outline: 2px solid orange;
  226. }
  227. .leaflet-zoom-box {
  228. border: 2px dotted #38f;
  229. background: rgba(255,255,255,0.5);
  230. }
  231. /* general typography */
  232. .leaflet-container {
  233. font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
  234. }
  235. /* general toolbar styles */
  236. .leaflet-bar {
  237. box-shadow: 0 1px 5px rgba(0,0,0,0.65);
  238. border-radius: 4px;
  239. }
  240. .leaflet-bar a,
  241. .leaflet-bar a:hover {
  242. background-color: #fff;
  243. border-bottom: 1px solid #ccc;
  244. width: 26px;
  245. height: 26px;
  246. line-height: 26px;
  247. display: block;
  248. text-align: center;
  249. text-decoration: none;
  250. color: black;
  251. }
  252. .leaflet-bar a,
  253. .leaflet-control-layers-toggle {
  254. background-position: 50% 50%;
  255. background-repeat: no-repeat;
  256. display: block;
  257. }
  258. .leaflet-bar a:hover {
  259. background-color: #f4f4f4;
  260. }
  261. .leaflet-bar a:first-child {
  262. border-top-left-radius: 4px;
  263. border-top-right-radius: 4px;
  264. }
  265. .leaflet-bar a:last-child {
  266. border-bottom-left-radius: 4px;
  267. border-bottom-right-radius: 4px;
  268. border-bottom: none;
  269. }
  270. .leaflet-bar a.leaflet-disabled {
  271. cursor: default;
  272. background-color: #f4f4f4;
  273. color: #bbb;
  274. }
  275. .leaflet-touch .leaflet-bar a {
  276. // width: 30px;
  277. // height: 30px;
  278. // line-height: 30px;
  279. }
  280. /* zoom control */
  281. .leaflet-control-zoom-in,
  282. .leaflet-control-zoom-out {
  283. font: bold 18px 'Lucida Console', Monaco, monospace;
  284. text-indent: 1px;
  285. }
  286. .leaflet-control-zoom-out {
  287. font-size: 20px;
  288. }
  289. .leaflet-touch .leaflet-control-zoom-in {
  290. font-size: 22px;
  291. }
  292. .leaflet-touch .leaflet-control-zoom-out {
  293. font-size: 24px;
  294. }
  295. /* layers control */
  296. .leaflet-control-layers {
  297. box-shadow: 0 1px 5px rgba(0,0,0,0.4);
  298. background: #fff;
  299. border-radius: 5px;
  300. }
  301. .leaflet-control-layers-toggle {
  302. background-image: url(images/layers.png);
  303. width: 36px;
  304. height: 36px;
  305. }
  306. .leaflet-retina .leaflet-control-layers-toggle {
  307. background-image: url(images/layers-2x.png);
  308. background-size: 26px 26px;
  309. }
  310. .leaflet-touch .leaflet-control-layers-toggle {
  311. width: 44px;
  312. height: 44px;
  313. }
  314. .leaflet-control-layers .leaflet-control-layers-list,
  315. .leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  316. display: none;
  317. }
  318. .leaflet-control-layers-expanded .leaflet-control-layers-list {
  319. display: block;
  320. position: relative;
  321. }
  322. .leaflet-control-layers-expanded {
  323. padding: 6px 10px 6px 6px;
  324. color: #333;
  325. background: #fff;
  326. }
  327. .leaflet-control-layers-scrollbar {
  328. overflow-y: scroll;
  329. padding-right: 5px;
  330. }
  331. .leaflet-control-layers-selector {
  332. margin-top: 2px;
  333. position: relative;
  334. top: 1px;
  335. }
  336. .leaflet-control-layers label {
  337. display: block;
  338. }
  339. .leaflet-control-layers-separator {
  340. height: 0;
  341. border-top: 1px solid #ddd;
  342. margin: 5px -10px 5px -6px;
  343. }
  344. /* Default icon URLs */
  345. .leaflet-default-icon-path {
  346. background-image: url(images/marker-icon.png);
  347. }
  348. /* attribution and scale controls */
  349. .leaflet-container .leaflet-control-attribution {
  350. background: #fff;
  351. background: rgba(255, 255, 255, 0.7);
  352. margin: 0;
  353. }
  354. .leaflet-control-attribution,
  355. .leaflet-control-scale-line {
  356. padding: 0 5px;
  357. color: #333;
  358. }
  359. .leaflet-control-attribution a {
  360. text-decoration: none;
  361. }
  362. .leaflet-control-attribution a:hover {
  363. text-decoration: underline;
  364. }
  365. .leaflet-container .leaflet-control-attribution,
  366. .leaflet-container .leaflet-control-scale {
  367. font-size: 11px;
  368. }
  369. .leaflet-left .leaflet-control-scale {
  370. margin-left: 5px;
  371. }
  372. .leaflet-bottom .leaflet-control-scale {
  373. margin-bottom: 5px;
  374. }
  375. .leaflet-control-scale-line {
  376. border: 2px solid #777;
  377. border-top: none;
  378. line-height: 1.1;
  379. padding: 2px 5px 1px;
  380. font-size: 11px;
  381. white-space: nowrap;
  382. overflow: hidden;
  383. -moz-box-sizing: border-box;
  384. box-sizing: border-box;
  385. background: #fff;
  386. background: rgba(255, 255, 255, 0.5);
  387. }
  388. .leaflet-control-scale-line:not(:first-child) {
  389. border-top: 2px solid #777;
  390. border-bottom: none;
  391. margin-top: -2px;
  392. }
  393. .leaflet-control-scale-line:not(:first-child):not(:last-child) {
  394. border-bottom: 2px solid #777;
  395. }
  396. .leaflet-touch .leaflet-control-attribution,
  397. .leaflet-touch .leaflet-control-layers,
  398. .leaflet-touch .leaflet-bar {
  399. box-shadow: none;
  400. }
  401. .leaflet-touch .leaflet-control-layers,
  402. .leaflet-touch .leaflet-bar {
  403. border: 2px solid rgba(0,0,0,0.2);
  404. background-clip: padding-box;
  405. }
  406. /* popup */
  407. .leaflet-popup {
  408. position: absolute;
  409. text-align: center;
  410. margin-bottom: 20px;
  411. }
  412. .leaflet-popup-content-wrapper {
  413. padding: 1px;
  414. text-align: left;
  415. border-radius: 12px;
  416. }
  417. .leaflet-popup-content {
  418. margin: 13px 19px;
  419. line-height: 1.4;
  420. }
  421. .leaflet-popup-content p {
  422. margin: 18px 0;
  423. }
  424. .leaflet-popup-tip-container {
  425. width: 40px;
  426. height: 20px;
  427. position: absolute;
  428. left: 50%;
  429. margin-left: -20px;
  430. overflow: hidden;
  431. pointer-events: none;
  432. }
  433. .leaflet-popup-tip {
  434. width: 17px;
  435. height: 17px;
  436. padding: 1px;
  437. margin: -10px auto 0;
  438. -webkit-transform: rotate(45deg);
  439. -moz-transform: rotate(45deg);
  440. -ms-transform: rotate(45deg);
  441. -o-transform: rotate(45deg);
  442. transform: rotate(45deg);
  443. }
  444. .leaflet-popup-content-wrapper,
  445. .leaflet-popup-tip {
  446. background: white;
  447. color: #333;
  448. box-shadow: 0 3px 14px rgba(0,0,0,0.4);
  449. }
  450. .leaflet-container a.leaflet-popup-close-button {
  451. position: absolute;
  452. top: 0;
  453. right: 0;
  454. padding: 4px 4px 0 0;
  455. border: none;
  456. text-align: center;
  457. width: 18px;
  458. height: 14px;
  459. font: 16px/14px Tahoma, Verdana, sans-serif;
  460. color: #c3c3c3;
  461. text-decoration: none;
  462. font-weight: bold;
  463. background: transparent;
  464. }
  465. .leaflet-container a.leaflet-popup-close-button:hover {
  466. color: #999;
  467. }
  468. .leaflet-popup-scrolled {
  469. overflow: auto;
  470. border-bottom: 1px solid #ddd;
  471. border-top: 1px solid #ddd;
  472. }
  473. .leaflet-oldie .leaflet-popup-content-wrapper {
  474. zoom: 1;
  475. }
  476. .leaflet-oldie .leaflet-popup-tip {
  477. width: 24px;
  478. margin: 0 auto;
  479. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  480. filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
  481. }
  482. .leaflet-oldie .leaflet-popup-tip-container {
  483. margin-top: -1px;
  484. }
  485. .leaflet-oldie .leaflet-control-zoom,
  486. .leaflet-oldie .leaflet-control-layers,
  487. .leaflet-oldie .leaflet-popup-content-wrapper,
  488. .leaflet-oldie .leaflet-popup-tip {
  489. border: 1px solid #999;
  490. }
  491. /* div icon */
  492. .leaflet-div-icon {
  493. background: #fff;
  494. border: 1px solid #666;
  495. }
  496. /* Tooltip */
  497. /* Base styles for the element that has a tooltip */
  498. .leaflet-tooltip {
  499. position: absolute;
  500. padding: 6px;
  501. background-color: #fff;
  502. border: 1px solid #fff;
  503. border-radius: 3px;
  504. color: #222;
  505. white-space: nowrap;
  506. -webkit-user-select: none;
  507. -moz-user-select: none;
  508. -ms-user-select: none;
  509. user-select: none;
  510. pointer-events: none;
  511. box-shadow: 0 1px 3px rgba(0,0,0,0.4);
  512. }
  513. .leaflet-tooltip.leaflet-clickable {
  514. cursor: pointer;
  515. pointer-events: auto;
  516. }
  517. .leaflet-tooltip-top:before,
  518. .leaflet-tooltip-bottom:before,
  519. .leaflet-tooltip-left:before,
  520. .leaflet-tooltip-right:before {
  521. position: absolute;
  522. pointer-events: none;
  523. border: 6px solid transparent;
  524. background: transparent;
  525. content: "";
  526. }
  527. /* Directions */
  528. .leaflet-tooltip-bottom {
  529. margin-top: 6px;
  530. }
  531. .leaflet-tooltip-top {
  532. margin-top: -6px;
  533. }
  534. .leaflet-tooltip-bottom:before,
  535. .leaflet-tooltip-top:before {
  536. left: 50%;
  537. margin-left: -6px;
  538. }
  539. .leaflet-tooltip-top:before {
  540. bottom: 0;
  541. margin-bottom: -12px;
  542. border-top-color: #fff;
  543. }
  544. .leaflet-tooltip-bottom:before {
  545. top: 0;
  546. margin-top: -12px;
  547. margin-left: -6px;
  548. border-bottom-color: #fff;
  549. }
  550. .leaflet-tooltip-left {
  551. margin-left: -6px;
  552. }
  553. .leaflet-tooltip-right {
  554. margin-left: 6px;
  555. }
  556. .leaflet-tooltip-left:before,
  557. .leaflet-tooltip-right:before {
  558. top: 50%;
  559. margin-top: -6px;
  560. }
  561. .leaflet-tooltip-left:before {
  562. right: 0;
  563. margin-right: -12px;
  564. border-left-color: #fff;
  565. }
  566. .leaflet-tooltip-right:before {
  567. left: 0;
  568. margin-left: -12px;
  569. border-right-color: #fff;
  570. }
  571. /*S control positioning */
  572. .leaflet-control {
  573. background: url(data:image/gif;base64,R0lGODlhZABkAIAAAP///wAAACH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4zLWMwMTEgNjYuMTQ1NjYxLCAyMDEyLzAyLzA2LTE0OjU2OjI3ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpDRDQ5RDU3RkZCQTkxMUUzQTBGNjlGM0Q1MkNGMTI5NCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpDRDQ5RDU4MEZCQTkxMUUzQTBGNjlGM0Q1MkNGMTI5NCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkNENDlENTdERkJBOTExRTNBMEY2OUYzRDUyQ0YxMjk0IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkNENDlENTdFRkJBOTExRTNBMEY2OUYzRDUyQ0YxMjk0Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Af/+/fz7+vn49/b19PPy8fDv7u3s6+rp6Ofm5eTj4uHg397d3Nva2djX1tXU09LR0M/OzczLysnIx8bFxMPCwcC/vr28u7q5uLe2tbSzsrGwr66trKuqqainpqWko6KhoJ+enZybmpmYl5aVlJOSkZCPjo2Mi4qJiIeGhYSDgoGAf359fHt6eXh3dnV0c3JxcG9ubWxramloZ2ZlZGNiYWBfXl1cW1pZWFdWVVRTUlFQT05NTEtKSUhHRkVEQ0JBQD8+PTw7Ojk4NzY1NDMyMTAvLi0sKyopKCcmJSQjIiEgHx4dHBsaGRgXFhUUExIREA8ODQwLCgkIBwYFBAMCAQAAIfkEAQAAAAAsAAAAAGQAZAAAAnOEj6nL7Q+jnLTai7PevPsPhuJIluaJpurKtu4Lx/JM1/aN5/rO9/4PDAqHxKLxiEwql8ym8wmNSqfUqvWKzWq33K73Cw6Lx+Sy+YxOq9fstvsNj8vn9Lr9js/r9/y+/w8YKDhIWGh4iJiouMjY6PgIaVgAADs=) repeat;
  574. *background:url(images/bg-ffffff-0.gif);
  575. }
  576. .leaflet-bottom.leaflet-center{
  577. width:100%;
  578. text-align:center;
  579. }
  580. .leaflet-bottom.leaflet-center .leaflet-control{
  581. display:block;
  582. }
  583. .leaflet-right {
  584. *text-align:right;
  585. _width:200px;
  586. }
  587. .leaflet-left {
  588. z-index:1100;
  589. }
  590. .leaflet-right .leaflet-control {
  591. float:right;
  592. *float:none;
  593. *display:inline-block;
  594. _float:right;
  595. text-align:left;
  596. zoom:1;
  597. }
  598. .leaflet-right .leaflet-control {
  599. margin-right: 10px;
  600. clear:both;
  601. _display:inline;
  602. _float:right;
  603. }
  604. /*E control positioning */
  605. /*S leaflet-label*/
  606. .leaflet-label {
  607. /* background:#ffffff; */
  608. border:0px solid #000000;
  609. color: #333;
  610. display: block;
  611. font: 12px/20px "Helvetica Neue", Arial, Helvetica, sans-serif;
  612. padding:1px 4px;
  613. position: absolute;
  614. -webkit-user-select: none;
  615. -moz-user-select: none;
  616. -ms-user-select: none;
  617. user-select: none;
  618. /* pointer-events: none; */
  619. white-space: nowrap;
  620. z-index: 10000000 !important;
  621. }
  622. .leaflet-label.leaflet-clickable {
  623. cursor: pointer;
  624. pointer-events: auto;
  625. }
  626. .leaflet-label-tips {
  627. display: none;
  628. position: absolute;
  629. width: 8px;
  630. height: 22px;
  631. left: -8px;
  632. top: -1px;
  633. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAWCAYAAADafVyIAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDAwQTNFMEE5QjI3MTFFNDkxMTZCREM1NDg0N0NCODUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDAwQTNFMEI5QjI3MTFFNDkxMTZCREM1NDg0N0NCODUiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0MDBBM0UwODlCMjcxMUU0OTExNkJEQzU0ODQ3Q0I4NSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0MDBBM0UwOTlCMjcxMUU0OTExNkJEQzU0ODQ3Q0I4NSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PgxlybEAAADASURBVHjarNU7DoMwDIDheu2xWHucHCszK5yqXV2MAopM/EjiSBYIpP8beAQQ8SUtAOCXlnLc6ota47wpTSP+LbO4G07gjOeckYYjs8AdvxZHZoBHvIUMAVq8BxmOe5GpuAeZjltISFxDwuIScgFrSgmjFrWoWQPvY/YIpMR3avJnMI3weOstGkZacek76EakuPYluxEtbv2LTMSKe/6mIuKJe/eDB1LHo3a0G+FxC4COTZ+Cazn/HPPzbPp/AQYAONtHUE2BkGUAAAAASUVORK5CYII=) no-repeat 0px 0px;
  634. }
  635. .leaflet-label-right:before,
  636. .leaflet-label-left:after {
  637. /*content: "";*/
  638. }
  639. .leaflet-label-left .leaflet-label-tips {
  640. left:auto;
  641. right:-8px;
  642. background-position: -16px 0px;
  643. }
  644. /*E leaflet-label*/
  645. /*S leaflet-plabel*/
  646. .leaflet-plabel {
  647. background:none;
  648. border:none;
  649. color: #333;
  650. display: block;
  651. font: 12px/20px "Helvetica Neue", Arial, Helvetica, sans-serif;
  652. padding:1px 4px;
  653. position: absolute;
  654. -webkit-user-select: none;
  655. -moz-user-select: none;
  656. -ms-user-select: none;
  657. user-select: none;
  658. pointer-events: none;
  659. white-space: nowrap;
  660. z-index: 10000000 !important;
  661. }
  662. .leaflet-plabel.leaflet-clickable {
  663. cursor: pointer;
  664. pointer-events: auto;
  665. }
  666. .leaflet-plabel-line {
  667. border-bottom: 1px solid #000;
  668. transform: rotate(-45deg);
  669. transform-origin: left;
  670. -ms-transform-origin:left;
  671. -ms-transform:rotate(-45deg);
  672. width: 42.4px;
  673. position: absolute;
  674. left: 0px;
  675. top: 0px;
  676. }
  677. .leaflet-plabel-text {
  678. position:absolute;
  679. left:30px;
  680. top: -30px;
  681. color:#000;
  682. max-width: 200px;
  683. line-height: 1;
  684. }
  685. .leaflet-plabel-right:before,
  686. .leaflet-plabel-left:after {
  687. /*content: "";*/
  688. }
  689. .leaflet-plabel-left .leaflet-plabel-tips {
  690. left:auto;
  691. right:-8px;
  692. background-position: -16px 0px;
  693. }
  694. /*E leaflet-plabel*/
  695. .leaflet-contextmenu {
  696. display: none;
  697. box-shadow: 0 1px 7px rgba(0,0,0,0.4);
  698. -webkit-border-radius: 4px;
  699. border-radius: 4px;
  700. padding: 4px 0;
  701. background-color: #fff;
  702. cursor: default;
  703. -webkit-user-select: none;
  704. -moz-user-select: none;
  705. user-select: none;
  706. }
  707. .leaflet-contextmenu a.leaflet-contextmenu-item {
  708. display: block;
  709. color: #222;
  710. font-size: 12px;
  711. line-height: 20px;
  712. text-decoration: none;
  713. padding: 0 12px;
  714. border-top: 1px solid transparent;
  715. border-bottom: 1px solid transparent;
  716. cursor: default;
  717. outline: none;
  718. }
  719. .leaflet-contextmenu a.leaflet-contextmenu-item-disabled {
  720. opacity: 0.5;
  721. }
  722. .leaflet-contextmenu a.leaflet-contextmenu-item.over {
  723. background-color: #f4f4f4;
  724. border-top: 1px solid #f0f0f0;
  725. border-bottom: 1px solid #f0f0f0;
  726. }
  727. .leaflet-contextmenu a.leaflet-contextmenu-item-disabled.over {
  728. background-color: inherit;
  729. border-top: 1px solid transparent;
  730. border-bottom: 1px solid transparent;
  731. }
  732. .leaflet-contextmenu-icon {
  733. margin: 2px 8px 0 0;
  734. width: 16px;
  735. height: 16px;
  736. float: left;
  737. border: 0;
  738. }
  739. .leaflet-contextmenu-separator {
  740. border-bottom: 1px solid #ccc;
  741. margin: 5px 0;
  742. }
  743. .leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
  744. -webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;
  745. -moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in;
  746. -o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in;
  747. transition: transform 0.3s ease-out, opacity 0.3s ease-in;
  748. }
  749. .leaflet-cluster-spider-leg {
  750. /* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
  751. -webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in;
  752. -moz-transition: -moz-stroke-dashoffset 0.3s ease-out, -moz-stroke-opacity 0.3s ease-in;
  753. -o-transition: -o-stroke-dashoffset 0.3s ease-out, -o-stroke-opacity 0.3s ease-in;
  754. transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
  755. }
  756. .marker-cluster-small {
  757. background-color: rgba(181, 226, 140, 0.6);
  758. }
  759. .marker-cluster-small div {
  760. background-color: rgba(110, 204, 57, 0.6);
  761. }
  762. .marker-cluster-medium {
  763. background-color: rgba(241, 211, 87, 0.6);
  764. }
  765. .marker-cluster-medium div {
  766. background-color: rgba(240, 194, 12, 0.6);
  767. }
  768. .marker-cluster-large {
  769. background-color: rgba(253, 156, 115, 0.6);
  770. }
  771. .marker-cluster-large div {
  772. background-color: rgba(241, 128, 23, 0.6);
  773. }
  774. /* IE 6-8 fallback colors */
  775. .leaflet-oldie .marker-cluster-small {
  776. background-color: rgb(181, 226, 140);
  777. }
  778. .leaflet-oldie .marker-cluster-small div {
  779. background-color: rgb(110, 204, 57);
  780. }
  781. .leaflet-oldie .marker-cluster-medium {
  782. background-color: rgb(241, 211, 87);
  783. }
  784. .leaflet-oldie .marker-cluster-medium div {
  785. background-color: rgb(240, 194, 12);
  786. }
  787. .leaflet-oldie .marker-cluster-large {
  788. background-color: rgb(253, 156, 115);
  789. }
  790. .leaflet-oldie .marker-cluster-large div {
  791. background-color: rgb(241, 128, 23);
  792. }
  793. .marker-cluster {
  794. background-clip: padding-box;
  795. border-radius: 20px;
  796. }
  797. .marker-cluster div {
  798. width: 30px;
  799. height: 30px;
  800. margin-left: 5px;
  801. margin-top: 5px;
  802. text-align: center;
  803. border-radius: 15px;
  804. font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
  805. }
  806. .marker-cluster span {
  807. line-height: 30px;
  808. }