/* General settings for the entire page */

html {
  height: 100%;
}

body {
  font-family: 'Saira', sans-serif;
  font-size: 16px;
  font-weight: normal;
  background-color: #ffffff;
  color: #000000;
  min-width: 800px;
  overflow: auto;
  padding: 0px;
  margin: 0px;
  display: flex;
  height: 100%;
}

body * {
  box-sizing: border-box;
}

div {
  margin: 0;
  padding: 0;
  border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  padding: 0px;
  color: #ff0000;
}

h1 {
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 0.5em;
  margin-top: 1em;
}

h2 {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 0.5em;
  margin-top: 1em;
}

h3 {
  font-size: 1.15em;
  font-weight: bold;
  margin-bottom: 0.5em;
  margin-top: 1em;
}

h4 {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 0.5em;
  margin-top: 1em;
}

h5 {
  font-size: 1.05em;
  font-weight: bold;
  margin-bottom: 0.5em;
  margin-top: 1em;
}

h6 {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 0.5em;
  margin-top: 1em;
}



input {
  font-size: 1em;
  border: 3px solid #808080;
  margin: 8px;
}


select {
  font-size: 1em;
  border: 3px solid #808080;
  margin: 0px 8px 0px 8px;
  background-color: white;
}

pre {
   font-family: 'Roboto Mono', monospace;
}

/* The header across the top of the page */

div.logo {
  margin-bottom: 1em;
}

img.logo {
  vertical-align: middle;
  margin-right: 8px;
}

div.header {
  background-color: white;
  display: flex;
}


/* The page title centered at the top of each page */
div.title {
  font-size: 2em;
  line-height: 1.2em;
  font-weight: bold;
  font-style: italic;
  text-align: left;
  padding: 8px 8px 8px 8px;
  color: #ff000d;
  vertical-align: bottom;
  width: 100%;
}

div.title small {
  font-size: 0.5em;
}


/* The login status message in the top right-hand corner */
div.status {
  text-align: right;
  font-weight: bold;
  white-space: nowrap;
  flex-shrink: 0;
}

/* The main menu bar that appears at the top of the page beneath
** the header */

div.mainmenu {
  font-size: 1em;
  line-height: 1.5em;
  text-align: left;
  background-color: #303030;
  padding: 1em;
  margin: 0px;
  border: 0px;
  color: #d0d0d0;
  overflow-y: auto;
  overflow-x: hidden;
  flex-shrink: 0;
}

div.mainmenu a, div.mainmenu a:visited {
  color: #d0d0d0;
  font-weight: bold;
}

div.mainmenu a:hover {
  color: red;
}


/* The submenu bar that *sometimes* appears below the main menu */
div.submenu {
  padding: 0px;
  margin: 0px 0px 8px 0px;
  text-align: left;
}

div.submenu a, div.submenu a:visited {
  color: #0000ff;
  font-weight: normal;
  display: inline;
  margin-right: 1em;
}

label {
  color: #0000ff;
  text-decoration: underline;
}

.submenuctrl {
  margin: 8px 8px 8px 0px;
}

.submenuctrl input {
  border: 3px solid #808080;
}






/* All page content from the bottom of the menu or submenu down to
** the footer */

div.paper {
  padding: 0em 1em;
  flex-shrink: 1;
  flex-grow: 1;
  overflow-y: auto;
}

/* Some pages have section dividers */
div.section {
  margin-bottom: 1em;
  margin-top: 1em;
  padding: 4px 12px 4px 12px;
  font-weight: bold;
  background-color: #c0c0c0;
  color: #ff000d;
  white-space: nowrap;
}

div.sectionmenu a {
  margin-right: 8px;
  padding: 0px 8px;
}

/* The "Date" that occurs on the left hand side of timelines */
div.divider {
  background: #e0e0e0;
  font-weight: normal;
  padding: 2px 6px;
  float: left;
  clear: left;
  white-space: nowrap;
}

/* The footer at the very bottom of the page */
div.footer {
  margin-top: 1em;
  text-align: left;
  background-color: white;
  color: #ff000d;
  font-weight: bold;
  font-size: 0.9em;
}

/* Hyperlink colors in the footer */
div.footer a { color: #000080; }
div.footer a:link { color: #000080; }
div.footer a:visited { color: #000080; }

/* verbatim blocks */
pre.verbatim {
   background-color: #f5f5f5;
   padding: 0.5em;
   white-space: pre-wrap;
}

/* The label/value pairs on (for example) the ci page */
table.label-value th {
  vertical-align: top;
  text-align: right;
  padding: 0.2ex 2ex;
}

td {
  padding: 2px 2px 2px 2px;
} 

p{
   text-indent: 32px;
   text-align: justify;
}

textarea {
   border: 3px #808080 solid;
   font-family: 'Roboto Mono', monospace;
   width: 100%;
}


span.register {
  margin: 0px;
  padding: 2px;
  background-color: #FFCCFF;
}

span.variable {
  margin: 0px;
  padding: 2px;
  background-color: #CCFFFF;
}

span.flag {
  margin: 0px;
  padding: 2px 2px 2px 2px;
  background-color: #FFFFCC;
}

span.constant {
  margin: 0px;
  padding: 2px 2px 2px 2px;
  background-color: #CCFFCC;
}

span.procedure {
  margin: 0px;
  padding: 2px 2px 2px 2px;
  font-weight: bold;
}

p.note {
  margin: 0px;
  padding: 2px 2px 2px 26px;
  background-color: #FFFFCC;
  border: 1px solid #FFCCCC;
}

p.todo {
  margin: 0px;
  padding: 2px 2px 2px 26px;
  background-color: #FFCCCC;
  border: 1px solid #FF9999;
}

pre.fasm-code {
  margin: 4px 4px 4px 20px;
  padding: 2px 6px 2px 6px;
  max-width: 700px;
  background-color: #F3F3F3;
  border: 1px dashed #C0C0C0;
  font-size: 9pt;
}

hr {
  background-color:#ff000d;
  color:#ff0000;
  height:3px;
  clear:both;
}

table.index {
  margin: 1em;
  padding: 1em;
  line-height: 200%;
}


/* format for labels on ticket display page */
td.tktDspLabel {
  text-align: right;

}

/* format for values on ticket display page */
td.tktDspValue {
  text-align: left;
  vertical-align: top;
  background-color: #d0d0d0;

}

/* format for ticket error messages */
span.tktError {
  color: red;
  font-weight: bold;

}

/* format for example tables on the report edit page */
table.rpteditex {
  float: right;
  margin: 0;
  padding: 0;
  width: 125px;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;

}

/* Ticket report table formatting */
table.report {
  border-collapse:collapse;
  border: 1px solid #999;
  margin: 1em 0 1em 0;
  cursor: pointer;

}

/* format for example table cells on the report edit page */
td.rpteditex {
  border-width: thin;
  border-color: #000000;
  border-style: solid;

}

/* side-by-side diff display (column-based) */
table.sbsdiffcols {
  table-layout: fixed;
  width: 100%;
  border-spacing: 0px;
  font-size: 0.7em;
}

/* sbs diff table cell */
table.sbsdiffcols td {
  padding: 0;
  vertical-align: top;
}


table.sbsdiffcols td:nth-of-type(1) {
  width: 5%;
}

table.sbsdiffcols td:nth-of-type(2) {
  width: 42%;
}

table.sbsdiffcols td:nth-of-type(3) {
  width: 5%;
}

table.sbsdiffcols td:nth-of-type(4) {
  width: 5%;
}

table.sbsdiffcols td:nth-of-type(5) {
  width: 42%;
}


/* sbs diff pre block */
table.sbsdiffcols pre {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: inherit;
  background: inherit;
  color: inherit;
}

/* diff line number column */
div.difflncol {
  padding-right: 1em;
  text-align: right;
  color: #a0a0a0;
}

/* diff text column */
div.difftxtcol {
  overflow-x: scroll;
}

/* diff marker column */
div.diffmkrcol {
 padding: 0 1em;
}

/* changes in a diff */
span.diffchng {
  background-color: #c0c0ff;

}

/* added code in a diff */
span.diffadd {
  background-color: #c0ffc0;
}

/* deleted in a diff */
span.diffrm {
  background-color: #ffc8c8;
}

/* suppressed lines in a diff */
span.diffhr {
  display: inline-block;
  margin: .5em 0 1em;
  color: #0000ff;

}

/* line numbers in a diff */
span.diffln {
  color: #a0a0a0;

}


/***********************************************************
** All CSS above is supplied by the repository "skin".
** That which follows is generated automatically by Fossil
** to fill in needed selectors that are missing from the
** "skin" CSS.
***********************************************************/
div.sideboxTitle {
  display: inline;
  font-weight: bold;
}
div.sideboxDescribed {
  display: inline;
  font-weight: bold;
}
span.disabled {
  color: red;
}
table.timelineTable {
  border-spacing: 0px 2px;
}
.timelineDate {
  white-space: nowrap;
}
span.timelineDisabled {
  font-style: italic;
  font-size: small;
}
tr.timelineCurrent {
  padding: .1em .2em;
  border: 1px dashed #446979;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}
tr.timelineSelected {
  padding: .1em .2em;
  border: 2px solid lightgray;
  background-color: #ffc;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}
tr.timelineSelected td {
  border-radius: 0;
  border-width: 0;
}
tr.timelineCurrent td {
  border-radius: 0;
  border-width: 0;
}
span.timelineLeaf {
  font-weight: bold;
}
span.timelineHistDsp {
  font-weight: bold;
}
td.timelineTime {
  vertical-align: top;
  text-align: right;
  white-space: nowrap;
}
td.timelineGraph {
  width: 20px;
  text-align: left;
  vertical-align: top;
}
span.timelineCompactComment {
  cursor: pointer;
}
span.timelineEllipsis {
  cursor: pointer;
}
.timelineModernCell, .timelineColumnarCell, .timelineDetailCell {
  vertical-align: top;
  text-align: left;
  padding: 0.75em;
  border-radius: 1em;
}
.timelineModernCell[id], .timelineColumnarCell[id], .timelineDetailCell[id] {
  background-color: #efefef;
}
.timelineModernDetail {
  font-size: 80%;
  text-align: right;
  float: right;
  opacity: 0.75;
  margin-top: 0.5em;
  margin-left: 1em;
}
.tl-canvas {
  margin: 0 6px 0 10px;
}
.tl-rail {
  width: 18px;
}
.tl-mergeoffset {
  width: 2px;
}
.tl-nodemark {
  margin-top: 5px;
}
.tl-node {
  width: 10px;
  height: 10px;
  border: 1px solid #000;
  background: #fff;
  cursor: pointer;
}
.tl-node.leaf:after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 4px;
  height: 4px;
  background: #000;
}
.tl-node.sel:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 6px;
  height: 6px;
  background: red;
}
.tl-arrow {
  width: 0;
  height: 0;
  transform: scale(.999);
  border: 0 solid transparent;
}
.tl-arrow.u {
  margin-top: -1px;
  border-width: 0 3px;
  border-bottom: 7px solid #000;
}
.tl-arrow.u.sm {
  border-bottom: 5px solid #000;
}
.tl-line {
  background: #000;
  width: 2px;
}
.tl-arrow.merge {
  height: 1px;
  border-width: 2px 0;
}
.tl-arrow.merge.l {
  border-right: 3px solid #000;
}
.tl-arrow.merge.r {
  border-left: 3px solid #000;
}
.tl-line.merge {
  width: 1px;
}
.tl-arrow.warp {
  margin-left: 1px;
  border-width: 3px 0;
  border-left: 7px solid #600000;
}
.tl-line.warp {
  background: #600000;
}
span.tagDsp {
  font-weight: bold;
}
span.wikiError {
  font-weight: bold;
  color: red;
}
span.infoTagCancelled {
  font-weight: bold;
  text-decoration: line-through;
}
span.infoTag {
  font-weight: bold;
}
span.wikiTagCancelled {
  text-decoration: line-through;
}
div.columns {
  padding: 0 2em 0 2em;
  max-width: 1000px;
}
div.columns > ul {
  margin: 0;
  padding: 0 0 0 1em;
}
div.columns > ul li:first-child {
  margin-top:0px;
}
.columns li {
  break-inside: avoid;
}
.filetree {
  margin: 1em 0;
  line-height: 1.5;
}
.filetree > ul {
  display: inline-block;
}
.filetree ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.filetree ul.collapsed {
  display: none;
}
.filetree ul ul {
  position: relative;
  margin: 0 0 0 21px;
}
.filetree li {
  position: relative;
  margin: 0;
  padding: 0;
}
.filetree li li:before {
  content: '';
  position: absolute;
  top: -.8em;
  left: -14px;
  width: 14px;
  height: 1.5em;
  border-left: 2px solid #aaa;
  border-bottom: 2px solid #aaa;
}
.filetree li > ul:before {
  content: '';
  position: absolute;
  top: -1.5em;
  bottom: 0;
  left: -35px;
  border-left: 2px solid #aaa;
}
.filetree li.last > ul:before {
  display: none;
}
.filetree a {
  position: relative;
  z-index: 1;
  display: table-cell;
  min-height: 16px;
  padding-left: 21px;
  background-image: url(data:image/gif;base64,R0lGODlhEAAQAJEAAP\/\/\/yEhIf\/\/\/wAAACH5BAEHAAIALAAAAAAQABAAAAIvlIKpxqcfmgOUvoaqDSCxrEEfF14GqFXImJZsu73wepJzVMNxrtNTj3NATMKhpwAAOw==);
  background-position: center left;
  background-repeat: no-repeat;
}
ul.browser {
  list-style-type: none;
  padding: 10px;
  margin: 0px;
  white-space: nowrap;
}
ul.browser li.file {
  background-image: url(data:image/gif;base64,R0lGODlhEAAQAJEAAP\/\/\/yEhIf\/\/\/wAAACH5BAEHAAIALAAAAAAQABAAAAIvlIKpxqcfmgOUvoaqDSCxrEEfF14GqFXImJZsu73wepJzVMNxrtNTj3NATMKhpwAAOw==);
  background-repeat: no-repeat;
  background-position: 0px center;
  padding-left: 20px;
  padding-top: 2px;
}
ul.browser li.dir {
  background-image: url(data:image/gif;base64,R0lGODlhEAAQAJEAAP/WVCIiIv\/\/\/wAAACH5BAEHAAIALAAAAAAQABAAAAInlI9pwa3XYniCgQtkrAFfLXkiFo1jaXpo+jUs6b5Z/K4siDu5RPUFADs=);
  background-repeat: no-repeat;
  background-position: 0px center;
  padding-left: 20px;
  padding-top: 2px;
}
div.filetreeline {
  display: table;
  width: 100%;
  white-space: nowrap;
}
.filetree .dir > div.filetreeline > a {
  background-image: url(data:image/gif;base64,R0lGODlhEAAQAJEAAP/WVCIiIv\/\/\/wAAACH5BAEHAAIALAAAAAAQABAAAAInlI9pwa3XYniCgQtkrAFfLXkiFo1jaXpo+jUs6b5Z/K4siDu5RPUFADs=);
}
div.filetreeage {
  display: table-cell;
  padding-left: 3em;
  text-align: right;
}
div.filetreeline:hover {
  background-color: #eee;
}
table.login_out {
  text-align: left;
  margin-right: 10px;
  margin-left: 10px;
  margin-top: 10px;
}
div.captcha {
  text-align: center;
  padding: 1ex;
}
table.captcha {
  margin: auto;
  padding: 10px;
  border-width: 4px;
  border-style: double;
  border-color: black;
}
pre.captcha {
  font-size: 50%;
}
td.login_out_label {
  text-align: center;
}
span.loginError {
  color: red;
}
span.note {
  font-weight: bold;
}
span.textareaLabel {
  font-weight: bold;
}
table.usetupLayoutTable {
  outline-style: none;
  padding: 0;
  margin: 25px;
}
td.usetupColumnLayout {
  vertical-align: top
}
table.usetupUserList {
  outline-style: double;
  outline-width: 1px;
  padding: 10px;
}
th.usetupListUser {
  text-align: right;
  padding-right: 20px;
}
th.usetupListCap {
  text-align: center;
  padding-right: 15px;
}
th.usetupListCon {
  text-align: left;
}
td.usetupListUser {
  text-align: right;
  padding-right: 20px;
  white-space:nowrap;
}
td.usetupListCap {
  text-align: center;
  padding-right: 15px;
}
td.usetupListCon {
  text-align: left
}
div.ueditCapBox {
  margin-right: 20px;
  margin-bottom: 20px;
}
td.usetupEditLabel {
  text-align: right;
  vertical-align: top;
  white-space: nowrap;
}
span.ueditInheritNobody {
  color: green;
  padding: .2em;
}
span.ueditInheritDeveloper {
  color: red;
  padding: .2em;
}
span.ueditInheritReader {
  color: black;
  padding: .2em;
}
span.ueditInheritAnonymous {
  color: blue;
  padding: .2em;
}
span.capability {
  font-weight: bold;
}
span.usertype {
  font-weight: bold;
}
span.usertype:before {
  content:"'";
}
span.usertype:after {
  content:"'";
}
div.selectedText {
  font-weight: bold;
  color: blue;
  background-color: #d5d5ff;
  border: 1px blue solid;
}
p.missingPriv {
  color: blue;
}
span.wikiruleHead {
  font-weight: bold;
}
div.endContent {
  clear: both;
}
p.generalError {
  color: red;
}
p.tktsetupError {
  color: red;
  font-weight: bold;
}
p.xfersetupError {
  color: red;
  font-weight: bold;
}
p.thmainError {
  color: red;
  font-weight: bold;
}
span.thTrace {
  color: red;
}
p.reportError {
  color: red;
  font-weight: bold;
}
blockquote.reportError {
  color: red;
  font-weight: bold;
}
p.noMoreShun {
  color: blue;
}
p.shunned {
  color: blue;
}
span.brokenlink {
  color: red;
}
ul.filelist {
  margin-top: 3px;
  line-height: 100%;
}
ul.filelist li {
  padding-top: 1px;
}
span.modpending {
  color: #b03800;
  font-style: italic;
}
pre.th1result {
  white-space: pre-wrap;
  word-wrap: break-word;
}
pre.th1error {
  white-space: pre-wrap;
  word-wrap: break-word;
  color: red;
}
pre.textPlain {
  white-space: pre-wrap;
  word-wrap: break-word;
}
.statistics-report-graph-line {
  background-color: #446979;
}
.statistics-report-table-events th {
  padding: 0 1em 0 1em;
}
.statistics-report-table-events td {
  padding: 0.1em 1em 0.1em 1em;
}
.statistics-report-row-year {
  text-align: left;
}
.statistics-report-week-number-label {
  text-align: right;
  font-size: 0.8em;
}
.statistics-report-week-of-year-list {
  font-size: 0.8em;
}
#usetupEditCapability {
  font-weight: bold;
}
table.adminLogTable {
  text-align: left;
}
.adminLogTable .adminTime {
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}
.fileage table {
  border-spacing: 0;
}
.fileage tr:hover {
  background-color: #eee;
}
.fileage td {
  vertical-align: top;
  text-align: left;
  border-top: 1px solid #ddd;
  padding-top: 3px;
}
.fileage td:first-child {
  white-space: nowrap;
}
.fileage td:nth-child(2) {
  padding-left: 1em;
  padding-right: 1em;
}
.fileage td:nth-child(3) {
  word-wrap: break-word;
  max-width: 50%;
}
.brlist table {
  border-spacing: 0;
}
.brlist table th {
  text-align: left;
  padding: 0px 1em 0.5ex 0px;
  vertical-align: bottom;
}
.brlist table td {
  padding: 0px 2em 0px 0px;
  white-space: nowrap;
}
th.sort:after {
  margin-left: .4em;
  cursor: pointer;
  text-shadow: 0 0 0 #000;
}
th.sort.none:after {
  content: '\2666';
}
th.sort.asc:after {
  content: '\2193';
}
th.sort.desc:after {
  content: '\2191';
}
span.snippet>mark {
  background-color: inherit;
  font-weight: bold;
}
div.searchForm {
  text-align: center;
}
p.searchEmpty {
  font-style: italic;
}
.clutter {
  display: none;
}
table.forum_post {
  margin-top: 1ex;
  margin-bottom: 1ex;
  margin-left: 0;
  margin-right: 0;
  border-spacing: 0;
}
span.forum_author {
  color: #888;
  font-size: 75%;
}
span.forum_author::after {
  content: " | ";
}
span.forum_age {
  color: #888;
  font-size: 85%;
}
span.forum_buttons {
  font-size: 85%;
}
span.forum_buttons::before {
  color: #888;
  content: " | ";
}
span.forum_npost {
  color: #888;
  font-size: 75%;
}
table.forumeditform td {
  vertical-align: top;
  border-collapse: collapse;
  padding: 1px;
}
div.forum_body p {
  margin-top: 0;
}
td.form_label {
  vertical-align: top;
  text-align: right;
}
.debug {
  background-color: #ffc;
  border: 2px solid #ff0;
}
div.forumEdit {
  border: 1px solid black;
  padding-left: 1ex;
  padding-right: 1ex;
}
div.forumHier, div.forumTime {
  border: 1px solid black;
  padding-left: 1ex;
  padding-right: 1ex;
  margin-top: 1ex;
}
div.forumSel {
  background-color: #cef;
}
div.forumObs {
  color: #bbb;
}
#capabilitySummary {
  text-align: center;
}
#capabilitySummary td {
  padding-left: 3ex;
  padding-right: 3ex;
}
#capabilitySummary th {
  padding-left: 1ex;
  padding-right: 1ex;
}
.capsumOff {
  background-color: #bbb;
}
.capsumRead {
  background-color: #bfb;
}
.capsumWrite {
  background-color: #ffb;
}
