.mapContainer {
	float: left;
	position: relative;
	width: 100%;
	background-image: url("map3.png");
	background-size: 100% 100%;
}
.mapBar {
	position: absolute;
	width: 1.5%;
	opacity: 0.7;
	margin-left: -0.75%;
	border: 2px solid #000;
	border-radius: 4px;
	height: 50px;
	-webkit-transition: all 100ms linear;
	-moz-transition: all 100ms linear;
	-o-transition: all 100ms linear;
	-ms-transition: all 100ms linear;
	transition: all 100ms linear;
	cursor: pointer;
}
.mapBar:hover {
	opacity: 1;
	box-shadow: 0px 9px 12px 0px yellow;
	-moz-box-shadow: 0px 0px 12px 0px yellow;
	-webkit-box-shadow: 0px 0px 12px 0px yellow;
}
.mapBar.selected {
	opacity: 1;
	box-shadow: 0px 9px 12px 0px yellow;
	-moz-box-shadow: 0px 0px 12px 0px yellow;
	-webkit-box-shadow: 0px 0px 12px 0px yellow;
}
.toolText {
	width: 96%;
	padding: 0 2%;
	position: absolute;
	right: 0px;
	bottom: 0px;
	height: 70px;
	background: rgba(0,0,0,0.1);
	color: white;
	font-size: 20px;
	font-weight: 100;
	overflow: hidden;
}

.insideTool {
	float: left;
	position: relative;
	width: 600%;
	-webkit-transition: all 100ms linear;
	-moz-transition: all 100ms linear;
	-o-transition: all 100ms linear;
	-ms-transition: all 100ms linear;
	transition: all 100ms linear;
	margin-left: 37.5%;
}
.bottomItem {
	float: left;
	width: 4.166666667%;
	height: 100%;
	text-align: center;
	padding: 10px 0 20px;
	opacity: 0.3;
}
.bottomItem.selected {
	color: yellow;
	opacity: 1;
}
.blackBottom {
	background: black;
	position: absolute;
	left: 37.5%;
	width: 25%;
	height: 100%;
	z-index: 0;
}
.bottomButton {
	position: absolute;
	bottom: 0;
	height: 100%;
	width: 50px;
	background: rgba(0,0,0,0.8);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	opacity: 0.8;
	cursor: pointer;
}
.bottomButton:hover {
	opacity: 1;
}
.leftClick {
	left: 0;
	background-image: url("left.png");
}
.rightClick {
	right: 0;
	background-position: 7px 0;
	background-image: url("right.png");
}
.inside.toolbar {
	position: absolute;
	right: 20px;
	top: 20px;
	width: auto !important;
}
.inside .toolItem {
	min-width: 70px !important;
	border-radius: 0 !important;
}
.inside .toolItem:hover {
	background: rgba(255,255,255,0.2) !important;
	color: white !important;
}
.inside .kicker {
	color: white !important;
}
@media screen and (max-width: 600px) {
	.toolText {
		font-size: 14px;
	}
	.toolItem {
		font-size: 13px !important;
	}
}
.bottomLabel {
	position: absolute;
	bottom: 72px;
	left: 0;
	width: 100%;
	text-align: center;
	color: #ccc;
	text-transform: uppercase;
	font-size: 13px;
}
.legendInside {
	width: 100px;
	position: absolute;
	left: 20px;
	top: 20px;
	color: rgba(255,255,255,0.9);
	font-weight: 100;
	font-size: 20px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
}
.legendBar {
	float: left;
	height: 21px;
	width: 10%;
	margin-right: 4px;
	margin-top: 2px;
	background: rgba(255,255,255,0.8);
	border: 1px solid black;
	border-radius: 3px;
}
.gainLabel, .lossLabel {
	font-weight: bold;
}
.gainLabel {
	color: rgb(189, 255, 206);
}
.lossLabel {
	color: rgb(255, 122, 122);
}
