@charset "utf-8";
/* CSS Document */




#footpanel {
	position: fixed;
	bottom: 0; left: 0;
	z-index: 9999; /*--Keeps the panel on top of all other elements--*/
	background: #fff;
	opacity:0.9;filter:alpha(opacity=90);
	border: 1px solid #dadada;
	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: 1.1em;
}
#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: #ccc; }
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.home{
	background: url(icons/home.png) no-repeat 15px center;
	width: 50px;
	padding-left: 40px;
	border-right: 1px solid #eee;
	text-indent: 0; /*--Reset text indent since there will be a combination of both text and image--*/
}

#footpanel a.logo{
	background: url(icons/ikraft_footer_logo.png) no-repeat 15px center;
	width: 80px;
	padding-left: 40px;
	border-right: 1px solid #eee;
	text-indent: 0; /*--Reset text indent since there will be a combination of both text and image--*/
}
a.logo{ background: url(icons/ikraft_footer_logo.png) no-repeat center center;  }
a.profile{ background: url(icons/portfolio.png) no-repeat center center;  }
a.editprofile{ background: url(icons/quote.png) no-repeat center center; }
a.contacts{ background: url(icons/testimonials.png) no-repeat center center; }
a.messages{ background: url(icons/aboutus.png) no-repeat center center; }
a.playlist{ background: url(icons/facebook.png) no-repeat center center; }
a.videos{ background: url(icons/twitter.png) no-repeat center center; }
a.myspace{ background: url(icons/myspace.png) no-repeat center center; }
a.linkedin{ background: url(icons/linkedin.png) no-repeat center center; }
a.youtube{ background: url(icons/youtube.png) no-repeat center center; }
a.alerts{ background: url(icons/contact.png) no-repeat center center; }
a.alerts1{ background: url(icons/top.png) no-repeat center center; }
#footpanel a.chat{
	background: url(icons/chat.png) no-repeat 15px center;
	width: 70px;
	border-left: 1px solid #eee;
	border-right: 1px solid #eee;
	color:#C00;
	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, #footpanel li#alertpanel2 {	float: right; }  /*--Right align the chat and alert pane*/


#footpanel a small {
	text-align: center;
	width: 90px;
	background: url(icons/poparrow.png) no-repeat center bottom;
	padding: 2px 2px 11px;
	display: none; /*--Hide by default--*/
	color: #fff;
	font-size: 1em;
	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: -40px; /*--Center the tooltip--*/
	z-index: 9999;
}
