/*
Name: Sliding opener Panel with jQuery 1.3.2
Author: Jeremie Tisseau
Author URI: http://web-kreation.com/
Script URI: http://web-kreation.com/index.php/tutorials/nice-clean-sliding-opener-panel-built-with-jquery/
Date: March 26, 2009
Version: 1.0
The CSS, XHTML and design is released under Creative Common License 3.0:
http://creativecommons.org/licenses/by-sa/3.0/
*/ 

/***** clearfix *****/
.clear {clear: both;height: 0;line-height: 0;}
.clearfix:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;}
.clearfix {display: inline-block;}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
.clearfix {height: 1%;}
.clearfix {display: block;}

#bottomPanel {
	position: fixed;
	bottom: 0;
	width: 100%;
	z-index: 999 !important;
	text-align: center;
	/*margin-left: auto;
	margin-right: auto;*/
	margin: 0 auto;
}

#panel {
	width: 100%;
	height: 200px;
	color: #444;
	background: #e9f6ff;
	overflow: hidden;
	position: relative;
	z-index: 998;
	display: none;
}

#panel div.content {
	width: 960px;
	margin: 0 auto;
	padding-top: 15px;
	text-align: left;
}

	#panel div.content div.menuCont {
		float: left;
		padding: 5px 15px 0 0;
		width: 177px;
	}
	#panel div.content div.menuCont h3 {
			float: left;
			padding: 0 0 15px 0;
			width: 177px;
			font-size: 14px;
			color: #2e3337;
		}

	#panel div.content div.menuCont ul {
		float: left;
		width: 177px;
	}

/* Panel Tab/button */
.tab {
	background: url('../img/bg-bottom-menu.png') left bottom repeat-x;
	height: 38px;
	position: relative;
	top: 0;
	z-index: 999;
}

.tab ul.opener {
	display: block;
	position: relative;
	/*float: right;
	clear: right;*/
	height: 38px;
	width: 178px;
	font-weight: bold;
	line-height: 38px;
	margin: 0 auto;
	/*text-align: center;*/
}

.tab ul.opener li {
	float: left;
	text-align: left;
	display: block;
	padding: 2px 0 0 50px;
	width: 128px;
	height: 36px;
	background: url(../img/bg-menu-tab.png) left top no-repeat;
}

.tab ul.opener li a {
	color: #fff;
}

.tab ul.opener li a:hover {
}

.tab a.open, .tab a.close {
	height: 20px;
	line-height: 20px !important;
	padding-left: 30px !important;
	cursor: pointer;
	display: block;
	width: 100px;
	position: relative;
	top: 11px;
}

.tab a.open {background: url(../img/bt_open.png) no-repeat left 0;}
.tab a.close {background: url(../img/bt_close.png) no-repeat left 0;}
.tab a:hover.open {background: url(../img/bt_open.png) no-repeat left -19px;}
.tab a:hover.close {background: url(../img/bt_close.png) no-repeat left -19px;}

