/* monospaced font for checksums */
.monoFont {
  font-family: "Lucida Console", "Courier New", monospace;
  font-size: 12px;
}

.centerTrans {
  margin: auto;
  width: 70%;
  text-align: center;
  /*border: 1px solid black;*/
}
  

/* Translation table */
.transTable {
  width: 100%;
  border: 1px solid black;
  border-collapse: collapse;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* JavaScript off warning bar */
.noJSwarning {
  margin: auto;
  width: 90%;
  text-align: center;
  background: #FF0000;
  color: white;
  padding: 5px;
}

/* JavaScript off text warning */
.noJStext {
  margin: auto;
  width: 70%;
  text-align: center;
  color: red;
  padding: 5px;
}

/* news div */
.newsDiv {
  width: 70%;
  margin: auto;
/*  padding: 10px; */
  clear: both;
}

.newsTable {
/*  width: 70%; */
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  border: double;
  padding: 10px;
  background-color: #eefff0;
}

.newsHeading {
  text-align: center;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

/* left align div */
.leftDiv {
  text-align: left;
  width: 100%;
  border: 1px solid black;
  padding: 10px;
} 

/* center div*/
.centerDiv {
  margin: auto;
  width: 70%;
  text-align: center;
  clear: both;
}

.langDiv {
  margin: auto;
  padding: 0px;
  /*border: 1px solid black;*/
  width: 100%;
  text-align: center;
  vertical-align: top;
  /*overflow: hidden;*/
  overflow-y: scroll;
  overflow-x: hidden;
}

/* Center table */
.centerTable {
  margin: auto;
  width: 70%;
  clear: both;
}

/* add tabs for OS's */
* {box-sizing: border-box}
body {
width: 100%;
text-align: left;
}

/* Adjust the height/width for tab and tabcontent window in these next two classes */
/* Style the tab */
.tab {
  float: left;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  width: 23%;
  height: auto;
}

/* Style the tab content */
.tabcontent {
  float: left;
  padding: 0px 12px;
  /* border: 1px solid #ccc; */ 
  width: 77%;
  height: auto;
}

/* Style the buttons inside the tab */
.tab button {
  display: block;
  background-color: white;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 17px;
}

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

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

