#footpanel {
	position: fixed;
	bottom: 0; left: 0;
	z-index: 9999; /*--Keeps the panel on top of all other elements--*/
	background: #e3e2e2;
	border: 1px solid #c3c3c3;
	border-bottom: none;
	width: 94%;
	margin: 0 3%;	
}

*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));
}

#footpanel ul {
	padding: 0; margin: 0;
	float: left;
	width: 100%;
	list-style: none;
	border-top: 1px solid #fff; /*--Gives the bevel feel on the panel--*/
	font-size: 11px;
}
#footpanel ul li{
	padding: 0; margin: 0;
	float: left;
	position: relative;
}
#footpanel ul li a{
	padding: 5px;
	float: left;
	text-indent: -9999px; /*--For text replacement - Shove text off of the page--*/
	height: 16px; width: 16px;
	text-decoration: none;
	color: #333;
	position: relative;
}
html #footpanel ul li a:hover{	background-color: #fff; }
html #footpanel ul li a.active { /*--Active state when sub-panel is open--*/
	background-color: #fff;
	height: 17px;
	margin-top: -2px; /*--Push it up 2px to attach the active button to sub-panel--*/
	border: 1px solid #555;
	border-top: none;
	z-index: 200; /*--Keeps the active link on top of the sub-panel--*/
	position: relative;
}

#footpanel a.user{
	background: url(../images/ico_user_green.png) no-repeat 15px center;
	/*background-size: 16px;*/
	-moz-background-size: 16px;
	width: 126px;
	padding-left: 40px;
	border-right: 1px solid #bbb;
	text-indent: 0; /*--Reset text indent since there will be a combination of both text and image--*/
}
#footpanel a.notuser{
	background: url(../images/ico_user_gray.png) no-repeat 15px center;
	/*background-size: 16px;*/
	-moz-background-size: 16px;
	width: 126px;
	padding-left: 40px;
	border-right: 1px solid #bbb;
	text-indent: 0; /*--Reset text indent since there will be a combination of both text and image--*/
}
a.settings{ background: url(http://kitewiese.s3.amazonaws.com/images/ico_wrench.png) no-repeat center center;border-right: 1px solid #bbb;}
a.logout{ background: url(http://kitewiese.s3.amazonaws.com/images/ico_cross.png) no-repeat center center;border-right: 1px solid #bbb;}
a.de{ background: url(http://kitewiese.s3.amazonaws.com/images/languageflags/de.png) no-repeat center center; }
a.dk{ background: url(http://kitewiese.s3.amazonaws.com/images/languageflags/dk.png) no-repeat center center; }
a.en{ background: url(http://kitewiese.s3.amazonaws.com/images/languageflags/uk.png) no-repeat center center; }
a.fr{ background: url(http://kitewiese.s3.amazonaws.com/images/languageflags/fr.png) no-repeat center center; }
a.misterwong{ background: url(http://www.mister-wong.de/img/buttons/logo16_green.gif) no-repeat center center; margin-left:40px;}
a.shoppingcart{ background: url(../images/ico_cart.png) no-repeat center center; }
a.tools{ background: url(../images/ico_plugin.png) no-repeat center center;}
a.awards{ background: url(http://kitewiese.s3.amazonaws.com/images/awards/award_1.png) no-repeat center center; border-left: 1px solid #bbb; }
a.exectime{ background: url(../images/ico_time.png) no-repeat center center;
	border-left: 1px solid #bbb;
	border-right: 1px solid #bbb;
	margin-left: 40px;
}
#footpanel a.flammable{ background: url(http://kitewiese.s3.amazonaws.com/images/logo_fw.png) no-repeat center center; width: 190px;}
#footpanel a.messagesnav{
	background: url(../images/ico_email.png) no-repeat 15px center;
	border-left: 1px solid #bbb;
	border-right: 1px solid #bbb;
	width: 26px;
	padding-left: 35px;
	text-indent: 0; /*--Reset text indent since there will be a combination of both text and image--*/
}



#footpanel a small {
	text-align: center;
	width: 80px;
	background: url(../images/pop_arrow.gif) no-repeat center bottom;
	padding: 5px 5px 11px;
	display: none; /*--Hide by default--*/
	color: #fff;
	font-size: 9px;
	text-indent: 0;
}
#footpanel a:hover small{
	display: block; /*--Show on hover--*/
	position: absolute;
	top: -35px; /*--Position tooltip 35px above the list item--*/
	left: 50%;
	margin-left: -45px; /*--Center the tooltip--*/
	z-index: 9999;
}

#profile a:hover small{
	margin-left: -60px; /*--Center the tooltip--*/
}

#activeflag, #current  {background-color: #bbb;}
