/* 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 {
  background-color: #ffffff;
  margin: 0 auto 0 auto; /*  (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 980px;
}
#outerWrapper #header {
  background-color: #ffffff;
  font-size: 10px;
  font-weight: normal;
  padding: 5px 5px 5px 5px; /* (top, right, bottom, left) */
}
#outerWrapper #contentWrapper {
  background-color: #ffffff;
  border: solid 1px #ffffff;
  padding: 5px 5px 5px 5px; /* (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #leftColumn1 {
  background-color: #ffffff;
  border: solid 1px #ffffff; 
  float: left;
  margin-left: 0px;
  margin-right: 10px;
  padding: 5px 5px 5px 5px; /*(top, right, bottom, left) */
  width: 160px;
}
#outerWrapper #contentWrapper #rightColumn1 {
  background-color: #ffffff;
  border: solid 1px #ffffff; 
  float: right;
  margin-left: 10px;
  margin-right: 0px;
  padding: 5px 5px 0px 5px; /* (top, right, bottom, left) */
  width: 120px;
}
/* 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 {
  background-color: #ffffff;
  border: solid 1px #ffffff; 
  margin: 0px 140px 0px 180px; /*  (top, right, bottom, left) */
  padding: 10px 10px 10px 10px; /* (top, right, bottom, left) */
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: left;
  display: block;
}
#outerWrapper #footer {
  background-color: #ffffff;
  border-top: solid 1px #ffffff;

  padding: 0px 0px 30px 0px; /*  (top, right, bottom, left) */
}