@charset "utf-8";
/* 
Style sheet to describe the backgrounds for the boxes that contain contents. 
Project: Village of Petitcodiac
Date: June 2009
Version 1.0
*/

/* Describes the top part of the container that is mid-sized.*/
.topMediumBorder {
	background-image:url(../_images/MediumBoxTop.png);
	background-repeat:no-repeat;
	background-position: bottom;
	/*Height and width equals the height and width of the image used for the background*/
	width:690px;
	height:17px;	
}

/* Describes the middle part of the container that is mid-sized.*/
.middleMediumBorder {
	background-image:url(../_images/MediumBoxMiddle.png);
	background-repeat:repeat-y;
	background-position: center;
	/*Width equals the width of the image used for the background*/
	width:690px;
}

/* Describes the bottom part of the container that is mid-sized.*/
.bottomMediumBorder {
	background-image:url(../_images/MediumBoxBottom.png);
	background-repeat:no-repeat;
	background-position: top;
	/*Height and width equals the height and width of the image used for the background*/
	width:690px;
	height:17px;
}

/* Describes the top part of the container that is small-sized.*/
.topSmallBorder {
	background-image:url(../_images/SmallBoxTop.png);
	background-repeat:no-repeat;
	background-position: bottom;
	/*Height and width equals the height and width of the image used for the background*/
	width:200px;
	height:17px;
}

/* Describes the middle part of the container that is small-sized.*/
.middleSmallBorder {
	background-image:url(../_images/SmallBoxMiddle.png);
	background-repeat:repeat-y;
	background-position: center;
	/*Width equals the width of the image used for the background*/
	width:200px;
}

/* Describes the bottom part of the container that is small-sized.*/
.bottomSmallBorder {
	background-image:url(../_images/SmallBoxBottom.png);
	background-repeat:no-repeat;
	background-position: top;
	/*Height and width equals the height and width of the image used for the background*/
	width:200px;
	height: 17px;
}


