/* default.aspx*/
#outerWrapper {
  background-image:url(../images/back1.gif); 
  background-repeat:repeat-y
}

#outerWrapper #banner{
	width: 950px;
	height: 160px;
	/*height: 210px; this was the original height */
	background-color: #009900;
}
#outerWrapper #contentWrapper{
	background-image: url(../images/back1.jpg); 
	background-repeat: repeat-y;
}
#outerWrapper #contentWrapper #leftColumn1 {
  background-color: #C4DAC3;
  float: left;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 230px;
}
#outerWrapper #contentWrapper #rightColumn1 {
  background-color: #C4DAC3;
  float: right;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 230px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
  margin: 0 250px 0 250px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #leftColumn1 .header {
	background: url(../images/hdr-bg.gif) repeat-x;
	height: 32px;
	width: 100%;
}
#outerWrapper #contentWrapper #leftColumn1 .header h2 {
	margin: 0 15px;
	line-height: 32px;
}


