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

*/ 

/***** 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: url(../ui_elements/tab_b.png) repeat-x 0 0;
	height: 42px;
	position: relative;
    top: 0;
    z-index: 999;
}

.tab ul.about {
	display: block;
	position: relative;
  	float: right;
  	clear: right;
  	height: 42px;
	width: auto;
	font-family: "Lucida Grande", Arial, Helvetica, Verdana, sans-serif;
	line-height: 42px;
	margin: 0;
	right: 15%;
	font-size: 12px;
	color:#000;	
	text-align: center;
}

.tab ul.about li.left {
  	background: url(../ui_elements/tab_l.png) no-repeat left 0;
  	height: 42px;
	width: 60px;
	padding: 0;
	margin: 0;
  	display: block;
	float: left;
}

.tab ul.about li.right {
  	background: url(../ui_elements/tab_r.png) no-repeat left 0;
  	height: 42px;
	width: 60px;
	padding: 0;
	margin: 0;
  	display: block;
	float: left;
}

.tab ul.about li {
 	text-align: left;
  	padding: 0;
	display: block;
	float: left;
	height: 42px;
  	background: url(../ui_elements/tab_m.png) repeat-x 0 0;
}

.tab ul.about li a {
	color: #ded8c3;
	text-decoration:none;
}

.tab ul.about li a:hover {
	color: #ce791d;
}

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

.tab a.open {background: url(../ui_elements/bt_open.png) no-repeat left 0;}
.tab a.close {background: url(../ui_elements/bt_close.png) no-repeat left 0;}
.tab a:hover.open {background: url(../ui_elements/bt_open.png) no-repeat left -19px;}
.tab a:hover.close {background: url(../ui_elements/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: 0;
    width: 100%;
    z-index: 999;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#panel {
	width: 100%;
	height: 150px;
	color: #ded8c3;
	font-family: Arial, Helvetica, Verdana, sans-serif;	
	background: #292826;
	overflow: hidden;
	position: relative;
	z-index: 3;
	display: none;
}

#panel h1 a {
		display: block; /* Anchors are inline by default, change it to block... */
		width: 101px; height: 17px; /*...Which then allows us to specify width and height (according to the image) */
		color: #6b5c4e; margin: 10px 0 10px -1px; /* the color can't actually be seen on the text, but it avoids a blue dotted border in Firefox */
		background: url(../ui_elements/info.png) no-repeat; text-indent: -9999px; /* Add the background image as part of the CSS Image Replacement and shift the text out of the way */
}

#panel p {
	font-size: 11px;
	line-height: 15px;
	margin: 10px 0;
	padding: 0;
	color: #eeeadc;	
}

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

#panel a:hover {
	color: #ded8c3;
}

#panel .content {
	width: 830px;
	margin: 0 auto;
	padding-top: 10px;
	text-align: left;
}

#panel .content .left {
	width: 480px;	
	float: left;
	padding: 0 15px;
}

#panel .content .right {
	width: 200px;		
	float: left;
	padding: 27px 0 0 65px;
}