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

/* Panel Tab/button */
.tab {height: 32px; position: relative; top: 0; z-index: 999; margin: 0; padding: 0;}

.tab ul.login 			{display: block; position: relative; float: right; clear: right; height: 32px; width: 143px; margin: -2px 0 0 0; padding: 0; right: 25px;}
.tab ul.login li 		{text-align: left; padding: 0; display: block; float: left; height: 32px; background: url(../images/tab_m.png) repeat-x 0 0;}
.tab ul.login li img 	{border: none;}

.tab .sep {color:#414141}
.tab a.open, .tab a.close {height: 32px; line-height: 20px !important; padding-left: 0 !important; cursor: pointer; display: block; width: 143px; position: relative; top: 0;}

.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 0px;}
.tab a:hover.close {background: url(../images/bt_close.png) no-repeat left 0px;}

/* sliding panel */
#toppanel {position: absolute; top: 0; width: 100%; z-index: 999; text-align: center; margin: 0 auto;}

#panel 			{width: 100%; height: 92px; margin: 0; background: #d51b11; border-bottom: 1px solid #d51b11; overflow: hidden; position: relative; z-index: 3; display: none;}
#panel h5		{font-size: 1.4em; padding: 0; margin: 0; color: white;}
#panel p 		{font-size: 0.95em; margin: 0; padding: 0;}
#panel a 		{color: #fffec1;}
#panel a:hover 	{color: #fff;}

#panel .content 					{width: 100%; margin: 0 auto; padding: 15px 0; text-align: left; font-size: 0.85em;}
#panel .content .right 				{float: right; text-align: right; padding: 0 25px 0 0; margin: 0;}
#panel .content form 				{margin: 0;}
#panel .content label 				{padding: 0; color: #fff; font-size: 0.9em;}
#panel .content input.field 		{border: 3px #a40800 solid; background: #fff; font-size: 0.9em; font-weight: bold; margin: 0; width: 200px; color: black; height: 16px;}
#panel .content input:focus.field 	{background: #fffec1;}
#panel .content input.btnLogin 		{cursor: pointer; border: 4px #a40800 solid; padding: 4px 15px; font-weight: bold; margin: 0; color: #fff; font-size: 0.9em; font-family: Arial, Helvetica, sans-serif; background: #a40800;}

#panel table.loginTable				{margin: 0; padding: 0; border: none; text-align: left;}
#panel table.loginTable TH 			{border-right: 2px solid #a40800; padding: 0 20px 0 0;}
#panel table.loginTable TD.one		{padding: 0 5px 2px 20px; text-align: right;}
#panel table.loginTable TD.two		{padding: 0 20px 2px 0;}
#panel table.loginTable TD.three	{padding: 0;}

#panelRef 			{width: 100%; margin: 0 0 10px 0; background: #eee; border: 3px solid #ddd8d9; overflow: hidden; position: relative; z-index: 3; display: none;}


