
body, html {
	margin:0px 0px 0px 0px;
	padding:0px;
	height: 100%;
	color: #666;
	font-family: Verdana, Arial, Tahoma, sans-serif;
	font-size: 10px;
	line-height: 150%;
	position:relative 
		}
* html body { position:static}
		
#mainContainer {
	background:#fff url('images/bg_side.jpg'); 
	background-repeat: repeat-y;
	background-position: top left;
	min-height: 100%;
	width: 1050px;
}
* 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 ***/
}
	
#right {
		width:220px;
		float:left;
		margin-top: 20px;
		padding-bottom:50px;

		}
	
#center {
		width:440px;
		float:left;
		margin-bottom:50px;
		margin-left: 20px;
		margin-right: 20px;
		margin-top: 20px;

		}
	
#left {
		width:315px;
		float:left;
		padding-bottom:10px;
		}

#content {
		margin-left: 90px;
		margin-top: 20px;
		padding-bottom:50px;
		}

p.white {
	color: #fff;
}

a {
	color: #597786;
	text-decoration: none;
}
a:hover{
	color: #597786;
	text-decoration: underline;
}
a.con {
	color: #fff;
	text-decoration: none;
}
a.con:hover{
	color: #fff;
	text-decoration: underline;
}

h1 {
	font-size: 10px; 
	font-weight: bold;
	padding-bottom: 3px;
	color: #597786;
}
h2 {
	font-size: 12px;
	font-weight: bold;
	padding-bottom: 3px;
	color: #597786;
}
h3 {
	font-family: Helvetica, Arial, sans-serif;
	font-weight: normal;
	font-size: 20px;
	color: #ccc;
	padding-bottom: 5px;
}

oldbullet {
	line-height: 1.7;
	list-style-type: square;
	list-style-image:  url('images/bullet.gif');
	list-style-position: outside
	}
	
ul {
	list-style-type: none;
	padding-left: 0;
	margin-left: 15px;
	}
li      { background-image: url('images/bullet.gif'); 
		background-repeat: no-repeat; 
		margin-bottom: 10px; 
        padding-left: 20px; }
	
table.fine {
	
	border-width: 1px;
	border-style: solid;
	border-color: #D5DDE0;
	border-collapse: collapse;

}

table.fine td {
	border-width: 1px;
	border-style: solid;
	border-color: #D5DDE0;
	padding: 15px 8px 20px 8px;
	background:#fff url('images/bg_table.jpg'); 
	background-repeat: repeat-x;

}
.quote {
	font-size: 10px;
	color: #597786;
	font-style: italic;
	}
	
hr { color:#ACBBC2;}

.clear { clear: both; }

select, input, menu, list {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
}
form {
	padding: 2px;
	margin: 0px;
}
#flash {
	background:#fff url('images/hdr/flash.jpg'); 
	background-repeat: no-repeat;
	background-position: top left;
}





/**************************
FOOTER
**************************/
#footer {
	clear: both;
	margin: 0px;
	padding: 10px 10px 10px 380px;
	height: 50px; /*** The drawback with this solution is that the height of the footer can't be flexible. If you add so much content to the footer that it extends 30px, you will get a vertical scrollbar and the content will overflow the footer if you don't set overflow to hidden ***/
	margin: 0 auto;
	margin-top: -50px; /*** By using a negative margin-top we now move 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. ***/
	position: relative;  /*** IE needs this  ***/
	background:transparent url('images/bg_side.jpg'); 
	background-repeat: repeat-y;
	background-position: top left;
}