/*************************************************************************
* CSS items for pan zoom control.
**************************************************************************/
.ol-panzoom {
	position: absolute;
	left: 4px;
	top: 4px;
	box-sizing:border-box;
}

.ol-loadingBar {
	position: absolute;
	bottom: 50%;
	left: 40%;
	display: none;
}

.ol-pz-pan{
	width: 18px;
	height: 18px;
	position: absolute;
	text-align:center;
	cursor: pointer;
	border:none;
	padding:1px;
	margin:0;
	color:#666;
	font-size: 11px;
	background-color:#fff;
	outline: none;
}

button.ol-pz-pan:hover{
	color:#3399FF;
}

.ol-pz-pan-east {
	border-radius: 0 3px 3px 0;
	top: 22px;
	left: 40px;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.45);
}

.ol-pz-pan-north {
	border-radius: 3px 3px 0 0;
	top: 4px;
	left: 22px;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.45);
}

.ol-pz-pan-south {
	border-radius: 0 0 3px 3px;
	top: 40px;
	left: 22px;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.45);
}

.ol-pz-pan-west {
	border-radius: 3px 0 0 3px;
	top: 22px;
	left: 4px;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.45);
}

.ol-pz-zoom-max {
	top: 22px;
	left: 22px;
	background:#fff url(img/zoom-world-mini.png) no-repeat center center;
}
.ol-pz-zoom-max:hover {
	background-image:url(img/zoom-world-mini-hover.png)
}

.ol-pz-zoom-in {
	top: 64px;
	left: 22px;
	font-weight: bold;
	font-size: 14px;
	border-radius: 3px 3px 0 0;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.45);
	border-bottom:1px solid #666 !important;
}

.ol-pz-zoom-out {
	top: 290px;
	left: 22px;
	font-weight: bold;
	font-size: 14px;
	border-radius: 0 0 3px 3px;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.45);
	border-top:1px solid #666 !important;
}


.ol-pz-zoom-bar {
	margin:0;
	padding:0;
	border: 0;
	border-radius: 0;
	position: absolute;
	top: 82px;
	left: 22px;
	width: 18px;
	cursor: pointer;
	height: 200px;
	background-color:#fff;
	box-shadow: 0px 3px 0px 0px #fff,0px -3px 0px 0px #fff, 0px 0px 3px 0px rgba(0,0,0,0.45);
	border-top: 1px solid  rgba(0,0,0,0.1);
	border-bottom: 1px solid  rgba(0,0,0,0.1);
}

.ol-pz-zoom-bar:hover{
	background-color:rgba(255,255,255,.7);
}

.ol-pz-zoom-bar button{
	position: relative;
	height: 10px;
	margin: 0 1px;
	width: 16px;
	background-color:#888;
	outline: none;
	cursor:move;
}

.ol-pz-zoom-bar button:hover{
	background-color:rgba(51, 153, 255, 0.7);
}

/*************************************************************************
* CSS items for mark label switcher.
**************************************************************************/
.ol-mark-label-switcher{
	position: absolute;
	top:0;
	right:0;
	box-sizing:border-box;
	background-color:0xFFFFFF;
	font-size:14px;
	font-weight:bold;
	padding-left:4px;
	padding-right:4px;
	
	-webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.15);
	box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.15);
}


.olCursorWait {
    cursor: wait;
}

.ol-dragbox {
	background-color: rgba(255, 255, 255, 0.4);
	border-color: rgba(255, 0, 0, 0.8);
	border-style:dashed;
}