div.container {
   position: absolute;  /* goes hand-in-hand with top and left parameters to position with the BODY tag */
   left: 50%; /* relative to the BODY tag */
   width: 1216px; /* specific container width */
   margin-left: -608px; /* works with left parameter to center the container horizontally */
   top: 00%; /* relative to the BODY tag */
   height: 1201px; /* specific container height */
   margin-top: 0px; /* works with top parameter to center the container vertically */
   text-align: left; /* I want the DIV content to be flush left */
   overflow: visible; /* in case the container is not the exact size of the content block */
}
