/*
Name: Sliding cortina 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 cortina 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 {
	position: relative;
    top: 0;
    z-index: 999;
}

.tab ul.cortina {
	display: block;
	position: relative;
  	clear: both;
  	font-weight: bold;
  	color: white;
  	font-size: 80%;
	text-align: center;
	width: 32px;
	height: 12px;
	padding: 0;
	margin: 0 auto;
	margin-top: -12px;
	bottom: -13px;
}

.tab ul.cortina li {
 	text-align: left;
	display: block;
	width: 32px;
	height: 12px;
	padding: 0;
	margin: 0;
	background: #ccc;
}

.tab ul.cortina li a {
	color: #15ADFF;
}

.tab ul.cortina li a:hover {
	color: white;
}

.tab .sep {color:#414141}

.tab a.open, .tab a.close {
	width: 32px;
	height: 12px;
	cursor: pointer;
	display: block;
	position: relative;
	text-indent: -9999px;
	background-repeat: no-repeat;
}

	.tab a.open { background:url(../i/bt-expandir.png);	}
	.tab a.close { background:url(../i/bt-fechar.png); }

/* sliding panel */
#toppanel {
    /*position: absolute;*/   /*Panel will overlap  content */
    position: relative;   /*Panel will "push" the content down */
    top: 1px;
    width: 100%;
    z-index: 999;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#panel {
	width: 100%;
	color: #999999;
	overflow: hidden;
	position: relative;
	z-index: 3;
	display: none;
	height: 80px;
}

	#panel.banner-vermelho { background: url(../i/bg-banner-vermelho.png) repeat-x; }
	#panel.banner-verde { background: url(../i/bg-banner-verde.png) repeat-x; }
	#panel.banner-azul { background: url(../i/bg-banner-azul.png) repeat-x; }
	#panel.banner-amarelo { background: url(../i/bg-banner-amarelo.png) repeat-x; }
	#panel.banner-twitter-pro { background: url(../i/bg-banner-twitter-pro.png) repeat-x; }

#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 {
	width: 960px;
	margin: 0 auto;
	text-align: left;
	font-size: 0.85em;
}

#panel .content .left {
	width: 280px;
	float: left;
	padding: 0 15px;
	border-left: 1px solid #333;
}

#panel .content .right {
	border-right: 1px solid #333;
}

