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

.tabx ul.ss {
	display: block;
	position: relative;
  	float: left;
  	clear: left;
  	height: 42px;
	width: auto;
  	font-weight: bold;
	line-height: 42px;
	margin: 0;
	left: 0px;
  	color: white;
  	font-size: 100%;
	text-align: center;
}

.tabx ul.ss li.left {
  	background: url(/images/panel/tab_l.png) no-repeat left 0;
  	height: 42px;
	width: 30px;
	padding: 0;
	margin: 0;
  	display: block;
	float: left;
}

.tabx ul.ss li.right {
  	background: url(/images/panel/tab_r.png) no-repeat left 0;
  	height: 42px;
	width: 30px;
	padding: 0;
	margin: 0;
  	display: block;
	float: left;
}

.tabx ul.ss li {
 	text-align: left;
  	padding: 0 6px;
	display: block;
	float: left;
	height: 42px;
  	background: url(/images/panel/tab_m.png) repeat-x 0 0;
}

.tabx ul.ss li a {
	color: white;
}

.tabx ul.ss li a:hover {
	color: white;
}

/*.tab .sep {color:#414141}*/

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

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

#panelx {
	width: 100%;
	height: 177px;
	color: #999999;
	background: #272727;
	overflow: hidden;
	position: relative;
	z-index: 3;
	display: none;
}

#panelx p {
	margin: 5px 0;
	padding: 0;
	color: #999999;
	font-size: 12px;
}

#panelx a {
	text-decoration: none;
	color: white;
}

#panelx a:hover {
	color: white;
}

#panelx .content {
	width: 960px;
	margin: 0 auto;
	padding-top: 15px;
	text-align: left;
	font-size: 12px;
}

#panelx .content .left {
	width: 280px;
	float: left;
	padding: 0 15px;
	border-left: 1px solid #414141;
}

#panelx .content .right {
	border-right: 1px solid #414141;
}

/*a {
	color: #0099CC;
	text-decoration: none;
}

a:hover {
	color: #00CCFF;
}*/

/*remove border for linked images*/
/*a img {
  border: none;
}*/

