| /* Mini3  c s s */
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #454545;
}
.logo {
    width: 200px;
    /*height: 200px;*/
    /* this is a real image encoded via base64 text, an awesome technology! check https://varvy.com/pagespeed/base64-images.html for more info */
    /*background:  url('data:image/png;base64,iVBORw0KGgoAA...QmCC');*/
    margin: 20px 30px;
}
table, th, td {
    border: 1px solid navy;
    border-collapse: collapse;
}
.table-content-class {
    overflow-y: hidden;  // auto; or scroll; to allow vertical scrolling  hidden; disables
    overflow-x: auto;    // horizontal scroll 
}
.navigation {
    margin-left: 33px;
}
.navigation a {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    border: 1px solid #454545;
    color: #454545;
    background: transparent;
}
.navigation a:hover {
    background: #454545;
    color: #fff;
}
.container {
    border: 1px solid #454545;
    border-radius: 3px;
    padding: 20px;
    margin: 33px;
}
.container a {
    color: #454545;
}
.container table {
    font-size: 16px;
    margin-top: 20px;
}
.container table thead td {
    background-color: #f5f5f5;
    padding: 4px 10px;
    border: 1px solid navy;
    border-collapse: collapse;
}
.container table tbody td {
    padding: 4px 10px;
}
.container .box {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 30px;
}
.container input {
    background-color: #f5f5f5;
    border: 0;
    padding: 5px 10px;
}
.container input[type="submit"] {
    background-color: #ccc;
    cursor: pointer;
}
.container input[type="submit"]:hover {
    background-color: #222;
    color: #fff;
}
.container button {
    background-color: #ccc;
    border: 0;
    padding: 5px 10px;
    cursor: pointer;
}
.container button:hover {
    background-color: #222;
    color: #fff;
}
.footer {
    border-radius: 3px;
    padding: 20px;
    margin: 33px;
    text-align: right;
    font-size: 14px;
}
.footer a {
    color: #454545;
}
pre, code, kbd, samp {
  text-align:left;
  white-space: pre-wrap;
  border-style: solid; border-color: lightblue; border-width: 1px 3px 3px 1px; 
  padding: 1px 8px;
  background: white;
  margin-left: 5px;
  margin-right: 5px;
  color:black;
  font-family: monospace,courier-prime,'Courier New',Courier;
  font-size: .93em;
  display: block;
  max-width: 100%;
}
.pgBreakAfter {
  cursor: text;
  filter: Gray;
  page-break-after: always;
}
.pgBreakBefore {
  cursor: text;
  filter: Gray;
  page-break-before: always;
}
 |