/* B:TABBOX */
.b-tabbox {
	position: relative;
	height: 500px;
	overflow: hidden;
	margin: 0;
	padding: 21px 0 0 0;
}
/* B:TAB */
.b-tabbox .b-tab {
	position: relative;
	height: 100%;
	overflow: auto;
	border-width: 1px;
	border-style: solid;
	border-color: #b9cfd8;
	background-color: #ffffff;
}
.b-tabbox .b-tab-content {
	position: relative;
	height: 100%;
	overflow: auto;
	padding: 17px;
	background-color: #ffffff;
}
/* B:TABSELECTORROW */
.b-tabbox .b-tabselectorrow {
	position: absolute;
	left: 0;
	top: 0;
	height: 22px;
	z-index: 1;
}
/* B:TABSELECTOR */
.b-tabbox .b-tabselector {
	height: 22px;
	padding: 0;
	border-style: none;
}
.b-tabbox .b-tabselector-div {
	position: relative;
	width: 100%;
	height: 22px;
}
.b-tabbox .b-tabselector-left {
	height: 22px;
	cursor: default;
	background-image: url(tab_left.gif);
	background-position: -1px -22px;
	background-repeat: no-repeat;
	padding: 0 0 0 4px;
}
.b-tabbox .b-tabselector-right {
	background-image: url(tab_right.gif);
	background-position: 100% -22px;
	background-repeat: no-repeat;
	padding: 0 5px 0 0;
	height: 22px;
}
.b-tabbox .b-tabselector-mid {
	background-image: url(tab_mid.gif);
	background-position: 0 -22px;
	background-repeat: repeat-x;
	padding: 6px 12px 0 12px;
	height: 22px;
}
.b-tabbox .b-tabselector-text {
	overflow: hidden;
	white-space: nowrap;
}
.b-tabbox .b-tabselector-first .b-tabselector-left {
	background-position: 0 -22px;
	padding: 0 0 0 5px;
}
/* Hovered state */
.b-tabbox .b-tabselector-hov .b-tabselector-left 		{background-position: -1px -44px;}
.b-tabbox .b-tabselector-firstHov .b-tabselector-left 	{background-position: 0 -44px; }
.b-tabbox .b-tabselector-hov .b-tabselector-right,
.b-tabbox .b-tabselector-firstHov .b-tabselector-right	{background-position: 100% -44px;}
.b-tabbox .b-tabselector-hov .b-tabselector-mid,
.b-tabbox .b-tabselector-firstHov .b-tabselector-mid	{background-position: 0 -44px;}
/* Selected state */
.b-tabbox .b-tabselector-sel .b-tabselector-left 		{background-position: -1px 0;}
.b-tabbox .b-tabselector-firstSel .b-tabselector-left 	{background-position: 0 0;}
.b-tabbox .b-tabselector-sel .b-tabselector-right,
.b-tabbox .b-tabselector-firstSel .b-tabselector-right	{background-position: 100% 0;}
.b-tabbox .b-tabselector-sel .b-tabselector-mid,
.b-tabbox .b-tabselector-firstSel .b-tabselector-mid	{background-position: 0 0;}
/* Focus indicator */
.b-tabbox .b-tabselector-focus-border-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	padding: 6px 12px 3px 12px;
}
.b-tabbox .b-tabselector-focus-border {
	border-width: 1px;
	border-color: #aaaaaa;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.b-tabbox .b-tabselector-focus .b-tabselector-focus-border {
	border-style: dotted;
}
/* Disabled state */
.b-tabbox .b-tabselector-disabled {
	color: #cccccc;
}
