<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*Main Menu*/
#PCTMainMenu {
    background-color: #f5f5f5;
    border-color: #FF0000;
}

#PCTFooter {
    background-color: #f5f5f5;
    color: #d61533;
    height: 50px;
    line-height: 50px;
    text-align: center;
}

#ControlFooter {
   background-color: #FFFFFF;
   color: #000000;
   height: 50px;
   line-height: 50px;
   margin-bottom: 50px;
   margin-left: 50px;
   margin-right: 50px;
}

/*Logo Margin*/
.navbar-left {
   margin-top: 1px;
}

/*Menu Text Style*/
.navbar-inverse .navbar-nav &gt; li &gt; a {
   color: #FFFFFF;
   font-size: 12pt;
   font-weight: normal;
}

   /*Menu Plain Link Style*/
   .navbar-inverse .navbar-nav &gt; li &gt; a:focus,
   .navbar-inverse .navbar-nav &gt; li &gt; a:hover {
      background-color: transparent;
      color: #FFFFFF;
   }

/*Menu Dropdown Link Style*/
.navbar-inverse .navbar-nav &gt; .open &gt; a,
.navbar-inverse .navbar-nav &gt; .open &gt; a:focus,
.navbar-inverse .navbar-nav &gt; .open &gt; a:hover {
   color: #f5f5f5;;
   background-color: transparent;
}

/* Dropdown Menu*/
.dropdown-menu {
   background-color: #f5f5f5;;
}

   /*Dropdown Menu Items*/
   .dropdown-menu &gt; li &gt; a {
      color: #FFFFFF;
   }

      .dropdown-menu &gt; li &gt; a:focus,
      .dropdown-menu &gt; li &gt; a:hover {
         color: #FFFFFF;
         background-color: transparent;
      }

/* Dropdown Submenu */
.dropdown-submenu .dropdown-menu {
   top: 0;
   left: 100%;
   margin-top: 51px;
}

/*Panels*/
.panel-default {
   margin-bottom: 5px;
   margin-top: 5px;
   padding: 5px;
}

.table-condensed thead tr th {
   background-color: #EEEEEE;
   text-align: center;
}

/*Tables*/
.table-hover tbody tr:hover td {
   background-color: #EEEEEE;
   cursor: pointer;
}

/* Error*/
.valError {
   color: #A94442;
}

/* History Fieldset*/
.history-fieldset {
   border: 1px solid #000000;
}

   .history-legend {
      border-bottom: none;
      margin-left: 10px;
      margin-bottom: 0px;
      padding: 0px 5px;
      width:inherit;
   }

   .history-control {
      margin-bottom: 5px;
   }
   
   .history-table-header {
      background-color: #EEEEEE;
      font-weight: bold;
      height: 25px;
      line-height: 25px;
      margin-bottom: 0px;
      padding-right: 20px;
      text-align: center;
   }

   .history-table {
      height: 132px;
      margin-bottom: 0px;
      overflow-y: scroll;
   }

/* Tabbed Dialog */
.tabbed-menu {
   border: 1px solid #000000;
   padding: 5px;
}

.tabbed-menu .nav-pills &gt; li &gt; a {
   border-radius: 4px 4px 0 0;
}

.tabbed-menu .tab-content {
   border-radius: 0 0 4px 4px;
   margin: 0 0 0 0;
}

/* Toastr */
.toast-top-center {
   margin-top: 60px;
}

/* Required Field Asterisk */
:required {
    background: url(/pct/Content/Images/Required.png) no-repeat;
    background-position: right top;
}

/* Prevent Labels Overlapping Textboxes */
input {
   max-width: 100%;
}

/* Loader Spinner */
@keyframes spin {
   0% {
      transform: rotate(0deg);
   }
   100% {
      transform: rotate(360deg);
   }
}

/* Datatables Sort Icons */
table.dataTable thead .sorting::after,
table.dataTable thead .sorting_asc::after {
   display: none;
}

table.dataTable thead .sorting_desc::after {
   display: none;
}

table.dataTable thead .sorting {
   background-image: url(/Images/sort_both.png);
   background-repeat: no-repeat;
   background-position: center right;
}

table.dataTable thead .sorting_asc {
   background-image: url(/Images/sort_asc.png);
   background-repeat: no-repeat;
   background-position: center right;
}

table.dataTable thead .sorting_desc {
   background-image: url(/Images/sort_desc.png);
   background-repeat: no-repeat;
   background-position: center right;
}

/* Checkboxes */
input[type="checkbox"] {
   height: 20px;
   width: 20px;
}
</pre></body></html>