<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset 'utf-8';

/**
 * @copyright Copyright (C) 2006 Andrew Schmadeke. All rights reserved.
 * @package Focus/Finance
 * This package can be modified by the licencee, but the license is non-transferrable.
 */

/* Tab Container
*******************************************************************************/
.tabs {
	display: none;
}

.tab-container {
	display: block;
	position: relative;
	margin: 10px;
	border: 1px solid #37A;
	border-radius: 5px;
	background: #FFF;
	box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
}

.tab-container:after {
	content: '';
	display: block;
	height: 0;
	clear: both;
}

.tab-labels {
	display: block;
	position: relative;
	min-height: 26px;
	line-height: 26px;
	font-size: 0;
	background: #6AD;
	overflow: hidden;
}

/* Tab Labels
*******************************************************************************/
.tab-label {
	position: relative;
	z-index: 3;
	display: inline-block;
	vertical-align: top;
	height: 26px;
	line-height: 26px;
	margin: 0 5px 0;
	padding: 0 5px;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	color: #FFF;
}

.tab-label.active {
	display: inline-block !important;
	background: #FFF;
	border-color: #6AD;
	color: #37A;
	cursor: default;
	box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.25);
}


/* Tab Content
*******************************************************************************/
.tab {
	display: none;
}

.tab-content {
	position: relative;
	z-index: 2;
}

.tab-content.active {
	display: block;
}


/* Loading
*******************************************************************************/
.tabs.loading {
	min-height: 150px;
}

.tabs.loading &gt; .tab-loading {
	display: block;
}

.tab-loading {
	position: absolute;
	display: none;
	z-index: 99999;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 5px;
}

.tab-loading:before,
.tab-loading:after {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.tab-loading:before {
	background: #000;
	-ms-filter: "Alpha(Opacity=25)";
	opacity: 0.25;
}

.tab-loading:after {
	background: url(../../assets/img/loading_bar.gif) center no-repeat;
}
</pre></body></html>