.afterBodyTabContainer
{
	position: relative;
	display: block;
	top: 0px;
	width: 100%;
	margin: 60px auto;
	/*background-color: #005ABE;*/
	background-color: #FFFFFF;
	height: 40px;
}

.afterBodyTabContainerHolder
{
	position: relative;
	display: block;
	top: 0;
	float: inherit;
	max-width: 1200px;
	width: calc(100% - 40px) !important;
	min-height: 40px;
	margin: auto;
}

.afterBodyTabContainer.menuIconViewShowing .afterBodyTabContainerHolder
{
    margin: 60px auto auto 95px !important;
    width: calc(100% - 110px);
}

.tabContainer
{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.tabMenuContainer
{
	float: left;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

.tabMenu
{
	position: relative;
	float: left;
	position: block;
	min-width: 100%;
	min-height: 40px;
	/*background-color: #005ABE;*/
	background-color: #FFFFFF;
	white-space: nowrap;
	overflow-x: auto;
}

.tabItem
{
	position: relative;
	display: inline-block;
	width: auto;
	height: 100%;
	margin: auto;
	padding: 0% 1% 0% 1%;
	line-height: 40px;
	flex: 0;
	cursor: pointer;
	border-radius: 0 !important;
	/*color: #F1F1F1;*/
	color: rgba(0, 90, 190, 1);
	overflow: hidden;
	white-space: nowrap;
	white-space: normal;
}

.tabScroll
{
	position: relative;
	display: block;
	float: left;
	overflow: hidden;
	max-width: 100%;
	width: 100%;
	height: auto;
}

.tab
{
	position: relative;
	display: inline-block;
	float: left;
	
	left: 0;
	top: 0;
	
	min-width: 0%;
	max-width: 0%;
	height: 100%;
	
	opacity: 0;
	overflow: hidden;
}

span.selectedTabUnderline
{
	position: absolute;
	display: block;
	width: 0%;
	height: 3px;
	left: 0px;
	bottom: 0px;
	/*background-color: #F1F1F1;*/
	background-color: rgba(0, 90, 190, 1);
	
	-webkit-transition: all 120ms ease-in-out;
	-moz-transition: all 120ms ease-in-out;
	-ms-transition: all 120ms ease-in-out;
	-o-transition: all 120ms ease-in-out;
	transition: all 120ms ease-in-out;
}

.tab.shown
{
	overflow-x: auto !important;
	overflow-y: hidden !important;
	
	min-width: 100% !important;
	max-width: 100% !important;
	opacity: 1 !important;
}

.tabContent
{
	position: relative;
	float: left;
	display: block;
	max-width: calc(100% - 30px);
	margin: 10px 5px;
	padding: 10px;
	overflow: auto;
	white-space: nowrap;
}

