/*
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(../images/slide/tab_b.png) repeat-x 0 0;
    height: 28px;
    position: relative;
    top: 0;
    z-index: 999;
}

.tab ul.login {
    display: block;
    width:375px;
    height: 28px;
    font-weight: bold;
    line-height: 28px;
    margin: 0 auto;

    color: white;
    font-size: 80%;
    text-align: center;
	position:relative;
	left:225px;
	/* temp */
	left:310px;
	top:10px;
}

.tab ul.login li.left {
    background: url(../images/slide/tab_l.png) no-repeat left 0;
    height: 28px;
    width: 30px;
    padding: 0;
    margin-left: 700px;
    display: block;
    float: left;
}

.tab ul.login li.right {
    background: url(../images/slide/tab_r.png) no-repeat left 0;
    height: 28px;
    width: 30px;
    padding: 0;
    margin: 0;
    display: block;
    float: left;
}

.tab ul.login li {
    text-align: left;
    padding: 0 10px;
    display: block;
    float: left;
    height: 28px;
    background: #bd0236;
	margin-right:5px;
	-webkit-border-bottom-right-radius: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	-moz-border-radius-bottomleft: 4px;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
}

.tab ul.login li a {
    color: white;
    font-size: 13px;
    font-weight: normal;
    text-decoration: none;
    font-family:Georgia,"Nimbus Roman No9 L",serif;
}

.tab ul.login li a:hover {
    color: white;
}

.tab .sep {color:#414141}

.tab a.open, a.close {
    height: 20px;
    text-align: center;
    line-height: 25px !important;
    cursor: pointer;
    display: block;
    width: 110px;
    position: relative;
    top: 2px;
}

/* 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: 65px;
    color: black;
    background: #BFBFBF;
    overflow: hidden;
    position: relative;
    z-index: 3;
    display: none;
}

#panel a {
    text-decoration: none;
    color: #15ADFF;
}

#panel a:hover {
    color: black;
}

#panel a-lost-pwd {
    display: block;
    float: left;
}

#panel .content {
    width: 950px;
    margin: 0 auto;
    padding-top: 5px;
    text-align: left;
    font-size: 10px;
}

/* BUTTONS */
/* Login and Register buttons */
#panel .content input.bt_login,
#panel .content input.bt_register {
    display: block;
    float: left;
    clear: left;
    height: 24px;
    text-align: center;
    cursor: pointer;
    border: none;
    margin: 10px 0;
}

#panel .content input.bt_login {
    width: 74px;
    /*background: transparent url(../images/bt_login.png) no-repeat 0 0;*/
}

#panel .content input.bt_register {
    width: 94px;
    color: white;
    /*background: transparent url(../images/bt_register.png) no-repeat 0 0;*/
}

#panel .lost-pwd {
    display: block;
    float:left;
    clear: right;
    padding: 15px 5px 0;
    font-size: 0.95em;
    text-decoration: underline;
}



.register_button {
    position: relative;
    top: 22px;
    display: block;
    width: 156px;
    height: 24px;
    margin:0;
    padding:0;
    background: url(/assets/images/slide/dropdown_button_createaccount.gif) no-repeat 0 0;

}

.register_button:hover {
    background-position: 0 -24px;
}

.field input {
    padding: 4px 0 0 4px;
    font-size: 15px;
    line-height: 22px;
    border: 1px solid #A1A1A1;
    width: 200px;
    height: 22px;
}

.field label {
    font-size: 12px;
    font-weight: normal;
}

.login_button {
    position: relative;
    top: 22px;
    display: block;
    width: 96px;
    height: 24px;
    margin:0;
    padding:0;
    background: url(/assets/images/slide/dropdown_button_login.gif) no-repeat 0 0;
    border: none;
    cursor: pointer;
}

.login_button:hover {
    background-position: 0 -24px;
}

#register_image_txt {
    padding-top: 22px;
}

#panel_logged_in {
    float: right;
    padding:15px 0 0 0;
}

#panel_logged_in_buttons td {
    padding-left: 13px;
}

.panel_logout_button {
    display: block;
    width: 108px;
    height: 24px;
    margin:0;
    padding:0;
    background: url(/assets/images/panel/button_logout.gif) no-repeat 0 0;
}

.panel_logout_button:hover {
    background-position: 0 -24px;
}

.panel_editaccount_button {
    display: block;
    width: 268px;
    height: 24px;
    margin:0;
    padding:0;
    background: url(/assets/images/panel/button_accountinfo.gif) no-repeat 0 0;
}

.panel_editaccount_button:hover {
    background-position: 0 -24px;
}

.panel_trackorder_button {
    display: block;
    width: 252px;
    height: 24px;
    margin:0;
    padding:0;
    background: url(/assets/images/panel/button_orders.gif) no-repeat 0 0;
}

.panel_trackorder_button:hover {
    background-position: 0 -24px;
}

.panel_admin_button {
    display: block;
    width: 98px;
    height: 24px;
    margin:0;
    padding:0;
    background: url(/assets/images/panel/button_admin.gif) no-repeat 0 0;
}

.panel_admin_button:hover {
    background-position: 0 -24px;
}

.panel_support_button {
    display: block;
    width: 108px;
    height: 24px;
    margin:0;
    padding:0;
    background: url(/assets/images/panel/button_support.gif) no-repeat 0 0;
}

.panel_support_button:hover {
    background-position: 0 -24px;
}
