* {
  margin: 0px;
  padding: 0px;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 18px;
  color: #5a3783;
}

/*
body {
	margin-top: 150px;
}
*/

table {
	table-layout: fixed;
	border: none;
  width: 450px;
  background-color: #FFFFFF;
  color: #000000;
  margin-top: 15px;
}

div.header {
  margin:auto;
  width: 240px;
  height: 80px;
  padding-top: 100px;
  /*
    background-image: url(ch.png); 
  background-repeat: no-repeat; 
  background-position: center;
  */
}

div.content {
  margin: auto;
  width: 450px;
  background-color: #FFFFFF;
  color: #5a3783;
  padding-left: 5px;
  padding-bottom: 5px;
  padding-top: 5px;
  vertical-align: middle;
}

body {
  /* Location of the image */
  background-image: url(ch_boardroom.jpg);
  
  /* Background image is centered vertically and horizontally at all times */
  background-position: center center;
  
  /* Background image doesn't tile */
  background-repeat: no-repeat;
  
  /* Background image is fixed in the viewport so that it doesn't move when 
     the content's height is greater than the image's height */
  background-attachment: fixed;
  
  /* This is what makes the background image rescale based
     on the container's size */
  background-size: cover;
  
  /* Set a background color that will be displayed
     while the background image is loading */
  background-color: #FFFFFF;
}