html { overflow: -moz-scrollbars-vertical; }
body, html {
	height: 100%;
	margin: 0px;
	padding: 0px;
}
body {
	min-width: 950px; /* Doesn't work in IE */
}
.clear { clear: both; }

#container {
  min-height: 100%;
  width: 950px;
  margin: 0 auto;
  text-align: center;
  background-image: url(../../images/left_nav_col_public_bg.jpg);
  background-repeat: repeat-y;
}
* html #container {
  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 { 
  height: 153px;
  position: relative;
  border-bottom: 1px solid #008dd3; 
  background-image: url(../../images/banner.jpg)
}

/* CONTENT AND COLUMNS */
.outer {
	padding-left: 215px; /*** Same width as margin-left for the float-wrap div ***/
	padding-right: 120px; /*** Our right column width ***/
}
.inner {
	width: 100%;
	padding-bottom: 50px; /*** Padding-bottom value is the same value as the total height of the footer ***/
}

/*** 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: -215px; /*** Same length as .outer padding-left but with negative value ***/
}
#content {
	float: right;
	margin-right: -215px; /*** Same length as .outer padding-left but with negative value ***/
	width: 100%;
	position: relative; /*** IE needs this  ***/
}
.content_wrap {
	text-align: left;
}

/* 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: 180px;
	padding: 5px;
	position: relative; /*** IE needs this  ***/
	text-align: left;
}

/* RIGHT COLUMN (not used) */
#right {
	float: right; 
	width: 110px;
	padding: 5px;
	position: relative; /*** IE needs this  ***/
	margin-right: -120px; /** This negative margin-right value is the same as the right column width (width + padding). ***/
	position: relative; /*** IE needs this  ***/
}

/* FOOTER */
#footer {
	/*** 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 ***/
	height: 50px; 
	
	/*** 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. ***/
	margin-top: -50px; 
	padding-top:15px;
	background-color: #F2F2F2;
	vertical-align: middle;
	text-align:left;
	width: 950px;
	margin-left: auto;
	margin-right: auto;
}
