/*Andrea Silver - structure.css 10/01/08

/* This rule resets a core set of elements so that they will appear consistent across browsers. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content.  Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */

body {
  background-color: #05224e;
  color: #2e2d2c;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 14px;
  margin: 0 0 0 0; 
  padding: 0 0 0 0; 
  text-align: center; /* Centers the page content container in IE 5 browsers.*/
}  
/*  
  	background-attachment: scroll;
	background-image: url(images/bg2.jpg);
	background-repeat: no-repeat;
	background-position: center top; 
*/




a,  a:link {
  color: #15389e;  
  font-weight: bold;
  text-decoration: none;
}

a:visited {
  color: #15389e; 
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  color: #007dff; 
  text-decoration: underline;
  text-transform: uppercase;
}

a:focus {
  color: #007dff; 
  text-transform: uppercase;
}

a:active {
  color: #007dff;
  text-transform: uppercase;
}

/* 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: 6px auto 0 auto; 
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 70em;
}

/* pull #header */
#outerWrapper #header {
  background-color: #fcd091; 
  text-align: center;
  clear: both;
  /*border-bottom: solid 1px #8b675a; 
  padding: 0px 0px 0px -6px;  
  font-size: 18px;
  font-weight: bold;
  line-height: 15px;*/
}

#outerWrapper #header img {
  margin: 0px 0px 0px 0px;
}


#outerWrapper #nav {
  background-color: #fcd091;
 border-bottom: solid 1px #15389e; 
  height: 35px;
  padding: 10px 10px 10px 10px; 
}

#outerWrapper #contentWrapper #leftColumn1 {
  background-color: #fcd091; 
  border-right: solid 1px #15389e; /*  Sets the right border properties for an element*/
  float: left;
  padding: 10px 10px 10px 20px; /* Sets the padding properties for an element  */
  width: 150px;
}

/* 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 18em; 
  padding: 20px 10px 10px 10px; 
}

#content_ctr {
  margin: 0 20px 0 18em; 
  padding: 20px 10px 10px 10px; 
}



/* 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;
}

table {
  border: 1px #15389e solid;
}

#outerWrapper #footer {
  background-color: #fcd091; 
  border-top: solid 1px #15389e; /* Sets the top border properties for an element */
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element */
  text-align: center;
}

#faux1  {
	background:#fff url(graphics/left_slice180.jpg) repeat-y 0 100%;
	}
	
#rightfloat {
	float: right;
	padding: 5px 10px 5px 5px;
}