/**
 * @file
 * Page Background Styling
 *
 * The default layout method of Zen doesn't give themers equal-height columns.
 * However, equal-height columns are difficult to achieve and totally
 * unnecessary. Instead, use the Faux Columns method described in the following
 * ALA article:
 *   http://www.alistapart.com/articles/fauxcolumns/
 */


body {
  background: none repeat scroll 0 0 #9F9FC3;
}

#page-wrapper {
  background: none repeat scroll 0 0 #FFFFFF;
  box-shadow: 0 0 5px 7px #FFFfFF;
  -webkit-box-shadow: 0 0 5px 7px #FFFFFF;
  -moz-box-shadow: 0 0 5px 7px #FFFFFF;
  behavior: url(PIE.htc);
}

#page {
  background: none repeat scroll 0 0 #FFFFFF;
}

#header-wrapper {
  background: #FCFB80; /*fallback for non-CSS3 browsers*/
  background: -webkit-gradient(linear, 0 0, 0 100%, from(#FCFB80) to(#FFFFFF)); /*old webkit*/
  background: -webkit-linear-gradient(#FCFB80, #FFFFFF); /*new webkit*/
  background: -moz-linear-gradient(#FCFB80, #FFFFFF); /*gecko*/
  background: -ms-linear-gradient(#FCFB80, #FFFFFF); /*IE10*/
  background: -o-linear-gradient(#FCFB80, #FFFFFF); /*opera 11.10+*/
  background: linear-gradient(#FCFB80, #FFFFFF); /*future CSS3 browsers*/
  -pie-background: linear-gradient(#FCFB80, #FFFFFF); /*PIE*/
  behavior: url(PIE.htc);
}

#header .section {
}

#main-wrapper {
}

#main {
}

#footer {
}

#footer .section {
}
