div {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

a.simple {
	text-decoration: none;
}

/*buble*/

#initLoadScreen {
    width: 300px;
    height: 100px;
	margin: 10px auto;
	padding: 10px;
	border: 2px solid black;
	background-color: #FFFFFF;
	padding: 10px;
	text-align:left;
}



/*objects*/
#objectHolder {
	border: 1px solid black;
	position: absolute;
	z-index: 5;
	margin: 0;
}

#objectImageHolder {
	position: relative;
	z-index: 6;
	left: 0px;
	top: 0px;
}


/*map*/

#mapLayerImageHolder {
    width: 500px;
	height: 500px;
	position: absolute;
	z-index: 2;
}

#mapImageHolder {
	width: 500px;
	height: 500px;
	position: relative;
	z-index: 1;
	background-color: #FFFFFF;
}

#minimapImageHolder {
	width: 150px;
	height: 150px;
	position: relative;
	z-index: 6;
	background-color: #FFFFFF;
}

.minimapTile {
	position: absolute;
	z-index: 7;
}

.mapLayerTile {
	position: absolute;
	z-index: 1;
}

.mapTile {
	position: absolute;
	z-index: 1;
}

.mapObject {
	position: absolute;
	z-index: 5;
	cursor: pointer;
}

#mapExtras {
	position: absolute;
	z-index: 4;
}

.mapObjectNumber {
	position: absolute;
	z-index: 5;
	text-align: center;
	border: 1px solid black;
}

#imgMapExtras {
	position: absolute; 
	z-index: 4;
	border: 0;
}



#mapArrowQuickPointer {
	display: none; 
	position: absolute; 
	width: 28px; 
	height: 30px; 
	z-index: 5;
	left: 10px;
	top: 10px;
}

#mapArrowStaticPointer {
	display: none;
	position: absolute;
	width: 35px;
	height: 34px;
	z-index: 5;
	left: 0px;
	top: 0px;
}

#mapArrowSearchCenter {
    display: none;
	position: absolute;
	width: 35px;
	height: 34px;
	z-index: 5;
	left: 0px;
	top: 0px;
}

#mapArrowStaticCrosshair {
	display: none;
	position: absolute;
	width: 35px;
	height: 34px;
	z-index: 5;
	left: 0px;
	top: 0px;
}

img {
	border: 0;
}

img.mapIcon {
	border: 0;
	z-index: 5;
}

img.mapIconSelected {
	border: 2px dashed red;
	z-index: 5;
}

.mapSideArrow {
	position: absolute; 
	width: 20px; 
	height: 20px; 
	z-index: 8; 
	display: block;
}

/*  --- CONTEXT MENU --- */
div#contextmenu {
	position: absolute;
	border: 1px solid #9f9f9f;
	background: #f6f6f6;
	z-index: 12;
	display: none;
}
div#contextmenu ul {
	margin: 0; padding: 0;
	position: relative;
	list-style: none;
	border-top: 1px solid white;
	border-left: 1px solid white;
	border-right: 1px solid #dfdfdf;
	border-bottom: 1px solid #dfdfdf;
	line-height: 1.2;
}
div#contextmenu li {
	position: relative;
	padding: 1px 2px 1px 2px;
	margin: 0;
	cursor: pointer;
	cursor: hand;
	font-size: 80%;
	font-face: verdana;
}
div#contextmenu li:hover {
	background: #dedede;
}
div#contextmenu li span {
	position: relative;
	left: 5px;
	top: 2px;
	bottom: 2px;
}
div#contextmenu li img {
	position: absolute;
}
div#contextmenu li.line {
	cursor: default;
	height: 1px;
	border-top: 1px solid #dfdfdf;
	border-bottom: 1px solid white;
	padding: 0;
	margin: 0;
  margin: 2px 0 0 0;
	font-size: 1px;
}
div#contextmenu li.line span {
	display: block;
}
div#contextmenu li.line:hover {
	background: #f6f6f6;
}
