#svg_map {
	position: relative;
	height: 50vh;
	width: 40%;
	left: calc((100vw - 40%)/2);
	top: 0px;
	background: white;
	/*animation: expand 1s 1 ease-in;
	animation-fill-mode: forwards;  */
	border: 1px white solid;
}

.land {
	fill: #666;
	fill-opacity: 1;
	stroke: #444;
	stroke-opacity: 1;
	stroke-width:0.5;
}

.centroid: {
	fill: #0000;
	fill-opacity: 1;
	stroke-opacity: 1;
}

/* DEBUG */
.latitudeLineThin {
	fill-opacity: 0;
	stroke: #00F2;
	stroke-width: 1;
}

.latitudeLineThick {
	fill-opacity: 0;
	stroke: #00F2;
	stroke-width: 3;
}

.longitudeLineThin {
	fill-opacity: 0;
	stroke: #F002;
	stroke-width: 1;
}

.longitudeLineThick {
	fill-opacity: 0;
	stroke: #F002;
	stroke-width: 3;
}

.debugline1 {
	position: absolute;
	fill-opacity: 0;
	stroke: #F00;
	stroke-width: 3;
	stroke-dasharray: 1000;
	stroke-dashoffset: 1000;
	animation: draw 2s infinite linear;
}

.debugline2 {
	position: absolute;
	fill-opacity: 0;
	stroke: #F80;
	stroke-width: 2;
	stroke-dasharray: 1000;
	stroke-dashoffset: 1000;
	animation: draw 2.1s infinite linear;
}

.blankline {
	position: absolute;
	fill-opacity: 0;
	stroke-dasharray: 1000;
	stroke-dashoffset: 1000;
	stroke-linecap: round;
	animation: draw 2.1s infinite linear;
}

.line-overall-east {
	position: absolute;
	fill-opacity: 0;
	stroke: #00B4;
	/*stroke-width: 1;*/
	stroke-dasharray: 1000;
	stroke-dashoffset: 1000;
	stroke-linecap: round;
	animation: draw 2.1s infinite linear;
}

.line-overall-west {
	position: absolute;
	fill-opacity: 0;
	stroke: #B004;
	/*stroke-width: 1;*/
	stroke-dasharray: 1000;
	stroke-dashoffset: 1000;
	stroke-linecap: round;
	animation: draw 2.1s infinite linear;
}

.activated-land {
	fill: #777;
	fill-opacity: 1;
	stroke: #444;
	stroke-opacity: 1;
	stroke-width:0.5;
	animation: activate 0.2s 1 linear;
}

.influx-line {
	position: absolute;
	fill-opacity: 0;
	stroke: #44F4;
	/*stroke-width: 1;*/
	stroke-dasharray: 1000;
	stroke-dashoffset: 1000;
	stroke-linecap: round;
	animation: draw 2.1s 1 linear;
}

.outflux-line {
	position: absolute;
	fill-opacity: 0;
	stroke: #F444;
	/*stroke-width: 1;*/
	stroke-dasharray: 1000;
	stroke-dashoffset: 1000;
	stroke-linecap: round;
	animation: draw 2.1s 1 linear;
}

.peripheral-line {
	position: absolute;
	fill-opacity: 0;
	stroke: #FFF4;
	/*stroke-width: 1;*/
	stroke-dasharray: 1000;
	stroke-dashoffset: 1000;
	stroke-linecap: round;
	animation: draw 2.1s 1 linear;
}

@keyframes activate {
	0% {
		fill: #777;
	}
	100% {
		fill: #666;
	}
}

@keyframes expand {
	0% {
		height: 359px;
		width: 561px;
		left: calc((100vw - 561px)/2);
	}
	100% {
		height: 655px;
		width: 1020px;
		left: calc((100vw - 1020px)/2);
	}
}

@keyframes draw {
  50% {
    stroke-dashoffset: 0;
  }
  98% {
    stroke-dashoffset: 0;
  	stroke: transparent;
  }
  100% {
  	stroke-dashoffset: 0;
  	stroke: transparent;
  }
}