@font-face {
	font-family: 'Avenir';
	src: url('fonts/Avenir-book.ttf');
	font-weight: normal;
	font-style: normal; }

@font-face {
	font-family: 'Avenir';
	src: url('fonts/Avenir-oblique.ttf');
	font-weight: normal;
	font-style: italic; }
	
@font-face {
	font-family: 'Avenir';
	src: url('fonts/Avenir-bold.ttf');
	font-weight: bold;
	font-style: normal; }

html, body {
	font-family: Avenir, sans-serif;
	margin: 0;
	padding: 0; }
	
svg {
	background-color: #fbfbfb;
	width: 100%; }
svg path {
	stroke-linecap: round; 
	stroke-linejoin : round; }
svg #countries path {
	stroke-width: 0.5px;
	stroke: white;
	fill: #bbb; }
svg #countries path#CAN {
	fill: #F77; }
svg #graticules path {
	fill: none;
	stroke: #ccc;
	stroke-width: 0.5; }
svg #investments path {
	fill: none;
	opacity: 0.25;
	stroke: #00f;
	stroke-width: 0.5; }
svg g#cities g.city circle.inbound {
	fill: green;
	fill-opacity: 0.5;
	stroke: green; }
svg g#cities g.city circle.outbound {
	fill: blue;
	fill-opacity: 0.1;
	stroke: blue; }
svg #meta #year {
	alignment-baseline: baseline;
	font-size: 50px; }

#control-panel {
	display: block;
	background: rgba(255,255,255,0.75);
	padding: 10px; 
	position: fixed;
	bottom: 0;
	right: 0; }

#control-panel input[type="range"] {
  appearance: none;
  width: 700px;
  height: 5px; 
  background: #d3d3d3; }
