/*
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: none;
	height: 42px;
	position: relative;
	float:right;
    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;
  	color: white;
  	font-size: 80%;
	text-align: center;
}

.tab ul.login li.left {
  	background: none;
  	height: 42px;
	width: 30px;
	padding: 0;
	margin: 0;
  	display: block;
	float: left;
}

.tab ul.login li.right {
  	background: none;
  	height: 42px;
	width: 30px;
	padding: 0;
	margin: 0;
  	display: block;
	float: left;
}

.tab ul.login li {
 	text-align: left;
  	padding: 0;
	display: block;
	float: right;
	height: 138px;
	width:137px;
}

.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: 138px;
	cursor: pointer;
	display: block;
	width: 138px;
	position: relative;
	top: 0px;
}

.tab a.open {background: url(../images/bedge.png) no-repeat;}
.tab a.close {background: url(../images/bedge-close.png) no-repeat;}
.tab a:hover.open {background: url(../images/bedge.png) no-repeat;}
.tab a:hover.close {background: url(../images/bedge-close.png) no-repeat;}

/* sliding panel */
#toppanel {
    position: relative;   /*Panel will overlap  content */
    /*position: relative;*/   /*Panel will "push" the content down */
    top: 0;
    width:250px;
    z-index: 999;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
	float:right;
}

#panel {
	width: 240px;
	height: 270px;
	color: #999999;
	overflow: hidden;
	position: relative;
	z-index: 3;
	display: none;
	float:right;
	margin-right:80px;
	top:47px;
	padding-left:15px;
	padding-top:5px;
}

.traka-pers {
	background: url(../images/traka.png) no-repeat left bottom;
}
.traka-busi {
	background: url(../images/traka-busi.png) no-repeat left bottom;
}

#panel h1 {
	font-size: 1.6em;
	padding: 5px 0 10px;
	margin: 0;
	color: white;
}

#panel h2{
	font-size: 1.2em;
	padding: 10px 0 5px;
	margin: 0;
	color: white;
}

#panel p {
	margin: 5px 0;
	padding: 0;
	width:220px;
	text-align:center;
	color:#CC0000;
	font-weight:bold;
	text-decoration:none;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
}

#panel a,
#panel a:visited {	
	font-weight:bold;
	text-decoration:none;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
}
#busi #panel a,
#busi #panel a:visited {
	color:#469fa8;
}

#pers #panel a,
#pers #panel a:visited {
	color:#CC0000;
}

#panel a:hover {
	text-decoration:underline;
}

#panel a-lost-pwd {
	display: block;
	float: left;
}

#panel .content {
	width: 960px;
	margin: 0 auto;
	padding-top: 0px;
	text-align: left;
	font-size: 0.85em;
}



