@charset "iso-8859-7";



#outerColumnContainer
{
	border-left-width: 0;
	border-right-width: 0;	/* we remove the borders so we can apply
				   background images. */
	padding-left: 15em;	/* because padding is on the left-side,
				   the left-column"s background image is
				   going to be applied to this element. */
	margin-right: 15em;	/* the right-column"s space is reserved
				   with margin space rather than padding,
				   so we can apply a background image to
				   the parent element, #pageWrapper, and
				   it will peek through. */
	background-image: url("images/cl.jpg");
	background-repeat: repeat;
	background-position: 0 0;
}
#pageWrapper
{
	background-image: url("images/cl.jpg");
	background-repeat: repeat;
	background-position: 100% 0;
}

#contentColumn
{
	background-color: transparent;	/* need to reset the background color of
					   the content column because we set it
					   in v4.css */
}
#innerColumnContainer
{
	background-image: url("images/vgat.jpg");
	background-repeat: repeat;
	background-position: 100% 0;
}
body
{
	background-image: url("images/bg.jpg");
	background-repeat: repeat;
	background-position: 100% 0;
}

/******************************************************************************/