/*
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(../tdv-images/slider/tab_b2.png) repeat-x 0 0;
	height: 10px;
	position: relative;
    top: 0;
    z-index: 999;
}



.tab .sep {color:#414141}

.tab a{
	height: 35px;
	cursor: pointer;
	display: block;
	width: 120px;
	position: relative;
	top: 1 px;
	text-indent: -9999px;
	margin: 0 auto;
background: url(../tdv-images/slider/quick.png) no-repeat ;}



/* sliding panel */
#toppanel {
    position: absolute;   /*Panel will overlap  content */
    /*position: relative;*/   /*Panel will "push" the content down */
    top: 0;
    width: 100%;
    z-index: 999;
   
    margin-left: auto;
    margin-right: auto;
}

#toppanel li{
	list-style-type: none;
}

#panel {
	width: 100%;
	height: 150px;
	color: #999999;
	background-color: rgba(0, 0, 0,.9);
	overflow: hidden;
	position: relative;
	padding-top: 20px;
	z-index: 3;
	display: none;
}

#panel h2{
	font-size: 16px;
	color: #2657d0;
	font-weight: bold;
	text-shadow: #000 1px 1px 1px;
}

#panel ul.panel-links a:link{
	font-family: Helvetica;
	text-align: left;
	color: #ebebeb;
	text-shadow: #000 1px 1px 1px;
}

#panel ul.panel-links a:visited{
	font-family: Helvetica;
	text-align: left;
	color: #ebebeb;
	text-shadow: #000 1px 1px 1px;
}

#panel ul.panel-links a:hover{
	font-family: Helvetica;
	text-align: left;
	color: #26aaf6;
	text-decoration: underline;
	text-shadow: #000 1px 1px 1px;
}

#panel ul.panel-links li{
	margin-top: 5px; margin-right: 20px;
	float: left;
}

#panel h2  a:link{
	color: rgba(161,17,17,.5);
	font-size: 14px;
}
#panel h2  a:visited{
	color: rgba(161,17,17,.5);
}
#panel h2  a:active{
	color: rgba(0, 0, 0,.5);
}
#panel h2  a:hover{
	color: rgba(161,17,17,.9);
}

#close2{
	position: absolute;
	top: 100px;
	width: 200px;
	display: block;
}