/*
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 {
  	background: #ac2824;
	height: 100px;
	position: relative;
    top: 0;
    z-index: 999;
    padding-left:20px;
}

.tab ul.login {
	display: block;
	position: relative;
  	height: 100px;
	width: auto;
  	font-weight: bold;
	margin: 0;
	left: 0px;
  	color: white;
  	font-size: 100%;
	text-align: left;
	padding-left:0px;
}


.tab ul.login li {
 	text-align: left;
	display: block;
	height: 100px;
	padding-top:10px;
}

.tab ul.login li a {
	color: #fff;
	font-size:36px;
	background:url(../img/Radical-Terrain-title-760.png) 0px 12px no-repeat;
}

.tab ul.login li a:hover {
	color: #f2f2f2;
}

.tab a.open, .tab a.close {
	/*line-height: 20px !important;*/
	/*padding-left: 30px !important;*/
	cursor: pointer;
	display: block;
	width: 100%;
	position: relative;
	height:90px;
	text-indent:-9999px;
}

.tab a.open, .tab a.close, .tab a:hover.open, .tab a:hover.close  {color:#000; text-decoration:none;}

/* sliding panel */
#toppanel {
    position: relative;   /*Panel will overlap  content */
    /*position: relative;*/   /*Panel will "push" the content down */
    top: 0;
    width: 100%;
    z-index: 999;
    text-align: left;
    margin-left: auto;
    margin-right: auto;

}

#panel {
	width: 100%;
	height: 250px;
	color: white/*#470303*/;
	background: #ac2824;
	overflow: hidden;
	position: relative;
	z-index: 3;
/*	display: none;*/
/*    background:url(../img/top_bg.png) bottom repeat-x;*/
}


#panel h3{
	font-size: 1.4em;
	padding: 10px 0 5px;
	margin: 0;
	color: #ffdc02;
	letter-spacing:-.5px;
}

#panel p {
	margin: 5px 0;
	padding: 0;
}

#panel a {
	color:#ffdc02;
	text-decoration:none;
	font-weight:bold;
}

#panel .content {
	width: 960px;
	margin: 0px;
	padding-top: 15px;
	text-align: left;
	font-size: 0.9em;
}

#panel .content .left {
	width: 550px;
	float: left;
	padding: 0 10px 0px 20px;
}

#panel .content .right {
	width: 345px;
	float: left;
	padding: 0 0px 0px 20px;
}


