@charset "utf-8";
/* CSS Document */
#footpanel {
	position: fixed;
	height:60px;
	bottom: 0; left: 0;
	z-index: 9999; /*--Keeps the panel on top of all other elements--*/
	background:#000;
	width:100%;
	margin: 0 0%;
}
*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));
}
img a	
{
	border:none;
}
#footpanel ul {
	padding: 0; margin: 0;
	float: left;
	width: 100%;
	list-style: none;
	 /*--Gives the bevel feel on the panel--*/
	font-size: 1.1em;
}
#footpanel ul li{
	padding: 0; margin: 0;
	height:auto;
	float: left;
	margin-top:-40px;
}
#footpanel ul li a{
	padding: 10px;
	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.active { /*--Active state when sub-panel is open--*/
	height: 17px;/*--Push it up 2px to attach the active button to sub-panel--*/
	border-top: none;
	z-index: 200; /*--Keeps the active link on top of the sub-panel--*/
	position: relative;
}
#footpanel a.Link{
	background: url url(../Images/hover.png) no-repeat top center;
	width:116px;
	height:100px;
	text-align:center;
	margin-top:25px;
	padding: 10px;
	color:#FFF;
	font-weight:bold;
	font-size:12px;
	
	text-indent: 0; /*--Reset text indent since there will be a combination of both text and image--*/
}

#footpanel a:hover{
	width:116px;
	height:auto;
	text-align:center;
	color:#666;
	font-weight:bold;
	font-size:12px;
	text-indent: 0; /*--Reset text indent since there will be a combination of both text and image--*/
}



#footpanel a.chat{
	background: url(file:///C|/Users/G%C3%B6khan%20CAN/Desktop/balloon.png) no-repeat 15px center;
	width: 116px;
	padding-left: 40px;
	text-indent: 0; /*--Reset text indent since there will be a combination of both text and image--*/
}
#footpanel li#chatpanel, #footpanel li#alertpanel 
{  color:#000; font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size:15px; margin-top:-2px; width:auto; margin-right:71px; float:right;}
#footpanel a small {
	text-align: center;
	width: 120px;
	height:200px;
	background:url(../media/mushroom.png) no-repeat center;
	height:auto;
	display: none; /*--Hide by default--*/
	color: #000;
	font-size:0px;
	padding:18px;
	text-indent: 0;

}

#footpanel a:hover small{
	display: block; /*--Show on hover--*/
	position: absolute;
	left: 50%;
	margin-left: -40px; /*--Center the tooltip--*/
	z-index: 9999;
}
