/**
 * @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: url(../images/bg2.png) left 2px repeat;
}

#page-wrapper {
background: url(../images/bg.png) left top repeat-x;
}

#page {
}

#header{
background: url(../images/main-bg-top.png) center bottom no-repeat;
padding-bottom:5px;
}
body.sidebar-second #header{
background: url(../images/sidebar-main-bg-top.png) center bottom no-repeat;
}

#header .section {
}

#main-wrapper{
background:url(../images/main-bg-bottom.png) center bottom no-repeat;
padding-bottom:5px;
}
body.sidebar-second #main-wrapper{
background:url(../images/sidebar-main-bg-bottom.png) center bottom no-repeat;
}

#main{
background:url(../images/main-bg-middle.png) center top repeat-y;
}
body.sidebar-second #main{
background:url(../images/sidebar-main-bg-middle.png) center top repeat-y;
}

#footer {
}

#footer .section {
}