body{
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.5;
	color: #000;
	background-color:#F4F4F4;
}

iframe{
	background-color:white;
	border: none;
	margin:0;
}

p{
	color: #000;
}

div.explain{
	margin-left:12.5%;
	margin-right:12.5%;
	padding:2px;
	text-align:left;
	font-size: 0.8em;
	line-height: 1em;
	background-color:#F4F4F4;
	-webkit-user-select: none; /* Safari */        
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+/Edge */
	user-select: none; /* Standard */
}

div.explain:hover{
	cursor: pointer;
}

div.explain:active{
	font-size: 2em;
}

h1 {
	color: #000;
	text-align:center;
	font-weight: 500;
	line-height: 1.2;
	margin-top: 0;
	box-sizing: border-box;
	vertical-align: text-bottom;
}


.clicktable{
	font-size: 0.7rem;
	text-align:center;
}

.clicktable td:hover{
	cursor: pointer;
	transform: scale(1.05);
 	transition: all 0.3s;
}

.clickabletoken:hover{
	text-decoration: underline;
}

div.iframediv{
	margin-top:5px;
	margin-left:5%;
	margin-right:5%;
	text-align:right;
}

button.iframebutton:hover {
	background-color:#142A70;
	color:white;
}

button.iframebutton {
	background-color:white;
}

div.header{
	background-color:#142A70;
	padding:10px;
	z-index: 2;
}

div.header> table{
	width:100%;
	color:white;
}

div.header> table > tbody > tr{
}

div.header> table > tbody > tr >td{
	text-align:center;
	color:white;
	font-size: 0.8rem;
}

div.header> table > tbody > tr >td >a{
	width:20%;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	font-size: 0.78rem;
}

.optionmenu {
	width: 75%;
	background-color:white;
	margin-bottom:5px;
}

.multiiframe {
	text-align:center;
	width: 100%;
	margin-bottom:5px;
	border-spacing: 2px;
	background-color:lightgray;
}

.slider {
	-webkit-appearance: none;
	appearance: none;
	width: 90%;
	height: 25px;
	background: #142A70;
	outline: none;
	opacity: 0.7;
	-webkit-transition: .2s;
	transition: opacity .2s;
}

.slider:disabled {
	background: gray;
}

.slider:hover:enabled {
	opacity: 1;
}

.slider::-webkit-slider-thumb {
	-webkit-appearance: none; 
	appearance: none;
	width: 25px;
	height: 25px;
	background: black;
	cursor: pointer;
}

.slider::-moz-range-thumb {
	width: 25px;
	height: 25px;
	background: black;
	cursor: pointer;
}

#logdicemin::-moz-range-progress {
  background-color: #007377; 
}
#logdicemin::-moz-range-track {  
  background-color: #d3d3d3;
}

#logdicemax::-moz-range-progress {
  background-color: #d3d3d3; 
}
#logdicemax::-moz-range-track {  
  background-color: #007377;
}

/*Chrome*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
#logdicemin,#logdicemax{
	overflow: hidden;
	-webkit-appearance: none;
	background-color: #d3d3d3;
	cursor: ew-resize;
}

#logdicemin::-webkit-slider-thumb {
	box-shadow: -500px 0 0 500px darkgray;
}

#logdicemax::-webkit-slider-thumb {
	box-shadow: 500px 0 0 500px darkgray;
}


.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}
input {
  border: 1px solid transparent;
  background-color: #f1f1f1;
  padding: 10px;
  font-size: 16px;
}
input[type=text] {
  background-color: #f1f1f1;
  width: 100%;
}
input[type=submit] {
  background-color: DodgerBlue;
  color: #fff;
}
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 2px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: #2266bb !important;
  color: #ffffff;
}
