html, body{
  margin: 0;
font-family: Arial, Helvetica, sans-serif !important;
}

#container{
  min-width: 960px;
}

.land {
  fill: #f7f7f7;
  stroke: #ccc;
}

.state-boundary {
  fill: none;
  stroke: #bbb;
}

circle{
  fill: none;
  stroke: #999;
}
circle.gain{
  fill: #67a9cf;
  stroke: #fff;
}
circle.loss{
  fill: #ef8a62;
  stroke: #fff;
}
circle.neutral{
  fill: #999;
  stroke: #fff;
}
#map circle{
  opacity: .65;
}
#map circle:hover{
  stroke: black;
  stroke-width: 2;
}
#map-container{
  margin: auto;
}
#map-container svg{
  display: inline-block;
  vertical-align: top;
}

#date, #play, #slider-container{
  display: inline-block;
  vertical-align: middle;
  margin-top: 20px;
}

#date{
  border-left: 5px solid #ccc;
  padding: 3px 0 3px 10px;
  margin-left: 50px;
  color: #333;
}
#date p{
  margin: 0;
}
#date p#month{
  font-size: 30px;
  line-height: 30px;
}
#date p#month span{
  float: left;
  width: 2.55em;
}

#play{
  width: 53px;
  height: 53px;
  background-image: url(../images/play.png);
  border-radius: 5px;
  margin-left: 20px;
  cursor: pointer;
}

#play:hover{
  background-position: 0 -53px;
}

#play.pause{
  background-image: url(../images/pause.png);
}
#slider-container{
  position: relative;
}

#slider-div{
  margin-left: 65px;
  margin-top: 10px;
}

#slider-probe{
  position: absolute;
  top: -20px;
  font-size: 12px;
  width: 70px;
  margin-left: -35px;
  z-index: 50;
  display: none;
}

#slider-probe p{
  margin: 0;
  width: 100%;
  text-align: center;
  height: 15px;
}

#slider-probe div{
  height: 15px;
  margin-left: 35px;
  border-left: 1px solid #999;
}

#axis path{
  fill: none;
}

#axis .tick line{
  stroke: #999;
}

#axis .tick text{
  font-size: 12px;
}

#probe{
  position: absolute;
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  display: none;
  font-size: 12px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
  z-index: 999;
}

#probe strong{
  font-size: 16px;
}

#probe span{
  color: #999;
}

#legend text, #us-total text{
  font-size: 12px;
}

#legend line{
  stroke: #666;
}

svg text{
  fill: #666;
}

h1, h2, #intro{
  text-align: center;
  font-weight: normal;
}
h1{
  font-size: 30px;
  margin: 20px;
  color: #1a1a1a;
}
h2{
  font-size: 18px;
  color: #999;
  margin: 15px;
     font-family: 'Noto Serif',Georgia,"Times New Roman",serif !important;
}
#intro{
  width: 800px;
  margin: auto;
 line-height: 18px;
}

#source{
  color: #999;
  font-size: 12px;
  margin-left: 60px;
  margin-top: 20px;
}

#axis-maps{
  float: right;
  margin-top: 20px;
  margin-right: 20px;
  border: none;
}

#loader{
  width: 100%;
  background: rgba(255,255,255,.75) url(../images/ajax-loader.gif) no-repeat center center;
  position: absolute;
  z-index: 500;
}

#us-total{
  display: inline-block;
  width: 210px;
}
#us-total > div{
  margin: 100px 0 30px 50px;
  position: relative;
}
#us-total p{
  margin: 0;
  font-size: 12px;
  width: 150px;
}
#us-total .pct{
  width: 40px;
  position: absolute;
  font-weight: bold;
  font-size: 20px;
  right: -30px;
  bottom: 0;
  line-height: 25px;
  text-align: center;
}

div.gain{
  background-color: #67a9cf;
}
div.loss{
  background-color: #ef8a62;
}
div.neutral{
  color: #999;
}
p.gain{
  color: #67a9cf;
}
p.loss{
  color: #ef8a62;
}
p.neutral{
  color: #999;
}