body {
  font-family: 'Open Sans', Tahoma, Arial, sans-serif;
  margin: 0;
}
#topBar {
  z-index: -1;
  margin: 0;
  top: 0;
  width: 100%;
  height: 80px;
  position: absolute;
  background-color: #f7f7f7;
}
#container {
  max-width: 920px;
  margin: 26px auto;
  line-height: 1.6em;
  color: #666;
}
h2 {
  color: #222;
  font-size: 1.7em;
}
table {
  border-collapse: collapse;
}
table th {
  color: #333;
}
table th, td {
  border: 1px solid #eee;
  padding: 7px 10px;
}
table th {
  background-color: #f7f7f7;
}
.intro {
  padding: 80px 0 30px 0;
}
.intro_next {
  padding: 10px 0 30px 0;
}
.fa {
  color: #235EA0;
  font-size: 1.8em;
  padding: 4px 0 2px 6px;
}
a {
  text-decoration: none;
  color:#1053af;
}
@media (max-width:770px) {
  #container {
    max-width: 100%;
    width: auto;
    margin-left: 6px;
    margin-right: 6px;
  }
}

select {
  font-size: 24px;
  padding: 0 10;
  margin: 5px;
  border: 1px solid #ddd;
  background: #f7f7f7;
  appearance: none;
  width: auto;
  _font-family: monospace;
  border-radius: 3px;
  
}

pre {
  padding-left:15px;
  border:1px solid #eee;
}

.tabulator {
  border:1px solid #eee;
}
.tabulator-tableHolder{
  overflow:visible !important;
}

.tabulator-col-content{
  border-left:1px solid #eee;
  background:#f7f7f7 !important;
  padding-top:7px !important;
}
.tabulator-col-content:hover{
  background:#f7f7f7 !important;
}
.tabulator-col-title{
  _text-transform: uppercase;
  font-size:16px;
  font-weight:bold;
  color:#333;
}
.tabulator-header{
  border:none !important;
  background:#f7f7f7 !important;
  height:40px;
}

.tabulator-row{
  _border-bottom:1px;
  border-top:1px solid #eee;
  margin-bottom:-1px;
}
.tabulator-row:hover{
  background:none !important;
  cursor:default !important;
}
.tabulator-arrow{
  display:none !important;
}



#rcSwitch .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #444;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: -30px;
  right: 110%;
  border:1px solid #eee;
}

#rcSwitch .tooltiptext::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #444;
}
#rcSwitch:hover .tooltiptext {
  visibility: visible;
} 

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
  float: right;
  margin-top:6px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

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

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

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

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

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

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

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