@charset "ISO-8859-1";

.body {
	font-family: Arial, Helvetica, sans-serif;
}

/*
 *  Table Styles
 */
.cellLink {
	text-decoration: underline;
	text-decoration-color: blue;
	color: blue;
	cursor: pointer;
}

.cellSelectedRoot {
	background-color: rgb(243, 255, 221);
	background-size: cover;
	box-shadow: inset 0 0 0 2000px rgb(243, 255, 221);
}

.cellSelected {
	background-color: rgb(255, 255, 128);
	background-size: cover;
	box-shadow: inset 0 0 0 2000px rgb(255, 255, 128);
}

.borderTop {
	border-top: thin solid black;
}

.borderBottom {
	border-bottom: thin solid black;
}

.borderLeft {
	border-left: thin solid black;
}

.borderRight {
	border-right: thin solid black;
}

.cellEditable {
	background-color: #ffffff;
	padding: 3px;
}

.cellEdited {
	background-color: #e6fff3;
	padding: 3px;
	border-style: dashed;
}

.cellError {
	background-color: #ffcccc;
	padding: 3px;
}

.formError {
	background-color: #ffcccc;
	padding: 3px;
}

.errorDiv {
	background-color: #ffcccc;
	padding: 3px;
	border-style: dashed;
}

/**
 * Style for a div containing an AUI table 
 */
.auiTableDiv {
	overflow: auto;
	padding: 15px
}

.sibitH1 {
	font-size: x-large;
}

.sibitH1LinkLeft {
	font-size: medium;
	vertical-align: middle;
	margin-left: auto;
}

.sibitH1LinkRight {
	font-size: medium;
	vertical-align: middle;
	margin-right: auto;
}

.tabTitle {
	border-bottom: 2px solid #b3ccff;
	font-size: large;
}

.sbTabBorder {
	border-style: solid;
	border-width: 1px;
	border-color: #b3ccff;
}

/* full screen modal classes*/
.XXXfullScreenModal {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 101;
	background-color: #FFF;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.5s, visibility 0s 0.5s;
}

/* full screen with display none default*/
.XXXfullScreen {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 101;
	background-color: #FFF;
	display: none;
	transition: opacity 0.5s, visibility 0s 0.5s;
}

.XXXfullScreenModal.active {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.5s;
}

/** 
 * fixed headers  and footers
 * https://stackoverflow.com/questions/21168521/table-fixed-header-and-scrollable-body
 */
.tableFixHead {
	overflow: auto;
}

.tableFixHead thead th {
	position: sticky;
	top: 0;
}

.tableFixHead tfoot tr td {
	position: sticky;
	bottom: 0;
}

.sb-flex-container {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	height: 100%;
	width: 100%;
}

/* Style the tab */
.tab {
 /* overflow: hidden;*/
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: .5em .5em;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}