* /*Set's border, padding and margin to 0 for all values*/
{
padding: 0;
margin: 0;
border: 0;
}
body, html {
	color: #000;
	font-family: Tahoma, Verdana, Arial;
	height: 100%;
	background: url() 0 100px repeat-y #fff;  /*** This is the left column background "faked" with an image. The 100px is added to have control of where the vertically repeating starts. The background color #fff (white) will be the background color for our content area ***/
	font-size: 14px;
}
body {
	font-size: 12px;
	min-width: 760px; /* Doesn't work in IE */
	background-color:#000000;
}
p {
padding: 7px 0 7px 0;
}
a {
	color: #FFFFFF;
}
a:hover{
	color: #FF6633;
	text-decoration: none;
}
h1, h2, h3 {
font-weight: bold;
padding-bottom: 5px;
}
h1 {
font-size: 2em;
}
h2 {
font-size: 1.4em;
}
h3 {
font-size: 1.3em;
}
h1 a, #header h2{
color: #fff;
}
.clear {
	clear: both;
	background-color: #000000;
}
#mainContainer {
min-height: 100%;
background: url() 100% 100px repeat-y; /*** This is the right column background "faked" with an image.  The 100px is added to have control of where the vertically repeating starts. ***/
}
* html #mainContainer {
height: 100%; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}
/**************************
HEADER
**************************/
#header {
	padding: 0px;
	background-color: #000000;
	background-image: url(../images/header.jpg);
	background-repeat: repeat-x;
	height: 157px;
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
padding-left: 0px; /*** Same width as margin-left for the float-wrap div ***/
padding-right: 0px; /*** Our right column width ***/
}
.inner {
	width: 100%;
	padding-bottom: 114px; /*** Padding-bottom value is the same value as the total height of the footer ***/
	background-color: #000000;
}
/*** 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: 100%;
margin-left: 0px; /*** Same length as .outer padding-left but with negative value ***/
}
#content {
	float: right;
	margin-right: 0px; /*** Same length as .outer padding-left but with negative value ***/
	width: 100%;
	position: relative; /*** IE needs this  ***/
	color: #FFFFFF;
	background-color: #000000;
}
.contentWrap{
	padding-top: 50px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
	width: 766px;
	margin-right: auto;
	margin-left: auto;
	background-color: #000000;
	background-image: url(../images/bg.gif);
	background-repeat: no-repeat;
}
.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: left;
width: 155px;
padding: 5px;
position: relative; /*** IE needs this  ***/
}
#left ul {
list-style: none;
padding-bottom: 4px;
}
#left li {
padding-bottom: 2px;
}
#left h3, #right h3, #left a, #right a {
color: #fff;
}
/*************************
RIGHT COLUMN
**************************/
#right {
float: right; 
width: 110px;
padding: 5px;
position: relative; /*** IE needs this  ***/
margin-right: -260px; /** This negative margin-right value is the same as the right column width (width + padding). ***/
position: relative; /*** IE needs this  ***/
}

#right ul {
list-style: none;
padding-bottom: 4px;
}
#right li {
padding-bottom: 2px;
}
/**************************
FOOTER
**************************/
#footer {
	height: 125px; /*** The drawback with this solution is that the height of the footer can't have a flexible height. If you add so much content to the footer that it extends 45px, you will get a vertical scrollbar and the content will overflow the footer if you don't set overflow to hidden ***/
	margin-top: -125px; /*** By using a negative margin-top we now moves the footer up the same amount as the footer height to avoid vertical scrolling. Remember, if you use borders and padding on your footer you will have to calculate this in your negative margin-top value also. ***/
	text-align: center;
	color: #000000;
	background-color: #000000;
	background-image: url(../images/footer.jpg);
	background-repeat: repeat-x;
	background-position: bottom;
	padding: 10px;
	font-size: 12px;
}
#footer p {
clear: both;
}
