@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #885F66;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
	
.twoColFixLtHdr #container { 
	min-width: 900px;
	max-width: 1200px;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #612F39;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

.twoColFixLtHdr #header { 
	background: #DDDDDD; 
	background-image: url(../layout/header.jpg);
	background-repeat: no-repeat;
	padding: 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height: 132px;
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0 0 10px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #header h2 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0 0 0 10px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

div#topNav {
	margin: 0;
	padding: 102px 0 0 0;  
}

td { 
   vertical-align: top;
   font-size: 0.8em;
}

h1, h2, h3 {
   font-family: Georgia, "Times New Roman", Times, serif;
   margin-bottom: 2px;
}
h1 {
	font-size: 1.6em;
	color: #4F0C1C;
}

h2 {
   font-size: 1.2em;
   color: #612F39;
   margin-bottom: 0px;
   font-style: italic;
}

h3 {
   font-size: 1.0em;
   margin-top: 0px;
   font-style: normal;
   color: #612F39;
   margin-bottom: 0px;
}

p {
   font-size: 12px;
   line-height:18px;
}

ul {
   font-size: 0.8em;
   line-height: 1.4em;
}

ol {
   font-size: 0.8em;
   line-height: 1.4em;
}

.process {
    font-size: 1.0em;
	font-weight: 400;
}


a:link {
	color: #004FDC;
	text-decoration: none;
}

a:visited {
   color: #36D;
   text-decoration: none;
}

a:hover {
   color: #36D;
   text-decoration: underline;
}

a:active {
   color: #36D;
   text-decoration: none;
}

.tableType1 {
	border-left: solid 1px #7CAADB;
	border-bottom: solid 1px #7CAADB;
	background-color: #FFFFFF;
	margin-bottom: 20px;
}
.tableType1 td {
	padding: 6px;
	margin: 6px; 
	border-right: 1px solid #A6C9F6;
	border-top: 1px solid #A6C9F6;
}

.tableType1 .heading, .tableType1 .heading td {
	font-family: Arial, Helvetica, sans-serif; 
	font-size: 13px; 
	line-height: 14px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #7CAADB;
	border-top: 1px solid #7CAADB;
	border-right: 1px solid #A6C9F6; /* NOT the last cell in the row. See headingLast */
}


.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 220px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
}
.twoColFixLtHdr #sidebar1 h1 {
   font-size: 1.2em;
   margin-top: 0px;
}
.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 380px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-image:url(../layout/bodyBackground.gif);
	background-position: top right;
	background-repeat: no-repeat;
} 

.twoColFixLtHdr .mainContentContainer {
	background-image:url(../layout/bodyBackground-chairs4.jpg);
	background-repeat: no-repeat;
	background-position: top left;
} 

.twoColFixLtHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-color: #612F39;
} 
.twoColFixLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 80%;
	color: #fff;
}

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.projectRole {
   color: #444;
   font-style: italic;
}

img.bio {
	padding: 0 0 30px 30px;
}
