.tab {
	display: flex; 
	flex-direction: column; 
	justify-content: flex-start; 
	align-items: flex-start; 
	width: 100%; 
	height: calc( 100% - 130px - 24px ); 
	position: relativa; }
	.tab-toolbar {
		display: flex; 
		flex-direction: row;
		justify-content: flex-start; 
		align-items: center; 
		height: 30px; 
		width: 100%; 
		border-bottom: 1px solid lightslategray; 
		font-family: Arial, Helvetica, sans-serif; 
		font-size: 11px; }
		/*-----TAB-------*/
	.tab-selector {
		height: 100%;
		padding: 3px 15px; 
		border-top-left-radius: 4px;
		border-top-right-radius: 4px;
		color: rgba(80,80,80,1);
		cursor: pointer; }
	.tab-selector-current {
		text-shadow: 1px 1px 1px  hsl(19, 97%, 15%)!important;
		color: white;
		background-color: hsl(19, 97%, 60%)!Important;
		border-bottom: 2px solid hsl(19, 97%, 5%);	}
	.tab-page {
		position: relative;
		display: flex; 
		flex-direction: column; 
		justify-content: flex-start; 
		align-items: flex-start; 
		overflow: auto;
		width: 100%; 
		height: calc( 100% - 30px ); 
		padding: 20px; 
		border: 1px solid hsl(19, 97%, 60%); 
		box-shadow: 2px 2px 2px rgba(140,140,140,.9); 
		background-color: rgb(194, 145, 105);
		border-top-right-radius: 4px;
		border-bottom-left-radius: 4px;
		border-bottom-right-radius: 4px; }