/*
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: 1px;}
.clearfix {display: block;}
/* End hide from IE-mac */
.clearfix {height: 1px;}
.clearfix {display: block;}

/* Panel Tab/button */
.tab {
  	background: url(../images/io_login_03.png) repeat-x 0 0;
	height: 33px;
	position: relative;
    top: 0;
    z-index: 999;
}

.tab .fix {
	width: 940px;
	margin: 0 auto 0 auto;
}

.tab ul.login {
	display: block;
	position: relative;
  	float: right;
  	clear: right;
  	height: 33px;
	width: auto;
	margin: 0;
	right: 50px;
	text-align: center;
	line-height: 33px;
  	font-size: 16px;
	font-weight: bold;
	color: #333d3d;
}

.tab ul.login li.left {
  	background: url(../images/io_login_05.png) no-repeat left 0;
  	height: 33px;
	width: 7px;
	padding: 0;
	margin: 0;
  	display: block;
	float: left;
}

.tab ul.login li.right {
  	background: url(../images/io_login_08.png) no-repeat left 0;
  	height: 33px;
	width: 6px;
	padding: 0;
	margin: 0;
  	display: block;
	float: left;
}

.tab ul.login li {
 	text-align: left;
  	padding: 0 6px;
	display: block;
	float: left;
	height: 33px;
  	background: url(../images/io_login_07.png) repeat-x 0 0;
}

.tab ul.login li a {
	line-height: 33px;
  	font-size: 13px;
	font-weight: bold;
	color: #333d3d;
}

.tab ul.login li a:hover {
	text-decoration: underline;
}

.tab .sep {color:#414141}

.tab a.open, .tab a.close {
	height: 20px;
	margin: 0 10px 0 10px;
	line-height: 20px !important;
	padding-right: 5px !important;
	cursor: pointer;
	display: block;
	width: 84px;
	position: relative;
	top: 8px;
}

.tab a.open {background: url(../images/arr_down.jpg) no-repeat right 6px;}
.tab a.close {background: url(../images/arr_up.jpg) no-repeat right 6px;}
.tab a:hover.open {background: url(../images/arr_up.jpg) no-repeat right 6px;}
.tab a:hover.close {background: url(../images/arr_down.jpg) no-repeat right 6px;}

/* 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: 0;
    padding: 0;
}

#panel {
	width: 100%;
	height: 134px;
	color: #535758;
	background: #FAF8F8;
	overflow: hidden;
	position: relative;
	z-index: 3;
	display: none;
}

#panel h1 {
	font-size: 18px;
	padding: 5px 0 7px 0;
	margin: 0;
	color: #535758;
}

#panel p {
	font-size: 16px;
	margin: 0 0;
	color: #535758;
	padding: 0;
}

#panel .content {
	width: 880px;
	margin: 0 auto;
	padding-top: 20px;
	text-align: left;
	font-size: 0.85em;
}

#panel .content .left {
	width: 330px;
	float: left;
	padding: 0 0 0 25px;
}

#panel .content .left2 {
	width: 450px;
	float: left;
	margin: 35px 0 0 10px;
}

#panel .content input.field {
	background: #fff;
	border-top: 1px solid #888;
	border-left: 1px solid #888;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	width: 160px;
	color: #999;
	font-size: 14px;
	margin: 0 15px 0 0;
	padding: 3px 10px 4px 10px;
}
#panel .content input.button {
	float: right;
	margin: -2px 5px 0 0;
}

#panel .content input:focus.field {
	background: #EFFFFF;
}
