div#toolbar {
	width: 840px;
	margin: 0 auto;
	text-align: left; 
	background-color: #000000;
}
#footpanel {
	position: fixed;
	bottom: 0; left: 1;
	z-index: 9999; /*--Keeps the panel on top of all other elements--*/
	background: #e3e2e2;
	border: 1px solid #c3c3c3;
	border-bottom: none;
	width: 840px;

}
*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(/js/toolbar/images/eval(/js/toolbar/images/document.compatMode &&document.compatMode=='CSS1Compat') ?documentElement.scrollTop+(/js/toolbar/images/documentElement.clientHeight-this.clientHeight) : document.body.scrollTop +(/js/toolbar/images/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;
}
#footpanel ul li a{
	padding: 5px;
	font-size: 11px; /*--★TADA-C フォントサイズ--*/
	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.home{
	background: url(/js/toolbar/images/home.png) no-repeat 15px center;
	width: 100px;
	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.profile{ background: url(/js/toolbar/images/user.png) no-repeat center center;  }
a.editprofile{ background: url(/js/toolbar/images/wrench_screwdriver.png) no-repeat center center; }
a.contacts{ background: url(/js/toolbar/images/address_book.png) no-repeat center center; }
a.messages{ background: url(/js/toolbar/images/mail.png) no-repeat center center; }
a.playlist{ background: url(/js/toolbar/images/document_music_playlist.png) no-repeat center center; }
a.videos{ background: url(/js/toolbar/images/film.png) no-repeat center center; }
a.modoru{ background: url(/js/toolbar/images/modoru.png) no-repeat center center; }
a.twitter{ background: url(/js/toolbar/images/twitter.png) no-repeat center center; }
a.youtube{ background: url(/js/toolbar/images/youtube.png) no-repeat center center; }
a.itunes{ background: url(/js/toolbar/images/itunes.png) no-repeat center center; }
a.skype{ background: url(/js/toolbar/images/skype.png) no-repeat center center; }
#footpanel a.modoru{
	width: 110px;
	border-left: 1px solid #bbb;
	padding-left: 20px;
	text-indent: 0; /*--Reset text indent since there will be a combination of both text and image--*/
}
#footpanel li#ustreampanel, footpanel li#chatpanel, #footpanel li#modorupanel {	float: right; }  /*--Right align the chat and alert panels--*/
#footpanel a small {
	text-align: left;
	width: 250px;
	background: url(/js/toolbar/images/pop_arrow.png) no-repeat center bottom;
	padding: 10px 0px 18px 22px;
	display: none; /*--Hide by default--*/
	color: #fff;
	font-size: 12px;
	text-indent: 0;

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