﻿/* Layout Stylesheet: Two Column Fixed with Header and Footer*/ 

body  
{
	background: #e3e3e3;
	margin-top: 10px;
	margin-right: 10%;
	margin-left: 10%;
	padding-left: 25px;
	font-family: Arial, Helvetica, sans-serif;
	text-align: left; 
}

.twoColFixHdr #container 
{
	border-style: solid;
	border-color: inherit;
	border-width: 0px;
	margin: 0px;
	width: 826px; 
	text-align: left;
	height: 213px;
}
  
.twoColFixHdr #container_2 {
	width: 800px; 
	border: 0px solid;
	background-color: #FFFFFF;
	text-align: left;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
 
.twoColFixHdr #header {
	/* Padding (top, right, bottom ,left) to match left alignment of the elements in the divs that appear beneath it. If image used in #header instead of text, you may want to remove the padding. */
	border-style: solid;
	border-color: inherit;
	border-width: 0px;
	padding: 0px;
	height: 80px;
	margin-top: 15px;
	margin-bottom: 8px;
	background: #FFFFFF url('../images/banners/asi7_banner.jpg') no-repeat;
	width: 820px;
}
 
.twoColFixHdr #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; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

.twoColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 208px; 
	border: 0px solid;
	background-image: url(../images/backgrounds/sidebar_border.gif);
	background-repeat: no-repeat;
	clear: none;
	padding-top: 10px;
	padding-right: 7px;
	padding-bottom: 15px;
	padding-left: 10px;
	height: 560px;
	margin-bottom: -10px; /* To correct difference between IE and Mozilla. */
}

.twoColFixHdr #mainContent
{
    border-style: solid;
    border-color: inherit;
    border-width: 0px;
    margin-left: 216px;
    background-image: url('../images/backgrounds/main_content_border.gif');
    background-repeat: no-repeat;
    margin-bottom: 10px;
    padding-top: 10px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 18px;
    height: 545px;
    position: relative;
    top: 0px;
    left: -1px;
}
 
.twoColFixHdr #inner_container 
{
    border-style: solid;
    border-color: inherit;
    border-width: 0px;
    overflow: auto; 
    overflow-y: scroll;
    overflow-x: hidden;
    margin-left: 3px;
    margin-right: 20px;
    margin-bottom: 8px;
    padding-top: 3px;
    padding-right: 8px;
    padding-bottom: 3px;
    padding-left: 0px;
    width: 560px;
    height: 420px;
}

.twoColFixHdr #inner_container_tall
{
    overflow: auto; 
 	overflow-y: scroll;
 	overflow-x: hidden;
    margin-left: 3px;
    margin-right: 20px;
    border: 0px solid;
    margin-bottom: 8px;
    padding-top: 3px;
    padding-right: 8px;
    padding-bottom: 3px;
    padding-left: 0px;
    width: 550px;
    height: 470px;
}

.twoColFixHdr #inner_container_taller 
{
    overflow: auto; 
 	overflow-y: scroll;
 	overflow-x: hidden;
    margin-left: 3px;
    margin-right: 20px;
    border: 0px solid;
    margin-bottom: 8px;
    padding-top: 3px;
    padding-right: 8px;
    padding-bottom: 3px;
    padding-left: 0px;
    width: 550px;
    height: 511px;
}
 
 .twoColFixHdr #mainContent_clear {
	margin-left: 218px;
	border: 0px solid;
	margin-bottom: 10px;
	height: 545px;
}

.twoColFixHdr #mainContentScroll {
 	overflow: auto; 
 	overflow-y: scroll;
 	overflow-x: hidden;
	border: 0px solid;
	background-color:#FFFFFF;
	margin-bottom: 10px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	height: 545px;
}

.twoColFixHdr #footer {
	font-size:11px;
	color:#666666;
	height: 55px;
	margin-top: 0px;
	padding-top: 10px;
	padding-left: 10px;
	padding-bottom: 5px;
	padding-right: 10px;
	border: 0px solid;
	width: 820px;
	background-image: url(../images/backgrounds/footer_border.gif);
	background-repeat: no-repeat;
	text-align:	center;
} 

.fltrt { /* class to float element right in page. Floated element must precede the element next to it on 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 { /* Class placed on a div or break element. Should be final element before close of a container to fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}


