/*
Name: Sliding Login 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-login-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;}

/* Panel Tab/button */
.donateTab {
  	background: url(../images/panel/tab_b_2.png) repeat-y 0 0;
	width: 42px;
	position: absolute;
    right: 0;
	height:100%;
    z-index: 99999;
}

.donateTab ul.login {
	display: block;
	position: absolute;
  	/* float: right; */
  	clear: right;
  	width: 42px;
	height:auto;
  	font-weight: bold;
	margin: 0;
	top:50px;
	right: 0;
  	color: white;
  	font-size: 80%;
	text-align: center;
}

.donateTab ul.login li.left {
  	background: url(../images/panel/tab_l_2.png) no-repeat left 0;
  	height: 30px;
	width: 42px;
	padding: 0;
	margin: 0;
  	display: block;
	float: left;
}

.donateTab ul.login li.right {
  	background: url(../images/panel/tab_r_2.png) no-repeat left 0;
  	height: 30px;
	width: 42px;
	padding: 0;
	margin: 0;
  	display: block;
	float: left;
}

.donateTab ul.login li {
  	padding-left:10px;
	display: block;
	float: left;
	width: 32px;
  	background: url(../images/panel/tab_m_2.png) repeat-y 0 0;
}

.donateTab ul.login li a {
	color: #E38102;
}

.donateTab ul.login li a:hover {
	color: white;
}

.donateTab .sep {color:#414141}

.donateTab a.open, .donateTab a.close {
	width: 20px;
	/* line-height: 20px !important;
	padding-left: 30px !important; */
	padding-top:25px;
	cursor: pointer;
	display: block;
	height: 95px;
	position: relative;
	top: -5px;
	text-decoration:none;
	font-size:14px;
	text-align:center;
}

.donateTab a.open {background: url(../images/panel/bt_open_2.png) no-repeat 0% 0%;}
.donateTab a.close {background: url(../images/panel/bt_close_2.png) no-repeat 0% 0%;}
.donateTab a:hover.open {background: url(../images/panel/bt_open_2.png) no-repeat -19px 0%;}
.donateTab a:hover.close {background: url(../images/panel/bt_close_2.png) no-repeat -19px 0%;}

/* Left panel - Sponsors */

/* Panel Tab/button */
.sponsorsTab {
  	background: url(../images/panel/tab_b.png) repeat-y 0 0;
	width: 42px;
	position: absolute;
    left: 0;
	height:100%;
    z-index: 99999;
}

.sponsorsTab ul.login {
	display: block;
	position: absolute;
  	float: left;
  	clear: left;
  	width: 42px;
	height: auto;
  	font-weight: bold;
	margin: 0;
	margin-left:-40px; /* weird how this is needed */
	top:50px;
	left: 0px;
  	color: white;
  	font-size: 80%;
	text-align: center;
}

.sponsorsTab ul.login li.left {
  	background: url(../images/panel/tab_r.png) no-repeat left 0;
  	height: 30px;
	width: 42px;
	padding: 0;
	margin: 0;
  	display: block;
	float: left;
}

.sponsorsTab ul.login li.right {
  	background: url(../images/panel/tab_l.png) no-repeat left 0;
  	height: 30px;
	width: 42px;
	padding: 0;
	margin: 0;
  	display: block;
	float: left;
}

.sponsorsTab ul.login li {
  	padding-left:10px;
	display: block;
	float: left;
	width: 32px;
  	background: url(../images/panel/tab_m.png) repeat-y 0 0;
}

.sponsorsTab ul.login li a {
	color: #E38102;
}

.sponsorsTab ul.login li a:hover {
	color: white;
}

.sponsorsTab .sep {color:#414141}

.sponsorsTab a.open, .sponsorsTab a.close {
	width: 20px;
	/* line-height: 20px !important;
	padding-left: 30px !important; */
	padding-top:25px;
	cursor: pointer;
	display: block;
	height: 125px;
	position: relative;
	top: -5px;
	text-decoration:none;
	font-size:14px;
	text-align:center;
}

.sponsorsTab a.open {background: url(../images/panel/bt_open.png) no-repeat -19px 0%;}
.sponsorsTab a.close {background: url(../images/panel/bt_close.png) no-repeat -19px 0%;}
.sponsorsTab a:hover.open {background: url(../images/panel/bt_open.png) no-repeat 0% 0%;}
.sponsorsTab a:hover.close {background: url(../images/panel/bt_close.png) no-repeat 0% 0%;}

/* sliding panel */
#leftPanel {
    position: absolute;   /*Panel will overlap  content */
    /*position: relative;*/   /*Panel will "push" the content down */
    left: 0;
	top:0px;
    height: 100%;
    z-index: 99999;
    text-align: center;
	display:none;
	margin:0;
	padding:0;
	background: #272727 url(../images/panel/panelBackground.png);
}

/* sliding panel */
#rightPanel {
    position: absolute;   /*Panel will overlap  content */
    /*position: relative;*/   /*Panel will "push" the content down */
    right: 0px;
	top:0px;
    height: 100%;
    z-index: 99999;
    text-align: center;
	display:none;
	margin:0;
	padding:0;
	background: #272727 url(../images/panel/panelBackground.png);
}

#sponsorsPanel {
	width: 270px;
	height:100%;
	/* color: #999999; */
	color:white;
	overflow: hidden;
	position: relative;
	z-index: 3;
	display: none;
	margin:0;
	padding:0;
}

#sponsorsPanel .content {
	background:#272727;
	height: 100%;
	margin: 0;
	padding: 0 15px 0 15px;
	text-align: justify;
	font-size: 12px;
}

#donatePanel {
	width: 270px;
	height:100%;
	/*color: #999999;*/
	color:white;
	background: #272727;
	overflow: hidden;
	margin:0;
	padding:0;
	position: relative;
	z-index: 3;
	display: none;
}

#donatePanel .content {
	/* background:#1f1f1f; */
	background:#272727;
	height: 100%;
	margin: 0;
	padding: 0 15px 0 15px;
	text-align: justify;
	font-size: 12px;
}