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

/***** 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: 25px;
	position: relative;
    top: 0;
    z-index: 999;
	width:1000px;
	margin:0px auto;
}

.tab #aba {
	display: block;
	position: relative;
  	float: right;
  	clear: right;
  	height: 28px;
	width: auto;
  	font-weight: bold;
	width:140px;
	margin: 0;

  	color: white;
  	font-size: 10px;
	text-align: center;
	background:#000;
	border:1px solid #666;
	border-top:0px;
	top:0px;
}

.tab a.open, .tab a.close {
	height: 15px;
	line-height: 20px !important;
	padding-left: 30px !important;
	cursor: pointer;
	display: block;
	width: 80px;
	position: relative;
	top: 6px;
	margin-left:10px;
}

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

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

#panel {
	width: 100%;
	height: 210px;
	color: #999999;
	background: #000 url(../images/painel.gif) repeat-x center top;
	overflow: hidden;
	position: relative;
	z-index: 1;
	display: none;
	border-bottom:1px solid #ccc;
	top:0px;
}

#panel h1 {
	font-size: 1.6em;
	padding: 5px 0 10px;
	margin: 0;
	color: white;
	font-family:"Times New Roman", Times, serif;
	text-transform:uppercase;
	font-weight:normal;
}

#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 .content {
	width: 960px;
	margin: 0 auto;
	padding-top: 15px;
	text-align: left;
	font-size: 0.85em;
}

#panel .content .left {
	width: 250px;
	float: left;
	padding: 0 15px;
	border-left: 1px solid #333;
}

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

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

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

#panel .content input.field {
	border: 1px #1A1A1A solid;
	background: #414141;
	margin-right: 5px;
	margin-top: 4px;
	width: 200px;
	color: white;
	padding:6px;
}
#panel p.frase{ padding-top:8px;}
#panel .content input:focus.field {
	background: #545454;
}

#panel .content input.bt_login {
	margin-top:15px;
	color:#000;
	padding:2px 4px 2px 4px;
	border:0px;
	font-size:11px;
	font-weight:normal;
	background-color:#ccc;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.6);
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

#panel .content input.bt_info {
	margin-top:15px;	
	padding:2px 4px 2px 4px;
	border:0px;
	font-size:11px;
	font-weight:normal;
	color: white;
	background-color:#09C;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.6);
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.6);
}



