/**
 * Base Generic container styles used to keep a consistant margin/centering
 * for the main content containers.
 *
 */

 /* Ensures that the Div containers are centered in IE */
 body {
 	text-align: center;
 }

 /* Centers all containers
  * Resets the text-align
  * Defaults width to 100%
  */
#doc, #doc1, #doc2 {
	margin-top: 1em;
	margin-left:auto;
	margin-right:auto;
	text-align: left; /* reset auto margins for all other page contents */
 }
 /* Defines a width for the Min Container (same wdith used in system admin) */
 body div#doc1 {
 	width:75em;
 }

 /* Defines the width for the medium container*/
 body div#doc2 {
 	width:91em;
 }



