
body {
 
  background-color: #fff;
  
  
  font-family: Trebuchet, Helvetica, sans-serif;
  font-size: 100%x;
  font-weight: normal;
  line-height: 150%;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 20; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
  color: #777890;
  font-size: 100%;
  font-weight: bold;
  line-height: 88%;
}
/* Commonly used to style section titles. */
h2 {
  color: #777890;
  font-size: 75%;
  font-weight: bold;
  line-height: 88%;
}

h3 {
  color: #000000;
  font-size: 150%;
  font-weight: bold;
  line-height: 88%;
 
  text-decoration:underline;
}
/* Sets the style for unvisited links. */

a,  a:link {
  color:#000000;
  font-size: 150%;
  font-weight: bold;
  line-height: 87%;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color:#000000;
 font-size: 150%;
  font-weight: bold;
  line-height: 87%;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #927893;
  text-decoration: none;
}
/* Sets the style for a link that has focus. */
a:focus {
  color:#000000;
  font-size: 150%;
  font-weight: bold;
  line-height: 87%;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color:#000000;
  font-size: 150%;
  font-weight: bold;
  line-height: 87%;
}


/* 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: #fff;
  margin: 0 0 10 0; /* 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: 75%;
}


#outerWrapper #header {

 
  background-image:url(images/logo.jpg);
  background-repeat:no-repeat
  background-color: #fff;
  background-size:100%;
  
  font-size: 18px;
  font-weight: bold;
  line-height: 15px;
  padding: 35% 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #leftColumn1 {
  background-color: #fff;
  border-right: solid 1px #9ea3aa; /* Sets the right border properties for an element using shorthand notation */
  float: left;
 
  padding: 5% 5% 5% 0%; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 64%;
}
#outerWrapper #contentWrapper #rightColumn1 {
  background-color: #fff;
  border-left: solid 1px #9ea3aa; /* Sets the left border properties for an element using shorthand notation */
  float: right;
  padding: 5% 0% 5% 0%;  /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 30%;
}
/* 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 {
float: right;
  margin: 0 0px 0 5px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 0px 10px 5px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#outerWrapper #contentWrapper #onecolumn {
float: right;
background-color: #fff;
  margin: 0 0px 0 5px; /* 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) */
}
/* 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: both;
  display: block;
}


#outerWrapper #content {
	top: 0px;
	
	margin: 0;
	padding: 20px;
	float: left;
	font-size: 1.25em;
}

#outerWrapper #footer {
	
 background-color: #fff;
 
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */ notation (top, right, bottom, left) */
}
