/*
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;}



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

#panel {
	width: 365px;
	height: 272px;
	opacity: 0.92;
	background: url(../images/panel.png) 0 0 no-repeat;
	overflow: hidden;
	position: relative;
	z-index: 3;
	display: none;
}

#panel .klodka {
	background: url(../images/klodka.png) 0 0 no-repeat;
	height: 24px;
	weight: 20px;
	margin: 5px 0 0 13px;
}

#panel h1 {
	font-family: Tahoma, san-serif;
	font-size: 12px;
	padding-top: 5px;
	color: white;
}

#panel h2{
	font-size: 1.2em;
	padding: 10px 0 5px;
	margin: 0;
	color: white;
}

#panel h3 {
	font-family: Tahoma, san-serif;
	font-size: 12px;
	padding: -20px 0 0 150px;
	color: white;
}

#panel p {
	margin: 5px 0;
	padding: 0;
}

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

#panel a:hover {
	color: white;
}

#panel a-lost-pwd {
	display: block;
	float: left;
}

#panel .content .left {
	width: 365px;
	float: left;
}

#panel .content form {
	margin: 0 0 4px 0;
}

#panel .content input.field {
	font-size: 18px;
	border: 1px #1A1A1A solid;
	background: #898d98;
	padding: 0 0 0 2px
	width: 200px;
	color: white;
	height: 22px;
}

#panel .content input:focus.field {
	background: #545454;
}

#panel .content input.login {
	display: block;
	clear: left;
	height: 30px;
	width: 75px;
	text-align: center;
	cursor: pointer;
	border: none;
	margin: 10px 0 0 85px;
	background: url(../images/logowanie.png);
}

#panel .content label {
	float: left;
	margin: -30px 0 0 195px;
	color: #ffffff;
	font-family: Tahoma, san-serif;
	font-size: 11px;
	clear: both;
	width: 80px;
	display: block;
}

#panel .lost-pwd {
	display: block;
	clear: right;
	text-align: center;
	margin: 0px auto;
	font-size: 0.95em;
	text-decoration: underline;
}

#panel .close {
	display: block;
	clear: right;
	text-align: center;
	margin: 16px auto;
	background: url(../images/close.png);
	width: 24px;
	height: 24px;
}

