﻿/*
 *  Background.css
 *
 *      This stylesheet facilitates the rendering of background gradients.
 *      The following images are required:
 *
 *          /images/header_background_slice.png
 *          /images/left_shadow.png
 *          /images/right_shadow.png
 *          /images/btm_bg_image.png
 */

.topBG 
{
    height: 303px;
    width: 100%;
    background-image: url(../images/header_background_slice.png);
	background-repeat: repeat-x;
	background-position: top;
}

.leftBG 
{
    width: 6px;
	background-image: url(../images/left_shadow.png);
	background-repeat: repeat-y;
}

.rightBG 
{
    width: 6px;
	background-image: url(../images/right_shadow.png);
	background-repeat: repeat-y;
}

.bottomBG 
{
    height: 163px;
    width: 100%;
	margin-top: -83px;
	background-image: url(../images/btm_bg_image.png);
	background-repeat: repeat-x;
	background-position: bottom;
	position: absolute;
	z-index: -1;
}