/* this is the body and child selectors which set the min-width of the whole body */
/* we have one for the main site, and one for the portfolio pages */

body {
  width: 800px; /* fixed lack of min-width in ie6, as ie treats width like min-width, need child selector below for html>body */
}

/* ie does not support child selectors, so this hides it from ie. This reverses the width in the body above */
html>body {
  width: auto;
  min-width: 800px;
}
