/* ----------
  COMMON
---------- */

body {
  font: 13px/1.5 helvetica, sans-serif;
  text-align:center;
}

* {
    -webkit-font-smoothing:anitaliased;
}


/* ----------
  LAYOUT
---------- */

#header {
  height: 60px;
  margin-bottom: 30px;
}

#subheader {
  width: 100%;
  position: absolute;
  left: 0%;
}

#labels {
  text-align: center;
}


/* ----------
  ELEMENT
---------- */

#tooltip {
    padding:.5em .8em;
    background:rgb(255,255,255);
    box-shadow:0 0 .3em silver;
    font-size:1.2em;
    border-radius:.5em;
    position:absolute;
    z-index:9999;
    min-width:100px;
    left: 20px;
    top: 100px;
    text-align: left;
}

#tooltip.active {
    display: block;
}

#tooltip.deactive {
    display: none;
}

.dataC {
    stroke:black;
    stroke-width:2px;
    stroke-opacity:.1;
    transition: all .4s ease;
    fill-opacity: 0.4;
}

.dataC.active {
    stroke-width:4px;
    stroke-opacity:.2;
    fill-opacity: 0.8;
}

.valData {
    font-size:1.1em;
    line-height:1.4;
    margin-top:.2em;
}



/* ----------
  NAVIGATION
---------- */

input[type=radio] {
  display:none;
}
 
input[type=radio] + label {
  display:inline-block;
  margin:-2px;
  padding: 8px 10px;
  margin-bottom: 0;
  font-size: 0.8em;
  line-height: 20px;
  color: #666;
  text-align: center;
  text-shadow: 0 1px 1px rgba(255,255,255,0.75);
  vertical-align: middle;
  cursor: pointer;
  background-color: #f5f5f5;
  background-image: -moz-linear-gradient(top,#fff,#e6e6e6);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));
  background-image: -webkit-linear-gradient(top,#fff,#e6e6e6);
  background-image: -o-linear-gradient(top,#fff,#e6e6e6);
  background-image: linear-gradient(to bottom,#fff,#e6e6e6);
  background-repeat: repeat-x;
  border: 1px solid #ccc;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-bottom-color: #b3b3b3;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe6e6e6',GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);

  -webkit-border-radius: 10;
  -moz-border-radius: 10;
  border-radius: 10px;

  margin: 0 2px;
}

input[type=radio] + label:hover {
    color: #000000;
}

input[type=radio] + label:active{
  background-color: #e6e6e6;
  background-image: -moz-linear-gradient(top,#e6e6e6,#e6e6e6);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#e6e6e6),to(#e6e6e6));
  background-image: -webkit-linear-gradient(top,#e6e6e6,#e6e6e6);
  background-image: -o-linear-gradient(top,#e6e6e6,#e6e6e6);
  background-image: linear-gradient(to bottom,#e6e6e6,#e6e6e6);

  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0),0 1px 2px rgba(0,0,0,0);
  -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0),0 1px 2px rgba(0,0,0,0);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0),0 1px 2px rgba(0,0,0,0);
 }

input[type=radio]:checked + label {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,0.05),0 1px 2px rgba(0,0,0,0.05);
  -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,0.05),0 1px 2px rgba(0,0,0,0.05);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05),0 1px 2px rgba(0,0,0,0.05);
  background-color:#e0e0e0;
  color: #888;   
}