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

.tab ul.login {
	display: block;
	position: relative;
	float: right;
	clear: right;
	height: 40px;
	width: auto;
	font-weight: bold;
	line-height: 40px;
	margin: 0;
	right: 300px; /* Offset */
	color: white;
	font-size: 12px;
	text-align: center;
}

.tab ul.login li { margin: 0; }

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

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

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

.tab ul.login li a { color: #15ADFF; text-decoration: none; }

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

.tab a.open, .tab a.close {
	height: 20px;
	line-height: 20px !important;
	padding-left: 30px !important;
	cursor: pointer;
	display: block;
	width: 120px; /* Tab Width */
	position: relative;
	top: 10px;
}

.tab a.open {
	background: url(../images/bt_open.jpg) no-repeat left 0;
}

.tab a.close {
	background: url(../images/bt_close.jpg) no-repeat left 0;
}

.tab a:hover.open {
	background: url(../images/bt_open.jpg) no-repeat left -19px;
}

.tab a:hover.close {
	background: url(../images/bt_close.jpg) no-repeat left -19px;
}

/* sliding panel */
#toppanel {
	position: absolute; /*Panel will overlap content */
	/* Panel will "push" the content down */
	top: 0;
	width: 100%; /* Overall Width of Panel */
	z-index: 999;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
}

#panel {
	height: 200px; /* Height of Panel */
	color: #fff;
	background: #000;
	overflow: hidden;
	position: relative;
	z-index: 3;
	display: none;
}

#panel_content { padding: 10px; }

.account_input { border: none; padding: 2px; }

