/* COMMON */
body {
  font: 300 11px "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #aaa;
  background-color: #f2f0e4;
  text-align: center;
  margin: auto;
  width: 1280px;
}
h1 {
  color: #d1a000;
  font-size: 35pt;
  font-weight: 100;
  margin: 5px 5px 5px 0px;
  letter-spacing: 1px;
}
h2 {
  font-size: 18pt;
  font-weight: 100;
  margin: 5px 5px 5px 0px;
  letter-spacing: 5px;
}
h3 {
  padding: 10px 0 0 0;
  font-size: 12pt;
  font-weight: 200;
  margin: 5px 5px 5px 0px;
  letter-spacing: 1px;
}
svg {
  margin: 10px;
  shape-rendering: geometricPrecision;
}
text {
  fill: #aaa;
}
.label text {
  text-anchor: end;
  font-size: 18pt;
  z-index: -1;
  fill: #aaa;
  font-weight: 100;
}
text.yearlabel {
  font-size: 40pt;
  fill: #ddd;
  font-weight: 800;
}
.anotation {
  fill: none;
  stroke: #bbb;
  stroke-width: 1;
  font-weight: 100;
}
.anotation path {
  stroke-dasharray: 4, 2;
  stroke-width: 1.5px;
}
.downarrow {
  cursor: pointer;
  fill: none;
  stroke: #933e3e;
  stroke-width: 1;
}
.axis path,
.axis line {
  fill: none;
  stroke: #bbb;
  stroke-width: 1;
}
.axis path {
  stroke-dasharray: 4, 2;
}
path {
  stroke-width: 1.5px;
}
circle {
  stroke-width: 1.5px;
}
.y.axis line,
.ly.axis line {
  display: none;
}
.hoverer {
  stroke-width: 10;
  fill: rgba(0,0,0,0) !important;
  stroke: rgba(0,0,0,0) !important;
}
.increase {
  color: #3e5d94;
  fill: #3e5d94;
  stroke: #3e5d94;
}
.decrease {
  color: #933e3e;
  fill: #933e3e;
  stroke: #933e3e;
}
.pareto .bar {
  fill: #3e5d94;
  transition: fill 0.2s ease;
}
.pareto .bar:hover,
.pareto .bar.selected {
  fill: #933e3e !important;
}
.pareto .line {
  fill: none;
  stroke: #933e3e;
  stroke-width: 1.5px;
}
.pareto .point {
  fill: #f2f0e4;
  stroke: #933e3e;
  stroke-width: 1.5px;
}
.pareto .x.axis path {
  display: none;
}
.bundle .node {
  font-size: 11;
}
.bundle .node:hover {
  fill: #000;
}
.bundle .link {
  stroke: #3e5d94;
  stroke-opacity: 0.4;
  fill: none;
  pointer-events: none;
}
.bundle .node:hover,
.bundle .node--source,
.bundle .node--target {
  font-weight: 500;
}
.bundle .node--source {
  fill: #933e3e;
}
.bundle .node--target {
  fill: #933e3e;
}
.bundle .link--source,
.bundle .link--target {
  stroke-opacity: 1;
  stroke-width: 2px;
}
.bundle .link--source {
  stroke: #933e3e;
}
.bundle .link--target {
  stroke: #933e3e;
}
/* TIP */
.d3-tip {
  font-size: 12px;
  padding: 8px;
  background: rgba(255,255,255,0.9);
  color: #aaa;
  border-radius: 5px;
  border-style: solid;
  border-color: #bbb;
  border-width: 1px;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
/* Creates a small triangle extender for the tooltip */
.d3-tip:after {
  box-sizing: border-box;
  display: inline;
  font-size: 10px;
  width: 100%;
  line-height: 1.5;
  color: #000;
  content: "\25BC";
  position: absolute;
  text-align: center;
}
/* Style northward tooltips differently */
.d3-tip.n:after {
  margin: -1px 0 0 0;
  top: 100%;
  left: 0;
}
