/*
 * This file defines settings for "tabSystem" elements providing tabs and panes. See PHP class.
 */

div.tabSystem
{
	/* assures that all children can use absolute positioning */
	position:relative;
	height:100px;
	padding-top:23px
}

/* * * * * * * * * * * * * * * * * * * * * * * * * *
 * Global settings for regular tabs with basic design
 * The top container should provide the following classes:
 * - tabSystem
 * - defaultTabSystem (or other, see below)
 * * * * * * * * * * * * * * * * * * * * * * * * * */

div.tabSystem .tab
{
	position:absolute;
	left:0;
	line-height:20px;
	height:23px;
	border:2px solid #B5B2B5;
	border-right:2px solid #000;
	border-bottom:none;
	font-size:12px;
	text-align:center;
	text-decoration:none;
	white-space:nowrap;
	padding:0 10px;
	margin:0;
	/* will be overwritten when tab state changes */
	z-index:4;
	top:0;
	font-weight:bold;
	background-color:#FFF9DF
}

div.tabSystem .tabFocussed
{
}

div.tabSystem .tabUnfocussed
{
	cursor:pointer;
	z-index:1;
	margin-top:3px;
	font-weight:normal;
	background-color:#FFF
}

div.tabSystem .tabActive
{
}

div.tabSystem .tabInactive
{
	color:#AFB7CF;
	cursor:text
}

div.tabSystem .tabUnavailable
{
}

div.tabSystem .tabInit
{
	left:10px;
	top:28px;
	z-index:1
}

div.tabSystem .pane
{
	position:relative;
	left:0;
	width:282px;
	height:82px;
	padding:7px;
	z-index:3;
	border:2px solid #B5B2B5;
	border-right:2px solid #000;
	background-color:#FFF9DF
}

div.tabSystem .paneInit
{
	position:absolute;
	top:23px;
	z-index:2
}


/* * * * * * * * * * * * * * * * * * * * * * * * * *
 * Specific adjustments by ID
 * * * * * * * * * * * * * * * * * * * * * * * * * */

#regTabs
{
	height:auto;
}

#regTabs .tab
{
	padding:0 5px
}

#regTabs #registrationTab
{
	color:#2955AD;
	margin-right:20px
}

#regTabs .pane
{
	width:506px;
	height:380px
}





#welcomeTabs
{
	height:auto;
}

#welcomeTabs .tab
{
	padding:0 5px
}

#welcomeTabs #facebookTab
{
	color:#fff;
	background-color:#5777B7
}

#welcomeTabs .pane
{
	width:404px;
	height:180px;
	font-size:0.8em
}
#welcomeTabs .pane.paneInit *
{
	display:none
}

