﻿
{
padding: 0;
margin: 0;
border: 0;
}
body, html {
background-color: #4e6a7b; 
background: #70775F url(../img/bg_tile.gif);
text-align: center; /*** Centers design in old IE versions ***/
}

.clear { clear: both; }
#mainContainer {
width: 760px;
margin: 0 auto; /*** Centers the design ***/
min-height: 300px;
background: #fff;
text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
}
* html #mainContainer {
height: 300px; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}

#mainContainer2 {
width: 760px;
margin: 0 auto; /*** Centers the design ***/
min-height: 300px;
background: url(../img/bg.png) repeat-y;
text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
}
* html #mainContainer2 {
height: 300px; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}


/**************************
HEADER
**************************/
#header {
background-image: url(../img/masthead.jpg); 
background-color: #2b64a3;
}

/*************************
TOP NAV BAR
**************************/
#top-nav {
margin: 0px 0 0 0px; /*** positions column as a top menu ***/
float: left; 
width: 760px;
background: #ddd;
padding-top: 8px;
padding-bottom: 12px;
height: 20px;
}
* html #top-nav {
position: relative; /*** IE needs this  ***/
}

/**************************
LEFT COLUMN
**************************/
/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/
#left-nav {
float: left;
width: 130px;
background: #fff; 
min-height: 200px;
padding-left: 25px;
padding-right: 10px;
padding-bottom: 10px;
margin-top: 23px;
border-right: 1px solid #ccc
}
* html #left-nav {
position: relative; /*** IE needs this  ***/
height: 300px;
}

#left-nav2 {
float: left;
width: 130px;
min-height: 200px;
padding-left: 15px;
padding-right: 15px;
padding-bottom: 10px;
margin-top: 23px;
}
* html #left-nav2 {
position: relative; /*** IE needs this  ***/
height: 300px;
}

/**************************
CONTENT AND COLUMNS
**************************/
.outer {
margin-top: 50px; /*** Makes some space for our top menu ***/
padding-left: 165px;  
}
* html .outer {
/*** No need for hacking IE on this layout ***/
}
.inner {
width: 595px; /*** This width is for non-IE browsers. Mozilla makes this necessary. Be sure to check your layout in different browsers if you changes this value. Especially IE7 seems to create a horisontal scroll if this value is set too large ***/
}
* html .inner {
width: 100%;
}
/*** div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid 
blowing the layout apart. IE gets the original 100% width as in the Livingstone layout.
***/
.float-wrap {
float: left;
width: 760px;
margin-left: -165px; /*** Same length as .outer padding-left but with negative value ***/
}
* html .float-wrap {
/*** No need for hacking IE on this layout ***/
}

#content {
float: right;
width: 590px;
background: #fff;
}
* html #content {
position: relative; /*** IE needs this  ***/
}

#front-content {
float: left;
padding-left: 36px;
width: 724px;
background: #fff;
}
* html #front-content {
position: relative; /*** IE needs this  ***/
}

.contentWrap {
padding-top: 12px;
padding-left: 32px;
padding-right: 70px;
padding-bottom: 30px;
}
ol, ul {
margin: 3px 0 5px 35px;
}
li {
padding-bottom: 2px;
}

.contentWrap2 {
padding-top: 12px;
padding-left: 32px;
padding-right: 32px;
padding-bottom: 30px;
}
/**************************
FOOTER
**************************/
#footer {
width: 760px;
margin: 0 auto;
padding: 8px;
text-align: center;
}

hr {color: #fff; background-color: #fff; border: 1px dotted #3d7ea4; border-style: none none dotted; }

.bio {
padding-top: 4px;
padding-right: 12px;
padding-bottom: 4px;
}

.img {
padding-top: 2px;
}
