#canvasDiv {
	margin-top:35px;
	padding: 0px !important;
  width: 100%;
}

#myCanvas, #copyright {
	padding-left: 0;
	padding-right: 0;
	margin-left: auto;
	margin-right: auto;
	display: block;
}

#loader {
  color:black;
  font-size: 30px;
  margin-top:20px;
  text-align: center;
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

#loader:after {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  -webkit-animation: ellipsis steps(4,end) 900ms infinite;      
  animation: ellipsis steps(4,end) 900ms infinite;
  content: "\2026"; /* ascii code for the ellipsis character */
  width: 0px;
}

@keyframes ellipsis {
  to {
    width: 40px;    
  }
}

@-webkit-keyframes ellipsis {
  to {
    width: 40px;    
  }
}