/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  margin-left: auto;
  margin-bottom: 0;
  margin-right: auto;
  margin-top: -10px;
  background-color: #fff;
  border: solid 2px #c43f2c; /* Sets the border properties for an element using shorthand notation */ /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 1000px;
}
#outerWrapper #header {
  background-color: #ddd;
  background-image: url("../img/headerbg.gif");
  background-repeat: repeat-x;
  font-size: 18px;
  font-weight: bold;
  height: 150px;
  line-height: 15px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #topNavigation {
  background-color: #5a4099;
  border-bottom: solid 2px #c43f2c; /* Sets the bottom border properties for an element using shorthand notation */
  height: 25px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
/* 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 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
  
#corecontent {

	padding-bottom: 25px;

	padding-top: 10px;

	margin-left: 100px;
	margin-right: 50px;

}

#outerWrapper #footer {
  background-color: #ddd;
  background-image: url("../img/footer.png");
  height: 185px;
}
-->
</style>
<style type="text/css" media="print">
<!--
/* It is common to set printer friendly styles such as a white background with black text. */
body {
  background-color: #fff;
  background-image: none;
  border-color: #000; /* Sets the border color properties for an element using shorthand notation */
  color: #000;
}

