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



/*PNG Fix*/
img, div, a, input { behavior: url(iepngfix.htc) }

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

.tab ul.login {
	display: block;
	position: relative;
  	float: right;
  	clear: right;
  	height: 42px;
	width: auto;
  	font-weight: bold;
	line-height: 42px;
	margin: 0;
	right: 130px;
  	color: white;
  	font-size: 80%;
	text-align: center;
}

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

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

.tab ul.login li.sportbclogo {
	float:left; padding:0; margin:0;
}

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

.tab ul.login li a {
	color: #15ADFF;
}

.tab ul.login li a:hover {
	color: white;
}


.tab a.open, .tab a.close {
	height: 34px;
	line-height: 20px !important;
	padding-left: 0 !important;
	cursor: pointer;
	display: block;
	width: 150px;
	position: relative;
	overflow:hidden;
	text-indent:-99999px;
	font-size:0;
}

.tab a.open {background: url(../images/header/button-open.gif) no-repeat 0 0;}
.tab a.close {background: url(../images/header/button-close.gif) no-repeat 0 0;}
.tab a:hover.open {background: url(../images/header/button-open.gif) no-repeat -150px 0;}
.tab a:hover.close {background: url(../images/header/button-close.gif) no-repeat -150px 0;}

/* 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: 390px;
	color:#333333;
	background: #0099D0;
	overflow: hidden;
	position: relative;
	z-index: 3;
	display: none;
}
#panel #slogan { width: 95%; height: 50px; margin: 15px 0 0; padding: 0; background:url(../images/header/everysport.gif) top left no-repeat; text-indent: -9999px;}

#panel h1 {}
#panel h2{}
#panel p {margin: 5px 0; padding: 0;}
#panel a {text-decoration: none; color:#2F9B48;}
#panel a:hover {color:#AC2066;}
#panel ul {padding:0; margin:0; list-style:none;}
#panel li {list-style:none; padding:5px 0; margin:0; border-bottom:1px #999999 dashed;}

#panel a-lost-pwd {
	display: block;
	float: left;
}

#panel .content {
	width: 980px;
	margin: 0 auto;
	padding-top: 15px;
	text-align: left;
	font-size: 11px;
}


#panel .content .everyone {width:240px; height:250px; padding-right:20px; float:left; background:url(../images/header/everyone-is-an-athlete.gif) 0 0 no-repeat;}
#panel .content .left {width: 950px; float: left; padding:0 0 0 15px; overflow:hidden;}
#panel .content .left .columns {width:100px; padding-right:20px; float:left;}

#panel .content p {font-size:11px; float:left; width:110px;  height:20px; padding-right:15px; display:inline-block; line-height:13px;}
#panel .content a {color:#FFF; text-decoration:none;}
#panel .content a:hover {color:#FFC425; text-decoration:none;}

#panel .content .right {width: 150px; float:left; padding:15px; background:#FFF; border-left:10px #0099D0 solid;}




