body {
  padding: 0;
  margin: 0;
}
/*html, body, #map {
  height: 100%;
}*/
.turnout-map{
    height: 350px;
}
.precinct-map{
    height: 350px;
}
.info {
  padding: 6px 4px;
	font-family: 'PT Sans', sans-serif;
  background: white;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  border-radius: 5px;
  width: 100%;
  text-align: center;
}
.info h4 {
  margin: 0 0 5px;
  color: #777;
}
.leaflet-right {
	max-width: 450px;
  }
/*.leaflet-left {
    max-width: 450px;
}*/
.popupHeader {
  text-align: center;
  font-weight: bold;
  /*font-family: Georgia, Times, Arial;*/
	font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  /*padding-bottom: 5px;*/
}
.popupDivHeader {
  /*font-family: Georgia, Times, Arial;*/
	font-family: 'PT Sans', sans-serif;
  font-size: 14px;
  text-align: center;
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 5px;
  padding-bottom: 5px;
}
.victor-rep {
  font-weight: bold;
  font-size: 12px;
  text-align: right;
}
.victor-dem {
  font-weight: bold;
  font-size: 12px;
  text-align: right;
}
.victor-ind{
  font-weight: bold;
  font-size: 12px;
  text-align: right;
}
.loser {
  font-size: 12px;
  text-align: right;
}
table {
  width: 100%;
  border-spacing: 0;
}
table table#results {
  width: 100%;
  border-spacing: 0;
}
table tr {
  padding: 18px;
}
.precincts {
  border-top: 1px solid #CCCCCC;
  margin-top: 5px;
  padding-top: 5px;
  font-family: 'PT Sans', sans-serif;
  font-size: 12px;
}
table.totals tr.totalsRow td {
  border-bottom: 1px solid #CCCCCC;
  height: 1.5em;
}
.totals-reporting {
  font-family: 'PT Sans', sans-serif;
  font-size: 12px;
  text-align: right;
  padding-right: 7px;
  color: #333333;
}
/*Democratic Party Squares(blue)*/
.demSquare {
  width: 10px;
  height: 10px;
  border: 1px solid #000;
  background-color: red;
}
/*Republic Party Squares(red)*/
.repSquare {
  width: 10px;
  height: 10px;
  border: 1px solid #000;
  background: #FC0000;
}
/* Green Party Squares(green)*/
.grnSquare {
  width: 10px;
  height: 10px;
  border: 1px solid #000;
  background: #089939;
}
/* Libertarian Party Squares(yellow)*/
.libSquare {
  width: 10px;
  height: 10px;
  border: 1px solid #000;
  background: #B28F00;
}
/* Constitution Party Squares(cerulean)*/
.conSquare {
  width: 10px;
  height: 10px;
  border: 1px solid #000;
  background: #296652;
}
/* Independent Party Squares(purple)*/
.indSquare {
  width: 10px;
  height: 10px;
  border: 1px solid #000;
  background: #4C1A4C;
}
/* No Party Squares*/
.nonSquare {
    width: 10px;
	height: 10px;
	border: 1px solid #000;
}
/* No Candidate Squares */
.Square {
  width: 10px;
  height: 10px;
  border: 1px solid #000;
}
.total-winner-rep {
  background-color: #EB9B9B;
}
.total-winner-dem {
  background-color: #A8A3D9;
}
td.cand-name {
  min-width:140px;
}
.legend {
  text-align: left;
  line-height: 18px;
  color: #555;
}
.legend i {
  width: 18px;
  height: 18px;
  float: left;
  margin-right: 4px;
  opacity: 0.7;
}
.col-county-results i {
  width: 18px;
  height: 18px;
  float: left;
  margin-right: 4px;
  opacity: 0.7;
}
.turnout-legend i{    
  width: 18px;
  height: 18px;
  float: left;
  margin-right: 4px;
  opacity: 0.7;
  /*margin-left: 33%;*/
}
.swapped{
  display: none;
}
/* Start by setting display:none to make this hidden.
   Then we position it in relation to the viewport window
   with position:fixed. Width, height, top and left speak
   for themselves. Background we set to 80% white with
   our animation centered, and no-repeating */
.modal {
    display:    none;
    position:   relative;
    z-index:    1000;
    top:        0;
    left:       0;
    height:     100px;
    width:      100%;
    background: url('/Images/loading.gif') 50% 50% no-repeat;
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
div.loading {
    overflow: hidden;
}

/* Anytime the body has the loading class, our
   modal element will be visible */
div.loading .modal {
    display: block;
}