#chartdiv {
	width		: 100%;
	height		: 435px;
	font-size	: 11px;
}		
#chartdiv1 {
	width		: 100%;
	height		: 435px;
	font-size	: 11px;
}											
/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */

.img-zoom {
    
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
}
 
.transition {
    -webkit-transform: scale(1.5); 
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
}
.cd-container {
  width: 90%;
  max-width: 768px;
  margin: 2em auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

.my_body{
	text-align:center; 
	width: 100%; 
	padding-bottom: 40px; 
	margin:0;
}

.my_header{
	color:#000000;
	font-family:Times New Roman, serif; 
	font-weight:bold;
}

.letter {
  background: #fff;
  margin: 26px auto 0;
  min-height: 300px;
  position: relative;
  /*
  background-image:url(../img/header.png);
  background-position: top center;
  background-size: 95% auto;
  background-repeat: no-repeat;
  */
}
.letter:before, .letter:after {
  content: "";
  height: 98%;
  position: absolute;
  width: 100%;
  z-index: -1;
  display: none;
}
.letter:before {
  background: #fafafa;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  left: -5px;
  top: 4px;
  transform: rotate(-2.5deg);
  display: none;
}
.letter:after {
  background: #f6f6f6;
  box-shadow: 0 0 3px rgba(0,0,0,0.2);
  right: -3px;
  top: 1px;
  transform: rotate(1.4deg);
}

/* -------------------------------- */

.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  left: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: rgba(192, 192, 192, 0.8) url(../images/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
  z-index: 10000000000000;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
  display: none !important;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
  display: none !important;
}
.no-touch .cd-top:hover {
  background-color: rgb(192,192,192);
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    left: 10px;
    bottom: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 70px;
    width: 70px;
    left: 15px;
    bottom: 15px;
  }
}

.box{
  width:100px;
  height:100px;
  font-size:64px;
  border-top:2px solid #fff;
  border-radius:50%;
  margin:10px auto 50px;
  text-align:center;
  cursor:pointer;
  position:relative;
}
.inner a {
    margin-top: -55px;
    text-decoration: none !important;
    width: 100px;
    height: 100px;
    padding-top: 35px;
    margin-left: -18px;
}
.box:active{
  width:100px;
  height:100px;
  border-radius:50%;
  border-top:none;
  border:2px solid #BAB7AE;
	background-color:#EEEEEE;
	text-align:center;
	color:#BAB7AE;
	font-size:64px;
	line-height:100px;
	text-shadow:
    0 1px 1px white,
    0 1px 1px #BAB7AE;
  
  box-shadow:  0 0 0 0 #BBB7AE;
}
.box:before {
    content: " ";
    display: block;
    position: absolute;
    z-index: -90;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border-top: 2px solid #CCC8BF;
    border-bottom: 1px solid #F4F3F1;
    box-shadow: inset 0 -2px 0 2px #F7F6F2, inset 0 2px 1px 1px #CCC8BF;
    left: 0px;
    top: -17px;
    background: -moz-linear-gradient(#DAD6CB,#F1EDEA);
    background: -webkit-linear-gradient(top, #DAD6CB, #F1EDEA);
    box-shadow: inset 1px 0 1px 0px #D9D9D9;

}
a{
  text-shadow: 1px 1px 1px white;
  color:#7E7E7E;
  text-align:center;
  font-size:36px;
  text-decoration: none;
  margin:10px;
}
.box span{
  display:inline-block;
  box-shadow: 
    inset 0 1px 1px 1px #7E7E7E, 
    0 1px 1px white;
  height:60px; 
  width:60px;
  border-radius:50%;
  background: linear-gradient(#AEADAA,#BAB7AE);
  margin:17px auto;
}

.outer {
    position:relative;
}

.inner {
   left:50%;
   top:50%;
   -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
   position:absolute;