﻿.leaflet-control-zoom {
	position: relative;
	left:26px;
}

.leaflet-control-pan  {
	   /* 
	     .leaflet-control-pan-right-wrap: right 
	   + .leaflet-control-pan a: width
	   + .leaflet-top .leaflet-control: margin-left
	   = 52 + 19 + 10 = 81
	   */
	width: 81px; 
	   /* 
	     .leaflet-control-pan-down-wrap: top
	   + .leaflet-control-pan a: height
	   + .leaflet-top .leaflet-control: margin-top 
	   = 52 + 19 + 10 = 81
	   */
	height: 81px;
}

.leaflet-control-pan div {
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    border-radius: 7px;
}
.leaflet-control-pan div {
    padding: 5px;
    background: rgba(0, 0, 0, 0.25);
}
.leaflet-control-pan a {
    background-color: rgba(255, 255, 255, 0.75);
}
.leaflet-control-pan a{
    background-position: 50% 50%;
    background-repeat: no-repeat;
    display: block;
}
.leaflet-control-pan a {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    width: 19px;
    height: 19px;
}
.leaflet-control-pan a:hover {
    background-color: #fff;
}

.leaflet-control-pan-up-wrap {
	position:absolute;
	left:26px;
}
.leaflet-control-pan-left-wrap {
	position:absolute;
	top:26px;
}
.leaflet-control-pan-right-wrap {
	position:absolute;
	left:52px;	
	top:26px;
}
.leaflet-control-pan-down-wrap {
	position:absolute;
	left:26px;
	top:52px;
}

.leaflet-control-pan-up {
	background-image: url(/img/leaflet/pan-up.png);
}
.leaflet-control-pan-left {
	background-image: url(/img/leaflet/pan-left.png);
}
.leaflet-control-pan-right {
	background-image: url(/img/leaflet/pan-right.png);
}
.leaflet-control-pan-down {
	background-image: url(/img/leaflet/pan-down.png);
}