/*
Name: Sliding Login Panel with jQuery 1.3.2
Author: Jeremie Tisseau
Author URI: http://web-kreation.com/
Date: March 26, 2009
Version: 1.0

	Copyright 2009 Jeremie Tisseau
	"Sliding Login Panel with jQuery 1.3.2" is distributed under the GNU General Public License version 3:
	http://www.gnu.org/licenses/gpl-3.0.html
*/

/***** 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 */
.tab {
  	background: url(../images/tab_b.png) repeat-x 0 0;
	height: 42px;
	position: relative;
    top: 0;
    z-index: 999;
}

.tab ul.login {
	display: block;
	position: relative;
  	float: right;
  	clear: right;
  	height: 42px;
	width: auto;
  	font-weight: bold;
	line-height: 42px;
	margin: 0;
	right: 50%;
  	color: white;
	text-align: center;
	background: url(../img/panel-tab.png) 0 0 no-repeat;
	width:125px;
	list-style:none;
	padding-left:10px;
}


.tab ul.login li {
}

.tab ul.login li a {
	color: #aaa;
	font-weight:normal;
	text-decoration:underline;
}

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

.tab .sep {color:#414141}

.tab a.open, .tab a.close {
	line-height: 20px !important;
	cursor: pointer;
	display: block;
	width: 100px;
	position: relative;
	top: 0px;
}

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

/* sliding panel */
#toppanel {
   /* position: absolute;   Panel will overlap  content */
    position: relative;   /*Panel will "push" the content down */
    top: 0px;
    width: 100%;
    z-index: 999;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#panel {
	width: 100%;
	height: 150px;
	color: #fff;
	background: #17172c;
	overflow: hidden;
	position: relative;
	z-index: 3;
}


#panel a {
	text-decoration: none;
	color: #cd3e27;
}

#panel a:hover {
	color: white;
}


#panel .content {
	width: 1000px;
	margin: 0 auto;
	padding-top: 15px;
	text-align: left;
}

#panel .left {float:left; width:600px;}
#panel .right {float:left; width:400px;}
#panel .left h1 {color:#fff; font-size:18px; line-height:22px; font-family:Arial, Helvetica, sans-serif; font-size:20px; }
#panel  p {color:#aaa; font-size:12px; line-height:16px;}


