body {
  background: #ececec;
  color: #222;
  font: 12px/20px 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  padding: 0;
}
#wrapper {
  background-color: #fff;
  padding:65px 10px 30px 0;
  border: 2px solid #374CA0;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
h2 {
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  color: #374CA0;
  text-align: center;
  font-weight: normal;
  margin: -80PX  0 20px 0;
}
a {
  outline: 0;
  color: #333;
}

#data-table {
  border: 0;
  border-top: 1px solid #ccc;
  width: 405px;  /* was 540px */
  display: none;
}

#data-table th,
#data-table td {
  border: 0;
  margin: 0;
  padding: 10px;
  text-align: left;
}

/* Graph - Containers */
#wrapper {
  height: 330px;
  max-width: 430px;  /* Was 565px */
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
}

#figure {
  height: 330px;
  position: relative;
}
#figure ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.graph {
  height: 283px;
  position: relative;
  padding-left: 50px;
}

/* Legend (at bottom of chart) */
.legend {
  background: #f0f0f0;
  border-radius: 6px;
  bottom: 0;
  position: absolute;
  text-align: left;
  width: 96%;
  border: 1px solid #ccc;
}
.legend li {
  display: block;
  float: left;
  height: 30px;
  margin: 0;
  margin-top: 10px;
  margin-left: 10px;
  padding: -10px 0px;
  width: 125px;
}
.legend span.icon {
  background-position: 50% 0;
  border-radius: 2px;
  display: block;
  float: left;
  height: 16px;
  margin: 2px 10px 0 0;
  width: 16px;
}

/* X-Axis */
.x-axis {
  bottom: 0;
  color: #555;
  position: absolute;
  text-align: center;
  width: 430px;
}
.x-axis li {  /* Top row of legend */
  float: left;
  margin: 0 10px;
  padding: 5px 0;
  width: 76px;
}

/* Y-Axis */
.y-axis {
  color: #555;
  position: absolute;
  text-align: right;
  width: 85%;
}
.y-axis li {
  border-top: 1px solid #ccc;
  display: block;
  height: 62px;
  width: 100%;
}
.y-axis li span {   /* 9, 18,36, etc. */
  display: block;
  margin: -14px 0 0 -50px;
  padding: 3px;
  width: 40px;
}

/* Graph Bars */
.bars {
  height: 253px;
  position: absolute;
  width: 100%;
  z-index: 10;
}
.bar-group {
  float: left;
  height: 100%;
  margin: 0 10px;  /* Was 15px */
  position: relative;
  width: 76px;
}
.bar {
  border-radius: 3px 3px 0 0;
  bottom: 0;
  cursor: pointer;
  height: 0;
  position: absolute;
  text-align: center;
  width: 20px;
}
.bar.fig0 {
  left: 0;
  background: #747474 url(../images/bar-01-bg.gif) 0 0 repeat-y;
}
.bar.fig1 {
  left: 26px;
  background: #65c2e8 url(../images/bar-02-bg.gif) 0 0 repeat-y;
}
.bar.fig2 {
  left: 52px;
  background: #eea151 url(../images/bar-03-bg.gif) 0 0 repeat-y;
}
.bar span {  /* Wins displays on hover */
  background: #fefefe;
  border-radius: 3px;
  left: -3px; /* was 8px */
  display: none;
  margin: 0;
  position: relative;
  text-shadow: rgba(255, 255, 255, 0.8) 0 1px 0;
  width: 26px;
  z-index: 20;
  -webkit-box-shadow: rgba(0, 0, 0, 0.6) 0 1px 4px;
  box-shadow: rgba(0, 0, 0, 0.6) 0 1px 4px;
}
.bar:hover span {
  display: block;
  margin-top: -25px;
}
.scrollup {
  width: 48px;
  height: 48px;
  text-indent: -9999px;
  opacity: 0.9;
  position: fixed;
  bottom: 70px;
  right: 20px;
  display: none;
  background: url('../images/icon_top.png') no-repeat;
}

/* Hyperlinks */
  a {outline: 0; color: #06F; text-decoration: none }
 // a:active { color: red; text-decoration: none }
  a:visited { color: #06F; text-decoration: none }
  a:hover { color: #080; text-decoration: underline }