@charset "iso-8859-1";

/*******************************************************************************
*  bgImages.css : 2006-01-30 : Ruthsarian Layouts
* ------------------------------------------------------------------------------
*  this demonstration stylesheet is used to show how to apply background images
*  to elements within the layout. This includes switching from borders to 
*  background images for the side columns. This requires some additional 
*  values to be altered besides the background family of properties.
*******************************************************************************/

body
{
	background:url(/images/HG1.gif) repeat-x;
	background-position: top;
}

#outerColumnContainer
{
	border-left-width: 0;
	border-right-width: 0;	/* we remove the borders so we can apply
				   background images. */
	padding-left: 239px;	/* because padding is on the left-side,
				   the left-column"s background image is
				   going to be applied to this element. */
	margin-right: 165px;	/* 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/HG-leftcolumn.gif");
	background-repeat: repeat-y;
	background-position: left;
}

#pageWrapper
{
	background-image: url("/images/HG-rightcolumn.gif");
	background-repeat: repeat-y;
	background-position: right;
}

#masthead
{
	background-image: url(/images/top.jpg);
	background-repeat: repeat;
	background-position: 100% 0;
}

#contentColumn
{
	background-color: #ffffff;	
}


.vnav ul li a
{
	background-image: url("http://webhost.bridgew.edu/etribou/layouts/skidoo/images/tile16.jpg");
	background-repeat: repeat;
	background-position: 100% 0;
}
.vnav ul li a:hover
{
	background-image: url("http://webhost.bridgew.edu/etribou/layouts/skidoo/images/tile20.jpg");
	background-repeat: repeat;
	background-position: 100% 0;
}

/******************************************************************************/