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

*/ 
#menuSuperior a.open,
#menuSuperior a.close
{
	padding-left: 30px !important;
	margin-left:40px;
	color:#fff;
}
#menuSuperior a.open { background: url("images/bt_open.gif") no-repeat left -1px;	}
#menuSuperior a:hover.open {
	background: url("images/bt_open.gif") no-repeat left -20px;
	border-bottom-style:none;
}
#menuSuperior a.close { background: url("images/bt_close.gif") no-repeat left -1px;	}
#menuSuperior a:hover.close { background: url("images/bt_close.gif") no-repeat left -20px; border-bottom-width: 0px;}
/* sliding panel */
#toppanel
{
	/*position: absolute;*/   /*Panel will overlap  content */
	position: relative;   /*Panel will "push" the content down */
    top: 0;
	width: 100%;
	z-index: 999;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
#panel
{
	width: 100%;
	height: 209px;
	color: #999;
	overflow: hidden;
	position: relative;
	z-index: 3;
	display: block;
	background-color: #272727;
	background-image: url("images/bg_panel.jpg");
	background-repeat: repeat-x;
}
#toppanel #panel p.tit
{
	padding: 5px 0 10px;
	margin: 0;
	color: white;
	font-size: 1.3em;
}
#panel p
{
	margin: 5px 0 10px 0;
	padding: 0;
	font-size: 1.1em;
	line-height:1.2em;
}
#panel a
{
	text-decoration: none;
	color: #e31c23;
}
#panel a:hover { color: white; }
#panel .content
{
	width: 960px;
	margin: 0 auto;
	padding-top: 15px;
	text-align: left;
}
#panel .content .left
{
	width: 223px;
	float: left;
	padding: 0 0 0 17px;
}
#panel .content form { margin: 34px 0 10px 0; }
#panel .content input.field,
#panel .content select
{
	border: 1px #1A1A1A solid;
	background: #414141;
	margin-right: 5px;
	margin-top: 4px;
	width: 200px;
	color: #ccc;
	height: 16px;
	font: 1.2em Georgia, "Times New Roman", Times, serif;
}
#panel .content textarea
{
	border: 1px #1A1A1A solid;
	background: #414141;
	margin-right: 5px;
	margin-top: 4px;
	width: 200px;
	color: #ccc;
	font: 1.2em Georgia, "Times New Roman", Times, serif;
}
#panel .content input:focus.field { background: #545454; }
#panel .lost-pwd
{
	display: block;
	float:left;
	clear: right;
	padding: 15px 5px 0;
	text-decoration: underline;
}
form.form-cont input.check{
	width:16px;
	height:13px;
	background-color:#fff;
	border:1px solid #000;
}
form input#envio {
	background: url("images/bg_BtnRojo_198.png") no-repeat;
	color:#fff;
	height:21px;
	width:198px;
	text-align:center;
	border:none;
	margin-left:auto;
	margin-right:auto;
	margin-top:17px;
	line-height:21px;
	display: block;
	cursor:pointer;
}
form input#envio:hover {

}
