* /*Set's border, padding and margin to 0 for all values*/
{
padding: 0;
margin: 0;
/* border: 0px none; */
}
body, html {
font-family: Verdana, Arial, Tahoma, sans-serif;
text-align: center
}
body {
background-color: #E8E8E8;
/* background-image:url('index_files/bg9_b1.png'); */
background-image:url('index_files/bg5_two_900.png');
background-repeat:no-repeat;
background-position: top center;
margin-top: 5px;
}

.clear { clear: both; }
#mainContainer {
width: 995px;
margin: 0 auto; /*** Centers the design ***/
min-height: 1000px;
text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
}
* html #mainContainer {
height: 1000px; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}

/**************************
CONTENT AND COLUMNS
**************************/
.outer {
padding-left: 140px;  
}
* html .outer {
/*** No need for hacking IE on this layout ***/
}
.inner {
width: 835px; /*** 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%;
}
.inner1 { 
float: left;
margin-left: 5px;
top: 150px;
left: 170px;
position: absolute;
width: 667px; /*** 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 .inner1 {
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: 995px;
margin-left: -138px; /*** Same length as .outer padding-left but with negative value ***/
}
* html .float-wrap {
/*** No need for hacking IE on this layout ***/
}
#content {
float: left;
width: 600px;

}
* html #content {
position: relative;
}
.contentWrap{
padding: 5px 5px; /* top padding */
}
.contentWrap ol, .contentWrap ul {
margin: 3px 0 5px 35px;
}
.contentWrap li {
padding-bottom: 2px;
}
/**************************
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 {
float: right;
width: 135px;
min-height: 0px;
padding: 5px 5px 0px 3px;
}
* html #left {
position: relative;  /*** IE needs this  ***/
height: 900px;
}

#dhtmltooltip {
position: absolute;
cursor: hand;
width: 300px;
/* border: 5px solid black; */
padding: 5px;
background-color: lightblue;
visibility: hidden;
font: 11px Verdana;
z-index: 100;
}

a:link {color:#0000FF; text-decoration:none;  }
a:visited {color:#0000FF;  text-decoration:none; }
a:active {color:#0000CC; }
a:hover{color:red; text-decoration:underline; }
