.footpanel {
	position: fixed;
	bottom: 0; 
	list-style: none ;
	z-index: 9999; /*--Keeps the panel on top of all other elements--*/
	/* background: #f0e68c url(../../images/icon/button-bg.gif) repeat-x; */
	background-color: #81bd07;
	width: 960px;
	height: 30px;
	text-align: center;
	border-right: thin solid #81bd07;
	border-top: thin solid #81bd07;

}

*html .footpanel { /*--IE6 Hack - Fixed Positioning to the Bottom--*/
	margin-top: -1px; /*--Prevents IE6 from having an infinity scroll bar - due to 1px border on #footpanel--*/
	position: absolute;
	top:expression(eval(document.compatMode &&document.compatMode=='CSS1Compat') ?documentElement.scrollTop+(documentElement.clientHeight-this.clientHeight) : document.body.scrollTop +(document.body.clientHeight-this.clientHeight));
}