/* ------------------------------------------------------------------------- */
/* Blue colors */
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* Imports */
/* ------------------------------------------------------------------------- */
/* Core */
*:focus {
  outline: 1px solid #0078D7;
}
body {
  margin: 0;
  font-family: 'Source Sans Pro', 'Segoe UI', Arial;
  font-size: 12px;
  overflow: hidden;
}
iframe {
  border-width: 0;
}
.hidden {
  display: none;
}
.visible {
  display: inline;
}
.arrow {
  user-select: none;
  font-weight: bold;
  color: #0078D7;
  margin-left: 2px;
  margin-right: 2px;
  cursor: pointer;
}
.level {
  border-radius: 0;
  padding-top: 2px;
  padding-left: 5px;
  padding-bottom: 2px;
}
span.hidden,
div.hidden {
  display: none;
}
span.hidden-fixed,
div.hidden-fixed {
  display: none !important;
}
span.visible {
  display: inline !important;
}
div.visible {
  display: block !important;
}
span.visible-force {
  display: inline !important;
}
div.visible-force {
  display: block !important;
}
h1,
h2,
h3,
h4,
h5 {
  color: #0078D7;
}
a {
  color: #0078D7;
  text-decoration: underline;
  cursor: pointer;
}
section > header {
  color: #0078D7;
  margin-top: 1em;
  font-size: 1.1em;
  font-weight: bold;
}
section > details {
  margin-left: 5px;
}
article > header {
  color: #0078D7;
  margin-top: 0.5em;
  font-size: 1.2em;
  font-weight: bold;
}
article > details {
  display: block;
  margin-left: 5px;
}
/* ------------------------------------------------------------------------- */
*::selection {
  background-color: #0078D7;
  color: white;
}
* {
  scrollbar-width: auto;
  scrollbar-color: #0078D7 transparent;
}
/* ------------------------------------------------------------------------- */
input {
  border-style: solid;
  border-width: 1px;
  /* &.ng-invalid[readonly] {
    color: red !important;
    font-weight: bold;
  } */
}
input.ng-invalid {
  border: solid red 1px !important;
  background-color: snow;
}
select {
  background-color: transparent;
}
input[type='button'],
.button,
button {
  border: solid transparent 0;
  border-radius: 4px;
  margin: 5px;
  cursor: pointer !important;
}
input[type='button']:hover,
.button:hover,
button:hover {
  background-color: #0090FF !important;
  color: white;
}
/* ------------------------------------------------------------------------- */
menu {
  padding-inline-start: 5px;
}
/* ------------------------------------------------------------------------- */
iframe {
  border-color: #0078D7;
}
/* ------------------------------------------------------------------------- */
/* Main */
#main {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* Alert */
#alert {
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  right: 5px;
  border-radius: 5px;
  min-height: 30px;
  background-color: lightYellow;
  border: solid lightgray 1px;
  color: dimgray;
}
#alert .level {
  position: absolute;
  top: 4px;
  left: 2px;
  width: 18px;
  height: 18px;
}
#alert .message {
  display: block;
  position: relative;
  left: 24px;
  margin: 7px;
  width: 90%;
  user-select: auto;
}
#alert .message a {
  color: green;
  cursor: pointer;
}
#alert .closeButton {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 18px;
  height: 18px;
  background-image: url(../images/Close.png);
  background-size: 18px;
  cursor: pointer;
}
#alert .closeButton:hover {
  background-image: url(../images/Close-Hover.png);
  background-size: 18px;
}
#alert .progressBar {
  position: absolute;
  top: 5px;
  right: 30px;
  width: 200px;
  height: 10px;
  padding: 1px;
  border: solid black 1px;
  background-color: white;
}
#alert .progress {
  display: block;
  width: 100%;
  height: 100%;
  background-color: grey;
  animation-name: progress;
  animation-duration: 20s;
  animation-iteration-count: infinite;
}
@keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
#alert progress {
  position: absolute;
  top: 5px;
  right: 30px;
}
.alert {
  display: inline-block;
  color: dimgray;
  background-color: lightYellow;
  padding: 0;
  padding-left: 5px;
  padding-right: 5px;
}
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* Policies */
@keyframes showPolicies {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#policies {
  opacity: 0;
  animation-name: showPolicies;
  animation-delay: 4s;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  background-color: lightYellow;
  color: dimgray;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  padding: 10px;
  font-size: larger;
}
#policies > div {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 500px;
}
#policies table {
  margin-left: 10px;
}
#policies td:first-child {
  text-align: center;
}
#policies td:nth-child(2) {
  font-size: smaller;
}
#policies button {
  width: 80px;
  margin: 0;
}
#policies span.accepted {
  display: none;
  border-style: solid;
  border-width: 1px;
  border-radius: 2px;
  font-size: smaller;
  width: 80px;
  cursor: pointer;
}
/* ------------------------------------------------------------------------- */
/* ChangeSets */
#changes {
  padding: 5px;
  border-spacing: 0;
  width: calc(100%-4rem);
}
#changes thead > tr > th {
  text-align: left;
  font-weight: normal;
  padding-left: 2px;
}
#changes tbody {
  background-color: white;
}
#changes tbody:first-of-type > tr > td:first-of-type {
  border-top-left-radius: 8px;
}
#changes tbody:first-of-type > tr > td:last-of-type {
  border-top-right-radius: 8px;
}
#changes tbody:last-of-type > tr > td:first-of-type {
  border-bottom-left-radius: 8px;
}
#changes tbody:last-of-type > tr > td:last-of-type {
  border-bottom-right-radius: 8px;
}
#changes tbody > tr > td {
  color: black !important;
  padding-top: 4px !important;
}
#changes tbody > tr > td:first-child {
  cursor: pointer;
  width: 2px;
}
#changes tbody > tr > td:nth-child(3) {
  padding-left: 2px;
  cursor: pointer;
}
#changes tbody > tr > td:last-child {
  cursor: pointer;
}
#changes tbody > tr > td.details {
  padding: 5px;
}
#changes tbody > tr > td > * {
  color: black !important;
}
#changes img.reorderIcon {
  width: 16px;
  padding-top: 2px;
  padding-left: 2px;
  cursor: pointer;
}
#changes img.changeSetIcon {
  width: 10px;
  padding-top: 2px;
  padding-left: 2px;
  cursor: pointer;
}
#changes img.button {
  width: 10px;
  margin: 2px !important;
  cursor: pointer;
}
#changes input[type="text"] {
  background-color: transparent;
  border-width: 0;
  width: 60px;
}
#changes select.colorInput {
  text-align: left;
  background-color: transparent;
  border-width: 0;
  width: 80px;
}
/* ------------------------------------------------------------------------- */
.changeSets > .note {
  padding: 5px;
  font-size: smaller;
  opacity: 50%;
  display: block;
  animation-name: hideNote;
  animation-duration: 5s;
  animation-delay: 15s;
  animation-fill-mode: forwards;
}
/* ------------------------------------------------------------------------- */
#changeSetInfoDialog td {
  vertical-align: top;
}
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* DocBar */
.docBar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
}
.docBar .tool {
  position: relative;
  display: inline-block;
  padding: 2px;
  margin: 5px;
  margin-top: 2px;
  cursor: pointer;
  user-select: none;
}
.docBar .tool.disabled {
  opacity: 0.3;
  cursor: default !important;
}
/* ------------------------------------------------------------------------- */
#breadcrumbs {
  position: absolute;
  display: inline-block;
  top: 0;
  left: 60px;
  height: 24px;
  padding-top: 5px;
  padding-left: 5px;
  padding-right: 5px;
  overflow: hidden;
  user-select: none;
}
#breadcrumbs .breadcrumbLevel {
  font-weight: bold;
  text-decoration: none;
  color: #0078D7;
  cursor: pointer;
}
#breadcrumbs .deletion {
  color: red !important;
}
#breadcrumbs .insertion {
  color: steelblue !important;
}
#breadcrumbs .placeholder {
  color: lightgrey !important;
}
/* ------------------------------------------------------------------------- */
#username {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
#password {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
/* ------------------------------------------------------------------------- */
#rightBar {
  position: absolute;
  display: inline-block;
  top: 0;
  right: 10px;
  background-color: transparent;
  user-select: none;
}
#rightBar.button {
  display: inline-block;
  margin-top: 1px;
  padding-left: 2px;
  padding-right: 2px;
  padding-bottom: 2px;
  margin-left: 5px;
  font-size: 10px;
}
#rightBar .modes {
  display: inline-block;
  position: relative;
  top: 0;
}
#rightBar .mode {
  display: inline-block;
  padding: 2px;
  padding-left: 4px;
  padding-right: 4px;
  margin-left: 2px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: bold;
  color: black;
}
#rightBar .mode[data-ng-click] {
  cursor: pointer;
}
#rightBar .closeButton {
  display: inline-block;
  background-color: gray;
  padding: 2px;
  padding-left: 4px;
  padding-right: 4px;
  margin-left: 2px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: bold;
  color: white;
}
#rightBar .closeButton[data-ng-click] {
  cursor: pointer;
}
#rightBar .closeButton:hover {
  background-color: red;
}
#rightBar .closeButton:hover > span {
  color: white;
}
#rightBar .closeButton > span {
  display: inline-block;
  position: relative;
  color: darkred;
  font-weight: bold;
  font-size: 16px;
  line-height: 4px;
  top: 2px;
}
#rightBar .logIn,
#rightBar .logOut {
  display: inline-block;
  position: relative;
  top: 0;
  height: 16px;
}
#rightBar .logIn input,
#rightBar .logOut input {
  display: inline-block;
  position: relative;
  width: 70px;
  padding-left: 2px;
  padding-right: 2px;
  margin-right: 0;
}
#rightBar .logIn .username,
#rightBar .logOut .username {
  display: inline-block;
  position: relative;
  top: 5px;
  margin-right: 0;
}
#rightBar .logIn .user,
#rightBar .logOut .user {
  display: inline-block;
  position: relative;
  width: 10px;
  top: 4px;
  margin-left: 10px;
  margin-right: 2px;
}
#rightBar .logIn .logInButton,
#rightBar .logOut .logInButton {
  display: inline-block;
  position: relative;
  width: 16px;
  height: 16px;
  top: 5px;
  padding: 0;
  margin-left: 5px;
  background-image: url(../images/LogIn.png);
  background-size: 16px;
  background-repeat: no-repeat;
  cursor: pointer;
}
#rightBar .logIn .logInButton:hover,
#rightBar .logOut .logInButton:hover {
  background-image: url(../images/LogIn-Hover.png);
  background-size: 16px;
  background-repeat: no-repeat;
}
#rightBar .logIn .logOutButton,
#rightBar .logOut .logOutButton {
  display: inline-block;
  position: relative;
  width: 16px;
  height: 16px;
  top: 5px;
  padding: 0;
  margin-left: 5px;
  background-image: url(../images/LogOut.png);
  background-size: 16px;
  background-repeat: no-repeat;
  cursor: pointer;
}
#rightBar .logIn .logOutButton:hover,
#rightBar .logOut .logOutButton:hover {
  background-image: url(../images/LogOut-Hover.png);
  background-size: 16px;
  background-repeat: no-repeat;
}
/* ------------------------------------------------------------------------- */
#editMode.none {
  background-color: lightgrey;
}
#editMode.edit {
  background-color: limegreen;
}
#editMode.readOnly {
  background-color: red;
}
/* ------------------------------------------------------------------------- */
#trackChangesMode.static {
  background-color: cornflowerblue;
}
#trackChangesMode.context {
  background-color: cornflowerblue;
}
/* ------------------------------------------------------------------------- */
#lineNumberingMode.leftMargin,
#lineNumberingMode.rightMargin,
#lineNumberingMode.inlineMarkers {
  background-color: springgreen;
}
/* ------------------------------------------------------------------------- */
#levelNumberingMode.autoRenumber,
#levelNumberingMode.autoAssign {
  background-color: chocolate;
}
/* ------------------------------------------------------------------------- */
#revealStructureMode.reveal {
  background-color: orange;
}
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* Dialogs */
/* ------------------------------------------------------------------------- */
dialog {
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  padding: 0;
  min-width: 300px;
}
dialog > p.title {
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  background-color: #0078D7;
  color: white;
  margin: 0;
  padding: 0;
}
dialog > div {
  display: block;
  margin: 10px;
  width: calc(100% - 20px);
}
dialog > div > * {
  display: inline;
}
dialog > div > p {
  display: block !important;
}
dialog > div > span {
  display: inline-block;
  vertical-align: top;
}
dialog > div label {
  display: inline-block !important;
  margin-left: 5px;
  min-width: 60px;
}
dialog > div input,
dialog > div select {
  display: inline !important;
}
dialog input {
  border-style: solid;
  border-width: 1px;
}
dialog input[type=checkbox] {
  margin-top: 0;
  margin-left: 5px;
  margin-right: 5px;
}
dialog input[type=text] {
  width: calc(100% - 20px);
}
dialog input[readonly] {
  background-color: transparent;
  border-width: 0;
  text-align: right;
  font-size: 10px;
}
dialog > table {
  margin-left: 10px;
  margin-right: 10px;
}
/* ------------------------------------------------------------------------- */
dialog .bottomRow {
  position: relative;
}
form .bottomRow {
  position: absolute;
  bottom: 0;
}
.bottomRow {
  height: 42px;
  margin: 5px;
  width: calc(100% - 15px);
}
.bottomRow .options {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  padding: 5px;
  text-align: left;
}
.bottomRow .options > div input[type="checkbox"] {
  vertical-align: middle;
}
.bottomRow menu.buttons {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  text-align: right;
  margin-bottom: 5px;
}
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* Help */
#help {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 300px;
  border-left-style: solid;
  border-left-width: 1px;
}
#help div.heading {
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  padding: 0;
  margin: 0;
  font-size: 12px;
  font-weight: Bold;
  text-align: center;
  color: #0078D7;
}
#help div.heading > menu.buttons {
  position: absolute;
  top: 2px;
  right: 10px;
  margin: 0;
}
#help div.searchBar {
  display: block;
  position: absolute;
  width: 100%;
  padding: 10px;
  top: 15px;
}
#help div.searchBar input.search {
  width: 200px;
  font-size: 10pt;
  border-radius: 4px;
}
#help div.searchBar button {
  cursor: pointer;
  padding: 2px;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 9pt;
  background-color: transparent;
}
#help div.searchBar button:hover {
  background-color: #0078D7;
  color: white;
}
#help div.contents {
  display: block;
  position: absolute;
  top: 60px;
  left: 5px;
  right: 5px;
  bottom: 5px;
}
#help div.contents > iframe {
  width: 100%;
  height: 100%;
}
#help .newWindowButton {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url(../images/OpenNewWindow.png);
  background-size: 10px;
  background-repeat: no-repeat;
  cursor: pointer;
}
#help .newWindowButton:hover {
  background-image: url(../images/OpenNewWindow-Hover.png);
  background-size: 10px;
  background-repeat: no-repeat;
}
#help .closeButton {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url(../images/Close1.png);
  background-size: 10px;
  background-repeat: no-repeat;
  cursor: pointer;
}
#help .closeButton:hover {
  background-image: url(../images/Close1-Hover.png);
  background-size: 10px;
  background-repeat: no-repeat;
}
/* ------------------------------------------------------------------------- */
#helpPanel {
  display: block;
  padding: 5px;
  font-size: 10px;
  overflow: auto;
  cursor: default;
}
#helpPanel article.highlight {
  border: dashed #0078D7 1px;
}
#helpPanel details > summary {
  outline: none;
}
#helpPanel div.pluginRequired {
  border: solid #0078D7 1px;
  color: #0078D7;
  padding: 2px;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
}
#helpPanel div.understanding {
  border: solid #0078D7 1px;
  color: #0078D7;
  padding: 2px;
  text-align: justify;
  margin-top: 10px;
  margin-bottom: 5px;
}
#helpPanel div.understanding > p {
  margin-top: 0;
}
#helpPanel div.understanding > p:last-of-type {
  margin-bottom: 0 !important;
}
#helpPanel div.understanding h3 {
  color: #0078D7;
}
#helpPanel div.demonstration::before {
  display: inline-block;
  border: solid fuchsia 1px;
  border-radius: 4px;
  color: fuchsia;
  font-size: 9px;
  padding: 1px;
  margin-left: 5px;
  padding-left: 5px;
  padding-right: 5px;
  content: "Demonstration Only";
}
#helpPanel ul {
  margin: 0;
}
#helpPanel li.bug {
  color: red;
}
#helpPanel kbd.key {
  display: inline-block;
  background-color: #0078D7;
  border-radius: 2px;
  color: white;
  padding: 1px;
  padding-left: 5px;
  padding-right: 5px;
}
#helpPanel img {
  scale: 0.7;
  vertical-align: middle;
}
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* Layout */
#canvas {
  position: absolute;
  top: 132px;
  left: 0;
  right: 0;
  bottom: 0;
}
#sidePanel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow-y: hidden;
}
#sidePanelTabs {
  position: relative;
  top: 0;
  height: 26px;
  overflow: hidden;
}
#sidePanelViews > div {
  display: none;
  position: absolute;
  top: 26px;
  bottom: 0;
  width: 100%;
}
#sidePanelViews > div.visible {
  display: block;
}
#sidePanelViews > div > div.panelView {
  position: relative;
  width: 100%;
  height: 100%;
}
#sidePanelViews > div > div.panelView > iframe {
  width: 100%;
  height: calc(100% - 4px);
}
#sidePanelView-resources > div > div {
  overflow: hidden !important;
}
#sidePanelView-changes > table {
  display: table;
}
#sidePanelView-changes > table .details > * {
  text-align: left;
  margin-left: 10px;
  margin-right: 5px;
  font-size: 12px;
}
/* ------------------------------------------------------------------------- */
#editorPanel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#editorPanel > div {
  overflow: hidden;
}
#editorPanel iframe {
  border-width: 0;
}
/* ------------------------------------------------------------------------- */
.subPanel {
  display: block;
}
.subPanel:not(:last-child) {
  border-bottom: solid 1px #333333;
  padding-bottom: 0;
}
/* ------------------------------------------------------------------------- */
.ui-layout-column > .ui-splitbar {
  height: calc(100% - 2px);
  border-right: solid 1px #333333;
}
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* Lookup Entry */
.lookup {
  position: absolute;
  top: 0;
  left: 0;
  right: 20px;
  height: 30px;
  user-select: none;
}
.lookup select {
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  width: 180px;
  margin: 4px;
  margin-left: 5px;
  padding: 1px;
  padding-right: 0;
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  font-weight: bold;
  font-size: 14px;
  outline: none;
}
.lookup select option {
  display: block;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 12px;
  font-weight: bold;
  color: inherit;
}
.lookup select option:hover,
.lookup select option:focus,
.lookup select option:active,
.lookup select option:checked {
  background-color: #0078D7;
  color: white;
}
.lookup input[type='text'] {
  position: absolute;
  display: inline-block;
  top: 1px;
  left: 185px;
  width: calc(100% - 210px);
  margin: 2px;
  padding: 2px;
  border-radius: 5px;
}
.lookup input[type='button'] {
  position: absolute;
  top: 5px;
  right: 5px
      width: 24px;
  margin: 0;
  padding: 2px;
  text-align: center;
  background-color: limegreen;
  color: white;
  border-style: solid;
  border-width: 0;
  border-left-width: 1px;
  border-radius: 0;
  cursor: pointer;
}
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* Menu */
.menu {
  position: absolute;
  display: block;
  padding: 2px;
  min-width: 160px;
  max-height: 300px;
  overflow-x: hidden;
  overflow-y: auto;
  border-style: solid;
  border-width: 1px;
  border-radius: 3px;
  z-index: 20;
  user-select: none;
}
.menu .checkMark {
  width: 10px;
}
.menu .command-item {
  display: block;
  padding: 2px;
  cursor: pointer;
  text-indent: 5px;
}
.menu .disabled {
  color: gray;
}
.menu .submenu-item {
  display: block;
  padding: 2px;
  cursor: default;
  text-indent: 5px;
}
.menu .submenu-item::after {
  font-family: monospace;
  position: absolute;
  right: 10px;
  content: "\25BA";
}
.menu .inputItem {
  display: block;
  padding: 2px;
  border: solid gray 1px;
  border-radius: 2px;
}
.menu .inputItem input {
  border-width: 0;
}
.menu .heading {
  font-style: italic;
  background-color: transparent !important;
  cursor: default !important;
  text-indent: 0;
}
.menu .divider {
  border-top-style: solid;
  border-top-width: 1px;
}
.menu .disabled {
  cursor: default !important;
}
.menu .disabled:hover {
  background-color: transparent !important;
}
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* Ribbons */
.ribbon {
  position: absolute;
  display: block;
  top: 55px;
  left: 4px;
  right: 5px;
  height: 72px;
  border-style: solid;
  border-width: 0;
  border-radius: 10px;
  padding-top: 3px;
  padding-left: 10px;
  overflow-x: hidden;
  overflow-y: auto;
  user-select: none;
}
.ribbon.attributes {
  overflow: visible;
  text-align: center;
  direction: rtl;
}
.ribbon.attributes * {
  direction: ltr;
}
.ribbon .appLogo {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 10px;
  margin-right: 10px;
  height: 60px;
  width: 160px;
  background-image: url(../../images/AppLogo.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}
.ribbon .title {
  font-size: 40px;
  margin-right: 5px;
}
.ribbon .title > sup {
  position: relative;
  font-size: 18px;
  top: -4px;
}
.ribbon .tool {
  position: relative;
  display: inline-block;
  padding: 2px;
  margin-bottom: 0;
  border: solid transparent 1px;
  text-align: center;
  cursor: pointer;
}
.ribbon .tool.disabled {
  opacity: 0.3;
  cursor: default !important;
}
.ribbon .tool.menuActive {
  border-top-style: solid;
  border-top-width: 1px;
  border-left-style: solid;
  border-left-width: 1px;
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-width: 0;
}
.ribbon .tool > .icon {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  border: solid transparent 1px;
  border-radius: 0;
  width: 32px;
  height: 32px;
}
.ribbon .tool > .active {
  border: solid #0078D7 1px !important;
  border-radius: 5px;
  background-color: #0090FF;
}
.ribbon > .tool {
  margin-bottom: 0;
  z-index: 30;
}
.ribbon .group {
  position: relative;
  display: inline-block;
  padding: 0;
  padding-right: 10px;
  margin: 2px;
  margin-top: 0;
  margin-bottom: 0;
  vertical-align: bottom;
}
.ribbon .group > .name {
  display: block;
  text-align: center;
  font-size: 10px;
}
.ribbon .group .tool {
  top: 0;
  z-index: 30;
}
.ribbon .separator {
  display: inline-block;
  height: 56px;
  margin: 0;
  font-size: 26px;
}
.ribbon *:last-child > .separator {
  display: none;
}
.ribbon .divider {
  border-right-style: solid;
  border-right-width: 1.2px;
}
.ribbon .single {
  padding-top: 10px;
}
.ribbon .single > * {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
}
.ribbon .double {
  padding-top: 5px;
}
.ribbon .double > * {
  margin-top: 0 !important;
  margin-bottom: 5px !important;
}
.ribbon .triple {
  padding-top: 0;
}
.ribbon .triple > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.ribbon legispro-component form {
  margin-top: 10px !important;
}
.ribbon form {
  position: relative;
  display: inline-block;
  padding: 0;
  text-align: left;
  vertical-align: bottom;
  min-width: 200px;
}
.ribbon form > div {
  margin: 0;
  padding-left: 4px;
  padding-right: 4px;
}
.ribbon form > div > * {
  margin-bottom: 2px;
  padding-left: 2px;
}
.ribbon form > .title {
  display: block;
  margin-bottom: 4px;
  text-align: center;
  font-size: 12px;
}
.ribbon form > .showAll {
  display: block;
  position: absolute;
  bottom: 2px;
  right: -17px;
  cursor: pointer;
}
.ribbon form .label {
  display: inline-block;
  min-width: 85px;
  padding-left: 5px;
  text-align: right;
}
.ribbon form .expansion {
  display: block;
  position: absolute;
  top: 67px;
  left: -4px;
  right: -4px;
  padding-bottom: 5px;
  z-index: 20;
  border-style: solid;
  border-width: 1px;
  border-top-width: 0;
}
.ribbon form .expansion hr {
  margin-bottom: 12px;
}
.ribbon form table {
  margin: 0;
  padding: 0;
}
.ribbon form table thead,
.ribbon form table tbody,
.ribbon form table tfoot,
.ribbon form table tr,
.ribbon form table th,
.ribbon form table td {
  margin: 0;
  padding: 0;
}
.ribbon form *[readonly] {
  background-color: transparent;
  margin-left: 2px;
}
.ribbon form *[readonly][value=''] {
  display: none;
}
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* Form Sheet */
.formSheet {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  border-width: 0;
  z-index: 40;
}
.formSheet .cancelButton {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 30px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 10;
}
.formSheet .cancelButton:hover {
  opacity: 1 !important;
}
.formSheet .heading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}
.formSheet .name {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
  margin: 5px;
  border: solid transparent 1px;
  border-radius: 0;
}
.formSheet .uri {
  width: 98%;
  background-color: transparent;
  border-width: 0;
  text-align: right;
  font-size: 10px;
}
.formSheet .options {
  border-radius: 2px;
  margin-bottom: 10px;
  padding: 5px;
}
.formSheet #requestInfo {
  border-radius: 2px;
}
.formSheet #officeInfo {
  border-radius: 2px;
  margin-top: 16px;
  padding: 5px;
}
.formSheet .tabs {
  margin-top: 10px;
  margin-left: 2px;
  margin-right: 2px;
}
.formSheet .views {
  display: block;
  position: absolute;
  top: 75px;
  left: 0;
  bottom: 34px;
  right: 0;
  padding-right: 5px;
  overflow-x: hidden;
  overflow-y: auto;
  border: solid black 0;
}
.formSheet .views .view {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-width: 0;
}
.formSheet .views .view h1 {
  font-size: 12px;
  margin: 0;
  margin-left: 10px;
}
.formSheet .views .view h2 {
  font-size: 10px;
  margin: 0;
  margin-left: 10px;
}
.formSheet .views .view h2.centered {
  width: 120px;
  text-align: center;
}
.formSheet .views .view.hidden {
  display: none !important;
}
.formSheet .views .view .workflowBox {
  display: block;
  position: relative;
  margin: 0;
  margin-bottom: 5px;
  padding: 0;
}
.formSheet .views .view .workflowBox > h1 {
  margin-left: 10px;
}
.formSheet .views .view .workflowBox > input {
  margin-left: 12px;
  margin-bottom: 10px;
  margin-top: 10px;
  width: calc(100% - 25px);
}
.formSheet .views .view .workflowBox div.surround {
  border: dashed #0078D7 1px;
  border-radius: 5px;
  padding: 5px;
  margin-left: 10px;
  width: calc(100% - 22px);
}
.formSheet .views .view .workflowBox div.flex {
  display: flex;
}
.formSheet .views .view .workflowBox div.flex .options {
  margin-top: 10px;
  text-align: center;
}
.formSheet .views .view .workflowBox div.flex > div {
  width: 140px;
  padding-left: 5px;
  padding-bottom: 5px;
}
.formSheet .views .view .workflowBox div.flex > div > input {
  width: 100px;
}
.formSheet .views .view .workflowBox div.flex > div > select {
  display: block;
  width: 110px;
  height: 20px;
  margin-top: 5px;
  margin-left: 5px;
}
.formSheet > form {
  display: block;
  position: absolute;
  top: 70px;
  left: 10px;
  bottom: 10px;
  right: 0;
  max-width: 1000px;
  border: solid green 0;
}
.formSheet > form input[readonly] {
  background-color: transparent !important;
}
.formSheet > form textarea {
  padding: 5px;
  margin: 5px;
}
.formSheet > form > .results {
  position: absolute;
  bottom: 30px;
  right: 0;
  left: 0;
}
.formSheet > form > .results input.uri {
  border-width: 0 !important;
}
.formSheet > form > .results div.alerts {
  font-weight: bold;
  text-align: right;
  margin-right: 5px;
  min-height: 20px;
}
.formSheet > form > .results div.alerts .error {
  color: red !important;
}
.formSheet > form > .executeButton {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 5px;
  padding-left: 20px;
  padding-right: 20px;
}
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* Source View */
#sourceViewTabs {
  position: absolute;
  display: block;
  height: 20px;
  width: 100%;
  top: 0;
  bottom: 0;
  padding-top: 0;
}
#sourceViewTabs.expanded {
  top: 300px;
  bottom: auto;
  transition: top 2s;
}
#sourceViewTabs .buttons {
  position: absolute;
  right: 0;
}
#sourceViewTabs .button {
  cursor: pointer;
  margin-top: 0;
  margin-left: 5px;
  margin-right: 2px;
}
/* ------------------------------------------------------------------------- */
@keyframes hideNote {
  from {
    opacity: 50%;
    display: block;
  }
  to {
    opacity: 0;
    display: none;
  }
}
#sourceView {
  position: absolute;
  top: 26px;
  left: 4px;
  width: calc(100% - 10px);
  bottom: 5px;
}
#sourceView.expanded {
  top: 320px;
  height: auto;
}
#sourceView > .docView {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
#sourceView > .note {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 5px;
  font-size: smaller;
  opacity: 50%;
  display: block;
  animation-name: hideNote;
  animation-duration: 5s;
  animation-delay: 15s;
  animation-fill-mode: forwards;
}
#sourceView > .waiting {
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
#sourceView iframe {
  border: solid #0078D7 0;
}
/* ------------------------------------------------------------------------- */
#info {
  display: none;
}
#info > .docView {
  width: 100%;
  height: 100%;
}
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* Tabs */
.tabs {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 20px;
  user-select: none;
}
.tabs > .tab {
  display: inline-block;
  height: 16px;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 0;
  padding-bottom: 1px;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 0;
  margin-bottom: 4px;
  border-bottom: solid transparent;
  border-radius: 0;
  cursor: pointer;
}
.tabs > .tab:focus {
  outline: none;
  background-color: transparent !important;
  border-bottom: solid gray 2px !important;
}
.tabs > .tab.active {
  border-bottom-color: #0078D7;
  font-weight: bold;
  border-bottom-width: 2px;
}
.tabs > .tab.hidden {
  display: none;
}
.tabs > #helpButton {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 5px;
  padding: 1px;
  padding-left: 5px;
  padding-right: 10px;
  cursor: pointer;
}
.tabs > #aboutButton {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 50px;
  padding: 1px;
  padding-left: 5px;
  padding-right: 5px;
  cursor: pointer;
}
.tabs > #devButton {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 100px;
  padding: 1px;
  padding-left: 5px;
  padding-right: 5px;
  cursor: pointer;
}
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* TreeView */
#explorer {
  position: absolute;
  top: 30px;
  left: 5px;
  width: calc(100% - 15px);
  bottom: 0;
  padding-left: 5px;
  overflow-y: auto;
  user-select: none;
}
#explorer .searchText {
  position: sticky;
  top: 2px;
  left: 0;
  padding: 2px;
  width: calc(100% -  34px);
  border-radius: 5px;
}
#explorer .search {
  position: sticky;
  top: 5px;
  left: calc(100% - 24px);
  height: 18px;
  z-index: 30;
  cursor: pointer;
}
#explorer .searchClose {
  position: sticky;
  top: 5px;
  right: 10px;
  left: calc(100% - 24px);
  height: 18px;
  z-index: 30;
  cursor: pointer;
}
#explorer .searching,
#explorer .results {
  position: absolute;
  top: 30px;
  left: 5px;
  padding-left: 5px;
  padding-right: 5px;
  background-color: #0078D7;
  color: white !important;
  border-radius: 5px;
}
#explorer .treeView {
  width: calc(100% - 15px);
  height: calc(100% - 24px);
}
#explorer.expanded {
  height: 140px;
  bottom: auto;
}
#explorer .editing {
  border: dashed grey 1px;
  margin: 1px;
}
#explorer .viewing {
  border: dashed grey 1px;
  margin: 1px;
}
#explorer .selected {
  background-color: #0078D7;
  color: white !important;
  border-radius: 0;
}
#explorer .level .pdfIndicator {
  display: inline;
  background-color: red;
  border: solid red 1px;
  color: white;
  border-radius: 4px;
  padding-left: 2px;
  padding-right: 2px;
  margin-left: 2px;
  font-size: 10px;
  line-height: 1px;
  cursor: pointer;
}
#explorer .level > .levelName {
  display: inline-block;
  cursor: pointer;
  text-indent: -12px;
  margin-left: 10px;
  user-select: none;
}
#explorer .level > .levelName .levelOpen {
  border: #0078D7 1px solid;
}
#explorer .level > .levelName .levelStatus {
  color: #0078D7;
  padding-left: 2px;
  padding-right: 2px;
  border: solid #0078D7 1px;
  border-radius: 2px;
}
#explorer .level > .levelName .levelText {
  display: inline;
  padding-left: 2px;
  padding-right: 5px;
}
#explorer .level > .levelName .note {
  font-style: italic;
  font-size: smaller;
}
#explorer .level > .levelContents {
  margin-left: 16px;
}
#explorer .level > .levelSummary {
  display: block;
  border: dashed grey 1px;
  border-radius: 2px;
  padding: 2px;
  margin-left: 16px;
  margin-right: 2px;
}
#explorer .level > .levelSummary .previous,
#explorer .level > .levelSummary .following {
  font-style: normal;
}
#explorer .level > .levelSummary .hi {
  color: #0078D7;
  font-weight: bold;
}
#explorer .level *[contenteditable='true'] {
  display: inline-block;
  background-color: white !important;
  color: black !important;
  border: dashed orange 1px;
  border-radius: 0;
  text-indent: 0;
  padding-left: 2px;
  padding-right: 2px;
}
/* ------------------------------------------------------------------------- */
#refreshAll {
  position: absolute;
  right: 10px;
  top: 4px;
  padding: 2px;
  width: 16px;
  cursor: pointer;
}
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* View */
.view {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.view > .docView {
  display: block;
  width: 210mm;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.view > .sourceView {
  display: block;
  width: 100%;
  height: 100%;
}
.view > .waiting {
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* XML                                                                       */
.xml {
  display: block;
  position: absolute;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  font-size: 10px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 5px;
  overflow: auto;
}
.xml .element {
  color: #58A4C8;
}
.xml .elementContents {
  display: block;
  margin-left: 20px;
}
.xml .attributeName {
  color: #9BBBDC;
}
.xml .attributeValue {
  color: #F29766;
}
.xml .processingInstruction {
  color: #B6B6B6;
}
.xml .comment {
  color: green;
}
.xml .link {
  color: Goldenrod;
}
.xml .selection {
  display: inline;
}
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
