/*
Name: Sliding Login Panel with jQuery 1.3.2
Author: Jeremie Tisseau (Custom Modification by Foothold: 02/03/2010)
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 {
  	background: transparent;
	height: 21px;
	margin:0 auto;
	position: relative;
    top: 0;
	width:960px;
    z-index: 999;
}

.tab ul.login {
	display: block;
  	float: right;
  	clear: right;
  	height: 21px;
	width: auto;
  	font-weight: normal;
	line-height: 21px;
	margin: 0;
  	color: white;
  	font-size: 80%;
	text-align: center;
}

.tab ul.login li.left {
  	background: url(../images/tab_l.gif) no-repeat left 0;
  	height: 21px;
	width: 10px;
	padding: 0;
	margin: 0;
  	display: block;
	float: left;
}

.tab ul.login li.right {
  	background: url(../images/tab_r.gif) no-repeat left 0;
  	height: 21px;
	width: 10px;
	padding: 0;
	margin: 0;
  	display: block;
	float: left;
}

.tab ul.login li {
	background: #2A8C9D url(../images/tab_m.gif) repeat-x 0 0;
 	display: block;
	float: left;
	height: 21px;
  	padding: 0 2px;
  	text-align: left;
}

.tab ul.login li a {
	color: #F1EEEB;
	text-decoration:none;
}

.tab ul.login li a:hover {
	color: white;
}

.tab .sep {
	color:#414141;
}

.tab a.open, .tab a.close {
	cursor: pointer;
	display: block;
	height: 21px;
	line-height: 21px !important;
	padding-left:9px;
	position: relative;
	text-align:center;
	top: 0;
	width:58px;
}

.tab a.open {
	background: url(../images/login_arrow_down.gif) no-repeat left 9px;
}

.tab a.close {
	background: url(../images/login_arrow_up.gif) no-repeat left 9px;
}


/* sliding panel */
#toppanel {
	margin-left: auto;
    margin-right: auto;
    position: absolute;   /*Panel will overlap  content */
    /*position: relative; Panel will "push" the content down */
	text-align: center;
	top: 0;
    width: 100%;
    z-index: 999;
    /*filter:alpha(opacity=93);
	-moz-opacity:0.93;
	-khtml-opacity: 0.93;
	opacity: 0.93;*/
}

#panel {
	background: #242424;
	border-bottom:3px solid #2a8c9d;
	color: #999999;
	display: none;
	height: 105px;
	overflow: hidden;
	position: relative;
	width: 100%;
	z-index: 3;
}

#panel h1 {
	color: white;
	font-size: 1.6em;
	font-weight:300 !important;
	letter-spacing:1px;
	margin: 0;
	padding: 15px 0 2px;
}

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

#panel a:hover {
	color: white;
}

#panel .content {
	width: 960px;
	margin: 0 auto;
	padding-top: 15px;
	text-align: left;
/*	font-size: 0.85em;*/
}

#panel .content .left {
/*	width: 280px;
	float: left;*/
	padding: 0 15px;
	margin: 0 auto;
	width:480px;
}

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

#panel .content label {
	display: block;
	float: left;
	padding:4px 8px 0 2px;
/*	clear: both;
	width: 280px;*/
}

#panel .content input.field {
	border: 1px #1A1A1A solid;
	background: #414141;
	color: white;
	float:left;
	height: 18px;
	padding-left:4px;
	padding-top:2px;
/*	margin-right: 5px;
	margin-top: 4px;*/
	width: 160px;
}

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

/* Login Button */
#panel .content input.bt_login {
	background: transparent url(../images/button_login_blue.gif) top left no-repeat;
	display: block;
	float: left;
	height: 0px;
	text-align: center;
	cursor: pointer;
	border: none;
	margin:0 0 0 8px;
	overflow:hidden;
	padding-top:21px;
	width: 54px;
}
/* IE Fix */
*html #panel .content input.bt_login {height:21px;}
*+html #panel .content input.bt_login {height:21px;}

#panel .content input.bt_login:hover {
	background-position: 0 -21px;
}