/*
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 {
	height: 1px;
	position: relative;
	top: 0px;
     width: 100%;
    z-index: 999;
	background-color: rgba(0, 0, 0,.6);
	border-bottom: #BFBFBF 1px dotted;
}



.tab a.open, .tab a.close {
	height: 16px;

	cursor: pointer;
	display: block;
	width: 30px;
	position: relative;
	top: 1px;
	text-indent: -9999px;
	margin: 0 auto;
}

.tab a.open {background: url(../v2images/slider/quick.png) no-repeat ;}
.tab a.close {background: url(../v2images/slider/quick.png) no-repeat ;}
.tab a:hover.open {background: url(../v2images/slider/quick.png) no-repeat;}
.tab a:hover.close {background: url(../v2images/slider/quick.png) no-repeat ;}

/* sliding panel */
#toppanel {
    position: fixed;   /*Panel will overlap  content */
    /*position: relative;*/   /*Panel will "push" the content down */
    width: 100%;
    z-index: 999;
    margin-left: auto;
    margin-right: auto;
}

#panel {
	 width: 100%;
	height: 500px;
	color: #999999;
	background-color: rgba(0, 0, 0,.8);
	overflow: hidden;
	position: relative;

	z-index: 3;
	display: none;
	    
}


.comment-width{
	width: 240px;
	background: #e8e8e8;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border: none;
	float: right;
}

.textarea{
	height: 200px;
}


.slider-position{
padding-top: 20px;
width: 500px;
height: 500px;
border-right: #BFBFBF 1px dotted;
padding-right: 30px;
background: #000;  
	float: left;}


#slider-title{
	font-size: 24px;
	color: #FFF;
	margin-left: 30px;
	margin-bottom: 12px;

}

#slider-location{
	font-size: 16px;
	color: #CCC;
	margin-left: 30px;
	margin-bottom: 12px;
	font-style: italic;

}

#slider-content{
	font-size: 14px;
	color: #CCC;
	margin-left: 30px;
	margin-bottom: 12px;

}

#slider-content p{
	padding-top: 8px;
}

a.slider-close{
	margin-left: 30px;
	margin-top: 55px;
	color: red;
}

#comment-form{
background-color: rgba(0, 0, 0,.4);
border-right: #BFBFBF 1px dotted;
padding-top: 20px;
height: 500px;
width: 400px;
left: 530px;
padding-right: 30px;
overflow: hidden;
padding-left: 30px;
font-size: 11px;
position: absolute;
}

#comment-form p{
padding-bottom: 10px;
}

.comment-entries{
width: 100%;
font-size: 14px;
margin-top: 30px;
height: 230px;
float: left;
position: relative;
overflow:hidden;
overflow-y:scroll;
}

a.closeslider{
	color: red;
	position: absolute;
	top: 20px;
	left:1010px;
}