/*
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: 158px;
	left: 50%;
	margin-left: 204px;
    width: 254px;
    z-index: 998;
    text-align: center;
	font-family:Arial, Helvetica, sans-serif;
}


#fqprocess {
    position: absolute;
    top: 158px;
	left: 50%;
	margin-left: 205px;
    width: 254px;
    z-index: 999;
    text-align: center;
	background-color:#fff;
	height: 270px;
	font-size: 11px;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight:bold;
	color:#999;
	visibility:hidden;
}
#fqprocess img { margin-top:90px; margin-bottom:15px; }
#fqsuccess {
    margin-top: 100px;
    text-align: center;
	height: 270px;
	font-size: 11px;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight:bold;
	color:#666;
	padding: 0 20px 0 20px;
}
#fqsuccess p { padding-bottom: 20px; }

#panel {
	width: 100%;
	height: 270px;
	color: #999999;
	border: #CC0000 solid thin;
	background: #FDFDFD;
	overflow: hidden;
	position: relative;
	z-index: 3;
	display: none;
	border-top:none;
}

#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 {

}

#fqmsg {
	padding: 0 0 4px 0;
	margin: 0 0 2px 0;
	border-bottom: #ddd solid thin;
	width: 220px;
	color:#444;
}

#panel a {
	text-decoration: none;
	color: #CC0000;
	margin-top:4px;
}

#panel a:hover {
	text-decoration:underline;
}

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

#panel .content {
	margin: 0 auto;
	padding-top: 10px;
	text-align: left;
	font-size: 11px;
}

#panel .content .left {
	width: 280px;
	float: left;
	padding: 0 15px;
}

#panel .content .right {
	border-right: 1px solid #333;
}

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




#panel .content .ex { font-size:10px; font-style:italic; padding-left: 50px; color:#999; }

/* BUTTONS AND INPUTS */

#panel .content label { color:#555; padding: 8px 0 1px 0; clear:both; display:block; }
#panel .content label.home { color:#555; padding: 6px 0 0 0; clear:both; display:block; }

#panel .content input.box {
	border: #ccc solid thin;
	display:block;
	margin-bottom: 2px;
	padding: 1px;
	font-size:12px;
	font-family:Arial, Helvetica, sans-serif;
	width:180px;
	background-color:#FFF;
}
#panel .content textarea.box {
	border: #ccc solid thin;
	display:block;
	margin-bottom: 2px;
	padding: 1px;
	font-size:12px;
	font-family:Arial, Helvetica, sans-serif;
	width:180px;
	height: 40px;
	background-color:#FFF;
}

#panel .content input.sbmt {
	border:none;
	padding: 1px 5px 1px 5px;
	margin-top: 7px;
	color:#FFF;
	background-color:#C00;
	font-weight:bold;
}

#panel .content input.sbmt2 {
	border:none;
	padding: 1px 5px 1px 5px;
	margin-top: 6px;
	color:#FFF;
	background-color:#C00;
	font-weight:bold;
	font-size:11px;
}



