.header{
	height: 180px;
  /* Mozilla ignores crazy MS image filters, so it will skip the following */
    filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=crop src='images/corporate_header.png');
}
/* IE ignores styles with [attributes], so it will skip the following. */
.header[class] {
	height: 180px;
  	background-image:url(images/corporate_header.png);
}

.footer{
	height: 100px;
  /* Mozilla ignores crazy MS image filters, so it will skip the following */
    filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=image src='images/corporate_footer3.png');
	position:absolute;
	bottom:0; /* stick to bottom */
}
/* IE ignores styles with [attributes], so it will skip the following. */
.footer[class] {
	height: 100px;
  	background-image:url(images/corporate_footer3.png);
	position:absolute;
	bottom:0; /* stick to bottom */
}
