@media all
{
	.phi4-tabbox
	{

		display: flex;
		flex-direction: column;
		height: 100%;
		width: 100%;
	}
	.phi4-tabs
	{
		display: flex;	
		list-style: none;
		padding-left: 0px;
		margin:	0px;
		padding: 0px;
		height: 25px;
		position: absolute;
		top: 0px;
		left: 0px;
	}

	.phi4-tab
	{
		font-family: Futura PT, Helvetica,Arial,sans-serif;
		font-size: 16px;			
		color: #666666;
		text-decoration: none;	
		padding-top: 2px;
		padding-bottom: 2px;
		padding-left: 5px;
		padding-right: 5px;
		background-color: #f0f0f0;
		border: 1px solid #cccccc;
		border-top-left-radius: .2em;
		border-top-right-radius: .2em;
		cursor: pointer;
	}
	.phi4-tab:hover
	{
		background-color:rgba(0,121,237,.1);	
		border: 1px solid rgba(0,121,237,.3);	
	}
	.phi4-tab-current
	{
		background-color: #ffffff;
		border-bottom: #ffffff;	
	}
	.phi4-tab-current:hover
	{
		background-color: #ffffff;
		border: 1px solid #cccccc;		
		border-bottom: #ffffff;	
		cursor: default;
	}	
	.phi4-tab-panes
	{
		position: relative;
		flex: 1 0 auto;
		display: flex;
		width: 100%;
	}
	.phi4-tab-pane
	{
		position: absolute;
		top:0px;
		left: 0px;
		background-color: #ffffff;
		flex: 1 0 auto;
		width: 100%;
		height: 100%;
		padding: 0px;		
	}
	.phi4-tab-close
	{
		color: #666666;
		font-size: 10px;
		margin-left: 4px;
		border: 2px none;
	}
	.phi4-tab-close:hover
	{
		background-color: #eeeeee;
	}
	.phi4-tab-no-close
	{
		visibility: hidden;
	}	
	
	.phi4-tab-scroller
	{
		position: relative;
		padding-left: 0px;
		margin:	0px;
		padding: 0px;
		height: 25px;
		width: 100%;
/*		border: 1px dotted red;		*/
	}	
	
	.phi4-tab-scroll-left
	{
		float: left;
		font-family: Font Awesome 5 Pro;
		font-size: 16px;
		color: #666666;
		width: 12px;
		height: 25px;
		padding-top: 2px;
		cursor: pointer;
	}
	.phi4-tab-scroll-right
	{
		float: right;
		font-family: Font Awesome 5 Pro;
		font-size: 16px;
		color: #666666;
		width: 12px;
		height: 25px;
		padding-top: 2px;		
		cursor: pointer;		
	}
	.phi4-tab-scroller-area
	{
		position: relative;
		float: left;
		min-width:200px;
		overflow-x: hidden;
		height: 25px;
/*		border: 1px dotted red; */
		
	}
	
}