/*
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
*/

/***** 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 {
	height: 22px;
	position: relative;
    top: 0;
    z-index: 999;
	background: #F2F2F2;
	padding: 6px 3px 0px 0px;
}

.tab ul.login {
	display: block;
	position: relative;
	padding: 0;
  	float: left;
  	clear: left;
  	height: 18px;
	width: 24px;
  	font-weight: bold;
	line-height: 20px;
	margin: 0;
	right: 5px;
  	color: white;
	text-align: center;

}

.tab ul.login li {
 	text-align: left;
  	padding: 0 6px;
	display: block;
	float: left;
	height: 20px;
}

.tab ul.login li a {
	color: #15ADFF;
}

.tab ul.login li a:hover {
	color: white;
}

.tab .sep {color:#414141}

.tab a.open, .tab a.close {
	height: 20px;
	background-color: #000;
	line-height: 20px !important;
	padding-left: 30px !important;
	cursor: pointer;
	display: block;
	position: relative;
	top: 0px;
}

.tab a.open {background: url(../img/up.gif) no-repeat left 0;}
.tab a.close {background: url(../img/down.gif) no-repeat left 0;}
.tab a:hover.open {background: url(../img/up.gif) no-repeat left 0;}
.tab a:hover.close {background: url(../img/down.gif) no-repeat left 0;}

/* sliding panel */
#toppanel {
    position: absolute;
    top: 20;
    width: 340px;
    z-index: 999;
    margin-left: auto;
    margin-right: auto;
	font-size: 11px;
	font-family:Tahoma, Geneva, sans-serif;
}

#panel {
	width: 332px;
	height: 150px;
	color: #000000;
	background: #F2F2F2;
	overflow: hidden;
	position: relative;
	z-index: 3;
	display: none;
	padding: 4px;
}

#panel h1 {
	padding: 5px 0 10px;
	margin: 0;
	color: white;
}

#panel h2{
	padding: 10px 0 5px;
	margin: 0;
	color: white;
}

#panel p {
	margin: 5px 0;
	padding: 0;
}

#panel a {
	text-decoration: none;
	color:black;
}

#panel a:hover {
	color: RED;
}

#toppanel p {
	margin: 5px 0;
	padding: 0;
}

#toppanel a {
	text-decoration: none;
	color:black;
}

#toppanel a:hover {
	color: RED;
}


