
@import(
  'http://fonts.googleapis.com/css?family=Marcellus&subset=latin,latin-ext'
);

@import(
  'http://fonts.googleapis.com/css?family=Source+Sans+Pro&subset=latin,latin-ext'
);

body{
  font-family: 'Source Sans Pro';font-size: 20px;
  color: #c5c1c0;
  background-color: #0a1612;
}

b{
  color: #f7ce3e;
}

* {
  box-sizing: border-box;
}

.header{
  padding: 30px;
  text-align: center;
}

.header h1 {
  font-size: 50px;
}

.topnav {
  overflow: hidden;
}


/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {
  float: left;
  width: 25%;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  padding-left: 20px;
}

.middlecolumn{
  float: left;
  width: 50%;
}

/* Fake image */
.fakeimg {
  width: 100%;
  padding: 20px;
}

/* Add a card effect for articles */
.card {
  padding: 20px;
  margin-top: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  margin-top: 20px;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn, .middlecolumn {
    width: 100%;
    padding: 0;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .topnav a {
    float: none;
    width: 100%;
  }
}


 /*
denim
  background-color: #1a2930; 
steel
  background-color: 
#0a1612; 
marigold
  background-color: #f7ce3e;
screen
  background-color: #c5c1c0; 
*/

table, th, td {
  border: 1px solid #f7ce3e;
  border-collapse: collapse;
}

ul{
  margin: 0px;
}

a{
  color: #f7ce3e;
}

a:visited{
  color: #b78e0e;
}

p{
  margin:0px;
  padding:10px;
}

h1,h2,h3,h5{
  margin:0px;
  margin-top: 15px;
  padding:10px;
  color: #f7ce3e;
}

h1{
  font-size:55px;
}

h4{
  margin:0px;
  margin-top:5px;
  padding:0px;
  color: #f7ce3e;
}

    .d3-tip {
      line-height: 1;
      padding: 6px;
      background: rgba(0, 0, 0, 0.8);
      color: #fff;
      border-radius: 4px;
      font-size: 16px;
    }
 
    /* 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;
      color: rgba(0, 0, 0, 0.8);
      content: "\25BC";
      position: absolute;
      text-align: center;
    }
 
    /* Style northward tooltips specifically */
    .d3-tip.n:after {
      margin: -2px 0 0 0;
      top: 100%;
      left: 0;
    }

    .legend {
      position:absolute;
      left:20px;
      top:30px;
    }

    .axis text {
      font: 10px sans-serif;
    }

    .axis line, .axis path {
      fill: none;
      stroke: #000;
      shape-rendering: crispEdges;
    }
