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


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

.panel-tab ul.login {
	display: block;
	position: relative;
  	float: right;
  	clear: right;
  	height: 32px;
	width: auto;
  	font-weight: bold;
	line-height: 42px;
	margin: 0;
	right: -16px;
  	color: white;
	text-align: center;
}

.panel-tab ul.login li.left {
  	background: url(../img/login/tab_l.png) no-repeat left 0;
  	height: 32px;
	width: 24px;
	padding: 0;
	margin: 0;
  	display: block;
	float: left;
}

.panel-tab ul.login li.right {
  	background: url(../img/login/tab_r.png) no-repeat left 0;
  	height: 32px;
	width: 24px;
	padding: 0;
	margin: 0;
  	display: block;
	float: left;
}

.panel-tab ul.login li {
 	text-align: left;
  	padding: 0 16px;
	display: block;
	float: left;
	height: 32px;
  	background: url(../img/login/tab_m.png) repeat-x 0 0;
}

.panel-tab ul.login li a {
	color: #212121;
	text-transform: uppercase;
	text-shadow: 1px 1px 2px rgba(236, 204, 0, 1);
}

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

.panel-tab .sep {color:#414141}

.panel-tab a.open, .panel-tab a.close {
	height: 32px;
	line-height: 32px !important;
	cursor: pointer;
	display: block;
	position: relative;
}


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

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

#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;
}

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

#panel a:hover {
	color: white;
}

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

#panel .content {
	margin: 0 auto;
	padding: 30px 0;
}


#panel .content form {
	float:right;
}

#panel .content label {
	float: left;
	padding-top: 8px;
	clear: both;
	width: 280px;
	display: block;
}

#panel .content input.field {
	margin-right: 5px;
	width: 200px;
	float:left;
}

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

#panel .content input[type="submit"] {margin: 0; font-size: 16px; line-height:17px;}

#panel .content .button {color: #fcc500; text-transform:uppercase; font-size:1.3em; font-weight:bold; float:right; line-height: 22px;}
#panel .content .button:hover {color: #FFF;}