html,body {
   margin: 0;
   padding: 0;
   position: absolute !important;
   width: 100% !important;
   height: 100% !important;
   max-height: 100%;
   max-width: 100%;
   min-width: 200px;
   min-height: 200px;
   font-family: sans-serif;
   overflow: hidden;
}
.menu {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 40px;
   background: #ddd;
   border-right: 1px solid #888;
}

#data td {
   font-size: 10pt;
}

.link {
  color: #33a;
  cursor: pointer;
}

.help {
  padding: 0;
  margin: 0;
  font-size: 12px;
}

.help p {
  padding: 0;
  margin: 0;
  font-size: 12px;
}

/*


div.callout {
	background-color: #ff0;
	background-image: -moz-linear-gradient(top, #ff0, #ff0);
	position: relative;
	color: #333;
	padding: 10px;
	border-radius: 3px;
}
.callout::before {
	content: "";
	width: 0px;
	height: 0px;
	border: 0.8em solid transparent;
	position: absolute;
}
.callout.left::before {
	right: -20px;
	top: calc( 50% - 13px );
	border-left: 10px solid #ff0;
}
.callout.right::before {
	left: -20px;
	top: calc( 50% - 13px );
	border-right: 10px solid #ff0;
}



*/



.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 22px;
}

.switch input {display:none;}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #888;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #888;
}

input:focus + .slider {
  box-shadow: 0 0 1px #888;
}

input:checked + .slider:before {
  -webkit-transform: translateX(28px);
  -ms-transform: translateX(28px);
  transform: translateX(28px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 18px;
}

.slider.round:before {
  border-radius: 50%;
}




.cslider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #888;
  -webkit-transition: .4s;
  transition: .4s;
}

.cslider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .cslider {
  background-color: green;
}

input:focus + .cslider {
  box-shadow: 0 0 1px #888;
}

input:checked + .cslider:before {
  -webkit-transform: translateX(28px);
  -ms-transform: translateX(28px);
  transform: translateX(28px);
}

/* Rounded sliders */
.cslider.round {
  border-radius: 18px;
}

.cslider.round:before {
  border-radius: 50%;
}



.collapsible {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
  background-color: #ccc;
}

.button {
  font: 11px Arial;
  text-decoration: none;
  background-color: #EEEEEE;
  color: #333333;
  padding: 4px 6px 2px 6px;
  border-top: 1px solid #CCCCCC;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  border-left: 1px solid #CCCCCC;
  cursor: pointer;
}

/* Style the collapsible content. Note: hidden by default */
.collapsiblecontent {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}
.alteringtable {
   border-collapse: collapse;
}

.alteringtable td {
   padding: 5px;
}

.alteringtable tr:nth-child(odd) td {
   background: white;
}
.alteringtable tr:nth-child(even) td {
   background: #eee;
}

.alteringtable th {
  padding: 5px;
  text-align: left;
  background-color: #9999bb;
  color: white;
  font-weight: normal;
  font-size: 10pt;
}
.sametable {
  border-collapse: collapse;
}

.sametable td {
  padding: 5px;
}

.sametable th {
 padding: 5px;
 text-align: left;
 background-color: #9999bb;
 color: white;
 font-weight: normal;
 font-size: 10pt;
}

.smalltable {
  border-collapse: collapse;
  background: none;
}

.smalltable td {
  padding: 0 5px 0 0;
}
.smalltable tr:nth-child(odd) td {
  background: none;
}
.smalltable tr:nth-child(even) td {
  background: none;
}

.textObject p {
  margin: 0;
}

/*
.pointer {
   width: 50px;
   height: 14px;
   position: relative;
   background: red;
}
.pointer:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 7px solid white;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.pointer:before {
  content: "";
  position: absolute;
  right: -7px;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 7px solid red;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
*/

.easyInput {
   min-width: 50px;
}

.easyInput:focus {
   outline: 1px solid #1d68cd;
}



.suggest {
  position: absolute;
  background-color: #FFFFFF;
  border: 1px solid #CCCCFF;
  width: 252px;
}
.suggest div {
  padding: 1px;
  display: block;
  width: 250px;
  overflow: hidden;
  white-space: nowrap;
}
.suggest div.select{
  color: #FFFFFF;
  background-color: #3366FF;
}
.suggest div.over{
  background-color: #99CCFF;
}

.CodeMirror pre.CodeMirror-placeholder { color: #999; }

.textinput {
  -webkit-transition: 1s;
  -webkit-transition-property: height;
}

.labelinput-div {
  position: relative;
  margin-top: 5px;
}
.labelinput-div label {
  position: absolute;
  top: -10px;
  left: 5px;
  padding: 2px;
  z-index: 1;
}
.labelinput-label {
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: .2rem;
}
.labelinput-label:after {
  content: " ";
  background-color: #fff;
  width: 100%;
  height: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.labelinput-form-control {
  box-shadow: none !important;
}

/* Common styles for input, select, and button elements */
.common-style {
  font-size: 14px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  color: #333;
  box-shadow: none;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

select.common-style {
  padding: 4px;
}

input.common-style:focus {
  border-color: #1d68cd;
  box-shadow: 0 0 5px rgba(29, 104, 205, 0.5);
}

/* Apply the common styles to input, select, and button elements */
input.common-style,
select.common-style,
button.common-style {
  display: inline-block;
  width: auto;
  margin: 5px 0;
}

/* Button click animation */
button.common-style:active {
  transform: scale(0.98);
  border-color: black;
}

