/**
 * The Holier Grail Website Layout Framework
 * @author    Bill Brown <mailto:macnimble@gmail.com>
 * @copyright None really.
 *            You may use The Holier Grail freely, for any project.
 *            Just please don't claim credit for creating it.
 * @timestamp 2008-MAR-10 2:40 AM
 *
 * @page      Fixed Width, Thin Site Style
 */

/**
 * I've set the body alignment to center here to support browsers that do not
 * recognize the margin:auto centering standard. I reset it in the pageShell.
 */
body{
  text-align:           center;
}
/**
 * The border settings here can be freely overridden in the theme style sheet.
 * The IE Fixes style sheet sets the min-width as pxs and ignores max-width.
 */
#pageShell {
  border:               2px solid transparent;
  margin:               1em auto;
  text-align:           left;
  max-width:            65em;
  min-width:            50em;
}