.grayBox {
	height: auto; /* set auto to make height expandable*/
	width: auto; /*set width of box contenter*/
	position: relative;
	background-color: transparent; /* set background color */
	margin:0;
	padding:0;
}

/**** Top Part ****/
.grayBox .topLeft,  .grayBox .topRight {
	height: 15px;
	width: 15px;
	position: absolute;
	top: 0px;
}
	.grayBox .topLeft {
		background: transparent url(http://www.zobristinc.com/themes/html/MyTheme/images/grayBox_topLeft.png) no-repeat scroll left top;
		left: 0px;
	}
	.grayBox .topRight {
		background: transparent url(http://www.zobristinc.com/themes/html/MyTheme/images/grayBox_topRight.png) no-repeat scroll right top;
		right:0;
	}
.grayBox .topMiddle {
	background: transparent url(http://www.zobristinc.com/themes/html/MyTheme/images/grayBox_topMiddle.png) repeat-x scroll left top;
	height: 15px;
	width: auto;
	margin:0 15px;
}

/**** Middle Part ****/
.middleContent {
	height: auto; /* set auto to make height expandable*/
	width: auto; /*set width of box contenter*/
	margin:0 15px;
}
.grayBox .middleLeft,  .grayBox .middleRight {
	height: auto;
	width: 15px;
	position: absolute;
	top: 15px;
	bottom:15px; /*this will make the repeat-y background expanded to bottom*/
}
	.grayBox .middleLeft {
		background: transparent url(http://www.zobristinc.com/themes/html/MyTheme/images/grayBox_middleLeft.png) repeat-y scroll left top;
		left: 0px;
	}
	.grayBox .middleRight {
		background: transparent url(http://www.zobristinc.com/themes/html/MyTheme/images/grayBox_middleRight.png) repeat-y scroll right top;
		right:0;
	}


/**** Bottom Part ****/
.grayBox .bottomLeft,  .grayBox .bottomRight {
	height: 15px;
	width: 15px;
	position: absolute;
	bottom: 0px;
}
	.grayBox .bottomLeft {
		background: transparent url(http://www.zobristinc.com/themes/html/MyTheme/images/grayBox_bottomLeft.png) no-repeat scroll left bottom;
		left: 0px;
	}
	.grayBox .bottomRight {
		background: transparent url(http://www.zobristinc.com/themes/html/MyTheme/images/grayBox_bottomRight.png) no-repeat scroll right bottom;
		right:0;
	}
.grayBox .bottomMiddle {
	background: transparent url(http://www.zobristinc.com/themes/html/MyTheme/images/grayBox_bottomMiddle.png) repeat-x scroll left bottom;
	height: 15px;
	width: auto;
	margin:0 15px;
}