/*
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;}



.tab{
	display: block;
	position: relative;
  float: right;
  background:url(../img/topanel.png);
  height:56px;
  width:280px;
  text-align:center;
  line-height:40px;
  letter-spacing:-1px;
}

.tab li a {
	color: #777; font-weight:600; 
  text-align:center;
  text-decoration:none;
  font-size:20px;
  display:block;
}

.tab li a:hover {
	color: #000;
}

.tab .sep {color:#c56518}

.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: 110px;
	color: #000;
	background: #c56518 url(../img/bg-topanel.png);
	overflow: hidden;
	position: relative;
	z-index: 3;
	display: none;
	margin:0 auto;
	
}
.panel-in {width: 1020px; margin:0 auto; color:#000; font-size:130%}

#panel p {text-align:left; padding:20px;}


