/* from glish.com example "3 Column - the Holy Grail" */

body {
	margin:0px 0px 0px 0px;
	padding:0px 0px 0px 0px;
	background-color:white;
}

#banner {
	top:0px;
	left:0px;
	height:123px;
	background:silver;
	padding: 0px 0px 0px 0px;
	overflow: auto;
}
#banner h1 {
        background-color:transparent;
	font-size:18px;
	color: white;
	padding:0px 0px 0px 0px;
	margin-top:-75px;
	margin-bottom:-30px;
	margin-left: 254px;
	font-family:"Arial", "Liberation Sans", Trebuchet, sans-serif;
    font-weight:bold;
}
	
/* from alistapart.com example "Creating Liquid Layouts with Negative Margins" */
/* Outer wrapper is below the header and above the footer*/
#outerwrapper{margin:0px;padding:0px 0px 0px 0px;
	background: url("../images/greyleft.gif") white repeat-y left 50%
}

/* from alistapart.com example "Creating Liquid Layouts with Negative Margins" */
/* Inner wrapper is directly inside outer wrapper, includes container, rightcontent and a clearing class*/
#innerwrapper{      
	background: url("../images/greyright.gif") repeat-y right 50%
}

/* from alistapart.com example "Creating Liquid Layouts with Negative Margins" */
.clearing {
	CLEAR: both; 
	HEIGHT: 0px
}
.last {
	margin-bottom: 0;
}

/* from alistapart.com example "Creating Liquid Layouts with Negative Margins" */
/* Container is directly outside of content*/
#container{      
	width:100%;
	float:left;
	margin-right:-340px;
	background:  url("../images/greyright.gif") repeat-y right 50%
}

/* from alistapart.com example "Creating Liquid Layouts with Negative Margins" */
/* Content includes left and center columns but not right*/
#content{      
	background:  url("../images/greyleft.gif") repeat-y left  50%;
	margin-right:340px
}

/* from alistapart.com example "Creating Liquid Layouts with Negative Margins" */
#footer{
	background:silver ;
	left:0px;
	height:39px;
	padding: 10px 10px 10px 10px;
	overflow: auto;
}

#leftcontent {
	float:left;
	width:153px;
	padding: 10px 15px;
	border:1px none ;
	color: white;
	font-size:12.0pt;
	font-family:sans-serif;
	font-weight:bold;
        background-color: #848284;
}

#centercontent {
	margin-left:178px;
	padding:10px 10px 0px 10px;
	font-size:12.0pt;
	font-family: times;
	font-weight:normal
}

#centercontent, #centercontent p, #centercontent ul li {
	color: #000000;
}
#rightcontent {
	float:right;
	width:320px;
	padding:10px 10px 0px 10px;
	border:1px none;
	color:white;
	font-size:12.0pt;
	font-family:sans-serif;
	font-weight: bold;
	background-color: #848284;
}

