/*
 * Core: General Layout Style
 * -------------------------
 */
html,
body {
  height: 100%;
}
.layout-boxed html,
.layout-boxed body {
  height: 100%;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  overflow-y: auto;
}
/* Layout */
.wrapper {
  height: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}
.wrapper:before,
.wrapper:after {
  content: " ";
  display: table;
}
.wrapper:after {
  clear: both;
}
.layout-boxed .wrapper {
  max-width: 1250px;
  margin: 0 auto;
  min-height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  position: relative;
}
.layout-boxed {
  background: url('../img/boxed-bg.jpg') repeat fixed;
}
/*
 * Content Wrapper - contains the main content
 * ```.right-side has been deprecated as of v2.0.0 in favor of .content-wrapper  ```
 */
.content-wrapper,
.right-side,
.main-footer {
  -webkit-transition: -webkit-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
  -moz-transition: -moz-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
  -o-transition: -o-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
  margin-left: 230px;
  z-index: 820;
}
.layout-top-nav .content-wrapper,
.layout-top-nav .right-side,
.layout-top-nav .main-footer {
  margin-left: 0;
}
@media (max-width: 767px) {
  .content-wrapper,
  .right-side,
  .main-footer {
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .sidebar-collapse .content-wrapper,
  .sidebar-collapse .right-side,
  .sidebar-collapse .main-footer {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .sidebar-open .content-wrapper,
  .sidebar-open .right-side,
  .sidebar-open .main-footer {
    -webkit-transform: translate(230px, 0);
    -ms-transform: translate(230px, 0);
    -o-transform: translate(230px, 0);
    transform: translate(230px, 0);
  }
}
.content-wrapper,
.right-side {
  min-height: 100%;
  background-color: #ecf0f5;
  z-index: 800;
}
.main-footer {
  background: #fff;
  padding: 15px;
  color: #444;
  border-top: 1px solid #d2d6de;
}
/* Fixed layout */
.fixed .main-header,
.fixed .main-sidebar,
.fixed .left-side {
  position: fixed;
}
.fixed .main-header {
  top: 0;
  right: 0;
  left: 0;
}
.fixed .content-wrapper,
.fixed .right-side {
  padding-top: 50px;
}
@media (max-width: 767px) {
  .fixed .content-wrapper,
  .fixed .right-side {
    padding-top: 100px;
  }
}
.fixed.layout-boxed .wrapper {
  max-width: 100%;
}
body.hold-transition .content-wrapper,
body.hold-transition .right-side,
body.hold-transition .main-footer,
body.hold-transition .main-sidebar,
body.hold-transition .left-side,
body.hold-transition .main-header .navbar,
body.hold-transition .main-header .logo {
  /* Fix for IE */
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
/* Content */
.content {
  min-height: 250px;
  padding: 15px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
/* H1 - H6 font */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'Source Sans Pro', sans-serif;
}
/* General Links */
a {
  color: #3c8dbc;
}
a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
  color: #72afd2;
}
/* Page Header */
.page-header {
  margin: 10px 0 20px 0;
  font-size: 22px;
}
.page-header > small {
  color: #666;
  display: block;
  margin-top: 5px;
}
/*
 * Component: Main Header
 * ----------------------
 */
.main-header {
  position: relative;
  max-height: 100px;
  z-index: 1030;
}
.main-header .navbar {
  -webkit-transition: margin-left 0.3s ease-in-out;
  -o-transition: margin-left 0.3s ease-in-out;
  transition: margin-left 0.3s ease-in-out;
  margin-bottom: 0;
  margin-left: 230px;
  border: none;
  min-height: 50px;
  border-radius: 0;
}
.layout-top-nav .main-header .navbar {
  margin-left: 0;
}
.main-header #navbar-search-input.form-control {
  background: rgba(255, 255, 255, 0.2);
  border-color: transparent;
}
.main-header #navbar-search-input.form-control:focus,
.main-header #navbar-search-input.form-control:active {
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
}
.main-header #navbar-search-input.form-control::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
.main-header #navbar-search-input.form-control:-ms-input-placeholder {
  color: #ccc;
}
.main-header #navbar-search-input.form-control::-webkit-input-placeholder {
  color: #ccc;
}
.main-header .navbar-custom-menu,
.main-header .navbar-right {
  float: right;
}
@media (max-width: 991px) {
  .main-header .navbar-custom-menu a,
  .main-header .navbar-right a {
    color: inherit;
    background: transparent;
  }
}
@media (max-width: 767px) {
  .main-header .navbar-right {
    float: none;
  }
  .navbar-collapse .main-header .navbar-right {
    margin: 7.5px -15px;
  }
  .main-header .navbar-right > li {
    color: inherit;
    border: 0;
  }
}
.main-header .sidebar-toggle {
  float: left;
  background-color: transparent;
  background-image: none;
  padding: 15px 15px;
  font-family: fontAwesome;
}
.main-header .sidebar-toggle:before {
  content: "\f0c9";
}
.main-header .sidebar-toggle:hover {
  color: #fff;
}
.main-header .sidebar-toggle:focus,
.main-header .sidebar-toggle:active {
  background: transparent;
}
.main-header .sidebar-toggle .icon-bar {
  display: none;
}
.main-header .navbar .nav > li.user > a > .fa,
.main-header .navbar .nav > li.user > a > .glyphicon,
.main-header .navbar .nav > li.user > a > .ion {
  margin-right: 5px;
}
.main-header .navbar .nav > li > a > .label {
  position: absolute;
  top: 9px;
  right: 7px;
  text-align: center;
  font-size: 9px;
  padding: 2px 3px;
  line-height: 0.9;
}
.main-header .logo {
  -webkit-transition: width 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  display: block;
  float: left;
  height: 50px;
  font-size: 20px;
  line-height: 50px;
  text-align: center;
  width: 230px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 0 15px;
  font-weight: 300;
  overflow: hidden;
}
.main-header .logo .logo-lg {
  display: block;
}
.main-header .logo .logo-mini {
  display: none;
}
.main-header .navbar-brand {
  color: #fff;
}
.content-header {
  position: relative;
  padding: 15px 15px 0 15px;
}
.content-header > h1 {
  margin: 0;
  font-size: 24px;
}
.content-header > h1 > small {
  font-size: 15px;
  display: inline-block;
  padding-left: 4px;
  font-weight: 300;
}
.content-header > .breadcrumb {
  float: right;
  background: transparent;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  padding: 7px 5px;
  position: absolute;
  top: 15px;
  right: 10px;
  border-radius: 2px;
}
.content-header > .breadcrumb > li > a {
  color: #444;
  text-decoration: none;
  display: inline-block;
}
.content-header > .breadcrumb > li > a > .fa,
.content-header > .breadcrumb > li > a > .glyphicon,
.content-header > .breadcrumb > li > a > .ion {
  margin-right: 5px;
}
.content-header > .breadcrumb > li + li:before {
  content: '>\00a0';
}
@media (max-width: 991px) {
  .content-header > .breadcrumb {
    position: relative;
    margin-top: 5px;
    top: 0;
    right: 0;
    float: none;
    background: #d2d6de;
    padding-left: 10px;
  }
  .content-header > .breadcrumb li:before {
    color: #97a0b3;
  }
}
.navbar-toggle {
  color: #fff;
  border: 0;
  margin: 0;
  padding: 15px 15px;
}
@media (max-width: 991px) {
  .navbar-custom-menu .navbar-nav > li {
    float: left;
  }
  .navbar-custom-menu .navbar-nav {
    margin: 0;
    float: left;
  }
  .navbar-custom-menu .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .main-header {
    position: relative;
  }
  .main-header .logo,
  .main-header .navbar {
    width: 100%;
    float: none;
  }
  .main-header .navbar {
    margin: 0;
  }
  .main-header .navbar-custom-menu {
    float: right;
  }
}
@media (max-width: 991px) {
  .navbar-collapse.pull-left {
    float: none!important;
  }
  .navbar-collapse.pull-left + .navbar-custom-menu {
    display: block;
    position: absolute;
    top: 0;
    right: 40px;
  }
}
/*
 * Component: Sidebar
 * ------------------
 */
.main-sidebar,
.left-side {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 50px;
  min-height: 100%;
  width: 230px;
  z-index: 810;
  -webkit-transition: -webkit-transform 0.3s ease-in-out, width 0.3s ease-in-out;
  -moz-transition: -moz-transform 0.3s ease-in-out, width 0.3s ease-in-out;
  -o-transition: -o-transform 0.3s ease-in-out, width 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .main-sidebar,
  .left-side {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .main-sidebar,
  .left-side {
    -webkit-transform: translate(-230px, 0);
    -ms-transform: translate(-230px, 0);
    -o-transform: translate(-230px, 0);
    transform: translate(-230px, 0);
  }
}
@media (min-width: 768px) {
  .sidebar-collapse .main-sidebar,
  .sidebar-collapse .left-side {
    -webkit-transform: translate(-230px, 0);
    -ms-transform: translate(-230px, 0);
    -o-transform: translate(-230px, 0);
    transform: translate(-230px, 0);
  }
}
@media (max-width: 767px) {
  .sidebar-open .main-sidebar,
  .sidebar-open .left-side {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.sidebar {
  padding-bottom: 10px;
}
.sidebar-form input:focus {
  border-color: transparent;
}
.user-panel {
  position: relative;
  width: 100%;
  padding: 10px;
  overflow: hidden;
}
.user-panel:before,
.user-panel:after {
  content: " ";
  display: table;
}
.user-panel:after {
  clear: both;
}
.user-panel > .image > img {
  width: 100%;
  max-width: 45px;
  height: auto;
}
.user-panel > .info {
  padding: 5px 5px 5px 15px;
  line-height: 1;
  position: absolute;
  left: 55px;
}
.user-panel > .info > p {
  font-weight: 600;
  margin-bottom: 9px;
}
.user-panel > .info > a {
  text-decoration: none;
  padding-right: 5px;
  margin-top: 3px;
  font-size: 11px;
}
.user-panel > .info > a > .fa,
.user-panel > .info > a > .ion,
.user-panel > .info > a > .glyphicon {
  margin-right: 3px;
}
.sidebar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-menu > li {
  position: relative;
  margin: 0;
  padding: 0;
}
.sidebar-menu > li > a {
  padding: 6px 5px 6px 10px;
  display: block;
}
.sidebar-menu > li > a > .fa,
.sidebar-menu > li > a > .glyphicon,
.sidebar-menu > li > a > .ion {
  width: 20px;
}
.sidebar-menu > li .label,
.sidebar-menu > li .badge {
  margin-right: 5px;
}
.sidebar-menu > li .badge {
  margin-top: 3px;
}
.sidebar-menu li.header {
  padding: 5px 25px 5px 15px;
  font-size: 12px;
}
.sidebar-menu li > a > .fa-angle-left,
.sidebar-menu li > a > .pull-right-container > .fa-angle-left {
  width: auto;
  height: auto;
  padding: 0;
  margin-right: 5px;
}
.sidebar-menu li > a > .fa-angle-left {
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -8px;
}
.sidebar-menu li.active > a > .fa-angle-left,
.sidebar-menu li.active > a > .pull-right-container > .fa-angle-left {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.sidebar-menu li.active > .treeview-menu {
  display: block;
}
.sidebar-menu .treeview-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 5px;
}
.sidebar-menu .treeview-menu .treeview-menu {
  padding-left: 20px;
}
.sidebar-menu .treeview-menu > li {
  margin: 0;
}
.sidebar-menu .treeview-menu > li > a {
  padding: 5px 5px 5px 15px;
  display: block;
  font-size: 14px;
}
.sidebar-menu .treeview-menu > li > a > .fa,
.sidebar-menu .treeview-menu > li > a > .glyphicon,
.sidebar-menu .treeview-menu > li > a > .ion {
  width: 20px;
}
.sidebar-menu .treeview-menu > li > a > .pull-right-container > .fa-angle-left,
.sidebar-menu .treeview-menu > li > a > .pull-right-container > .fa-angle-down,
.sidebar-menu .treeview-menu > li > a > .fa-angle-left,
.sidebar-menu .treeview-menu > li > a > .fa-angle-down {
  width: auto;
}
/*
 * Component: Sidebar Mini
 */
@media (min-width: 768px) {
  .sidebar-mini.sidebar-collapse .content-wrapper,
  .sidebar-mini.sidebar-collapse .right-side,
  .sidebar-mini.sidebar-collapse .main-footer {
    margin-left: 50px!important;
    z-index: 840;
  }
  .sidebar-mini.sidebar-collapse .main-sidebar {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    width: 50px!important;
    z-index: 850;
  }
  .sidebar-mini.sidebar-collapse .sidebar-menu > li {
    position: relative;
  }
  .sidebar-mini.sidebar-collapse .sidebar-menu > li > a {
    margin-right: 0;
  }
  .sidebar-mini.sidebar-collapse .sidebar-menu > li > a > span {
    border-top-right-radius: 4px;
  }
  .sidebar-mini.sidebar-collapse .sidebar-menu > li:not(.treeview) > a > span {
    border-bottom-right-radius: 4px;
  }
  .sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu {
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom-right-radius: 4px;
  }
  .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > span:not(.pull-right),
  .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > .treeview-menu {
    display: block!important;
    position: absolute;
    width: 180px;
    left: 50px;
  }
  .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > span {
    top: 0;
    margin-left: -3px;
    padding: 12px 5px 12px 20px;
    background-color: inherit;
  }
  .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > .pull-right-container {
    float: right;
    width: auto!important;
    left: 200px!important;
    top: 10px!important;
  }
  .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > .pull-right-container > .label:not(:first-of-type) {
    display: none;
  }
  .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > .treeview-menu {
    top: 44px;
    margin-left: 0;
  }
  .sidebar-mini.sidebar-collapse .main-sidebar .user-panel > .info,
  .sidebar-mini.sidebar-collapse .sidebar-form,
  .sidebar-mini.sidebar-collapse .sidebar-menu > li > a > span,
  .sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu,
  .sidebar-mini.sidebar-collapse .sidebar-menu > li > a > .pull-right,
  .sidebar-mini.sidebar-collapse .sidebar-menu li.header {
    display: none!important;
    -webkit-transform: translateZ(0);
  }
  .sidebar-mini.sidebar-collapse .main-header .logo {
    width: 50px;
  }
  .sidebar-mini.sidebar-collapse .main-header .logo > .logo-mini {
    display: block;
    margin-left: -15px;
    margin-right: -15px;
    font-size: 18px;
  }
  .sidebar-mini.sidebar-collapse .main-header .logo > .logo-lg {
    display: none;
  }
  .sidebar-mini.sidebar-collapse .main-header .navbar {
    margin-left: 50px;
  }
}
.sidebar-menu,
.main-sidebar .user-panel,
.sidebar-menu > li.header {
  white-space: nowrap;
  overflow: hidden;
}
.sidebar-menu:hover {
  overflow: visible;
}
.sidebar-form,
.sidebar-menu > li.header {
  overflow: hidden;
  text-overflow: clip;
}
.sidebar-menu li > a {
  position: relative;
}
.sidebar-menu li > a > .pull-right-container {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -7px;
}
/*
 * Component: Control sidebar. By default, this is the right sidebar.
 */
.control-sidebar-bg {
  position: fixed;
  z-index: 1000;
  bottom: 0;
}
.control-sidebar-bg,
.control-sidebar {
  top: 0;
  right: -230px;
  width: 230px;
  -webkit-transition: right 0.3s ease-in-out;
  -o-transition: right 0.3s ease-in-out;
  transition: right 0.3s ease-in-out;
}
.control-sidebar {
  position: absolute;
  padding-top: 50px;
  z-index: 1010;
}
@media (max-width: 768px) {
  .control-sidebar {
    padding-top: 100px;
  }
}
.control-sidebar > .tab-content {
  padding: 10px 15px;
}
.control-sidebar.control-sidebar-open,
.control-sidebar.control-sidebar-open + .control-sidebar-bg {
  right: 0;
}
.control-sidebar-open .control-sidebar-bg,
.control-sidebar-open .control-sidebar {
  right: 0;
}
@media (min-width: 768px) {
  .control-sidebar-open .content-wrapper,
  .control-sidebar-open .right-side,
  .control-sidebar-open .main-footer {
    margin-right: 230px;
  }
}
.nav-tabs.control-sidebar-tabs > li:first-of-type > a,
.nav-tabs.control-sidebar-tabs > li:first-of-type > a:hover,
.nav-tabs.control-sidebar-tabs > li:first-of-type > a:focus {
  border-left-width: 0;
}
.nav-tabs.control-sidebar-tabs > li > a {
  border-radius: 0;
}
.nav-tabs.control-sidebar-tabs > li > a,
.nav-tabs.control-sidebar-tabs > li > a:hover {
  border-top: none;
  border-right: none;
  border-left: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
.nav-tabs.control-sidebar-tabs > li > a .icon {
  font-size: 16px;
}
.nav-tabs.control-sidebar-tabs > li.active > a,
.nav-tabs.control-sidebar-tabs > li.active > a:hover,
.nav-tabs.control-sidebar-tabs > li.active > a:focus,
.nav-tabs.control-sidebar-tabs > li.active > a:active {
  border-top: none;
  border-right: none;
  border-bottom: none;
}
@media (max-width: 768px) {
  .nav-tabs.control-sidebar-tabs {
    display: table;
  }
  .nav-tabs.control-sidebar-tabs > li {
    display: table-cell;
  }
}
.control-sidebar-heading {
  font-weight: 400;
  font-size: 16px;
  padding: 10px 0;
  margin-bottom: 10px;
}
.control-sidebar-subheading {
  display: block;
  font-weight: 400;
  font-size: 14px;
}
.control-sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0 -15px;
}
.control-sidebar-menu > li > a {
  display: block;
  padding: 10px 15px;
}
.control-sidebar-menu > li > a:before,
.control-sidebar-menu > li > a:after {
  content: " ";
  display: table;
}
.control-sidebar-menu > li > a:after {
  clear: both;
}
.control-sidebar-menu > li > a > .control-sidebar-subheading {
  margin-top: 0;
}
.control-sidebar-menu .menu-icon {
  float: left;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
}
.control-sidebar-menu .menu-info {
  margin-left: 45px;
  margin-top: 3px;
}
.control-sidebar-menu .menu-info > .control-sidebar-subheading {
  margin: 0;
}
.control-sidebar-menu .menu-info > p {
  margin: 0;
  font-size: 11px;
}
.control-sidebar-menu .progress {
  margin: 0;
}
.control-sidebar-dark {
  color: #b8c7ce;
}
.control-sidebar-dark,
.control-sidebar-dark + .control-sidebar-bg {
  background: #222d32;
}
.control-sidebar-dark .nav-tabs.control-sidebar-tabs {
  border-bottom: #1c2529;
}
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a {
  background: #181f23;
  color: #b8c7ce;
}
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a,
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover,
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:focus {
  border-left-color: #141a1d;
  border-bottom-color: #141a1d;
}
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover,
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:focus,
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:active {
  background: #1c2529;
}
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover {
  color: #fff;
}
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a,
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:hover,
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:focus,
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:active {
  background: #222d32;
  color: #fff;
}
.control-sidebar-dark .control-sidebar-heading,
.control-sidebar-dark .control-sidebar-subheading {
  color: #fff;
}
.control-sidebar-dark .control-sidebar-menu > li > a:hover {
  background: #1e282c;
}
.control-sidebar-dark .control-sidebar-menu > li > a .menu-info > p {
  color: #b8c7ce;
}
.control-sidebar-light {
  color: #5e5e5e;
}
.control-sidebar-light,
.control-sidebar-light + .control-sidebar-bg {
  background: #f9fafc;
  border-left: 1px solid #d2d6de;
}
.control-sidebar-light .nav-tabs.control-sidebar-tabs {
  border-bottom: #d2d6de;
}
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a {
  background: #e8ecf4;
  color: #444;
}
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a,
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:hover,
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:focus {
  border-left-color: #d2d6de;
  border-bottom-color: #d2d6de;
}
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:hover,
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:focus,
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:active {
  background: #eff1f7;
}
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a,
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:hover,
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:focus,
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:active {
  background: #f9fafc;
  color: #111;
}
.control-sidebar-light .control-sidebar-heading,
.control-sidebar-light .control-sidebar-subheading {
  color: #111;
}
.control-sidebar-light .control-sidebar-menu {
  margin-left: -14px;
}
.control-sidebar-light .control-sidebar-menu > li > a:hover {
  background: #f4f4f5;
}
.control-sidebar-light .control-sidebar-menu > li > a .menu-info > p {
  color: #5e5e5e;
}
/*
 * Component: Dropdown menus
 * -------------------------
 */
/*Dropdowns in general*/
.dropdown-menu {
  box-shadow: none;
  border-color: #eee;
}
.dropdown-menu > li > a {
  color: #777;
}
.dropdown-menu > li > a > .glyphicon,
.dropdown-menu > li > a > .fa,
.dropdown-menu > li > a > .ion {
  margin-right: 10px;
}
.dropdown-menu > li > a:hover {
  background-color: #e1e3e9;
  color: #333;
}
.dropdown-menu > .divider {
  background-color: #eee;
}
.navbar-nav > .notifications-menu > .dropdown-menu,
.navbar-nav > .messages-menu > .dropdown-menu,
.navbar-nav > .tasks-menu > .dropdown-menu {
  width: 280px;
  padding: 0 0 0 0;
  margin: 0;
  top: 100%;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li,
.navbar-nav > .messages-menu > .dropdown-menu > li,
.navbar-nav > .tasks-menu > .dropdown-menu > li {
  position: relative;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li.header,
.navbar-nav > .messages-menu > .dropdown-menu > li.header,
.navbar-nav > .tasks-menu > .dropdown-menu > li.header {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-color: #ffffff;
  padding: 7px 10px;
  border-bottom: 1px solid #f4f4f4;
  color: #444444;
  font-size: 14px;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a,
.navbar-nav > .messages-menu > .dropdown-menu > li.footer > a,
.navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  font-size: 12px;
  background-color: #fff;
  padding: 7px 10px;
  border-bottom: 1px solid #eeeeee;
  color: #444 !important;
  text-align: center;
}
@media (max-width: 991px) {
  .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a,
  .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a,
  .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a {
    background: #fff !important;
    color: #444 !important;
  }
}
.navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a:hover,
.navbar-nav > .messages-menu > .dropdown-menu > li.footer > a:hover,
.navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a:hover {
  text-decoration: none;
  font-weight: normal;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu,
.navbar-nav > .messages-menu > .dropdown-menu > li .menu,
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu {
  max-height: 200px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: hidden;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a,
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a,
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
  display: block;
  white-space: nowrap;
  /* Prevent text from breaking */
  border-bottom: 1px solid #f4f4f4;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a:hover,
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:hover,
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a:hover {
  background: #f4f4f4;
  text-decoration: none;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a {
  color: #444444;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 10px;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon,
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa,
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion {
  width: 20px;
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a {
  margin: 0;
  padding: 10px 10px;
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > div > img {
  margin: auto 10px auto auto;
  width: 40px;
  height: 40px;
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 {
  padding: 0;
  margin: 0 0 0 45px;
  color: #444444;
  font-size: 15px;
  position: relative;
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 > small {
  color: #999999;
  font-size: 10px;
  position: absolute;
  top: 0;
  right: 0;
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > p {
  margin: 0 0 0 45px;
  font-size: 12px;
  color: #888888;
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:before,
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after {
  content: " ";
  display: table;
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after {
  clear: both;
}
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
  padding: 10px;
}
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > h3 {
  font-size: 14px;
  padding: 0;
  margin: 0 0 10px 0;
  color: #666666;
}
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > .progress {
  padding: 0;
  margin: 0;
}
.navbar-nav > .user-menu > .dropdown-menu {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  padding: 1px 0 0 0;
  border-top-width: 0;
  width: 280px;
}
.navbar-nav > .user-menu > .dropdown-menu,
.navbar-nav > .user-menu > .dropdown-menu > .user-body {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.navbar-nav > .user-menu > .dropdown-menu > li.user-header {
  height: 175px;
  padding: 10px;
  text-align: center;
}
.navbar-nav > .user-menu > .dropdown-menu > li.user-header > img {
  z-index: 5;
  height: 90px;
  width: 90px;
  border: 3px solid;
  border-color: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}
.navbar-nav > .user-menu > .dropdown-menu > li.user-header > p {
  z-index: 5;
  color: #fff;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  margin-top: 10px;
}
.navbar-nav > .user-menu > .dropdown-menu > li.user-header > p > small {
  display: block;
  font-size: 12px;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-body {
  padding: 15px;
  border-bottom: 1px solid #f4f4f4;
  border-top: 1px solid #dddddd;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-body:before,
.navbar-nav > .user-menu > .dropdown-menu > .user-body:after {
  content: " ";
  display: table;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-body:after {
  clear: both;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-body a {
  color: #444 !important;
}
@media (max-width: 991px) {
  .navbar-nav > .user-menu > .dropdown-menu > .user-body a {
    background: #fff !important;
    color: #444 !important;
  }
}
.navbar-nav > .user-menu > .dropdown-menu > .user-footer {
  background-color: #f9f9f9;
  padding: 10px;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-footer:before,
.navbar-nav > .user-menu > .dropdown-menu > .user-footer:after {
  content: " ";
  display: table;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-footer:after {
  clear: both;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default {
  color: #666666;
}
@media (max-width: 991px) {
  .navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default:hover {
    background-color: #f9f9f9;
  }
}
.navbar-nav > .user-menu .user-image {
  float: left;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin-right: 10px;
  margin-top: -2px;
}
@media (max-width: 767px) {
  .navbar-nav > .user-menu .user-image {
    float: none;
    margin-right: 0;
    margin-top: -8px;
    line-height: 10px;
  }
}
/* Add fade animation to dropdown menus by appending
 the class .animated-dropdown-menu to the .dropdown-menu ul (or ol)*/
.open:not(.dropup) > .animated-dropdown-menu {
  backface-visibility: visible !important;
  -webkit-animation: flipInX 0.7s both;
  -o-animation: flipInX 0.7s both;
  animation: flipInX 0.7s both;
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transition-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    transform: perspective(400px);
  }
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
  }
}
/* Fix dropdown menu in navbars */
.navbar-custom-menu > .navbar-nav > li {
  position: relative;
}
.navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
  position: absolute;
  right: 0;
  left: auto;
}
@media (max-width: 991px) {
  .navbar-custom-menu > .navbar-nav {
    float: right;
  }
  .navbar-custom-menu > .navbar-nav > li {
    position: static;
  }
  .navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
    position: absolute;
    right: 5%;
    left: auto;
    border: 1px solid #ddd;
    background: #fff;
  }
}
/*
 * Component: Form
 * ---------------
 */
.form-control {
  border-radius: 0;
  box-shadow: none;
  border-color: #d2d6de;
}
.form-control:focus {
  border-color: #354F3B;
  box-shadow: none;
}
.form-control::-moz-placeholder,
.form-control:-ms-input-placeholder,
.form-control::-webkit-input-placeholder {
  color: #bbb;
  opacity: 1;
}
.form-control:not(select) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-group.has-success label {
  color: #354F3B;
}
.form-group.has-success .form-control,
.form-group.has-success .input-group-addon {
  border-color: #354F3B;
  box-shadow: none;
}
.form-group.has-success .help-block {
  color: #354F3B;
}
.form-group.has-warning label {
  color: #f39c12;
}
.form-group.has-warning .form-control,
.form-group.has-warning .input-group-addon {
  border-color: #f39c12;
  box-shadow: none;
}
.form-group.has-warning .help-block {
  color: #f39c12;
}
.form-group.has-error label {
  color: #dd4b39;
}
.form-group.has-error .form-control,
.form-group.has-error .input-group-addon {
  border-color: #dd4b39;
  box-shadow: none;
}
.form-group.has-error .help-block {
  color: #dd4b39;
}
/* Input group */
.input-group .input-group-addon {
  border-radius: 0;
  border-color: #d2d6de;
  background-color: #fff;
}
/* button groups */
.btn-group-vertical .btn.btn-flat:first-of-type,
.btn-group-vertical .btn.btn-flat:last-of-type {
  border-radius: 0;
}
.icheck > label {
  padding-left: 0;
}
/* support Font Awesome icons in form-control */
.form-control-feedback.fa {
  line-height: 34px;
}
.input-lg + .form-control-feedback.fa,
.input-group-lg + .form-control-feedback.fa,
.form-group-lg .form-control + .form-control-feedback.fa {
  line-height: 46px;
}
.input-sm + .form-control-feedback.fa,
.input-group-sm + .form-control-feedback.fa,
.form-group-sm .form-control + .form-control-feedback.fa {
  line-height: 30px;
}
/*
 * Component: Progress Bar
 * -----------------------
 */
.progress,
.progress > .progress-bar {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.progress,
.progress > .progress-bar,
.progress .progress-bar,
.progress > .progress-bar .progress-bar {
  border-radius: 1px;
}
/* size variation */
.progress.sm,
.progress-sm {
  height: 10px;
}
.progress.sm,
.progress-sm,
.progress.sm .progress-bar,
.progress-sm .progress-bar {
  border-radius: 1px;
}
.progress.xs,
.progress-xs {
  height: 7px;
}
.progress.xs,
.progress-xs,
.progress.xs .progress-bar,
.progress-xs .progress-bar {
  border-radius: 1px;
}
.progress.xxs,
.progress-xxs {
  height: 3px;
}
.progress.xxs,
.progress-xxs,
.progress.xxs .progress-bar,
.progress-xxs .progress-bar {
  border-radius: 1px;
}
/* Vertical bars */
.progress.vertical {
  position: relative;
  width: 30px;
  height: 200px;
  display: inline-block;
  margin-right: 10px;
}
.progress.vertical > .progress-bar {
  width: 100%;
  position: absolute;
  bottom: 0;
}
.progress.vertical.sm,
.progress.vertical.progress-sm {
  width: 20px;
}
.progress.vertical.xs,
.progress.vertical.progress-xs {
  width: 10px;
}
.progress.vertical.xxs,
.progress.vertical.progress-xxs {
  width: 3px;
}
.progress-group .progress-text {
  font-weight: 600;
}
.progress-group .progress-number {
  float: right;
}
/* Remove margins from progress bars when put in a table */
.table tr > td .progress {
  margin: 0;
}
.progress-bar-light-blue,
.progress-bar-primary {
  background-color: #3c8dbc;
}
.progress-striped .progress-bar-light-blue,
.progress-striped .progress-bar-primary {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-green,
.progress-bar-success {
  background-color: #354F3B;
}
.progress-striped .progress-bar-green,
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-aqua,
.progress-bar-info {
  background-color: #00c0ef;
}
.progress-striped .progress-bar-aqua,
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-yellow,
.progress-bar-warning {
  background-color: #f39c12;
}
.progress-striped .progress-bar-yellow,
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-red,
.progress-bar-danger {
  background-color: #dd4b39;
}
.progress-striped .progress-bar-red,
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
/*
 * Component: Small Box
 * --------------------
 */
.small-box {
  border-radius: 2px;
  position: relative;
  display: block;
  margin-bottom: 20px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.small-box > .inner {
  padding: 10px;
}
.small-box > .small-box-footer {
  position: relative;
  text-align: center;
  padding: 3px 0;
  color: #fff;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  z-index: 10;
  background: rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.small-box > .small-box-footer:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.15);
}
.small-box h3 {
  font-size: 38px;
  font-weight: bold;
  margin: 0 0 10px 0;
  white-space: nowrap;
  padding: 0;
}
.small-box p {
  font-size: 15px;
}
.small-box p > small {
  display: block;
  color: #f9f9f9;
  font-size: 13px;
  margin-top: 5px;
}
.small-box h3,
.small-box p {
  z-index: 5;
}
.small-box .icon {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: absolute;
  top: -10px;
  right: 10px;
  z-index: 0;
  font-size: 90px;
  color: rgba(0, 0, 0, 0.15);
}
.small-box:hover {
  text-decoration: none;
  color: #f9f9f9;
}
.small-box:hover .icon {
  font-size: 95px;
}
@media (max-width: 767px) {
  .small-box {
    text-align: center;
  }
  .small-box .icon {
    display: none;
  }
  .small-box p {
    font-size: 12px;
  }
}
/*
 * Component: Box
 * --------------
 */
.box {
  position: relative;
  border-radius: 3px;
  background: #ffffff;
  border-top: 3px solid #d2d6de;
  margin-bottom: 20px;
  width: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.box.box-primary {
  border-top-color: #3c8dbc;
}
.box.box-info {
  border-top-color: #00c0ef;
}
.box.box-danger {
  border-top-color: #dd4b39;
}
.box.box-warning {
  border-top-color: #f39c12;
}
.box.box-success {
  border-top-color: #354F3B;
}
.box.box-default {
  border-top-color: #d2d6de;
}
.box.collapsed-box .box-body,
.box.collapsed-box .box-footer {
  display: none;
}
.box .nav-stacked > li {
  border-bottom: 1px solid #f4f4f4;
  margin: 0;
}
.box .nav-stacked > li:last-of-type {
  border-bottom: none;
}
.box.height-control .box-body {
  max-height: 300px;
  overflow: auto;
}
.box .border-right {
  border-right: 1px solid #f4f4f4;
}
.box .border-left {
  border-left: 1px solid #f4f4f4;
}
.box.box-solid {
  border-top: 0;
}
.box.box-solid > .box-header .btn.btn-default {
  background: transparent;
}
.box.box-solid > .box-header .btn:hover,
.box.box-solid > .box-header a:hover {
  background: rgba(0, 0, 0, 0.1);
}
.box.box-solid.box-default {
  border: 1px solid #d2d6de;
}
.box.box-solid.box-default > .box-header {
  color: #444;
  background: #d2d6de;
  background-color: #d2d6de;
}
.box.box-solid.box-default > .box-header a,
.box.box-solid.box-default > .box-header .btn {
  color: #444;
}
.box.box-solid.box-primary {
  border: 1px solid #3c8dbc;
}
.box.box-solid.box-primary > .box-header {
  color: #fff;
  background: #3c8dbc;
  background-color: #3c8dbc;
}
.box.box-solid.box-primary > .box-header a,
.box.box-solid.box-primary > .box-header .btn {
  color: #fff;
}
.box.box-solid.box-info {
  border: 1px solid #00c0ef;
}
.box.box-solid.box-info > .box-header {
  color: #fff;
  background: #00c0ef;
  background-color: #00c0ef;
}
.box.box-solid.box-info > .box-header a,
.box.box-solid.box-info > .box-header .btn {
  color: #fff;
}
.box.box-solid.box-danger {
  border: 1px solid #dd4b39;
}
.box.box-solid.box-danger > .box-header {
  color: #fff;
  background: #dd4b39;
  background-color: #dd4b39;
}
.box.box-solid.box-danger > .box-header a,
.box.box-solid.box-danger > .box-header .btn {
  color: #fff;
}
.box.box-solid.box-warning {
  border: 1px solid #f39c12;
}
.box.box-solid.box-warning > .box-header {
  color: #fff;
  background: #f39c12;
  background-color: #f39c12;
}
.box.box-solid.box-warning > .box-header a,
.box.box-solid.box-warning > .box-header .btn {
  color: #fff;
}
.box.box-solid.box-success {
  border: 1px solid #354F3B;
}
.box.box-solid.box-success > .box-header {
  color: #fff;
  background: #354F3B;
  background-color: #354F3B;
}
.box.box-solid.box-success > .box-header a,
.box.box-solid.box-success > .box-header .btn {
  color: #fff;
}
.box.box-solid > .box-header > .box-tools .btn {
  border: 0;
  box-shadow: none;
}
.box.box-solid[class*='bg'] > .box-header {
  color: #fff;
}
.box .box-group > .box {
  margin-bottom: 5px;
}
.box .knob-label {
  text-align: center;
  color: #333;
  font-weight: 100;
  font-size: 12px;
  margin-bottom: 0.3em;
}
.box > .overlay,
.overlay-wrapper > .overlay,
.box > .loading-img,
.overlay-wrapper > .loading-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.box .overlay,
.overlay-wrapper .overlay {
  z-index: 50;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 3px;
}
.box .overlay > .fa,
.overlay-wrapper .overlay > .fa {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -15px;
  margin-top: -15px;
  color: #000;
  font-size: 30px;
}
.box .overlay.dark,
.overlay-wrapper .overlay.dark {
  background: rgba(0, 0, 0, 0.5);
}
.box-header:before,
.box-body:before,
.box-footer:before,
.box-header:after,
.box-body:after,
.box-footer:after {
  content: " ";
  display: table;
}
.box-header:after,
.box-body:after,
.box-footer:after {
  clear: both;
}
.box-header {
  color: #444;
  display: block;
  padding: 10px;
  position: relative;
}
.box-header.with-border {
  border-bottom: 1px solid #f4f4f4;
}
.collapsed-box .box-header.with-border {
  border-bottom: none;
}
.box-header > .fa,
.box-header > .glyphicon,
.box-header > .ion,
.box-header .box-title {
  display: inline-block;
  font-size: 18px;
  margin: 0;
  line-height: 1;
}
.box-header > .fa,
.box-header > .glyphicon,
.box-header > .ion {
  margin-right: 5px;
}
.box-header > .box-tools {
  position: absolute;
  right: 10px;
  top: 5px;
}
.box-header > .box-tools [data-toggle="tooltip"] {
  position: relative;
}
.box-header > .box-tools.pull-right .dropdown-menu {
  right: 0;
  left: auto;
}
.btn-box-tool {
  padding: 5px;
  font-size: 12px;
  background: transparent;
  color: #97a0b3;
}
.open .btn-box-tool,
.btn-box-tool:hover {
  color: #606c84;
}
.btn-box-tool.btn:active {
  box-shadow: none;
}
.box-body {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  padding: 10px;
}
.no-header .box-body {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.box-body > .table {
  margin-bottom: 0;
}
.box-body .fc {
  margin-top: 5px;
}
.box-body .full-width-chart {
  margin: -19px;
}
.box-body.no-padding .full-width-chart {
  margin: -9px;
}
.box-body .box-pane {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 3px;
}
.box-body .box-pane-right {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 0;
}
.box-footer {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top: 1px solid #f4f4f4;
  padding: 10px;
  background-color: #fff;
}
.chart-legend {
  margin: 10px 0;
}
@media (max-width: 991px) {
  .chart-legend > li {
    float: left;
    margin-right: 10px;
  }
}
.box-comments {
  background: #f7f7f7;
}
.box-comments .box-comment {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}
.box-comments .box-comment:before,
.box-comments .box-comment:after {
  content: " ";
  display: table;
}
.box-comments .box-comment:after {
  clear: both;
}
.box-comments .box-comment:last-of-type {
  border-bottom: 0;
}
.box-comments .box-comment:first-of-type {
  padding-top: 0;
}
.box-comments .box-comment img {
  float: left;
}
.box-comments .comment-text {
  margin-left: 40px;
  color: #555;
}
.box-comments .username {
  color: #444;
  display: block;
  font-weight: 600;
}
.box-comments .text-muted {
  font-weight: 400;
  font-size: 12px;
}
/* Widget: TODO LIST */
.todo-list {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: auto;
}
.todo-list > li {
  border-radius: 2px;
  padding: 10px;
  background: #f4f4f4;
  margin-bottom: 2px;
  border-left: 2px solid #e6e7e8;
  color: #444;
}
.todo-list > li:last-of-type {
  margin-bottom: 0;
}
.todo-list > li > input[type='checkbox'] {
  margin: 0 10px 0 5px;
}
.todo-list > li .text {
  display: inline-block;
  margin-left: 5px;
  font-weight: 600;
}
.todo-list > li .label {
  margin-left: 10px;
  font-size: 9px;
}
.todo-list > li .tools {
  display: none;
  float: right;
  color: #dd4b39;
}
.todo-list > li .tools > .fa,
.todo-list > li .tools > .glyphicon,
.todo-list > li .tools > .ion {
  margin-right: 5px;
  cursor: pointer;
}
.todo-list > li:hover .tools {
  display: inline-block;
}
.todo-list > li.done {
  color: #999;
}
.todo-list > li.done .text {
  text-decoration: line-through;
  font-weight: 500;
}
.todo-list > li.done .label {
  background: #d2d6de !important;
}
.todo-list .danger {
  border-left-color: #dd4b39;
}
.todo-list .warning {
  border-left-color: #f39c12;
}
.todo-list .info {
  border-left-color: #00c0ef;
}
.todo-list .success {
  border-left-color: #354F3B;
}
.todo-list .primary {
  border-left-color: #3c8dbc;
}
.todo-list .handle {
  display: inline-block;
  cursor: move;
  margin: 0 5px;
}
/* Chat widget (DEPRECATED - this will be removed in the next major release. Use Direct Chat instead)*/
.chat {
  padding: 5px 20px 5px 10px;
}
.chat .item {
  margin-bottom: 10px;
}
.chat .item:before,
.chat .item:after {
  content: " ";
  display: table;
}
.chat .item:after {
  clear: both;
}
.chat .item > img {
  width: 40px;
  height: 40px;
  border: 2px solid transparent;
  border-radius: 50%;
}
.chat .item > .online {
  border: 2px solid #354F3B;
}
.chat .item > .offline {
  border: 2px solid #dd4b39;
}
.chat .item > .message {
  margin-left: 55px;
  margin-top: -40px;
}
.chat .item > .message > .name {
  display: block;
  font-weight: 600;
}
.chat .item > .attachment {
  border-radius: 3px;
  background: #f4f4f4;
  margin-left: 65px;
  margin-right: 15px;
  padding: 10px;
}
.chat .item > .attachment > h4 {
  margin: 0 0 5px 0;
  font-weight: 600;
  font-size: 14px;
}
.chat .item > .attachment > p,
.chat .item > .attachment > .filename {
  font-weight: 600;
  font-size: 13px;
  font-style: italic;
  margin: 0;
}
.chat .item > .attachment:before,
.chat .item > .attachment:after {
  content: " ";
  display: table;
}
.chat .item > .attachment:after {
  clear: both;
}
.box-input {
  max-width: 200px;
}
.modal .panel-body {
  color: #444;
}
/*
 * Component: Info Box
 * -------------------
 */
.info-box {
  display: block;
  min-height: 90px;
  background: #fff;
  width: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  margin-bottom: 15px;
}
.info-box small {
  font-size: 14px;
}
.info-box .progress {
  background: rgba(0, 0, 0, 0.2);
  margin: 5px -10px 5px -10px;
  height: 2px;
}
.info-box .progress,
.info-box .progress .progress-bar {
  border-radius: 0;
}
.info-box .progress .progress-bar {
  background: #fff;
}
.info-box-icon {
  border-top-left-radius: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 2px;
  display: block;
  float: left;
  height: 90px;
  width: 90px;
  text-align: center;
  font-size: 45px;
  line-height: 90px;
  background: rgba(0, 0, 0, 0.2);
}
.info-box-icon > img {
  max-width: 100%;
}
.info-box-content {
  padding: 5px 10px;
  margin-left: 90px;
}
.info-box-number {
  display: block;
  font-weight: bold;
  font-size: 18px;
}
.progress-description,
.info-box-text {
  display: block;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.info-box-text {
  text-transform: uppercase;
}
.info-box-more {
  display: block;
}
.progress-description {
  margin: 0;
}
/*
 * Component: Timeline
 * -------------------
 */
.timeline {
  position: relative;
  margin: 0 0 30px 0;
  padding: 0;
  list-style: none;
}
.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #ddd;
  left: 31px;
  margin: 0;
  border-radius: 2px;
}
.timeline > li {
  position: relative;
  margin-right: 10px;
  margin-bottom: 15px;
}
.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table;
}
.timeline > li:after {
  clear: both;
}
.timeline > li > .timeline-item {
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  margin-top: 0;
  background: #fff;
  color: #444;
  margin-left: 60px;
  margin-right: 15px;
  padding: 0;
  position: relative;
}
.timeline > li > .timeline-item > .time {
  color: #999;
  float: right;
  padding: 10px;
  font-size: 12px;
}
.timeline > li > .timeline-item > .timeline-header {
  margin: 0;
  color: #555;
  border-bottom: 1px solid #f4f4f4;
  padding: 10px;
  font-size: 16px;
  line-height: 1.1;
}
.timeline > li > .timeline-item > .timeline-header > a {
  font-weight: 600;
}
.timeline > li > .timeline-item > .timeline-body,
.timeline > li > .timeline-item > .timeline-footer {
  padding: 10px;
}
.timeline > li > .fa,
.timeline > li > .glyphicon,
.timeline > li > .ion {
  width: 30px;
  height: 30px;
  font-size: 15px;
  line-height: 30px;
  position: absolute;
  color: #666;
  background: #d2d6de;
  border-radius: 50%;
  text-align: center;
  left: 18px;
  top: 0;
}
.timeline > .time-label > span {
  font-weight: 600;
  padding: 5px;
  display: inline-block;
  background-color: #fff;
  border-radius: 4px;
}
.timeline-inverse > li > .timeline-item {
  background: #f0f0f0;
  border: 1px solid #ddd;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.timeline-inverse > li > .timeline-item > .timeline-header {
  border-bottom-color: #ddd;
}
/*
 * Component: Button
 * -----------------
 */
.btn {
  border-radius: 3px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: 1px solid transparent;
}
.btn.uppercase {
  text-transform: uppercase;
}
.btn.btn-flat {
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-width: 1px;
}
.btn:active {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn:focus {
  outline: none;
}
.btn.btn-file {
  position: relative;
  overflow: hidden;
}
.btn.btn-file > input[type='file'] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  outline: none;
  background: white;
  cursor: inherit;
  display: block;
}
.btn-default {
  background-color: #f4f4f4;
  color: #444;
  border-color: #ddd;
}
.btn-default:hover,
.btn-default:active,
.btn-default.hover {
  background-color: #e7e7e7;
}
.btn-primary {
  background-color: #3c8dbc;
  border-color: #367fa9;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary.hover {
  background-color: #367fa9;
}
.btn-success {
  background-color: #354F3B;
  border-color: #2b4030;
}
.btn-success:hover,
.btn-success:active,
.btn-success.hover {
  background-color: #2b4030;
}
.btn-info {
  background-color: #00c0ef;
  border-color: #00acd6;
}
.btn-info:hover,
.btn-info:active,
.btn-info.hover {
  background-color: #00acd6;
}
.btn-danger {
  background-color: #dd4b39;
  border-color: #d73925;
}
.btn-danger:hover,
.btn-danger:active,
.btn-danger.hover {
  background-color: #d73925;
}
.btn-warning {
  background-color: #f39c12;
  border-color: #e08e0b;
}
.btn-warning:hover,
.btn-warning:active,
.btn-warning.hover {
  background-color: #e08e0b;
}
.btn-outline {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}
.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.7);
}
.btn-link {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.btn[class*='bg-']:hover {
  -webkit-box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
}
.btn-app {
  border-radius: 3px;
  position: relative;
  padding: 15px 5px;
  margin: 0 0 10px 10px;
  min-width: 80px;
  height: 60px;
  text-align: center;
  color: #666;
  border: 1px solid #ddd;
  background-color: #f4f4f4;
  font-size: 12px;
}
.btn-app > .fa,
.btn-app > .glyphicon,
.btn-app > .ion {
  font-size: 20px;
  display: block;
}
.btn-app:hover {
  background: #f4f4f4;
  color: #444;
  border-color: #aaa;
}
.btn-app:active,
.btn-app:focus {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-app > .badge {
  position: absolute;
  top: -3px;
  right: -10px;
  font-size: 10px;
  font-weight: 400;
}
/*
 * Component: Callout
 * ------------------
 */
.callout {
  border-radius: 3px;
  margin: 0 0 20px 0;
  padding: 15px 30px 15px 15px;
  border-left: 5px solid #eee;
}
.callout a {
  color: #fff;
  text-decoration: underline;
}
.callout a:hover {
  color: #eee;
}
.callout h4 {
  margin-top: 0;
  font-weight: 600;
}
.callout p:last-child {
  margin-bottom: 0;
}
.callout code,
.callout .highlight {
  background-color: #fff;
}
.callout.callout-danger {
  border-color: #c23321;
}
.callout.callout-warning {
  border-color: #c87f0a;
}
.callout.callout-info {
  border-color: #0097bc;
}
.callout.callout-success {
  border-color: #213024;
}
/*
 * Component: alert
 * ----------------
 */
.alert {
  border-radius: 3px;
}
.alert h4 {
  font-weight: 600;
}
.alert .icon {
  margin-right: 10px;
}
.alert .close {
  color: #000;
  -moz-opacity: 0.2;
  -khtml-opacity: 0.2;
  -webkit-opacity: 0.2;
  opacity: 0.2;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=20);
  filter: alpha(opacity=20);
}
.alert .close:hover {
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  -webkit-opacity: 0.5;
  opacity: 0.5;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
  filter: alpha(opacity=50);
}
.alert a {
  color: #fff;
  text-decoration: underline;
}
.alert-success {
  border-color: #2b4030;
}
.alert-danger,
.alert-error {
  border-color: #d73925;
}
.alert-warning {
  border-color: #e08e0b;
}
.alert-info {
  border-color: #367fa9;
}
.alert-help {
  border-color: #d4e7c7;
}
.alert-help {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.alert-help hr {
  border-top-color: #a6e1ec;
}
.alert-help .alert-link {
  color: #245269;
}
.bg-lightgreen {
  color: #000000 !important;
}
/*
 * Component: Nav
 * --------------
 */
.nav > li > a:hover,
.nav > li > a:active,
.nav > li > a:focus {
  color: #444;
  background: #f7f7f7;
}
/* NAV PILLS */
.nav-pills > li > a {
  border-radius: 0;
  border-top: 3px solid transparent;
  color: #444;
}
.nav-pills > li > a > .fa,
.nav-pills > li > a > .glyphicon,
.nav-pills > li > a > .ion {
  margin-right: 5px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  border-top-color: #3c8dbc;
}
.nav-pills > li.active > a {
  font-weight: 600;
}
/* NAV STACKED */
.nav-stacked > li > a {
  border-radius: 0;
  border-top: 0;
  border-left: 3px solid transparent;
  color: #444;
}
.nav-stacked > li.active > a,
.nav-stacked > li.active > a:hover {
  background: transparent;
  color: #444;
  border-top: 0;
  border-left-color: #3c8dbc;
}
.nav-stacked > li.header {
  border-bottom: 1px solid #ddd;
  color: #777;
  margin-bottom: 10px;
  padding: 5px 10px;
  text-transform: uppercase;
}
/* NAV TABS */
.nav-tabs-custom {
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
.nav-tabs-custom > .nav-tabs {
  margin: 0;
  border-bottom-color: #f4f4f4;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.nav-tabs-custom > .nav-tabs > li {
  border-top: 3px solid transparent;
  margin-bottom: -2px;
  margin-right: 5px;
}
.nav-tabs-custom > .nav-tabs > li > a {
  color: #444;
  border-radius: 0;
}
.nav-tabs-custom > .nav-tabs > li > a.text-muted {
  color: #999;
}
.nav-tabs-custom > .nav-tabs > li > a,
.nav-tabs-custom > .nav-tabs > li > a:hover {
  background: transparent;
  margin: 0;
}
.nav-tabs-custom > .nav-tabs > li > a:hover {
  color: #999;
}
.nav-tabs-custom > .nav-tabs > li:not(.active) > a:hover,
.nav-tabs-custom > .nav-tabs > li:not(.active) > a:focus,
.nav-tabs-custom > .nav-tabs > li:not(.active) > a:active {
  border-color: transparent;
}
.nav-tabs-custom > .nav-tabs > li.active {
  border-top-color: #3c8dbc;
}
.nav-tabs-custom > .nav-tabs > li.active > a,
.nav-tabs-custom > .nav-tabs > li.active:hover > a {
  background-color: #fff;
  color: #444;
}
.nav-tabs-custom > .nav-tabs > li.active > a {
  border-top-color: transparent;
  border-left-color: #f4f4f4;
  border-right-color: #f4f4f4;
}
.nav-tabs-custom > .nav-tabs > li:first-of-type {
  margin-left: 0;
}
.nav-tabs-custom > .nav-tabs > li:first-of-type.active > a {
  border-left-color: transparent;
}
.nav-tabs-custom > .nav-tabs.pull-right {
  float: none!important;
}
.nav-tabs-custom > .nav-tabs.pull-right > li {
  float: right;
}
.nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type {
  margin-right: 0;
}
.nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type > a {
  border-left-width: 1px;
}
.nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type.active > a {
  border-left-color: #f4f4f4;
  border-right-color: transparent;
}
.nav-tabs-custom > .nav-tabs > li.header {
  line-height: 35px;
  padding: 0 10px;
  font-size: 20px;
  color: #444;
}
.nav-tabs-custom > .nav-tabs > li.header > .fa,
.nav-tabs-custom > .nav-tabs > li.header > .glyphicon,
.nav-tabs-custom > .nav-tabs > li.header > .ion {
  margin-right: 5px;
}
.nav-tabs-custom > .tab-content {
  background: #fff;
  padding: 10px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.nav-tabs-custom .dropdown.open > a:active,
.nav-tabs-custom .dropdown.open > a:focus {
  background: transparent;
  color: #999;
}
.nav-tabs-custom.tab-primary > .nav-tabs > li.active {
  border-top-color: #3c8dbc;
}
.nav-tabs-custom.tab-info > .nav-tabs > li.active {
  border-top-color: #00c0ef;
}
.nav-tabs-custom.tab-danger > .nav-tabs > li.active {
  border-top-color: #dd4b39;
}
.nav-tabs-custom.tab-warning > .nav-tabs > li.active {
  border-top-color: #f39c12;
}
.nav-tabs-custom.tab-success > .nav-tabs > li.active {
  border-top-color: #354F3B;
}
.nav-tabs-custom.tab-default > .nav-tabs > li.active {
  border-top-color: #d2d6de;
}
/* PAGINATION */
.pagination > li > a {
  background: #fafafa;
  color: #666;
}
.pagination.pagination-flat > li > a {
  border-radius: 0 !important;
}
/*
 * Component: Table
 * ----------------
 */
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  border-top: 1px solid #f4f4f4;
}
.table > thead > tr > th {
  border-bottom: 2px solid #f4f4f4;
}
.table tr td .progress {
  margin-top: 5px;
}
.table-bordered {
  border: 1px solid #f4f4f4;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #f4f4f4;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table.no-border,
.table.no-border td,
.table.no-border th {
  border: 0;
}
/* .text-center in tables */
table.text-center,
table.text-center td,
table.text-center th {
  text-align: center;
}
.table.align th {
  text-align: left;
}
.table.align td {
  text-align: right;
}
/*
 * Component: Label
 * ----------------
 */
.label-default {
  background-color: #d2d6de;
  color: #444;
}
/*
 * Component: modal
 * ----------------
 */
.modal {
  background: rgba(0, 0, 0, 0.3);
}
.modal-content {
  border-radius: 0;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
  -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
  border: 0;
}
@media (min-width: 768px) {
  .modal-content {
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
    -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
  }
}
.modal-header {
  border-bottom-color: #f4f4f4;
}
.modal-footer {
  border-top-color: #f4f4f4;
}
.modal-primary .modal-header,
.modal-primary .modal-footer {
  border-color: #307095;
}
.modal-help .modal-header,
.modal-help .modal-footer {
  border-color: #c7e0b5;
}
.modal-warning .modal-header,
.modal-warning .modal-footer {
  border-color: #c87f0a;
}
.modal-info .modal-header,
.modal-info .modal-footer {
  border-color: #0097bc;
}
.modal-success .modal-header,
.modal-success .modal-footer {
  border-color: #213024;
}
.modal-danger .modal-header,
.modal-danger .modal-footer {
  border-color: #c23321;
}
/*
 * Component: Social Widgets
 * -------------------------
 */
.box-widget {
  border: none;
  position: relative;
}
.widget-user .widget-user-header {
  padding: 20px;
  height: 120px;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.widget-user .widget-user-username {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 25px;
  font-weight: 300;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.widget-user .widget-user-desc {
  margin-top: 0;
}
.widget-user .widget-user-image {
  position: absolute;
  top: 65px;
  left: 50%;
  margin-left: -45px;
}
.widget-user .widget-user-image > img {
  width: 90px;
  height: auto;
  border: 3px solid #fff;
}
.widget-user .box-footer {
  padding-top: 30px;
}
.widget-user-2 .widget-user-header {
  padding: 20px;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.widget-user-2 .widget-user-username {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 25px;
  font-weight: 300;
}
.widget-user-2 .widget-user-desc {
  margin-top: 0;
}
.widget-user-2 .widget-user-username,
.widget-user-2 .widget-user-desc {
  margin-left: 75px;
}
.widget-user-2 .widget-user-image > img {
  width: 65px;
  height: auto;
  float: left;
}
/*
 * Skin: Blue
 * ----------
 */
.skin-blue .main-header .navbar {
  background-color: #3c8dbc;
}
.skin-blue .main-header .navbar .nav > li > a {
  color: #fff;
}
.skin-blue .main-header .navbar .nav > li > a:hover,
.skin-blue .main-header .navbar .nav > li > a:active,
.skin-blue .main-header .navbar .nav > li > a:focus,
.skin-blue .main-header .navbar .nav .open > a,
.skin-blue .main-header .navbar .nav .open > a:hover,
.skin-blue .main-header .navbar .nav .open > a:focus,
.skin-blue .main-header .navbar .nav > .active > a {
  background: rgba(0, 0, 0, 0.1);
  color: #f6f6f6;
}
.skin-blue .main-header .navbar .sidebar-toggle {
  color: #fff;
}
.skin-blue .main-header .navbar .sidebar-toggle:hover {
  color: #f6f6f6;
  background: rgba(0, 0, 0, 0.1);
}
.skin-blue .main-header .navbar .sidebar-toggle {
  color: #fff;
}
.skin-blue .main-header .navbar .sidebar-toggle:hover {
  background-color: #367fa9;
}
@media (max-width: 767px) {
  .skin-blue .main-header .navbar .dropdown-menu li.divider {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .skin-blue .main-header .navbar .dropdown-menu li a {
    color: #fff;
  }
  .skin-blue .main-header .navbar .dropdown-menu li a:hover {
    background: #367fa9;
  }
}
.skin-blue .main-header .logo {
  background-color: #367fa9;
  color: #fff;
  border-bottom: 0 solid transparent;
}
.skin-blue .main-header .logo:hover {
  background-color: #357ca5;
}
.skin-blue .main-header li.user-header {
  background-color: #3c8dbc;
}
.skin-blue .content-header {
  background: transparent;
}
.skin-blue .wrapper,
.skin-blue .main-sidebar,
.skin-blue .left-side {
  background-color: #222d32;
}
.skin-blue .user-panel > .info,
.skin-blue .user-panel > .info > a {
  color: #fff;
}
.skin-blue .sidebar-menu > li.header {
  color: #4b646f;
  background: #1a2226;
}
.skin-blue .sidebar-menu > li > a {
  border-left: 3px solid transparent;
}
.skin-blue .sidebar-menu > li:hover > a,
.skin-blue .sidebar-menu > li.active > a {
  color: #fff;
  background: #1e282c;
  border-left-color: #3c8dbc;
}
.skin-blue .sidebar-menu > li > .treeview-menu {
  margin: 0 1px;
  background: #2c3b41;
}
.skin-blue .sidebar a {
  color: #b8c7ce;
}
.skin-blue .sidebar a:hover {
  text-decoration: none;
}
.skin-blue .treeview-menu > li > a {
  color: #8aa4af;
}
.skin-blue .treeview-menu > li.active > a,
.skin-blue .treeview-menu > li > a:hover {
  color: #fff;
}
.skin-blue .sidebar-form {
  border-radius: 3px;
  border: 1px solid #374850;
  margin: 10px 10px;
}
.skin-blue .sidebar-form input[type="text"],
.skin-blue .sidebar-form .btn {
  box-shadow: none;
  background-color: #374850;
  border: 1px solid transparent;
  height: 35px;
}
.skin-blue .sidebar-form input[type="text"] {
  color: #666;
  border-top-left-radius: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 2px;
}
.skin-blue .sidebar-form input[type="text"]:focus,
.skin-blue .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  background-color: #fff;
  color: #666;
}
.skin-blue .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  border-left-color: #fff;
}
.skin-blue .sidebar-form .btn {
  color: #999;
  border-top-left-radius: 0;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 0;
}
.skin-blue.layout-top-nav .main-header > .logo {
  background-color: #3c8dbc;
  color: #fff;
  border-bottom: 0 solid transparent;
}
.skin-blue.layout-top-nav .main-header > .logo:hover {
  background-color: #3b8ab8;
}
/*
 * Skin: Blue
 * ----------
 */
.skin-blue-light .main-header .navbar {
  background-color: #3c8dbc;
}
.skin-blue-light .main-header .navbar .nav > li > a {
  color: #fff;
}
.skin-blue-light .main-header .navbar .nav > li > a:hover,
.skin-blue-light .main-header .navbar .nav > li > a:active,
.skin-blue-light .main-header .navbar .nav > li > a:focus,
.skin-blue-light .main-header .navbar .nav .open > a,
.skin-blue-light .main-header .navbar .nav .open > a:hover,
.skin-blue-light .main-header .navbar .nav .open > a:focus,
.skin-blue-light .main-header .navbar .nav > .active > a {
  background: rgba(0, 0, 0, 0.1);
  color: #f6f6f6;
}
.skin-blue-light .main-header .navbar .sidebar-toggle {
  color: #fff;
}
.skin-blue-light .main-header .navbar .sidebar-toggle:hover {
  color: #f6f6f6;
  background: rgba(0, 0, 0, 0.1);
}
.skin-blue-light .main-header .navbar .sidebar-toggle {
  color: #fff;
}
.skin-blue-light .main-header .navbar .sidebar-toggle:hover {
  background-color: #367fa9;
}
@media (max-width: 767px) {
  .skin-blue-light .main-header .navbar .dropdown-menu li.divider {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .skin-blue-light .main-header .navbar .dropdown-menu li a {
    color: #fff;
  }
  .skin-blue-light .main-header .navbar .dropdown-menu li a:hover {
    background: #367fa9;
  }
}
.skin-blue-light .main-header .logo {
  background-color: #3c8dbc;
  color: #fff;
  border-bottom: 0 solid transparent;
}
.skin-blue-light .main-header .logo:hover {
  background-color: #3b8ab8;
}
.skin-blue-light .main-header li.user-header {
  background-color: #3c8dbc;
}
.skin-blue-light .content-header {
  background: transparent;
}
.skin-blue-light .wrapper,
.skin-blue-light .main-sidebar,
.skin-blue-light .left-side {
  background-color: #f9fafc;
}
.skin-blue-light .content-wrapper,
.skin-blue-light .main-footer {
  border-left: 1px solid #d2d6de;
}
.skin-blue-light .user-panel > .info,
.skin-blue-light .user-panel > .info > a {
  color: #444;
}
.skin-blue-light .sidebar-menu > li {
  -webkit-transition: border-left-color 0.3s ease;
  -o-transition: border-left-color 0.3s ease;
  transition: border-left-color 0.3s ease;
}
.skin-blue-light .sidebar-menu > li.header {
  color: #848484;
  background: #f9fafc;
}
.skin-blue-light .sidebar-menu > li > a {
  border-left: 3px solid transparent;
  font-weight: 600;
}
.skin-blue-light .sidebar-menu > li:hover > a,
.skin-blue-light .sidebar-menu > li.active > a {
  color: #000;
  background: #f4f4f5;
}
.skin-blue-light .sidebar-menu > li.active {
  border-left-color: #3c8dbc;
}
.skin-blue-light .sidebar-menu > li.active > a {
  font-weight: 600;
}
.skin-blue-light .sidebar-menu > li > .treeview-menu {
  background: #f4f4f5;
}
.skin-blue-light .sidebar a {
  color: #444;
}
.skin-blue-light .sidebar a:hover {
  text-decoration: none;
}
.skin-blue-light .treeview-menu > li > a {
  color: #777;
}
.skin-blue-light .treeview-menu > li.active > a,
.skin-blue-light .treeview-menu > li > a:hover {
  color: #000;
}
.skin-blue-light .treeview-menu > li.active > a {
  font-weight: 600;
}
.skin-blue-light .sidebar-form {
  border-radius: 3px;
  border: 1px solid #d2d6de;
  margin: 10px 10px;
}
.skin-blue-light .sidebar-form input[type="text"],
.skin-blue-light .sidebar-form .btn {
  box-shadow: none;
  background-color: #fff;
  border: 1px solid transparent;
  height: 35px;
}
.skin-blue-light .sidebar-form input[type="text"] {
  color: #666;
  border-top-left-radius: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 2px;
}
.skin-blue-light .sidebar-form input[type="text"]:focus,
.skin-blue-light .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  background-color: #fff;
  color: #666;
}
.skin-blue-light .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  border-left-color: #fff;
}
.skin-blue-light .sidebar-form .btn {
  color: #999;
  border-top-left-radius: 0;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 0;
}
@media (min-width: 768px) {
  .skin-blue-light.sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu {
    border-left: 1px solid #d2d6de;
  }
}
.skin-blue-light .main-footer {
  border-top-color: #d2d6de;
}
.skin-blue.layout-top-nav .main-header > .logo {
  background-color: #3c8dbc;
  color: #fff;
  border-bottom: 0 solid transparent;
}
.skin-blue.layout-top-nav .main-header > .logo:hover {
  background-color: #3b8ab8;
}
/*
 * Skin: Black
 * -----------
 */
/* skin-black navbar */
.skin-black .main-header {
  -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05);
}
.skin-black .main-header .navbar-toggle {
  color: #333;
}
.skin-black .main-header .navbar-brand {
  color: #333;
  border-right: 1px solid #eee;
}
.skin-black .main-header .navbar {
  background-color: #fff;
}
.skin-black .main-header .navbar .nav > li > a {
  color: #333;
}
.skin-black .main-header .navbar .nav > li > a:hover,
.skin-black .main-header .navbar .nav > li > a:active,
.skin-black .main-header .navbar .nav > li > a:focus,
.skin-black .main-header .navbar .nav .open > a,
.skin-black .main-header .navbar .nav .open > a:hover,
.skin-black .main-header .navbar .nav .open > a:focus,
.skin-black .main-header .navbar .nav > .active > a {
  background: #fff;
  color: #999;
}
.skin-black .main-header .navbar .sidebar-toggle {
  color: #333;
}
.skin-black .main-header .navbar .sidebar-toggle:hover {
  color: #999;
  background: #fff;
}
.skin-black .main-header .navbar > .sidebar-toggle {
  color: #333;
  border-right: 1px solid #eee;
}
.skin-black .main-header .navbar .navbar-nav > li > a {
  border-right: 1px solid #eee;
}
.skin-black .main-header .navbar .navbar-custom-menu .navbar-nav > li > a,
.skin-black .main-header .navbar .navbar-right > li > a {
  border-left: 1px solid #eee;
  border-right-width: 0;
}
.skin-black .main-header > .logo {
  background-color: #fff;
  color: #333;
  border-bottom: 0 solid transparent;
  border-right: 1px solid #eee;
}
.skin-black .main-header > .logo:hover {
  background-color: #fcfcfc;
}
@media (max-width: 767px) {
  .skin-black .main-header > .logo {
    background-color: #222;
    color: #fff;
    border-bottom: 0 solid transparent;
    border-right: none;
  }
  .skin-black .main-header > .logo:hover {
    background-color: #1f1f1f;
  }
}
.skin-black .main-header li.user-header {
  background-color: #222;
}
.skin-black .content-header {
  background: transparent;
  box-shadow: none;
}
.skin-black .wrapper,
.skin-black .main-sidebar,
.skin-black .left-side {
  background-color: #222d32;
}
.skin-black .user-panel > .info,
.skin-black .user-panel > .info > a {
  color: #fff;
}
.skin-black .sidebar-menu > li.header {
  color: #4b646f;
  background: #1a2226;
}
.skin-black .sidebar-menu > li > a {
  border-left: 3px solid transparent;
}
.skin-black .sidebar-menu > li:hover > a,
.skin-black .sidebar-menu > li.active > a {
  color: #fff;
  background: #1e282c;
  border-left-color: #fff;
}
.skin-black .sidebar-menu > li > .treeview-menu {
  margin: 0 1px;
  background: #2c3b41;
}
.skin-black .sidebar a {
  color: #b8c7ce;
}
.skin-black .sidebar a:hover {
  text-decoration: none;
}
.skin-black .treeview-menu > li > a {
  color: #8aa4af;
}
.skin-black .treeview-menu > li.active > a,
.skin-black .treeview-menu > li > a:hover {
  color: #fff;
}
.skin-black .sidebar-form {
  border-radius: 3px;
  border: 1px solid #374850;
  margin: 10px 10px;
}
.skin-black .sidebar-form input[type="text"],
.skin-black .sidebar-form .btn {
  box-shadow: none;
  background-color: #374850;
  border: 1px solid transparent;
  height: 35px;
}
.skin-black .sidebar-form input[type="text"] {
  color: #666;
  border-top-left-radius: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 2px;
}
.skin-black .sidebar-form input[type="text"]:focus,
.skin-black .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  background-color: #fff;
  color: #666;
}
.skin-black .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  border-left-color: #fff;
}
.skin-black .sidebar-form .btn {
  color: #999;
  border-top-left-radius: 0;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 0;
}
.skin-black .pace .pace-progress {
  background: #222;
}
.skin-black .pace .pace-activity {
  border-top-color: #222;
  border-left-color: #222;
}
/*
 * Skin: Black
 * -----------
 */
/* skin-black navbar */
.skin-black-light .main-header {
  -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05);
}
.skin-black-light .main-header .navbar-toggle {
  color: #333;
}
.skin-black-light .main-header .navbar-brand {
  color: #333;
  border-right: 1px solid #eee;
}
.skin-black-light .main-header .navbar {
  background-color: #fff;
}
.skin-black-light .main-header .navbar .nav > li > a {
  color: #333;
}
.skin-black-light .main-header .navbar .nav > li > a:hover,
.skin-black-light .main-header .navbar .nav > li > a:active,
.skin-black-light .main-header .navbar .nav > li > a:focus,
.skin-black-light .main-header .navbar .nav .open > a,
.skin-black-light .main-header .navbar .nav .open > a:hover,
.skin-black-light .main-header .navbar .nav .open > a:focus,
.skin-black-light .main-header .navbar .nav > .active > a {
  background: #fff;
  color: #999;
}
.skin-black-light .main-header .navbar .sidebar-toggle {
  color: #333;
}
.skin-black-light .main-header .navbar .sidebar-toggle:hover {
  color: #999;
  background: #fff;
}
.skin-black-light .main-header .navbar > .sidebar-toggle {
  color: #333;
  border-right: 1px solid #eee;
}
.skin-black-light .main-header .navbar .navbar-nav > li > a {
  border-right: 1px solid #eee;
}
.skin-black-light .main-header .navbar .navbar-custom-menu .navbar-nav > li > a,
.skin-black-light .main-header .navbar .navbar-right > li > a {
  border-left: 1px solid #eee;
  border-right-width: 0;
}
.skin-black-light .main-header > .logo {
  background-color: #fff;
  color: #333;
  border-bottom: 0 solid transparent;
  border-right: 1px solid #eee;
}
.skin-black-light .main-header > .logo:hover {
  background-color: #fcfcfc;
}
@media (max-width: 767px) {
  .skin-black-light .main-header > .logo {
    background-color: #222;
    color: #fff;
    border-bottom: 0 solid transparent;
    border-right: none;
  }
  .skin-black-light .main-header > .logo:hover {
    background-color: #1f1f1f;
  }
}
.skin-black-light .main-header li.user-header {
  background-color: #222;
}
.skin-black-light .content-header {
  background: transparent;
  box-shadow: none;
}
.skin-black-light .wrapper,
.skin-black-light .main-sidebar,
.skin-black-light .left-side {
  background-color: #f9fafc;
}
.skin-black-light .content-wrapper,
.skin-black-light .main-footer {
  border-left: 1px solid #d2d6de;
}
.skin-black-light .user-panel > .info,
.skin-black-light .user-panel > .info > a {
  color: #444;
}
.skin-black-light .sidebar-menu > li {
  -webkit-transition: border-left-color 0.3s ease;
  -o-transition: border-left-color 0.3s ease;
  transition: border-left-color 0.3s ease;
}
.skin-black-light .sidebar-menu > li.header {
  color: #848484;
  background: #f9fafc;
}
.skin-black-light .sidebar-menu > li > a {
  border-left: 3px solid transparent;
  font-weight: 600;
}
.skin-black-light .sidebar-menu > li:hover > a,
.skin-black-light .sidebar-menu > li.active > a {
  color: #000;
  background: #f4f4f5;
}
.skin-black-light .sidebar-menu > li.active {
  border-left-color: #fff;
}
.skin-black-light .sidebar-menu > li.active > a {
  font-weight: 600;
}
.skin-black-light .sidebar-menu > li > .treeview-menu {
  background: #f4f4f5;
}
.skin-black-light .sidebar a {
  color: #444;
}
.skin-black-light .sidebar a:hover {
  text-decoration: none;
}
.skin-black-light .treeview-menu > li > a {
  color: #777;
}
.skin-black-light .treeview-menu > li.active > a,
.skin-black-light .treeview-menu > li > a:hover {
  color: #000;
}
.skin-black-light .treeview-menu > li.active > a {
  font-weight: 600;
}
.skin-black-light .sidebar-form {
  border-radius: 3px;
  border: 1px solid #d2d6de;
  margin: 10px 10px;
}
.skin-black-light .sidebar-form input[type="text"],
.skin-black-light .sidebar-form .btn {
  box-shadow: none;
  background-color: #fff;
  border: 1px solid transparent;
  height: 35px;
}
.skin-black-light .sidebar-form input[type="text"] {
  color: #666;
  border-top-left-radius: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 2px;
}
.skin-black-light .sidebar-form input[type="text"]:focus,
.skin-black-light .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  background-color: #fff;
  color: #666;
}
.skin-black-light .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  border-left-color: #fff;
}
.skin-black-light .sidebar-form .btn {
  color: #999;
  border-top-left-radius: 0;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 0;
}
@media (min-width: 768px) {
  .skin-black-light.sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu {
    border-left: 1px solid #d2d6de;
  }
}
/*
 * Skin: Green
 * -----------
 */
.skin-green .main-header .navbar {
  background-color: #354F3B;
}
.skin-green .main-header .navbar .nav > li > a {
  color: #fff;
}
.skin-green .main-header .navbar .nav > li > a:hover,
.skin-green .main-header .navbar .nav > li > a:active,
.skin-green .main-header .navbar .nav > li > a:focus,
.skin-green .main-header .navbar .nav .open > a,
.skin-green .main-header .navbar .nav .open > a:hover,
.skin-green .main-header .navbar .nav .open > a:focus,
.skin-green .main-header .navbar .nav > .active > a {
  background: rgba(0, 0, 0, 0.1);
  color: #f6f6f6;
}
.skin-green .main-header .navbar .sidebar-toggle {
  color: #fff;
}
.skin-green .main-header .navbar .sidebar-toggle:hover {
  color: #f6f6f6;
  background: rgba(0, 0, 0, 0.1);
}
.skin-green .main-header .navbar .sidebar-toggle {
  color: #fff;
}
.skin-green .main-header .navbar .sidebar-toggle:hover {
  background-color: #2b4030;
}
@media (max-width: 767px) {
  .skin-green .main-header .navbar .dropdown-menu li.divider {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .skin-green .main-header .navbar .dropdown-menu li a {
    color: #fff;
  }
  .skin-green .main-header .navbar .dropdown-menu li a:hover {
    background: #2b4030;
  }
}
.skin-green .main-header .logo {
  background-color: #2b4030;
  color: #fff;
  border-bottom: 0 solid transparent;
}
.skin-green .main-header .logo:hover {
  background-color: #293d2d;
}
.skin-green .main-header li.user-header {
  background-color: #354F3B;
}
.skin-green .content-header {
  background: transparent;
}
.skin-green .wrapper,
.skin-green .main-sidebar,
.skin-green .left-side {
  background-color: #222d32;
}
.skin-green .user-panel > .info,
.skin-green .user-panel > .info > a {
  color: #fff;
}
.skin-green .sidebar-menu > li.header {
  color: #4b646f;
  background: #1a2226;
}
.skin-green .sidebar-menu > li > a {
  border-left: 3px solid transparent;
}
.skin-green .sidebar-menu > li:hover > a,
.skin-green .sidebar-menu > li.active > a {
  color: #fff;
  background: #1e282c;
  border-left-color: #354F3B;
}
.skin-green .sidebar-menu > li > .treeview-menu {
  margin: 0 1px;
  background: #2c3b41;
}
.skin-green .sidebar a {
  color: #b8c7ce;
}
.skin-green .sidebar a:hover {
  text-decoration: none;
}
.skin-green .treeview-menu > li > a {
  color: #8aa4af;
}
.skin-green .treeview-menu > li.active > a,
.skin-green .treeview-menu > li > a:hover {
  color: #fff;
}
.skin-green .sidebar-form {
  border-radius: 3px;
  border: 1px solid #374850;
  margin: 10px 10px;
}
.skin-green .sidebar-form input[type="text"],
.skin-green .sidebar-form .btn {
  box-shadow: none;
  background-color: #374850;
  border: 1px solid transparent;
  height: 35px;
}
.skin-green .sidebar-form input[type="text"] {
  color: #666;
  border-top-left-radius: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 2px;
}
.skin-green .sidebar-form input[type="text"]:focus,
.skin-green .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  background-color: #fff;
  color: #666;
}
.skin-green .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  border-left-color: #fff;
}
.skin-green .sidebar-form .btn {
  color: #999;
  border-top-left-radius: 0;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 0;
}
/*
 * Skin: Green
 * -----------
 */
.skin-green-light .main-header .navbar {
  background-color: #354F3B;
}
.skin-green-light .main-header .navbar .nav > li > a {
  color: #fff;
}
.skin-green-light .main-header .navbar .nav > li > a:hover,
.skin-green-light .main-header .navbar .nav > li > a:active,
.skin-green-light .main-header .navbar .nav > li > a:focus,
.skin-green-light .main-header .navbar .nav .open > a,
.skin-green-light .main-header .navbar .nav .open > a:hover,
.skin-green-light .main-header .navbar .nav .open > a:focus,
.skin-green-light .main-header .navbar .nav > .active > a {
  background: rgba(0, 0, 0, 0.1);
  color: #f6f6f6;
}
.skin-green-light .main-header .navbar .sidebar-toggle {
  color: #fff;
}
.skin-green-light .main-header .navbar .sidebar-toggle:hover {
  color: #f6f6f6;
  background: rgba(0, 0, 0, 0.1);
}
.skin-green-light .main-header .navbar .sidebar-toggle {
  color: #fff;
}
.skin-green-light .main-header .navbar .sidebar-toggle:hover {
  background-color: #2b4030;
}
@media (max-width: 767px) {
  .skin-green-light .main-header .navbar .dropdown-menu li.divider {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .skin-green-light .main-header .navbar .dropdown-menu li a {
    color: #fff;
  }
  .skin-green-light .main-header .navbar .dropdown-menu li a:hover {
    background: #2b4030;
  }
}
.skin-green-light .main-header .logo {
  background-color: #354F3B;
  color: #fff;
  border-bottom: 0 solid transparent;
}
.skin-green-light .main-header .logo:hover {
  background-color: #334c39;
}
.skin-green-light .main-header li.user-header {
  background-color: #354F3B;
}
.skin-green-light .content-header {
  background: transparent;
}
.skin-green-light .wrapper,
.skin-green-light .main-sidebar,
.skin-green-light .left-side {
  background-color: #f9fafc;
}
.skin-green-light .content-wrapper,
.skin-green-light .main-footer {
  border-left: 1px solid #d2d6de;
}
.skin-green-light .user-panel > .info,
.skin-green-light .user-panel > .info > a {
  color: #444;
}
.skin-green-light .sidebar-menu > li {
  -webkit-transition: border-left-color 0.3s ease;
  -o-transition: border-left-color 0.3s ease;
  transition: border-left-color 0.3s ease;
}
.skin-green-light .sidebar-menu > li.header {
  color: #848484;
  background: #f9fafc;
}
.skin-green-light .sidebar-menu > li > a {
  border-left: 3px solid transparent;
  font-weight: 600;
}
.skin-green-light .sidebar-menu > li:hover > a,
.skin-green-light .sidebar-menu > li.active > a {
  color: #000;
  background: #f4f4f5;
}
.skin-green-light .sidebar-menu > li.active {
  border-left-color: #354F3B;
}
.skin-green-light .sidebar-menu > li.active > a {
  font-weight: 600;
}
.skin-green-light .sidebar-menu > li > .treeview-menu {
  background: #f4f4f5;
}
.skin-green-light .sidebar a {
  color: #444;
}
.skin-green-light .sidebar a:hover {
  text-decoration: none;
}
.skin-green-light .treeview-menu > li > a {
  color: #777;
}
.skin-green-light .treeview-menu > li.active > a,
.skin-green-light .treeview-menu > li > a:hover {
  color: #000;
}
.skin-green-light .treeview-menu > li.active > a {
  font-weight: 600;
}
.skin-green-light .sidebar-form {
  border-radius: 3px;
  border: 1px solid #d2d6de;
  margin: 10px 10px;
}
.skin-green-light .sidebar-form input[type="text"],
.skin-green-light .sidebar-form .btn {
  box-shadow: none;
  background-color: #fff;
  border: 1px solid transparent;
  height: 35px;
}
.skin-green-light .sidebar-form input[type="text"] {
  color: #666;
  border-top-left-radius: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 2px;
}
.skin-green-light .sidebar-form input[type="text"]:focus,
.skin-green-light .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  background-color: #fff;
  color: #666;
}
.skin-green-light .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  border-left-color: #fff;
}
.skin-green-light .sidebar-form .btn {
  color: #999;
  border-top-left-radius: 0;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 0;
}
@media (min-width: 768px) {
  .skin-green-light.sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu {
    border-left: 1px solid #d2d6de;
  }
}
/*
 * Skin: Red
 * ---------
 */
.skin-red .main-header .navbar {
  background-color: #dd4b39;
}
.skin-red .main-header .navbar .nav > li > a {
  color: #fff;
}
.skin-red .main-header .navbar .nav > li > a:hover,
.skin-red .main-header .navbar .nav > li > a:active,
.skin-red .main-header .navbar .nav > li > a:focus,
.skin-red .main-header .navbar .nav .open > a,
.skin-red .main-header .navbar .nav .open > a:hover,
.skin-red .main-header .navbar .nav .open > a:focus,
.skin-red .main-header .navbar .nav > .active > a {
  background: rgba(0, 0, 0, 0.1);
  color: #f6f6f6;
}
.skin-red .main-header .navbar .sidebar-toggle {
  color: #fff;
}
.skin-red .main-header .navbar .sidebar-toggle:hover {
  color: #f6f6f6;
  background: rgba(0, 0, 0, 0.1);
}
.skin-red .main-header .navbar .sidebar-toggle {
  color: #fff;
}
.skin-red .main-header .navbar .sidebar-toggle:hover {
  background-color: #d73925;
}
@media (max-width: 767px) {
  .skin-red .main-header .navbar .dropdown-menu li.divider {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .skin-red .main-header .navbar .dropdown-menu li a {
    color: #fff;
  }
  .skin-red .main-header .navbar .dropdown-menu li a:hover {
    background: #d73925;
  }
}
.skin-red .main-header .logo {
  background-color: #d73925;
  color: #fff;
  border-bottom: 0 solid transparent;
}
.skin-red .main-header .logo:hover {
  background-color: #d33724;
}
.skin-red .main-header li.user-header {
  background-color: #dd4b39;
}
.skin-red .content-header {
  background: transparent;
}
.skin-red .wrapper,
.skin-red .main-sidebar,
.skin-red .left-side {
  background-color: #222d32;
}
.skin-red .user-panel > .info,
.skin-red .user-panel > .info > a {
  color: #fff;
}
.skin-red .sidebar-menu > li.header {
  color: #4b646f;
  background: #1a2226;
}
.skin-red .sidebar-menu > li > a {
  border-left: 3px solid transparent;
}
.skin-red .sidebar-menu > li:hover > a,
.skin-red .sidebar-menu > li.active > a {
  color: #fff;
  background: #1e282c;
  border-left-color: #dd4b39;
}
.skin-red .sidebar-menu > li > .treeview-menu {
  margin: 0 1px;
  background: #2c3b41;
}
.skin-red .sidebar a {
  color: #b8c7ce;
}
.skin-red .sidebar a:hover {
  text-decoration: none;
}
.skin-red .treeview-menu > li > a {
  color: #8aa4af;
}
.skin-red .treeview-menu > li.active > a,
.skin-red .treeview-menu > li > a:hover {
  color: #fff;
}
.skin-red .sidebar-form {
  border-radius: 3px;
  border: 1px solid #374850;
  margin: 10px 10px;
}
.skin-red .sidebar-form input[type="text"],
.skin-red .sidebar-form .btn {
  box-shadow: none;
  background-color: #374850;
  border: 1px solid transparent;
  height: 35px;
}
.skin-red .sidebar-form input[type="text"] {
  color: #666;
  border-top-left-radius: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 2px;
}
.skin-red .sidebar-form input[type="text"]:focus,
.skin-red .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  background-color: #fff;
  color: #666;
}
.skin-red .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  border-left-color: #fff;
}
.skin-red .sidebar-form .btn {
  color: #999;
  border-top-left-radius: 0;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 0;
}
/*
 * Skin: Red
 * ---------
 */
.skin-red-light .main-header .navbar {
  background-color: #dd4b39;
}
.skin-red-light .main-header .navbar .nav > li > a {
  color: #fff;
}
.skin-red-light .main-header .navbar .nav > li > a:hover,
.skin-red-light .main-header .navbar .nav > li > a:active,
.skin-red-light .main-header .navbar .nav > li > a:focus,
.skin-red-light .main-header .navbar .nav .open > a,
.skin-red-light .main-header .navbar .nav .open > a:hover,
.skin-red-light .main-header .navbar .nav .open > a:focus,
.skin-red-light .main-header .navbar .nav > .active > a {
  background: rgba(0, 0, 0, 0.1);
  color: #f6f6f6;
}
.skin-red-light .main-header .navbar .sidebar-toggle {
  color: #fff;
}
.skin-red-light .main-header .navbar .sidebar-toggle:hover {
  color: #f6f6f6;
  background: rgba(0, 0, 0, 0.1);
}
.skin-red-light .main-header .navbar .sidebar-toggle {
  color: #fff;
}
.skin-red-light .main-header .navbar .sidebar-toggle:hover {
  background-color: #d73925;
}
@media (max-width: 767px) {
  .skin-red-light .main-header .navbar .dropdown-menu li.divider {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .skin-red-light .main-header .navbar .dropdown-menu li a {
    color: #fff;
  }
  .skin-red-light .main-header .navbar .dropdown-menu li a:hover {
    background: #d73925;
  }
}
.skin-red-light .main-header .logo {
  background-color: #dd4b39;
  color: #fff;
  border-bottom: 0 solid transparent;
}
.skin-red-light .main-header .logo:hover {
  background-color: #dc4735;
}
.skin-red-light .main-header li.user-header {
  background-color: #dd4b39;
}
.skin-red-light .content-header {
  background: transparent;
}
.skin-red-light .wrapper,
.skin-red-light .main-sidebar,
.skin-red-light .left-side {
  background-color: #f9fafc;
}
.skin-red-light .content-wrapper,
.skin-red-light .main-footer {
  border-left: 1px solid #d2d6de;
}
.skin-red-light .user-panel > .info,
.skin-red-light .user-panel > .info > a {
  color: #444;
}
.skin-red-light .sidebar-menu > li {
  -webkit-transition: border-left-color 0.3s ease;
  -o-transition: border-left-color 0.3s ease;
  transition: border-left-color 0.3s ease;
}
.skin-red-light .sidebar-menu > li.header {
  color: #848484;
  background: #f9fafc;
}
.skin-red-light .sidebar-menu > li > a {
  border-left: 3px solid transparent;
  font-weight: 600;
}
.skin-red-light .sidebar-menu > li:hover > a,
.skin-red-light .sidebar-menu > li.active > a {
  color: #000;
  background: #f4f4f5;
}
.skin-red-light .sidebar-menu > li.active {
  border-left-color: #dd4b39;
}
.skin-red-light .sidebar-menu > li.active > a {
  font-weight: 600;
}
.skin-red-light .sidebar-menu > li > .treeview-menu {
  background: #f4f4f5;
}
.skin-red-light .sidebar a {
  color: #444;
}
.skin-red-light .sidebar a:hover {
  text-decoration: none;
}
.skin-red-light .treeview-menu > li > a {
  color: #777;
}
.skin-red-light .treeview-menu > li.active > a,
.skin-red-light .treeview-menu > li > a:hover {
  color: #000;
}
.skin-red-light .treeview-menu > li.active > a {
  font-weight: 600;
}
.skin-red-light .sidebar-form {
  border-radius: 3px;
  border: 1px solid #d2d6de;
  margin: 10px 10px;
}
.skin-red-light .sidebar-form input[type="text"],
.skin-red-light .sidebar-form .btn {
  box-shadow: none;
  background-color: #fff;
  border: 1px solid transparent;
  height: 35px;
}
.skin-red-light .sidebar-form input[type="text"] {
  color: #666;
  border-top-left-radius: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 2px;
}
.skin-red-light .sidebar-form input[type="text"]:focus,
.skin-red-light .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  background-color: #fff;
  color: #666;
}
.skin-red-light .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  border-left-color: #fff;
}
.skin-red-light .sidebar-form .btn {
  color: #999;
  border-top-left-radius: 0;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 0;
}
@media (min-width: 768px) {
  .skin-red-light.sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu {
    border-left: 1px solid #d2d6de;
  }
}
/*
 * Skin: Yellow
 * ------------
 */
.skin-yellow .main-header .navbar {
  background-color: #f39c12;
}
.skin-yellow .main-header .navbar .nav > li > a {
  color: #fff;
}
.skin-yellow .main-header .navbar .nav > li > a:hover,
.skin-yellow .main-header .navbar .nav > li > a:active,
.skin-yellow .main-header .navbar .nav > li > a:focus,
.skin-yellow .main-header .navbar .nav .open > a,
.skin-yellow .main-header .navbar .nav .open > a:hover,
.skin-yellow .main-header .navbar .nav .open > a:focus,
.skin-yellow .main-header .navbar .nav > .active > a {
  background: rgba(0, 0, 0, 0.1);
  color: #f6f6f6;
}
.skin-yellow .main-header .navbar .sidebar-toggle {
  color: #fff;
}
.skin-yellow .main-header .navbar .sidebar-toggle:hover {
  color: #f6f6f6;
  background: rgba(0, 0, 0, 0.1);
}
.skin-yellow .main-header .navbar .sidebar-toggle {
  color: #fff;
}
.skin-yellow .main-header .navbar .sidebar-toggle:hover {
  background-color: #e08e0b;
}
@media (max-width: 767px) {
  .skin-yellow .main-header .navbar .dropdown-menu li.divider {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .skin-yellow .main-header .navbar .dropdown-menu li a {
    color: #fff;
  }
  .skin-yellow .main-header .navbar .dropdown-menu li a:hover {
    background: #e08e0b;
  }
}
.skin-yellow .main-header .logo {
  background-color: #e08e0b;
  color: #fff;
  border-bottom: 0 solid transparent;
}
.skin-yellow .main-header .logo:hover {
  background-color: #db8b0b;
}
.skin-yellow .main-header li.user-header {
  background-color: #f39c12;
}
.skin-yellow .content-header {
  background: transparent;
}
.skin-yellow .wrapper,
.skin-yellow .main-sidebar,
.skin-yellow .left-side {
  background-color: #222d32;
}
.skin-yellow .user-panel > .info,
.skin-yellow .user-panel > .info > a {
  color: #fff;
}
.skin-yellow .sidebar-menu > li.header {
  color: #4b646f;
  background: #1a2226;
}
.skin-yellow .sidebar-menu > li > a {
  border-left: 3px solid transparent;
}
.skin-yellow .sidebar-menu > li:hover > a,
.skin-yellow .sidebar-menu > li.active > a {
  color: #fff;
  background: #1e282c;
  border-left-color: #f39c12;
}
.skin-yellow .sidebar-menu > li > .treeview-menu {
  margin: 0 1px;
  background: #2c3b41;
}
.skin-yellow .sidebar a {
  color: #b8c7ce;
}
.skin-yellow .sidebar a:hover {
  text-decoration: none;
}
.skin-yellow .treeview-menu > li > a {
  color: #8aa4af;
}
.skin-yellow .treeview-menu > li.active > a,
.skin-yellow .treeview-menu > li > a:hover {
  color: #fff;
}
.skin-yellow .sidebar-form {
  border-radius: 3px;
  border: 1px solid #374850;
  margin: 10px 10px;
}
.skin-yellow .sidebar-form input[type="text"],
.skin-yellow .sidebar-form .btn {
  box-shadow: none;
  background-color: #374850;
  border: 1px solid transparent;
  height: 35px;
}
.skin-yellow .sidebar-form input[type="text"] {
  color: #666;
  border-top-left-radius: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 2px;
}
.skin-yellow .sidebar-form input[type="text"]:focus,
.skin-yellow .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  background-color: #fff;
  color: #666;
}
.skin-yellow .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  border-left-color: #fff;
}
.skin-yellow .sidebar-form .btn {
  color: #999;
  border-top-left-radius: 0;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 0;
}
/*
 * Skin: Yellow
 * ------------
 */
.skin-yellow-light .main-header .navbar {
  background-color: #f39c12;
}
.skin-yellow-light .main-header .navbar .nav > li > a {
  color: #fff;
}
.skin-yellow-light .main-header .navbar .nav > li > a:hover,
.skin-yellow-light .main-header .navbar .nav > li > a:active,
.skin-yellow-light .main-header .navbar .nav > li > a:focus,
.skin-yellow-light .main-header .navbar .nav .open > a,
.skin-yellow-light .main-header .navbar .nav .open > a:hover,
.skin-yellow-light .main-header .navbar .nav .open > a:focus,
.skin-yellow-light .main-header .navbar .nav > .active > a {
  background: rgba(0, 0, 0, 0.1);
  color: #f6f6f6;
}
.skin-yellow-light .main-header .navbar .sidebar-toggle {
  color: #fff;
}
.skin-yellow-light .main-header .navbar .sidebar-toggle:hover {
  color: #f6f6f6;
  background: rgba(0, 0, 0, 0.1);
}
.skin-yellow-light .main-header .navbar .sidebar-toggle {
  color: #fff;
}
.skin-yellow-light .main-header .navbar .sidebar-toggle:hover {
  background-color: #e08e0b;
}
@media (max-width: 767px) {
  .skin-yellow-light .main-header .navbar .dropdown-menu li.divider {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .skin-yellow-light .main-header .navbar .dropdown-menu li a {
    color: #fff;
  }
  .skin-yellow-light .main-header .navbar .dropdown-menu li a:hover {
    background: #e08e0b;
  }
}
.skin-yellow-light .main-header .logo {
  background-color: #f39c12;
  color: #fff;
  border-bottom: 0 solid transparent;
}
.skin-yellow-light .main-header .logo:hover {
  background-color: #f39a0d;
}
.skin-yellow-light .main-header li.user-header {
  background-color: #f39c12;
}
.skin-yellow-light .content-header {
  background: transparent;
}
.skin-yellow-light .wrapper,
.skin-yellow-light .main-sidebar,
.skin-yellow-light .left-side {
  background-color: #f9fafc;
}
.skin-yellow-light .content-wrapper,
.skin-yellow-light .main-footer {
  border-left: 1px solid #d2d6de;
}
.skin-yellow-light .user-panel > .info,
.skin-yellow-light .user-panel > .info > a {
  color: #444;
}
.skin-yellow-light .sidebar-menu > li {
  -webkit-transition: border-left-color 0.3s ease;
  -o-transition: border-left-color 0.3s ease;
  transition: border-left-color 0.3s ease;
}
.skin-yellow-light .sidebar-menu > li.header {
  color: #848484;
  background: #f9fafc;
}
.skin-yellow-light .sidebar-menu > li > a {
  border-left: 3px solid transparent;
  font-weight: 600;
}
.skin-yellow-light .sidebar-menu > li:hover > a,
.skin-yellow-light .sidebar-menu > li.active > a {
  color: #000;
  background: #f4f4f5;
}
.skin-yellow-light .sidebar-menu > li.active {
  border-left-color: #f39c12;
}
.skin-yellow-light .sidebar-menu > li.active > a {
  font-weight: 600;
}
.skin-yellow-light .sidebar-menu > li > .treeview-menu {
  background: #f4f4f5;
}
.skin-yellow-light .sidebar a {
  color: #444;
}
.skin-yellow-light .sidebar a:hover {
  text-decoration: none;
}
.skin-yellow-light .treeview-menu > li > a {
  color: #777;
}
.skin-yellow-light .treeview-menu > li.active > a,
.skin-yellow-light .treeview-menu > li > a:hover {
  color: #000;
}
.skin-yellow-light .treeview-menu > li.active > a {
  font-weight: 600;
}
.skin-yellow-light .sidebar-form {
  border-radius: 3px;
  border: 1px solid #d2d6de;
  margin: 10px 10px;
}
.skin-yellow-light .sidebar-form input[type="text"],
.skin-yellow-light .sidebar-form .btn {
  box-shadow: none;
  background-color: #fff;
  border: 1px solid transparent;
  height: 35px;
}
.skin-yellow-light .sidebar-form input[type="text"] {
  color: #666;
  border-top-left-radius: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 2px;
}
.skin-yellow-light .sidebar-form input[type="text"]:focus,
.skin-yellow-light .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  background-color: #fff;
  color: #666;
}
.skin-yellow-light .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  border-left-color: #fff;
}
.skin-yellow-light .sidebar-form .btn {
  color: #999;
  border-top-left-radius: 0;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 0;
}
@media (min-width: 768px) {
  .skin-yellow-light.sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu {
    border-left: 1px solid #d2d6de;
  }
}
/*
 * Skin: Purple
 * ------------
 */
.skin-purple .main-header .navbar {
  background-color: #605ca8;
}
.skin-purple .main-header .navbar .nav > li > a {
  color: #fff;
}
.skin-purple .main-header .navbar .nav > li > a:hover,
.skin-purple .main-header .navbar .nav > li > a:active,
.skin-purple .main-header .navbar .nav > li > a:focus,
.skin-purple .main-header .navbar .nav .open > a,
.skin-purple .main-header .navbar .nav .open > a:hover,
.skin-purple .main-header .navbar .nav .open > a:focus,
.skin-purple .main-header .navbar .nav > .active > a {
  background: rgba(0, 0, 0, 0.1);
  color: #f6f6f6;
}
.skin-purple .main-header .navbar .sidebar-toggle {
  color: #fff;
}
.skin-purple .main-header .navbar .sidebar-toggle:hover {
  color: #f6f6f6;
  background: rgba(0, 0, 0, 0.1);
}
.skin-purple .main-header .navbar .sidebar-toggle {
  color: #fff;
}
.skin-purple .main-header .navbar .sidebar-toggle:hover {
  background-color: #555299;
}
@media (max-width: 767px) {
  .skin-purple .main-header .navbar .dropdown-menu li.divider {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .skin-purple .main-header .navbar .dropdown-menu li a {
    color: #fff;
  }
  .skin-purple .main-header .navbar .dropdown-menu li a:hover {
    background: #555299;
  }
}
.skin-purple .main-header .logo {
  background-color: #555299;
  color: #fff;
  border-bottom: 0 solid transparent;
}
.skin-purple .main-header .logo:hover {
  background-color: #545096;
}
.skin-purple .main-header li.user-header {
  background-color: #605ca8;
}
.skin-purple .content-header {
  background: transparent;
}
.skin-purple .wrapper,
.skin-purple .main-sidebar,
.skin-purple .left-side {
  background-color: #222d32;
}
.skin-purple .user-panel > .info,
.skin-purple .user-panel > .info > a {
  color: #fff;
}
.skin-purple .sidebar-menu > li.header {
  color: #4b646f;
  background: #1a2226;
}
.skin-purple .sidebar-menu > li > a {
  border-left: 3px solid transparent;
}
.skin-purple .sidebar-menu > li:hover > a,
.skin-purple .sidebar-menu > li.active > a {
  color: #fff;
  background: #1e282c;
  border-left-color: #605ca8;
}
.skin-purple .sidebar-menu > li > .treeview-menu {
  margin: 0 1px;
  background: #2c3b41;
}
.skin-purple .sidebar a {
  color: #b8c7ce;
}
.skin-purple .sidebar a:hover {
  text-decoration: none;
}
.skin-purple .treeview-menu > li > a {
  color: #8aa4af;
}
.skin-purple .treeview-menu > li.active > a,
.skin-purple .treeview-menu > li > a:hover {
  color: #fff;
}
.skin-purple .sidebar-form {
  border-radius: 3px;
  border: 1px solid #374850;
  margin: 10px 10px;
}
.skin-purple .sidebar-form input[type="text"],
.skin-purple .sidebar-form .btn {
  box-shadow: none;
  background-color: #374850;
  border: 1px solid transparent;
  height: 35px;
}
.skin-purple .sidebar-form input[type="text"] {
  color: #666;
  border-top-left-radius: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 2px;
}
.skin-purple .sidebar-form input[type="text"]:focus,
.skin-purple .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  background-color: #fff;
  color: #666;
}
.skin-purple .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  border-left-color: #fff;
}
.skin-purple .sidebar-form .btn {
  color: #999;
  border-top-left-radius: 0;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 0;
}
/*
 * Skin: Purple
 * ------------
 */
.skin-purple-light .main-header .navbar {
  background-color: #605ca8;
}
.skin-purple-light .main-header .navbar .nav > li > a {
  color: #fff;
}
.skin-purple-light .main-header .navbar .nav > li > a:hover,
.skin-purple-light .main-header .navbar .nav > li > a:active,
.skin-purple-light .main-header .navbar .nav > li > a:focus,
.skin-purple-light .main-header .navbar .nav .open > a,
.skin-purple-light .main-header .navbar .nav .open > a:hover,
.skin-purple-light .main-header .navbar .nav .open > a:focus,
.skin-purple-light .main-header .navbar .nav > .active > a {
  background: rgba(0, 0, 0, 0.1);
  color: #f6f6f6;
}
.skin-purple-light .main-header .navbar .sidebar-toggle {
  color: #fff;
}
.skin-purple-light .main-header .navbar .sidebar-toggle:hover {
  color: #f6f6f6;
  background: rgba(0, 0, 0, 0.1);
}
.skin-purple-light .main-header .navbar .sidebar-toggle {
  color: #fff;
}
.skin-purple-light .main-header .navbar .sidebar-toggle:hover {
  background-color: #555299;
}
@media (max-width: 767px) {
  .skin-purple-light .main-header .navbar .dropdown-menu li.divider {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .skin-purple-light .main-header .navbar .dropdown-menu li a {
    color: #fff;
  }
  .skin-purple-light .main-header .navbar .dropdown-menu li a:hover {
    background: #555299;
  }
}
.skin-purple-light .main-header .logo {
  background-color: #605ca8;
  color: #fff;
  border-bottom: 0 solid transparent;
}
.skin-purple-light .main-header .logo:hover {
  background-color: #5d59a6;
}
.skin-purple-light .main-header li.user-header {
  background-color: #605ca8;
}
.skin-purple-light .content-header {
  background: transparent;
}
.skin-purple-light .wrapper,
.skin-purple-light .main-sidebar,
.skin-purple-light .left-side {
  background-color: #f9fafc;
}
.skin-purple-light .content-wrapper,
.skin-purple-light .main-footer {
  border-left: 1px solid #d2d6de;
}
.skin-purple-light .user-panel > .info,
.skin-purple-light .user-panel > .info > a {
  color: #444;
}
.skin-purple-light .sidebar-menu > li {
  -webkit-transition: border-left-color 0.3s ease;
  -o-transition: border-left-color 0.3s ease;
  transition: border-left-color 0.3s ease;
}
.skin-purple-light .sidebar-menu > li.header {
  color: #848484;
  background: #f9fafc;
}
.skin-purple-light .sidebar-menu > li > a {
  border-left: 3px solid transparent;
  font-weight: 600;
}
.skin-purple-light .sidebar-menu > li:hover > a,
.skin-purple-light .sidebar-menu > li.active > a {
  color: #000;
  background: #f4f4f5;
}
.skin-purple-light .sidebar-menu > li.active {
  border-left-color: #605ca8;
}
.skin-purple-light .sidebar-menu > li.active > a {
  font-weight: 600;
}
.skin-purple-light .sidebar-menu > li > .treeview-menu {
  background: #f4f4f5;
}
.skin-purple-light .sidebar a {
  color: #444;
}
.skin-purple-light .sidebar a:hover {
  text-decoration: none;
}
.skin-purple-light .treeview-menu > li > a {
  color: #777;
}
.skin-purple-light .treeview-menu > li.active > a,
.skin-purple-light .treeview-menu > li > a:hover {
  color: #000;
}
.skin-purple-light .treeview-menu > li.active > a {
  font-weight: 600;
}
.skin-purple-light .sidebar-form {
  border-radius: 3px;
  border: 1px solid #d2d6de;
  margin: 10px 10px;
}
.skin-purple-light .sidebar-form input[type="text"],
.skin-purple-light .sidebar-form .btn {
  box-shadow: none;
  background-color: #fff;
  border: 1px solid transparent;
  height: 35px;
}
.skin-purple-light .sidebar-form input[type="text"] {
  color: #666;
  border-top-left-radius: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 2px;
}
.skin-purple-light .sidebar-form input[type="text"]:focus,
.skin-purple-light .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  background-color: #fff;
  color: #666;
}
.skin-purple-light .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  border-left-color: #fff;
}
.skin-purple-light .sidebar-form .btn {
  color: #999;
  border-top-left-radius: 0;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 0;
}
@media (min-width: 768px) {
  .skin-purple-light.sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu {
    border-left: 1px solid #d2d6de;
  }
}
/*
 * Page: Mailbox
 * -------------
 */
.mailbox-messages > .table {
  margin: 0;
}
.mailbox-controls {
  padding: 5px;
}
.mailbox-controls.with-border {
  border-bottom: 1px solid #f4f4f4;
}
.mailbox-read-info {
  border-bottom: 1px solid #f4f4f4;
  padding: 10px;
}
.mailbox-read-info h3 {
  font-size: 20px;
  margin: 0;
}
.mailbox-read-info h5 {
  margin: 0;
  padding: 5px 0 0 0;
}
.mailbox-read-time {
  color: #999;
  font-size: 13px;
}
.mailbox-read-message {
  padding: 10px;
}
.mailbox-attachments li {
  float: left;
  width: 200px;
  border: 1px solid #eee;
  margin-bottom: 10px;
  margin-right: 10px;
}
.mailbox-attachment-name {
  font-weight: bold;
  color: #666;
}
.mailbox-attachment-icon,
.mailbox-attachment-info,
.mailbox-attachment-size {
  display: block;
}
.mailbox-attachment-info {
  padding: 10px;
  background: #f4f4f4;
}
.mailbox-attachment-size {
  color: #999;
  font-size: 12px;
}
.mailbox-attachment-icon {
  text-align: center;
  font-size: 65px;
  color: #666;
  padding: 20px 10px;
}
.mailbox-attachment-icon.has-img {
  padding: 0;
}
.mailbox-attachment-icon.has-img > img {
  max-width: 100%;
  height: auto;
}
/*
 * Page: Lock Screen
 * -----------------
 */
/* ADD THIS CLASS TO THE <BODY> TAG */
.lockscreen {
  background: #d2d6de;
}
.lockscreen-logo {
  font-size: 35px;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 300;
}
.lockscreen-logo a {
  color: #444;
}
.lockscreen-wrapper {
  max-width: 400px;
  margin: 0 auto;
  margin-top: 10%;
}
/* User name [optional] */
.lockscreen .lockscreen-name {
  text-align: center;
  font-weight: 600;
}
/* Will contain the image and the sign in form */
.lockscreen-item {
  border-radius: 4px;
  padding: 0;
  background: #fff;
  position: relative;
  margin: 10px auto 30px auto;
  width: 290px;
}
/* User image */
.lockscreen-image {
  border-radius: 50%;
  position: absolute;
  left: -10px;
  top: -25px;
  background: #fff;
  padding: 5px;
  z-index: 10;
}
.lockscreen-image > img {
  border-radius: 50%;
  width: 70px;
  height: 70px;
}
/* Contains the password input and the login button */
.lockscreen-credentials {
  margin-left: 70px;
}
.lockscreen-credentials .form-control {
  border: 0;
}
.lockscreen-credentials .btn {
  background-color: #fff;
  border: 0;
  padding: 0 10px;
}
.lockscreen-footer {
  margin-top: 10px;
}
/*
 * Page: Login & Register
 * ----------------------
 */
.login-logo,
.register-logo {
  font-size: 35px;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 300;
}
.login-logo a,
.register-logo a {
  color: #444;
}
.login-page,
.register-page {
  background: #d2d6de;
}
.login-box,
.register-box {
  width: 360px;
  margin: 7% auto;
}
@media (max-width: 768px) {
  .login-box,
  .register-box {
    width: 90%;
    margin-top: 20px;
  }
}
.login-box-body,
.register-box-body {
  background: #fff;
  padding: 20px;
  border-top: 0;
  color: #666;
}
.login-box-body .form-control-feedback,
.register-box-body .form-control-feedback {
  color: #777;
}
.login-box-msg,
.register-box-msg {
  margin: 0;
  text-align: center;
  padding: 0 20px 20px 20px;
}
.social-auth-links {
  margin: 10px 0;
}
/*
 * Page: 400 and 500 error pages
 * ------------------------------
 */
.error-page {
  width: 600px;
  margin: 20px auto 0 auto;
}
@media (max-width: 991px) {
  .error-page {
    width: 100%;
  }
}
.error-page > .headline {
  float: left;
  font-size: 100px;
  font-weight: 300;
}
@media (max-width: 991px) {
  .error-page > .headline {
    float: none;
    text-align: center;
  }
}
.error-page > .error-content {
  margin-left: 190px;
  display: block;
}
@media (max-width: 991px) {
  .error-page > .error-content {
    margin-left: 0;
  }
}
.error-page > .error-content > h3 {
  font-weight: 300;
  font-size: 25px;
}
@media (max-width: 991px) {
  .error-page > .error-content > h3 {
    text-align: center;
  }
}
/*
 * Page: Invoice
 * -------------
 */
.invoice {
  position: relative;
  background: #fff;
  border: 1px solid #f4f4f4;
  padding: 20px;
  margin: 10px 25px;
}
.invoice-title {
  margin-top: 0;
}
/*
 * Page: Profile
 * -------------
 */
.profile-user-img {
  margin: 0 auto;
  width: 100px;
  padding: 3px;
  border: 3px solid #d2d6de;
}
.profile-username {
  font-size: 21px;
  margin-top: 5px;
}
.post {
  border-bottom: 1px solid #d2d6de;
  margin-bottom: 15px;
  padding-bottom: 15px;
  color: #666;
}
.post:last-of-type {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.post .user-block {
  margin-bottom: 15px;
}
/*
 * Social Buttons for Bootstrap
 *
 * Copyright 2013-2015 Panayiotis Lipiridis
 * Licensed under the MIT License
 *
 * https://github.com/lipis/bootstrap-social
 */
.btn-social {
  position: relative;
  padding-left: 44px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.btn-social > :first-child {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 32px;
  line-height: 34px;
  font-size: 1.6em;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.btn-social.btn-lg {
  padding-left: 61px;
}
.btn-social.btn-lg > :first-child {
  line-height: 45px;
  width: 45px;
  font-size: 1.8em;
}
.btn-social.btn-sm {
  padding-left: 38px;
}
.btn-social.btn-sm > :first-child {
  line-height: 28px;
  width: 28px;
  font-size: 1.4em;
}
.btn-social.btn-xs {
  padding-left: 30px;
}
.btn-social.btn-xs > :first-child {
  line-height: 20px;
  width: 20px;
  font-size: 1.2em;
}
.btn-social-icon {
  position: relative;
  padding-left: 44px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 34px;
  width: 34px;
  padding: 0;
}
.btn-social-icon > :first-child {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 32px;
  line-height: 34px;
  font-size: 1.6em;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.btn-social-icon.btn-lg {
  padding-left: 61px;
}
.btn-social-icon.btn-lg > :first-child {
  line-height: 45px;
  width: 45px;
  font-size: 1.8em;
}
.btn-social-icon.btn-sm {
  padding-left: 38px;
}
.btn-social-icon.btn-sm > :first-child {
  line-height: 28px;
  width: 28px;
  font-size: 1.4em;
}
.btn-social-icon.btn-xs {
  padding-left: 30px;
}
.btn-social-icon.btn-xs > :first-child {
  line-height: 20px;
  width: 20px;
  font-size: 1.2em;
}
.btn-social-icon > :first-child {
  border: none;
  text-align: center;
  width: 100%;
}
.btn-social-icon.btn-lg {
  height: 45px;
  width: 45px;
  padding-left: 0;
  padding-right: 0;
}
.btn-social-icon.btn-sm {
  height: 30px;
  width: 30px;
  padding-left: 0;
  padding-right: 0;
}
.btn-social-icon.btn-xs {
  height: 22px;
  width: 22px;
  padding-left: 0;
  padding-right: 0;
}
.btn-adn {
  color: #fff;
  background-color: #d87a68;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-adn:focus,
.btn-adn.focus {
  color: #fff;
  background-color: #ce563f;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-adn:hover {
  color: #fff;
  background-color: #ce563f;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-adn:active,
.btn-adn.active,
.open > .dropdown-toggle.btn-adn {
  color: #fff;
  background-color: #ce563f;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-adn:active:hover,
.btn-adn.active:hover,
.open > .dropdown-toggle.btn-adn:hover,
.btn-adn:active:focus,
.btn-adn.active:focus,
.open > .dropdown-toggle.btn-adn:focus,
.btn-adn:active.focus,
.btn-adn.active.focus,
.open > .dropdown-toggle.btn-adn.focus {
  color: #fff;
  background-color: #b94630;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-adn:active,
.btn-adn.active,
.open > .dropdown-toggle.btn-adn {
  background-image: none;
}
.btn-adn.disabled,
.btn-adn[disabled],
fieldset[disabled] .btn-adn,
.btn-adn.disabled:hover,
.btn-adn[disabled]:hover,
fieldset[disabled] .btn-adn:hover,
.btn-adn.disabled:focus,
.btn-adn[disabled]:focus,
fieldset[disabled] .btn-adn:focus,
.btn-adn.disabled.focus,
.btn-adn[disabled].focus,
fieldset[disabled] .btn-adn.focus,
.btn-adn.disabled:active,
.btn-adn[disabled]:active,
fieldset[disabled] .btn-adn:active,
.btn-adn.disabled.active,
.btn-adn[disabled].active,
fieldset[disabled] .btn-adn.active {
  background-color: #d87a68;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-adn .badge {
  color: #d87a68;
  background-color: #fff;
}
.btn-bitbucket {
  color: #fff;
  background-color: #205081;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-bitbucket:focus,
.btn-bitbucket.focus {
  color: #fff;
  background-color: #163758;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-bitbucket:hover {
  color: #fff;
  background-color: #163758;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-bitbucket:active,
.btn-bitbucket.active,
.open > .dropdown-toggle.btn-bitbucket {
  color: #fff;
  background-color: #163758;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-bitbucket:active:hover,
.btn-bitbucket.active:hover,
.open > .dropdown-toggle.btn-bitbucket:hover,
.btn-bitbucket:active:focus,
.btn-bitbucket.active:focus,
.open > .dropdown-toggle.btn-bitbucket:focus,
.btn-bitbucket:active.focus,
.btn-bitbucket.active.focus,
.open > .dropdown-toggle.btn-bitbucket.focus {
  color: #fff;
  background-color: #0f253c;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-bitbucket:active,
.btn-bitbucket.active,
.open > .dropdown-toggle.btn-bitbucket {
  background-image: none;
}
.btn-bitbucket.disabled,
.btn-bitbucket[disabled],
fieldset[disabled] .btn-bitbucket,
.btn-bitbucket.disabled:hover,
.btn-bitbucket[disabled]:hover,
fieldset[disabled] .btn-bitbucket:hover,
.btn-bitbucket.disabled:focus,
.btn-bitbucket[disabled]:focus,
fieldset[disabled] .btn-bitbucket:focus,
.btn-bitbucket.disabled.focus,
.btn-bitbucket[disabled].focus,
fieldset[disabled] .btn-bitbucket.focus,
.btn-bitbucket.disabled:active,
.btn-bitbucket[disabled]:active,
fieldset[disabled] .btn-bitbucket:active,
.btn-bitbucket.disabled.active,
.btn-bitbucket[disabled].active,
fieldset[disabled] .btn-bitbucket.active {
  background-color: #205081;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-bitbucket .badge {
  color: #205081;
  background-color: #fff;
}
.btn-dropbox {
  color: #fff;
  background-color: #1087dd;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-dropbox:focus,
.btn-dropbox.focus {
  color: #fff;
  background-color: #0d6aad;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-dropbox:hover {
  color: #fff;
  background-color: #0d6aad;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-dropbox:active,
.btn-dropbox.active,
.open > .dropdown-toggle.btn-dropbox {
  color: #fff;
  background-color: #0d6aad;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-dropbox:active:hover,
.btn-dropbox.active:hover,
.open > .dropdown-toggle.btn-dropbox:hover,
.btn-dropbox:active:focus,
.btn-dropbox.active:focus,
.open > .dropdown-toggle.btn-dropbox:focus,
.btn-dropbox:active.focus,
.btn-dropbox.active.focus,
.open > .dropdown-toggle.btn-dropbox.focus {
  color: #fff;
  background-color: #0a568c;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-dropbox:active,
.btn-dropbox.active,
.open > .dropdown-toggle.btn-dropbox {
  background-image: none;
}
.btn-dropbox.disabled,
.btn-dropbox[disabled],
fieldset[disabled] .btn-dropbox,
.btn-dropbox.disabled:hover,
.btn-dropbox[disabled]:hover,
fieldset[disabled] .btn-dropbox:hover,
.btn-dropbox.disabled:focus,
.btn-dropbox[disabled]:focus,
fieldset[disabled] .btn-dropbox:focus,
.btn-dropbox.disabled.focus,
.btn-dropbox[disabled].focus,
fieldset[disabled] .btn-dropbox.focus,
.btn-dropbox.disabled:active,
.btn-dropbox[disabled]:active,
fieldset[disabled] .btn-dropbox:active,
.btn-dropbox.disabled.active,
.btn-dropbox[disabled].active,
fieldset[disabled] .btn-dropbox.active {
  background-color: #1087dd;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-dropbox .badge {
  color: #1087dd;
  background-color: #fff;
}
.btn-facebook {
  color: #fff;
  background-color: #3b5998;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-facebook:focus,
.btn-facebook.focus {
  color: #fff;
  background-color: #2d4373;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-facebook:hover {
  color: #fff;
  background-color: #2d4373;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-facebook:active,
.btn-facebook.active,
.open > .dropdown-toggle.btn-facebook {
  color: #fff;
  background-color: #2d4373;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-facebook:active:hover,
.btn-facebook.active:hover,
.open > .dropdown-toggle.btn-facebook:hover,
.btn-facebook:active:focus,
.btn-facebook.active:focus,
.open > .dropdown-toggle.btn-facebook:focus,
.btn-facebook:active.focus,
.btn-facebook.active.focus,
.open > .dropdown-toggle.btn-facebook.focus {
  color: #fff;
  background-color: #23345a;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-facebook:active,
.btn-facebook.active,
.open > .dropdown-toggle.btn-facebook {
  background-image: none;
}
.btn-facebook.disabled,
.btn-facebook[disabled],
fieldset[disabled] .btn-facebook,
.btn-facebook.disabled:hover,
.btn-facebook[disabled]:hover,
fieldset[disabled] .btn-facebook:hover,
.btn-facebook.disabled:focus,
.btn-facebook[disabled]:focus,
fieldset[disabled] .btn-facebook:focus,
.btn-facebook.disabled.focus,
.btn-facebook[disabled].focus,
fieldset[disabled] .btn-facebook.focus,
.btn-facebook.disabled:active,
.btn-facebook[disabled]:active,
fieldset[disabled] .btn-facebook:active,
.btn-facebook.disabled.active,
.btn-facebook[disabled].active,
fieldset[disabled] .btn-facebook.active {
  background-color: #3b5998;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-facebook .badge {
  color: #3b5998;
  background-color: #fff;
}
.btn-flickr {
  color: #fff;
  background-color: #ff0084;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-flickr:focus,
.btn-flickr.focus {
  color: #fff;
  background-color: #cc006a;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-flickr:hover {
  color: #fff;
  background-color: #cc006a;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-flickr:active,
.btn-flickr.active,
.open > .dropdown-toggle.btn-flickr {
  color: #fff;
  background-color: #cc006a;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-flickr:active:hover,
.btn-flickr.active:hover,
.open > .dropdown-toggle.btn-flickr:hover,
.btn-flickr:active:focus,
.btn-flickr.active:focus,
.open > .dropdown-toggle.btn-flickr:focus,
.btn-flickr:active.focus,
.btn-flickr.active.focus,
.open > .dropdown-toggle.btn-flickr.focus {
  color: #fff;
  background-color: #a80057;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-flickr:active,
.btn-flickr.active,
.open > .dropdown-toggle.btn-flickr {
  background-image: none;
}
.btn-flickr.disabled,
.btn-flickr[disabled],
fieldset[disabled] .btn-flickr,
.btn-flickr.disabled:hover,
.btn-flickr[disabled]:hover,
fieldset[disabled] .btn-flickr:hover,
.btn-flickr.disabled:focus,
.btn-flickr[disabled]:focus,
fieldset[disabled] .btn-flickr:focus,
.btn-flickr.disabled.focus,
.btn-flickr[disabled].focus,
fieldset[disabled] .btn-flickr.focus,
.btn-flickr.disabled:active,
.btn-flickr[disabled]:active,
fieldset[disabled] .btn-flickr:active,
.btn-flickr.disabled.active,
.btn-flickr[disabled].active,
fieldset[disabled] .btn-flickr.active {
  background-color: #ff0084;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-flickr .badge {
  color: #ff0084;
  background-color: #fff;
}
.btn-foursquare {
  color: #fff;
  background-color: #f94877;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-foursquare:focus,
.btn-foursquare.focus {
  color: #fff;
  background-color: #f71752;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-foursquare:hover {
  color: #fff;
  background-color: #f71752;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-foursquare:active,
.btn-foursquare.active,
.open > .dropdown-toggle.btn-foursquare {
  color: #fff;
  background-color: #f71752;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-foursquare:active:hover,
.btn-foursquare.active:hover,
.open > .dropdown-toggle.btn-foursquare:hover,
.btn-foursquare:active:focus,
.btn-foursquare.active:focus,
.open > .dropdown-toggle.btn-foursquare:focus,
.btn-foursquare:active.focus,
.btn-foursquare.active.focus,
.open > .dropdown-toggle.btn-foursquare.focus {
  color: #fff;
  background-color: #e30742;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-foursquare:active,
.btn-foursquare.active,
.open > .dropdown-toggle.btn-foursquare {
  background-image: none;
}
.btn-foursquare.disabled,
.btn-foursquare[disabled],
fieldset[disabled] .btn-foursquare,
.btn-foursquare.disabled:hover,
.btn-foursquare[disabled]:hover,
fieldset[disabled] .btn-foursquare:hover,
.btn-foursquare.disabled:focus,
.btn-foursquare[disabled]:focus,
fieldset[disabled] .btn-foursquare:focus,
.btn-foursquare.disabled.focus,
.btn-foursquare[disabled].focus,
fieldset[disabled] .btn-foursquare.focus,
.btn-foursquare.disabled:active,
.btn-foursquare[disabled]:active,
fieldset[disabled] .btn-foursquare:active,
.btn-foursquare.disabled.active,
.btn-foursquare[disabled].active,
fieldset[disabled] .btn-foursquare.active {
  background-color: #f94877;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-foursquare .badge {
  color: #f94877;
  background-color: #fff;
}
.btn-github {
  color: #fff;
  background-color: #444444;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-github:focus,
.btn-github.focus {
  color: #fff;
  background-color: #2b2b2b;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-github:hover {
  color: #fff;
  background-color: #2b2b2b;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-github:active,
.btn-github.active,
.open > .dropdown-toggle.btn-github {
  color: #fff;
  background-color: #2b2b2b;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-github:active:hover,
.btn-github.active:hover,
.open > .dropdown-toggle.btn-github:hover,
.btn-github:active:focus,
.btn-github.active:focus,
.open > .dropdown-toggle.btn-github:focus,
.btn-github:active.focus,
.btn-github.active.focus,
.open > .dropdown-toggle.btn-github.focus {
  color: #fff;
  background-color: #191919;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-github:active,
.btn-github.active,
.open > .dropdown-toggle.btn-github {
  background-image: none;
}
.btn-github.disabled,
.btn-github[disabled],
fieldset[disabled] .btn-github,
.btn-github.disabled:hover,
.btn-github[disabled]:hover,
fieldset[disabled] .btn-github:hover,
.btn-github.disabled:focus,
.btn-github[disabled]:focus,
fieldset[disabled] .btn-github:focus,
.btn-github.disabled.focus,
.btn-github[disabled].focus,
fieldset[disabled] .btn-github.focus,
.btn-github.disabled:active,
.btn-github[disabled]:active,
fieldset[disabled] .btn-github:active,
.btn-github.disabled.active,
.btn-github[disabled].active,
fieldset[disabled] .btn-github.active {
  background-color: #444444;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-github .badge {
  color: #444444;
  background-color: #fff;
}
.btn-google {
  color: #fff;
  background-color: #dd4b39;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-google:focus,
.btn-google.focus {
  color: #fff;
  background-color: #c23321;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-google:hover {
  color: #fff;
  background-color: #c23321;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-google:active,
.btn-google.active,
.open > .dropdown-toggle.btn-google {
  color: #fff;
  background-color: #c23321;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-google:active:hover,
.btn-google.active:hover,
.open > .dropdown-toggle.btn-google:hover,
.btn-google:active:focus,
.btn-google.active:focus,
.open > .dropdown-toggle.btn-google:focus,
.btn-google:active.focus,
.btn-google.active.focus,
.open > .dropdown-toggle.btn-google.focus {
  color: #fff;
  background-color: #a32b1c;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-google:active,
.btn-google.active,
.open > .dropdown-toggle.btn-google {
  background-image: none;
}
.btn-google.disabled,
.btn-google[disabled],
fieldset[disabled] .btn-google,
.btn-google.disabled:hover,
.btn-google[disabled]:hover,
fieldset[disabled] .btn-google:hover,
.btn-google.disabled:focus,
.btn-google[disabled]:focus,
fieldset[disabled] .btn-google:focus,
.btn-google.disabled.focus,
.btn-google[disabled].focus,
fieldset[disabled] .btn-google.focus,
.btn-google.disabled:active,
.btn-google[disabled]:active,
fieldset[disabled] .btn-google:active,
.btn-google.disabled.active,
.btn-google[disabled].active,
fieldset[disabled] .btn-google.active {
  background-color: #dd4b39;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-google .badge {
  color: #dd4b39;
  background-color: #fff;
}
.btn-instagram {
  color: #fff;
  background-color: #3f729b;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-instagram:focus,
.btn-instagram.focus {
  color: #fff;
  background-color: #305777;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-instagram:hover {
  color: #fff;
  background-color: #305777;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-instagram:active,
.btn-instagram.active,
.open > .dropdown-toggle.btn-instagram {
  color: #fff;
  background-color: #305777;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-instagram:active:hover,
.btn-instagram.active:hover,
.open > .dropdown-toggle.btn-instagram:hover,
.btn-instagram:active:focus,
.btn-instagram.active:focus,
.open > .dropdown-toggle.btn-instagram:focus,
.btn-instagram:active.focus,
.btn-instagram.active.focus,
.open > .dropdown-toggle.btn-instagram.focus {
  color: #fff;
  background-color: #26455d;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-instagram:active,
.btn-instagram.active,
.open > .dropdown-toggle.btn-instagram {
  background-image: none;
}
.btn-instagram.disabled,
.btn-instagram[disabled],
fieldset[disabled] .btn-instagram,
.btn-instagram.disabled:hover,
.btn-instagram[disabled]:hover,
fieldset[disabled] .btn-instagram:hover,
.btn-instagram.disabled:focus,
.btn-instagram[disabled]:focus,
fieldset[disabled] .btn-instagram:focus,
.btn-instagram.disabled.focus,
.btn-instagram[disabled].focus,
fieldset[disabled] .btn-instagram.focus,
.btn-instagram.disabled:active,
.btn-instagram[disabled]:active,
fieldset[disabled] .btn-instagram:active,
.btn-instagram.disabled.active,
.btn-instagram[disabled].active,
fieldset[disabled] .btn-instagram.active {
  background-color: #3f729b;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-instagram .badge {
  color: #3f729b;
  background-color: #fff;
}
.btn-linkedin {
  color: #fff;
  background-color: #007bb6;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-linkedin:focus,
.btn-linkedin.focus {
  color: #fff;
  background-color: #005983;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-linkedin:hover {
  color: #fff;
  background-color: #005983;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-linkedin:active,
.btn-linkedin.active,
.open > .dropdown-toggle.btn-linkedin {
  color: #fff;
  background-color: #005983;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-linkedin:active:hover,
.btn-linkedin.active:hover,
.open > .dropdown-toggle.btn-linkedin:hover,
.btn-linkedin:active:focus,
.btn-linkedin.active:focus,
.open > .dropdown-toggle.btn-linkedin:focus,
.btn-linkedin:active.focus,
.btn-linkedin.active.focus,
.open > .dropdown-toggle.btn-linkedin.focus {
  color: #fff;
  background-color: #00405f;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-linkedin:active,
.btn-linkedin.active,
.open > .dropdown-toggle.btn-linkedin {
  background-image: none;
}
.btn-linkedin.disabled,
.btn-linkedin[disabled],
fieldset[disabled] .btn-linkedin,
.btn-linkedin.disabled:hover,
.btn-linkedin[disabled]:hover,
fieldset[disabled] .btn-linkedin:hover,
.btn-linkedin.disabled:focus,
.btn-linkedin[disabled]:focus,
fieldset[disabled] .btn-linkedin:focus,
.btn-linkedin.disabled.focus,
.btn-linkedin[disabled].focus,
fieldset[disabled] .btn-linkedin.focus,
.btn-linkedin.disabled:active,
.btn-linkedin[disabled]:active,
fieldset[disabled] .btn-linkedin:active,
.btn-linkedin.disabled.active,
.btn-linkedin[disabled].active,
fieldset[disabled] .btn-linkedin.active {
  background-color: #007bb6;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-linkedin .badge {
  color: #007bb6;
  background-color: #fff;
}
.btn-microsoft {
  color: #fff;
  background-color: #2672ec;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-microsoft:focus,
.btn-microsoft.focus {
  color: #fff;
  background-color: #125acd;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-microsoft:hover {
  color: #fff;
  background-color: #125acd;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-microsoft:active,
.btn-microsoft.active,
.open > .dropdown-toggle.btn-microsoft {
  color: #fff;
  background-color: #125acd;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-microsoft:active:hover,
.btn-microsoft.active:hover,
.open > .dropdown-toggle.btn-microsoft:hover,
.btn-microsoft:active:focus,
.btn-microsoft.active:focus,
.open > .dropdown-toggle.btn-microsoft:focus,
.btn-microsoft:active.focus,
.btn-microsoft.active.focus,
.open > .dropdown-toggle.btn-microsoft.focus {
  color: #fff;
  background-color: #0f4bac;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-microsoft:active,
.btn-microsoft.active,
.open > .dropdown-toggle.btn-microsoft {
  background-image: none;
}
.btn-microsoft.disabled,
.btn-microsoft[disabled],
fieldset[disabled] .btn-microsoft,
.btn-microsoft.disabled:hover,
.btn-microsoft[disabled]:hover,
fieldset[disabled] .btn-microsoft:hover,
.btn-microsoft.disabled:focus,
.btn-microsoft[disabled]:focus,
fieldset[disabled] .btn-microsoft:focus,
.btn-microsoft.disabled.focus,
.btn-microsoft[disabled].focus,
fieldset[disabled] .btn-microsoft.focus,
.btn-microsoft.disabled:active,
.btn-microsoft[disabled]:active,
fieldset[disabled] .btn-microsoft:active,
.btn-microsoft.disabled.active,
.btn-microsoft[disabled].active,
fieldset[disabled] .btn-microsoft.active {
  background-color: #2672ec;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-microsoft .badge {
  color: #2672ec;
  background-color: #fff;
}
.btn-openid {
  color: #fff;
  background-color: #f7931e;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-openid:focus,
.btn-openid.focus {
  color: #fff;
  background-color: #da7908;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-openid:hover {
  color: #fff;
  background-color: #da7908;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-openid:active,
.btn-openid.active,
.open > .dropdown-toggle.btn-openid {
  color: #fff;
  background-color: #da7908;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-openid:active:hover,
.btn-openid.active:hover,
.open > .dropdown-toggle.btn-openid:hover,
.btn-openid:active:focus,
.btn-openid.active:focus,
.open > .dropdown-toggle.btn-openid:focus,
.btn-openid:active.focus,
.btn-openid.active.focus,
.open > .dropdown-toggle.btn-openid.focus {
  color: #fff;
  background-color: #b86607;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-openid:active,
.btn-openid.active,
.open > .dropdown-toggle.btn-openid {
  background-image: none;
}
.btn-openid.disabled,
.btn-openid[disabled],
fieldset[disabled] .btn-openid,
.btn-openid.disabled:hover,
.btn-openid[disabled]:hover,
fieldset[disabled] .btn-openid:hover,
.btn-openid.disabled:focus,
.btn-openid[disabled]:focus,
fieldset[disabled] .btn-openid:focus,
.btn-openid.disabled.focus,
.btn-openid[disabled].focus,
fieldset[disabled] .btn-openid.focus,
.btn-openid.disabled:active,
.btn-openid[disabled]:active,
fieldset[disabled] .btn-openid:active,
.btn-openid.disabled.active,
.btn-openid[disabled].active,
fieldset[disabled] .btn-openid.active {
  background-color: #f7931e;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-openid .badge {
  color: #f7931e;
  background-color: #fff;
}
.btn-pinterest {
  color: #fff;
  background-color: #cb2027;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-pinterest:focus,
.btn-pinterest.focus {
  color: #fff;
  background-color: #9f191f;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-pinterest:hover {
  color: #fff;
  background-color: #9f191f;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-pinterest:active,
.btn-pinterest.active,
.open > .dropdown-toggle.btn-pinterest {
  color: #fff;
  background-color: #9f191f;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-pinterest:active:hover,
.btn-pinterest.active:hover,
.open > .dropdown-toggle.btn-pinterest:hover,
.btn-pinterest:active:focus,
.btn-pinterest.active:focus,
.open > .dropdown-toggle.btn-pinterest:focus,
.btn-pinterest:active.focus,
.btn-pinterest.active.focus,
.open > .dropdown-toggle.btn-pinterest.focus {
  color: #fff;
  background-color: #801419;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-pinterest:active,
.btn-pinterest.active,
.open > .dropdown-toggle.btn-pinterest {
  background-image: none;
}
.btn-pinterest.disabled,
.btn-pinterest[disabled],
fieldset[disabled] .btn-pinterest,
.btn-pinterest.disabled:hover,
.btn-pinterest[disabled]:hover,
fieldset[disabled] .btn-pinterest:hover,
.btn-pinterest.disabled:focus,
.btn-pinterest[disabled]:focus,
fieldset[disabled] .btn-pinterest:focus,
.btn-pinterest.disabled.focus,
.btn-pinterest[disabled].focus,
fieldset[disabled] .btn-pinterest.focus,
.btn-pinterest.disabled:active,
.btn-pinterest[disabled]:active,
fieldset[disabled] .btn-pinterest:active,
.btn-pinterest.disabled.active,
.btn-pinterest[disabled].active,
fieldset[disabled] .btn-pinterest.active {
  background-color: #cb2027;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-pinterest .badge {
  color: #cb2027;
  background-color: #fff;
}
.btn-reddit {
  color: #000;
  background-color: #eff7ff;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-reddit:focus,
.btn-reddit.focus {
  color: #000;
  background-color: #bcddff;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-reddit:hover {
  color: #000;
  background-color: #bcddff;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-reddit:active,
.btn-reddit.active,
.open > .dropdown-toggle.btn-reddit {
  color: #000;
  background-color: #bcddff;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-reddit:active:hover,
.btn-reddit.active:hover,
.open > .dropdown-toggle.btn-reddit:hover,
.btn-reddit:active:focus,
.btn-reddit.active:focus,
.open > .dropdown-toggle.btn-reddit:focus,
.btn-reddit:active.focus,
.btn-reddit.active.focus,
.open > .dropdown-toggle.btn-reddit.focus {
  color: #000;
  background-color: #98ccff;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-reddit:active,
.btn-reddit.active,
.open > .dropdown-toggle.btn-reddit {
  background-image: none;
}
.btn-reddit.disabled,
.btn-reddit[disabled],
fieldset[disabled] .btn-reddit,
.btn-reddit.disabled:hover,
.btn-reddit[disabled]:hover,
fieldset[disabled] .btn-reddit:hover,
.btn-reddit.disabled:focus,
.btn-reddit[disabled]:focus,
fieldset[disabled] .btn-reddit:focus,
.btn-reddit.disabled.focus,
.btn-reddit[disabled].focus,
fieldset[disabled] .btn-reddit.focus,
.btn-reddit.disabled:active,
.btn-reddit[disabled]:active,
fieldset[disabled] .btn-reddit:active,
.btn-reddit.disabled.active,
.btn-reddit[disabled].active,
fieldset[disabled] .btn-reddit.active {
  background-color: #eff7ff;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-reddit .badge {
  color: #eff7ff;
  background-color: #000;
}
.btn-soundcloud {
  color: #fff;
  background-color: #ff5500;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-soundcloud:focus,
.btn-soundcloud.focus {
  color: #fff;
  background-color: #cc4400;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-soundcloud:hover {
  color: #fff;
  background-color: #cc4400;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-soundcloud:active,
.btn-soundcloud.active,
.open > .dropdown-toggle.btn-soundcloud {
  color: #fff;
  background-color: #cc4400;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-soundcloud:active:hover,
.btn-soundcloud.active:hover,
.open > .dropdown-toggle.btn-soundcloud:hover,
.btn-soundcloud:active:focus,
.btn-soundcloud.active:focus,
.open > .dropdown-toggle.btn-soundcloud:focus,
.btn-soundcloud:active.focus,
.btn-soundcloud.active.focus,
.open > .dropdown-toggle.btn-soundcloud.focus {
  color: #fff;
  background-color: #a83800;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-soundcloud:active,
.btn-soundcloud.active,
.open > .dropdown-toggle.btn-soundcloud {
  background-image: none;
}
.btn-soundcloud.disabled,
.btn-soundcloud[disabled],
fieldset[disabled] .btn-soundcloud,
.btn-soundcloud.disabled:hover,
.btn-soundcloud[disabled]:hover,
fieldset[disabled] .btn-soundcloud:hover,
.btn-soundcloud.disabled:focus,
.btn-soundcloud[disabled]:focus,
fieldset[disabled] .btn-soundcloud:focus,
.btn-soundcloud.disabled.focus,
.btn-soundcloud[disabled].focus,
fieldset[disabled] .btn-soundcloud.focus,
.btn-soundcloud.disabled:active,
.btn-soundcloud[disabled]:active,
fieldset[disabled] .btn-soundcloud:active,
.btn-soundcloud.disabled.active,
.btn-soundcloud[disabled].active,
fieldset[disabled] .btn-soundcloud.active {
  background-color: #ff5500;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-soundcloud .badge {
  color: #ff5500;
  background-color: #fff;
}
.btn-tumblr {
  color: #fff;
  background-color: #2c4762;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-tumblr:focus,
.btn-tumblr.focus {
  color: #fff;
  background-color: #1c2d3f;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-tumblr:hover {
  color: #fff;
  background-color: #1c2d3f;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-tumblr:active,
.btn-tumblr.active,
.open > .dropdown-toggle.btn-tumblr {
  color: #fff;
  background-color: #1c2d3f;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-tumblr:active:hover,
.btn-tumblr.active:hover,
.open > .dropdown-toggle.btn-tumblr:hover,
.btn-tumblr:active:focus,
.btn-tumblr.active:focus,
.open > .dropdown-toggle.btn-tumblr:focus,
.btn-tumblr:active.focus,
.btn-tumblr.active.focus,
.open > .dropdown-toggle.btn-tumblr.focus {
  color: #fff;
  background-color: #111c26;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-tumblr:active,
.btn-tumblr.active,
.open > .dropdown-toggle.btn-tumblr {
  background-image: none;
}
.btn-tumblr.disabled,
.btn-tumblr[disabled],
fieldset[disabled] .btn-tumblr,
.btn-tumblr.disabled:hover,
.btn-tumblr[disabled]:hover,
fieldset[disabled] .btn-tumblr:hover,
.btn-tumblr.disabled:focus,
.btn-tumblr[disabled]:focus,
fieldset[disabled] .btn-tumblr:focus,
.btn-tumblr.disabled.focus,
.btn-tumblr[disabled].focus,
fieldset[disabled] .btn-tumblr.focus,
.btn-tumblr.disabled:active,
.btn-tumblr[disabled]:active,
fieldset[disabled] .btn-tumblr:active,
.btn-tumblr.disabled.active,
.btn-tumblr[disabled].active,
fieldset[disabled] .btn-tumblr.active {
  background-color: #2c4762;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-tumblr .badge {
  color: #2c4762;
  background-color: #fff;
}
.btn-twitter {
  color: #fff;
  background-color: #55acee;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-twitter:focus,
.btn-twitter.focus {
  color: #fff;
  background-color: #2795e9;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-twitter:hover {
  color: #fff;
  background-color: #2795e9;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-twitter:active,
.btn-twitter.active,
.open > .dropdown-toggle.btn-twitter {
  color: #fff;
  background-color: #2795e9;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-twitter:active:hover,
.btn-twitter.active:hover,
.open > .dropdown-toggle.btn-twitter:hover,
.btn-twitter:active:focus,
.btn-twitter.active:focus,
.open > .dropdown-toggle.btn-twitter:focus,
.btn-twitter:active.focus,
.btn-twitter.active.focus,
.open > .dropdown-toggle.btn-twitter.focus {
  color: #fff;
  background-color: #1583d7;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-twitter:active,
.btn-twitter.active,
.open > .dropdown-toggle.btn-twitter {
  background-image: none;
}
.btn-twitter.disabled,
.btn-twitter[disabled],
fieldset[disabled] .btn-twitter,
.btn-twitter.disabled:hover,
.btn-twitter[disabled]:hover,
fieldset[disabled] .btn-twitter:hover,
.btn-twitter.disabled:focus,
.btn-twitter[disabled]:focus,
fieldset[disabled] .btn-twitter:focus,
.btn-twitter.disabled.focus,
.btn-twitter[disabled].focus,
fieldset[disabled] .btn-twitter.focus,
.btn-twitter.disabled:active,
.btn-twitter[disabled]:active,
fieldset[disabled] .btn-twitter:active,
.btn-twitter.disabled.active,
.btn-twitter[disabled].active,
fieldset[disabled] .btn-twitter.active {
  background-color: #55acee;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-twitter .badge {
  color: #55acee;
  background-color: #fff;
}
.btn-vimeo {
  color: #fff;
  background-color: #1ab7ea;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-vimeo:focus,
.btn-vimeo.focus {
  color: #fff;
  background-color: #1295bf;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-vimeo:hover {
  color: #fff;
  background-color: #1295bf;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-vimeo:active,
.btn-vimeo.active,
.open > .dropdown-toggle.btn-vimeo {
  color: #fff;
  background-color: #1295bf;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-vimeo:active:hover,
.btn-vimeo.active:hover,
.open > .dropdown-toggle.btn-vimeo:hover,
.btn-vimeo:active:focus,
.btn-vimeo.active:focus,
.open > .dropdown-toggle.btn-vimeo:focus,
.btn-vimeo:active.focus,
.btn-vimeo.active.focus,
.open > .dropdown-toggle.btn-vimeo.focus {
  color: #fff;
  background-color: #0f7b9f;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-vimeo:active,
.btn-vimeo.active,
.open > .dropdown-toggle.btn-vimeo {
  background-image: none;
}
.btn-vimeo.disabled,
.btn-vimeo[disabled],
fieldset[disabled] .btn-vimeo,
.btn-vimeo.disabled:hover,
.btn-vimeo[disabled]:hover,
fieldset[disabled] .btn-vimeo:hover,
.btn-vimeo.disabled:focus,
.btn-vimeo[disabled]:focus,
fieldset[disabled] .btn-vimeo:focus,
.btn-vimeo.disabled.focus,
.btn-vimeo[disabled].focus,
fieldset[disabled] .btn-vimeo.focus,
.btn-vimeo.disabled:active,
.btn-vimeo[disabled]:active,
fieldset[disabled] .btn-vimeo:active,
.btn-vimeo.disabled.active,
.btn-vimeo[disabled].active,
fieldset[disabled] .btn-vimeo.active {
  background-color: #1ab7ea;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-vimeo .badge {
  color: #1ab7ea;
  background-color: #fff;
}
.btn-vk {
  color: #fff;
  background-color: #587ea3;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-vk:focus,
.btn-vk.focus {
  color: #fff;
  background-color: #466482;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-vk:hover {
  color: #fff;
  background-color: #466482;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-vk:active,
.btn-vk.active,
.open > .dropdown-toggle.btn-vk {
  color: #fff;
  background-color: #466482;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-vk:active:hover,
.btn-vk.active:hover,
.open > .dropdown-toggle.btn-vk:hover,
.btn-vk:active:focus,
.btn-vk.active:focus,
.open > .dropdown-toggle.btn-vk:focus,
.btn-vk:active.focus,
.btn-vk.active.focus,
.open > .dropdown-toggle.btn-vk.focus {
  color: #fff;
  background-color: #3a526b;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-vk:active,
.btn-vk.active,
.open > .dropdown-toggle.btn-vk {
  background-image: none;
}
.btn-vk.disabled,
.btn-vk[disabled],
fieldset[disabled] .btn-vk,
.btn-vk.disabled:hover,
.btn-vk[disabled]:hover,
fieldset[disabled] .btn-vk:hover,
.btn-vk.disabled:focus,
.btn-vk[disabled]:focus,
fieldset[disabled] .btn-vk:focus,
.btn-vk.disabled.focus,
.btn-vk[disabled].focus,
fieldset[disabled] .btn-vk.focus,
.btn-vk.disabled:active,
.btn-vk[disabled]:active,
fieldset[disabled] .btn-vk:active,
.btn-vk.disabled.active,
.btn-vk[disabled].active,
fieldset[disabled] .btn-vk.active {
  background-color: #587ea3;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-vk .badge {
  color: #587ea3;
  background-color: #fff;
}
.btn-yahoo {
  color: #fff;
  background-color: #720e9e;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-yahoo:focus,
.btn-yahoo.focus {
  color: #fff;
  background-color: #500a6f;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-yahoo:hover {
  color: #fff;
  background-color: #500a6f;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-yahoo:active,
.btn-yahoo.active,
.open > .dropdown-toggle.btn-yahoo {
  color: #fff;
  background-color: #500a6f;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-yahoo:active:hover,
.btn-yahoo.active:hover,
.open > .dropdown-toggle.btn-yahoo:hover,
.btn-yahoo:active:focus,
.btn-yahoo.active:focus,
.open > .dropdown-toggle.btn-yahoo:focus,
.btn-yahoo:active.focus,
.btn-yahoo.active.focus,
.open > .dropdown-toggle.btn-yahoo.focus {
  color: #fff;
  background-color: #39074e;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-yahoo:active,
.btn-yahoo.active,
.open > .dropdown-toggle.btn-yahoo {
  background-image: none;
}
.btn-yahoo.disabled,
.btn-yahoo[disabled],
fieldset[disabled] .btn-yahoo,
.btn-yahoo.disabled:hover,
.btn-yahoo[disabled]:hover,
fieldset[disabled] .btn-yahoo:hover,
.btn-yahoo.disabled:focus,
.btn-yahoo[disabled]:focus,
fieldset[disabled] .btn-yahoo:focus,
.btn-yahoo.disabled.focus,
.btn-yahoo[disabled].focus,
fieldset[disabled] .btn-yahoo.focus,
.btn-yahoo.disabled:active,
.btn-yahoo[disabled]:active,
fieldset[disabled] .btn-yahoo:active,
.btn-yahoo.disabled.active,
.btn-yahoo[disabled].active,
fieldset[disabled] .btn-yahoo.active {
  background-color: #720e9e;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-yahoo .badge {
  color: #720e9e;
  background-color: #fff;
}
/*
 * Plugin: Full Calendar
 * ---------------------
 */
.fc-button {
  background: #f4f4f4;
  background-image: none;
  color: #444;
  border-color: #ddd;
  border-bottom-color: #ddd;
}
.fc-button:hover,
.fc-button:active,
.fc-button.hover {
  background-color: #e9e9e9;
}
.fc-header-title h2 {
  font-size: 15px;
  line-height: 1.6em;
  color: #666;
  margin-left: 10px;
}
.fc-header-right {
  padding-right: 10px;
}
.fc-header-left {
  padding-left: 10px;
}
.fc-widget-header {
  background: #fafafa;
}
.fc-grid {
  width: 100%;
  border: 0;
}
.fc-widget-header:first-of-type,
.fc-widget-content:first-of-type {
  border-left: 0;
  border-right: 0;
}
.fc-widget-header:last-of-type,
.fc-widget-content:last-of-type {
  border-right: 0;
}
.fc-toolbar {
  padding: 10px;
  margin: 0;
}
.fc-day-number {
  font-size: 20px;
  font-weight: 300;
  padding-right: 10px;
}
.fc-color-picker {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fc-color-picker > li {
  float: left;
  font-size: 30px;
  margin-right: 5px;
  line-height: 30px;
}
.fc-color-picker > li .fa {
  -webkit-transition: -webkit-transform linear 0.3s;
  -moz-transition: -moz-transform linear 0.3s;
  -o-transition: -o-transform linear 0.3s;
  transition: transform linear 0.3s;
}
.fc-color-picker > li .fa:hover {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  -o-transform: rotate(30deg);
  transform: rotate(30deg);
}
#add-new-event {
  -webkit-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.external-event {
  padding: 5px 10px;
  font-weight: bold;
  margin-bottom: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  cursor: move;
}
.external-event:hover {
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.2);
}
/*
 * Plugin: Select2
 * ---------------
 */
.select2-container--default.select2-container--focus,
.select2-selection.select2-container--focus,
.select2-container--default:focus,
.select2-selection:focus,
.select2-container--default:active,
.select2-selection:active {
  outline: none;
}
.select2-container--default .select2-selection--single,
.select2-selection .select2-selection--single {
  border: 1px solid #d2d6de;
  border-radius: 0;
  padding: 6px 12px;
  height: 34px;
}
.select2-container--default.select2-container--open {
  border-color: #3c8dbc;
}
.select2-dropdown {
  border: 1px solid #d2d6de;
  border-radius: 0;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #3c8dbc;
  color: white;
}
.select2-results__option {
  padding: 6px 12px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
  padding-right: 0;
  height: auto;
  margin-top: -4px;
}
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 6px;
  padding-left: 20px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 28px;
  right: 3px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  margin-top: 0;
}
.select2-dropdown .select2-search__field,
.select2-search--inline .select2-search__field {
  border: 1px solid #d2d6de;
}
.select2-dropdown .select2-search__field:focus,
.select2-search--inline .select2-search__field:focus {
  outline: none;
  border: 1px solid #3c8dbc;
}
.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}
.select2-container--default .select2-results__option[aria-selected=true],
.select2-container--default .select2-results__option[aria-selected=true]:hover {
  color: #444;
}
.select2-container--default .select2-selection--multiple {
  border: 1px solid #d2d6de;
  border-radius: 0;
}
.select2-container--default .select2-selection--multiple:focus {
  border-color: #3c8dbc;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #d2d6de;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #3c8dbc;
  border-color: #367fa9;
  padding: 1px 10px;
  color: #fff;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  margin-right: 5px;
  color: rgba(255, 255, 255, 0.7);
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #fff;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding-right: 10px;
}
/*
 * Component: Carousel
 * -------------------
 */
.carousel-control.left,
.carousel-control.right {
  background-image: none;
}
.carousel-control > .fa {
  font-size: 40px;
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -20px;
}
/*
 * Component: Direct Chat
 * ----------------------
 */
.direct-chat .box-body {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  position: relative;
  overflow-x: hidden;
  padding: 0;
}
.direct-chat.chat-pane-open .direct-chat-contacts {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.direct-chat-messages {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  padding: 10px;
  height: 250px;
  overflow: auto;
}
.direct-chat-msg,
.direct-chat-text {
  display: block;
}
.direct-chat-msg {
  margin-bottom: 10px;
}
.direct-chat-msg:before,
.direct-chat-msg:after {
  content: " ";
  display: table;
}
.direct-chat-msg:after {
  clear: both;
}
.direct-chat-messages,
.direct-chat-contacts {
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  -moz-transition: -moz-transform 0.5s ease-in-out;
  -o-transition: -o-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
}
.direct-chat-text {
  border-radius: 5px;
  position: relative;
  padding: 5px 10px;
  background: #d2d6de;
  border: 1px solid #d2d6de;
  margin: 5px 0 0 50px;
  color: #444;
}
.direct-chat-text:after,
.direct-chat-text:before {
  position: absolute;
  right: 100%;
  top: 15px;
  border: solid transparent;
  border-right-color: #d2d6de;
  content: ' ';
  height: 0;
  width: 0;
  pointer-events: none;
}
.direct-chat-text:after {
  border-width: 5px;
  margin-top: -5px;
}
.direct-chat-text:before {
  border-width: 6px;
  margin-top: -6px;
}
.right .direct-chat-text {
  margin-right: 50px;
  margin-left: 0;
}
.right .direct-chat-text:after,
.right .direct-chat-text:before {
  right: auto;
  left: 100%;
  border-right-color: transparent;
  border-left-color: #d2d6de;
}
.direct-chat-img {
  border-radius: 50%;
  float: left;
  width: 40px;
  height: 40px;
}
.right .direct-chat-img {
  float: right;
}
.direct-chat-info {
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
}
.direct-chat-name {
  font-weight: 600;
}
.direct-chat-timestamp {
  color: #999;
}
.direct-chat-contacts-open .direct-chat-contacts {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.direct-chat-contacts {
  -webkit-transform: translate(101%, 0);
  -ms-transform: translate(101%, 0);
  -o-transform: translate(101%, 0);
  transform: translate(101%, 0);
  position: absolute;
  top: 0;
  bottom: 0;
  height: 250px;
  width: 100%;
  background: #222d32;
  color: #fff;
  overflow: auto;
}
.contacts-list > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px;
  margin: 0;
}
.contacts-list > li:before,
.contacts-list > li:after {
  content: " ";
  display: table;
}
.contacts-list > li:after {
  clear: both;
}
.contacts-list > li:last-of-type {
  border-bottom: none;
}
.contacts-list-img {
  border-radius: 50%;
  width: 40px;
  float: left;
}
.contacts-list-info {
  margin-left: 45px;
  color: #fff;
}
.contacts-list-name,
.contacts-list-status {
  display: block;
}
.contacts-list-name {
  font-weight: 600;
}
.contacts-list-status {
  font-size: 12px;
}
.contacts-list-date {
  color: #aaa;
  font-weight: normal;
}
.contacts-list-msg {
  color: #999;
}
.direct-chat-danger .right > .direct-chat-text {
  background: #dd4b39;
  border-color: #dd4b39;
  color: #fff;
}
.direct-chat-danger .right > .direct-chat-text:after,
.direct-chat-danger .right > .direct-chat-text:before {
  border-left-color: #dd4b39;
}
.direct-chat-primary .right > .direct-chat-text {
  background: #3c8dbc;
  border-color: #3c8dbc;
  color: #fff;
}
.direct-chat-primary .right > .direct-chat-text:after,
.direct-chat-primary .right > .direct-chat-text:before {
  border-left-color: #3c8dbc;
}
.direct-chat-warning .right > .direct-chat-text {
  background: #f39c12;
  border-color: #f39c12;
  color: #fff;
}
.direct-chat-warning .right > .direct-chat-text:after,
.direct-chat-warning .right > .direct-chat-text:before {
  border-left-color: #f39c12;
}
.direct-chat-info .right > .direct-chat-text {
  background: #00c0ef;
  border-color: #00c0ef;
  color: #fff;
}
.direct-chat-info .right > .direct-chat-text:after,
.direct-chat-info .right > .direct-chat-text:before {
  border-left-color: #00c0ef;
}
.direct-chat-success .right > .direct-chat-text {
  background: #354F3B;
  border-color: #354F3B;
  color: #fff;
}
.direct-chat-success .right > .direct-chat-text:after,
.direct-chat-success .right > .direct-chat-text:before {
  border-left-color: #354F3B;
}
/*
 * Component: Products List
 * ------------------------
 */
.products-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.products-list > .item {
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  background: #fff;
}
.products-list > .item:before,
.products-list > .item:after {
  content: " ";
  display: table;
}
.products-list > .item:after {
  clear: both;
}
.products-list .product-img {
  float: left;
}
.products-list .product-img img {
  width: 50px;
  height: 50px;
}
.products-list .product-info {
  margin-left: 60px;
}
.products-list .product-title {
  font-weight: 600;
}
.products-list .product-description {
  display: block;
  color: #999;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.product-list-in-box > .item {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  border-bottom: 1px solid #f4f4f4;
}
.product-list-in-box > .item:last-of-type {
  border-bottom-width: 0;
}
/*
 * Component: Users List
 * ---------------------
 */
.users-list > li {
  width: 25%;
  float: left;
  padding: 10px;
  text-align: center;
}
.users-list > li img {
  border-radius: 50%;
  max-width: 100%;
  height: auto;
}
.users-list > li > a:hover,
.users-list > li > a:hover .users-list-name {
  color: #999;
}
.users-list-name,
.users-list-date {
  display: block;
}
.users-list-name {
  font-weight: 600;
  color: #444;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.users-list-date {
  color: #999;
  font-size: 12px;
}
/*
 * General: Miscellaneous
 * ----------------------
 */
.pad {
  padding: 10px;
}
.margin {
  margin: 10px;
}
.margin-bottom {
  margin-bottom: 20px;
}
.margin-bottom-none {
  margin-bottom: 0;
}
.margin-r-5 {
  margin-right: 5px;
}
.inline {
  display: inline;
}
.description-block {
  display: block;
  margin: 10px 0;
  text-align: center;
}
.description-block.margin-bottom {
  margin-bottom: 25px;
}
.description-block > .description-header {
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 16px;
}
.description-block > .description-text {
  text-transform: uppercase;
}
.bg-red,
.bg-yellow,
.bg-aqua,
.bg-lightgreen,
.bg-blue,
.bg-light-blue,
.bg-green,
.bg-navy,
.bg-teal,
.bg-olive,
.bg-lime,
.bg-orange,
.bg-fuchsia,
.bg-purple,
.bg-maroon,
.bg-black,
.bg-red-active,
.bg-yellow-active,
.bg-aqua-active,
.bg-blue-active,
.bg-light-blue-active,
.bg-green-active,
.bg-navy-active,
.bg-teal-active,
.bg-olive-active,
.bg-lime-active,
.bg-orange-active,
.bg-fuchsia-active,
.bg-purple-active,
.bg-maroon-active,
.bg-black-active,
.callout.callout-danger,
.callout.callout-warning,
.callout.callout-info,
.callout.callout-success,
.alert-success,
.alert-danger,
.alert-error,
.alert-warning,
.alert-info,
.label-danger,
.label-info,
.label-warning,
.label-primary,
.label-success,
.modal-primary .modal-body,
.modal-primary .modal-header,
.modal-primary .modal-footer,
.modal-warning .modal-body,
.modal-warning .modal-header,
.modal-warning .modal-footer,
.modal-info .modal-body,
.modal-info .modal-header,
.modal-info .modal-footer,
.modal-success .modal-body,
.modal-success .modal-header,
.modal-success .modal-footer,
.modal-danger .modal-body,
.modal-danger .modal-header,
.modal-danger .modal-footer {
  color: #fff !important;
}
.bg-gray {
  color: #000;
  background-color: #d2d6de !important;
}
.bg-gray-light {
  background-color: #f7f7f7;
}
.bg-black {
  background-color: #111 !important;
}
.bg-red,
.callout.callout-danger,
.alert-danger,
.alert-error,
.label-danger,
.modal-danger .modal-body {
  background-color: #dd4b39 !important;
}
.bg-yellow,
.callout.callout-warning,
.alert-warning,
.label-warning,
.modal-warning .modal-body {
  background-color: #f39c12 !important;
}
.bg-aqua,
.callout.callout-info,
.label-info,
.modal-info .modal-body {
  background-color: #00c0ef !important;
}
.bg-blue {
  background-color: #0073b7 !important;
}
.bg-light-blue,
.alert-info,
.label-primary,
.modal-primary .modal-body {
  background-color: #3c8dbc !important;
}
.bg-light-green,
.alert-help,
.modal-help .modal-body {
  background-color: #E2EFD9 !important;
}
.bg-green,
.callout.callout-success,
.alert-success,
.label-success,
.modal-success .modal-body {
  background-color: #354F3B !important;
}
.bg-navy {
  background-color: #001F3F !important;
}
.bg-teal {
  background-color: #39CCCC !important;
}
.bg-olive {
  background-color: #3D9970 !important;
}
.bg-lime {
  background-color: #01FF70 !important;
}
.bg-orange {
  background-color: #FF851B !important;
}
.bg-fuchsia {
  background-color: #F012BE !important;
}
.bg-purple {
  background-color: #605ca8 !important;
}
.bg-maroon {
  background-color: #D81B60 !important;
}
.bg-gray-active {
  color: #000;
  background-color: #b5bbc8 !important;
}
.bg-black-active {
  background-color: #000000 !important;
}
.bg-red-active,
.modal-danger .modal-header,
.modal-danger .modal-footer {
  background-color: #d33724 !important;
}
.bg-yellow-active,
.modal-warning .modal-header,
.modal-warning .modal-footer {
  background-color: #db8b0b !important;
}
.bg-aqua-active,
.modal-info .modal-header,
.modal-info .modal-footer {
  background-color: #00a7d0 !important;
}
.bg-blue-active {
  background-color: #005384 !important;
}
.bg-light-blue-active,
.modal-primary .modal-header,
.modal-primary .modal-footer {
  background-color: #357ca5 !important;
}
.bg-light-green-active,
.modal-help .modal-header,
.modal-help .modal-footer {
  background-color: #d2e6c3 !important;
}
.bg-green-active,
.modal-success .modal-header,
.modal-success .modal-footer {
  background-color: #2b4030 !important;
}
.bg-navy-active {
  background-color: #001a35 !important;
}
.bg-teal-active {
  background-color: #30bbbb !important;
}
.bg-olive-active {
  background-color: #368763 !important;
}
.bg-lime-active {
  background-color: #00e765 !important;
}
.bg-orange-active {
  background-color: #ff7701 !important;
}
.bg-fuchsia-active {
  background-color: #db0ead !important;
}
.bg-purple-active {
  background-color: #555299 !important;
}
.bg-maroon-active {
  background-color: #ca195a !important;
}
[class^="bg-"].disabled {
  -moz-opacity: 0.65;
  -khtml-opacity: 0.65;
  -webkit-opacity: 0.65;
  opacity: 0.65;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=65);
  filter: alpha(opacity=65);
}
.text-red {
  color: #dd4b39 !important;
}
.text-yellow {
  color: #f39c12 !important;
}
.text-aqua {
  color: #00c0ef !important;
}
.text-blue {
  color: #0073b7 !important;
}
.text-black {
  color: #111 !important;
}
.text-light-blue {
  color: #3c8dbc !important;
}
.text-green {
  color: #354F3B !important;
}
.text-gray {
  color: #d2d6de !important;
}
.text-navy {
  color: #001F3F !important;
}
.text-teal {
  color: #39CCCC !important;
}
.text-olive {
  color: #3D9970 !important;
}
.text-lime {
  color: #01FF70 !important;
}
.text-orange {
  color: #FF851B !important;
}
.text-fuchsia {
  color: #F012BE !important;
}
.text-purple {
  color: #605ca8 !important;
}
.text-maroon {
  color: #D81B60 !important;
}
.link-muted {
  color: #7a869d;
}
.link-muted:hover,
.link-muted:focus {
  color: #606c84;
}
.link-black {
  color: #666;
}
.link-black:hover,
.link-black:focus {
  color: #999;
}
.hide {
  display: none !important;
}
.no-border {
  border: 0 !important;
}
.no-padding {
  padding: 0 !important;
}
.no-margin {
  margin: 0 !important;
}
.no-shadow {
  box-shadow: none !important;
}
.list-unstyled,
.chart-legend,
.mailbox-attachments,
.contacts-list,
.users-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.list-group-unbordered > .list-group-item {
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}
.flat {
  border-radius: 0 !important;
}
.text-bold,
.text-bold.table td,
.text-bold.table th {
  font-weight: 700;
}
.text-sm {
  font-size: 12px;
}
.jqstooltip {
  padding: 5px !important;
  width: auto !important;
  height: auto !important;
}
.bg-teal-gradient {
  background: #39CCCC !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #39CCCC), color-stop(1, #7adddd)) !important;
  background: -ms-linear-gradient(bottom, #39CCCC, #7adddd) !important;
  background: -moz-linear-gradient(center bottom, #39CCCC 0%, #7adddd 100%) !important;
  background: -o-linear-gradient(#7adddd, #39CCCC) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7adddd', endColorstr='#39CCCC', GradientType=0) !important;
  color: #fff;
}
.bg-light-blue-gradient {
  background: #3c8dbc !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #3c8dbc), color-stop(1, #67a8ce)) !important;
  background: -ms-linear-gradient(bottom, #3c8dbc, #67a8ce) !important;
  background: -moz-linear-gradient(center bottom, #3c8dbc 0%, #67a8ce 100%) !important;
  background: -o-linear-gradient(#67a8ce, #3c8dbc) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#67a8ce', endColorstr='#3c8dbc', GradientType=0) !important;
  color: #fff;
}
.bg-light-green-gradient {
  background: #E2EFD9 !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #E2EFD9), color-stop(1, #ffffff)) !important;
  background: -ms-linear-gradient(bottom, #E2EFD9, #ffffff) !important;
  background: -moz-linear-gradient(center bottom, #E2EFD9 0%, #ffffff 100%) !important;
  background: -o-linear-gradient(#ffffff, #E2EFD9) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#E2EFD9', GradientType=0) !important;
  color: #fff;
}
.bg-blue-gradient {
  background: #0073b7 !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0073b7), color-stop(1, #0089db)) !important;
  background: -ms-linear-gradient(bottom, #0073b7, #0089db) !important;
  background: -moz-linear-gradient(center bottom, #0073b7 0%, #0089db 100%) !important;
  background: -o-linear-gradient(#0089db, #0073b7) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0089db', endColorstr='#0073b7', GradientType=0) !important;
  color: #fff;
}
.bg-aqua-gradient {
  background: #00c0ef !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #00c0ef), color-stop(1, #14d1ff)) !important;
  background: -ms-linear-gradient(bottom, #00c0ef, #14d1ff) !important;
  background: -moz-linear-gradient(center bottom, #00c0ef 0%, #14d1ff 100%) !important;
  background: -o-linear-gradient(#14d1ff, #00c0ef) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#14d1ff', endColorstr='#00c0ef', GradientType=0) !important;
  color: #fff;
}
.bg-yellow-gradient {
  background: #f39c12 !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #f39c12), color-stop(1, #f7bc60)) !important;
  background: -ms-linear-gradient(bottom, #f39c12, #f7bc60) !important;
  background: -moz-linear-gradient(center bottom, #f39c12 0%, #f7bc60 100%) !important;
  background: -o-linear-gradient(#f7bc60, #f39c12) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7bc60', endColorstr='#f39c12', GradientType=0) !important;
  color: #fff;
}
.bg-purple-gradient {
  background: #605ca8 !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #605ca8), color-stop(1, #9491c4)) !important;
  background: -ms-linear-gradient(bottom, #605ca8, #9491c4) !important;
  background: -moz-linear-gradient(center bottom, #605ca8 0%, #9491c4 100%) !important;
  background: -o-linear-gradient(#9491c4, #605ca8) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9491c4', endColorstr='#605ca8', GradientType=0) !important;
  color: #fff;
}
.bg-green-gradient {
  background: #354F3B !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #354F3B), color-stop(1, #43644b)) !important;
  background: -ms-linear-gradient(bottom, #354F3B, #43644b) !important;
  background: -moz-linear-gradient(center bottom, #354F3B 0%, #43644b 100%) !important;
  background: -o-linear-gradient(#43644b, #354F3B) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#43644b', endColorstr='#354F3B', GradientType=0) !important;
  color: #fff;
}
.bg-red-gradient {
  background: #dd4b39 !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #dd4b39), color-stop(1, #e47365)) !important;
  background: -ms-linear-gradient(bottom, #dd4b39, #e47365) !important;
  background: -moz-linear-gradient(center bottom, #dd4b39 0%, #e47365 100%) !important;
  background: -o-linear-gradient(#e47365, #dd4b39) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e47365', endColorstr='#dd4b39', GradientType=0) !important;
  color: #fff;
}
.bg-black-gradient {
  background: #111 !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #111), color-stop(1, #2b2b2b)) !important;
  background: -ms-linear-gradient(bottom, #111, #2b2b2b) !important;
  background: -moz-linear-gradient(center bottom, #111 0%, #2b2b2b 100%) !important;
  background: -o-linear-gradient(#2b2b2b, #111) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2b2b2b', endColorstr='#111', GradientType=0) !important;
  color: #fff;
}
.bg-maroon-gradient {
  background: #D81B60 !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #D81B60), color-stop(1, #e73f7c)) !important;
  background: -ms-linear-gradient(bottom, #D81B60, #e73f7c) !important;
  background: -moz-linear-gradient(center bottom, #D81B60 0%, #e73f7c 100%) !important;
  background: -o-linear-gradient(#e73f7c, #D81B60) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e73f7c', endColorstr='#D81B60', GradientType=0) !important;
  color: #fff;
}
.description-block .description-icon {
  font-size: 16px;
}
.no-pad-top {
  padding-top: 0;
}
.position-static {
  position: static !important;
}
.list-header {
  font-size: 15px;
  padding: 10px 4px;
  font-weight: bold;
  color: #666;
}
.list-seperator {
  height: 1px;
  background: #f4f4f4;
  margin: 15px 0 9px 0;
}
.list-link > a {
  padding: 4px;
  color: #777;
}
.list-link > a:hover {
  color: #222;
}
.font-light {
  font-weight: 300;
}
.user-block:before,
.user-block:after {
  content: " ";
  display: table;
}
.user-block:after {
  clear: both;
}
.user-block img {
  width: 40px;
  height: 40px;
  float: left;
}
.user-block .username,
.user-block .description,
.user-block .comment {
  display: block;
  margin-left: 50px;
}
.user-block .username {
  font-size: 16px;
  font-weight: 600;
}
.user-block .description {
  color: #999;
  font-size: 13px;
}
.user-block.user-block-sm .username,
.user-block.user-block-sm .description,
.user-block.user-block-sm .comment {
  margin-left: 40px;
}
.user-block.user-block-sm .username {
  font-size: 14px;
}
.img-sm,
.img-md,
.img-lg,
.box-comments .box-comment img,
.user-block.user-block-sm img {
  float: left;
}
.img-sm,
.box-comments .box-comment img,
.user-block.user-block-sm img {
  width: 30px !important;
  height: 30px !important;
}
.img-sm + .img-push {
  margin-left: 40px;
}
.img-md {
  width: 60px;
  height: 60px;
}
.img-md + .img-push {
  margin-left: 70px;
}
.img-lg {
  width: 100px;
  height: 100px;
}
.img-lg + .img-push {
  margin-left: 110px;
}
.img-bordered {
  border: 3px solid #d2d6de;
  padding: 3px;
}
.img-bordered-sm {
  border: 2px solid #d2d6de;
  padding: 2px;
}
.attachment-block {
  border: 1px solid #f4f4f4;
  padding: 5px;
  margin-bottom: 10px;
  background: #f7f7f7;
}
.attachment-block .attachment-img {
  max-width: 100px;
  max-height: 100px;
  height: auto;
  float: left;
}
.attachment-block .attachment-pushed {
  margin-left: 110px;
}
.attachment-block .attachment-heading {
  margin: 0;
}
.attachment-block .attachment-text {
  color: #555;
}
.connectedSortable {
  min-height: 100px;
}
.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.sort-highlight {
  background: #f4f4f4;
  border: 1px dashed #ddd;
  margin-bottom: 10px;
}
.full-opacity-hover {
  -moz-opacity: 0.65;
  -khtml-opacity: 0.65;
  -webkit-opacity: 0.65;
  opacity: 0.65;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=65);
  filter: alpha(opacity=65);
}
.full-opacity-hover:hover {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.chart {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.chart svg,
.chart canvas {
  width: 100% !important;
}
/*
 * Misc: print
 * -----------
 */
@media print {
  .no-print,
  .main-sidebar,
  .left-side,
  .main-header,
  .content-header {
    display: none !important;
  }
  .content-wrapper,
  .right-side,
  .main-footer {
    margin-left: 0 !important;
    min-height: 0 !important;
    -webkit-transform: translate(0, 0) !important;
    -ms-transform: translate(0, 0) !important;
    -o-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
  }
  .fixed .content-wrapper,
  .fixed .right-side {
    padding-top: 0 !important;
  }
  .invoice {
    width: 100%;
    border: 0;
    margin: 0;
    padding: 0;
  }
  .invoice-col {
    float: left;
    width: 33.3333333%;
  }
  .table-responsive {
    overflow: auto;
  }
  .table-responsive > .table tr th,
  .table-responsive > .table tr td {
    white-space: normal !important;
  }
}
body {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #000;
  -ms-overflow-style: scrollbar;
}
.ui-front {
  z-index: 1100;
}
.slick-cell > a {
  color: #0000be;
}
.main-sidebar a:hover,
.main-header a:hover,
.main-sidebar a:active,
.main-header a:active,
.main-sidebar a:focus,
.main-header a:focus {
  text-decoration: none;
}
.sidebar-menu > li {
  font-size: 12px;
}
.sidebar-menu .treeview-menu > li > a {
  font-size: 11px;
}
.main-footer {
  padding: 3px 15px;
}
.sidebar-menu li.expanded > .treeview-menu {
  display: block;
}
.treeview-menu > li > a > i {
  width: 20px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="password"],
textarea {
  padding: 3px 6px;
  border: 1px solid #ccc;
  border-radius: 3px;
}
.sidebar-form input[type="text"] {
  padding: 6px 12px;
  border-color: transparent;
}
::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #999;
}
:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999;
  opacity: 1;
}
::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
  opacity: 1;
}
:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #999;
}
section.content > .s-DataGrid {
  padding: 10px;
  border-radius: 3px;
  background: #fff;
  border-top: 3px solid #354F3B;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.box-top-margin {
  margin-top: 10px;
}
.grid-toolbar {
  margin-bottom: 0px;
}
.s-Dialog .s-DataGrid.editor {
  border: 1px solid #eee;
}
.s-Dialog .s-DataGrid.editor .grid-toolbar {
  background: #f8fafc;
  border-bottom: 1px solid #e7e7e7;
  padding: 5px 4px 5px 4px;
  min-height: 43px;
  margin-bottom: 0;
}
.s-Dialog .tab-pane > .s-DataGrid {
  padding: 0px 8px 4px 8px;
}
.s-Dialog .tab-pane > .s-DialogToolbar {
  padding-top: 0;
  background-color: transparent;
  min-height: initial;
}
.page-title {
  border-bottom: 1px solid #eee;
  margin-bottom: 8px;
  color: #354F3B;
  padding: 8px 8px;
  font-size: 15px;
  font-weight: 600;
}
.main-header .logo i {
  width: 50px;
  height: 50px;
  float: left;
  background: url(../site/images/bcppro-logo-w-40.png) no-repeat center center;
}
.main-header .logo b {
  float: left;
  margin-left: 4px;
}
.skin-black .main-header .logo i,
.skin-black-light .main-header .logo i {
  background: url(../site/images/bcppro-logo-w-40.png) no-repeat center center;
}
.s-BasicProgressDialogContent .status-text {
  height: 1em;
  text-align: center;
  margin-top: 4px;
}
.s-BasicProgressDialogContent .ui-progressbar {
  margin: 12px 2%;
  position: relative;
  height: 26px;
  background-image: none;
  background-color: aliceblue;
  width: 96%;
  margin: 0 2%;
}
.s-BasicProgressDialogContent .progress-label {
  position: absolute;
  left: 45%;
  top: 4px;
  font-weight: bold;
  text-shadow: 1px 1px 0 #cef;
  color: #245;
  font-size: 14px;
}
.ui-dialog.mobile-layout .ui-dialog-titlebar {
  color: white;
  background: #0073b7;
}
.ui-dialog.mobile-layout .ui-dialog-titlebar .ui-dialog-titlebar-close,
.ui-dialog.mobile-layout .ui-dialog-titlebar .ui-dialog-titlebar-close:hover {
  background-color: transparent;
  background-image: url(../serenity/images/back-arrow-white.png);
}
.skin-green .ui-dialog.mobile-layout .ui-dialog-titlebar {
  background: #354F3B;
}
.skin-red .ui-dialog.mobile-layout .ui-dialog-titlebar {
  background: #dd4b39;
}
.skin-orange .ui-dialog.mobile-layout .ui-dialog-titlebar {
  background: #FF851B;
}
.skin-black .ui-dialog.mobile-layout .ui-dialog-titlebar,
.skin-black-light .ui-dialog.mobile-layout .ui-dialog-titlebar {
  color: black;
  background: white;
}
.skin-black .ui-dialog.mobile-layout .ui-dialog-titlebar .ui-dialog-titlebar-close,
.skin-black-light .ui-dialog.mobile-layout .ui-dialog-titlebar .ui-dialog-titlebar-close,
.skin-black .ui-dialog.mobile-layout .ui-dialog-titlebar .ui-dialog-titlebar-close:hover,
.skin-black-light .ui-dialog.mobile-layout .ui-dialog-titlebar .ui-dialog-titlebar-close:hover {
  background-color: transparent;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAACxIAAAsSAdLdfvwAAAAYdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuNvyMY98AAADOSURBVDhPnZJNDoIwEIUxLlx4Er2P0Z1eRPw5rjsTNyixvqEzMoUXaSX5GPpaPjpAFUL4CY6ZwOY8NDREgOMKLlMyGgomQQ2oT7Bm6wwexnbOTrJl6zzjIN1Jg7oZrmGkg0E7uRKhv/ijHU88pTtpUQ+oy1zU0UsMjNsC7rhnDjqR/CcmeYNHAbdO5Fo7qUiesgeLXL7vyEDoZTs/N0U60DaBtCdfLls2DqKs1p29cmU0FCAoapOGgu7M2mzAiq0zaGiorAZHNu+hYTmh+gDiN5ZOojmergAAAABJRU5ErkJggg==) no-repeat center center;
}
.s-MessageDialog {
  min-width: 310px;
}
.slick-row-selected {
  background-color: lightblue;
}
.inline-action {
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
  min-width: 16px;
  min-height: 22px;
  cursor: pointer;
  opacity: 0.5;
  display: inline-block;
}
.inline-action > i {
  font-size: 15px;
}
.inline-action:hover {
  opacity: 1;
}
.s-ReportPage div.report-list ul {
  list-style: none;
  padding-left: 0;
}
.s-ReportPage div.report-list ul ul {
  margin-left: 20px;
}
.s-ReportPage div.report-list li {
  margin-top: 1px;
}
.s-ReportPage div.report-list li.category > .line {
  position: relative;
  padding: 4px 0 4px 20px;
  display: block;
  cursor: pointer;
  color: #666;
  font-weight: bold;
  line-height: 24px;
  font-size: 14px;
}
.s-ReportPage div.report-list li.category.expanded > .line {
  box-shadow: none;
}
.s-ReportPage div.report-list .line {
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 1%, #eaeaea 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #ffffff), color-stop(100%, #eaeaea));
  background: -webkit-linear-gradient(top, #ffffff 1%, #eaeaea 100%);
  background: -o-linear-gradient(top, #ffffff 1%, #eaeaea 100%);
  background: -ms-linear-gradient(top, #ffffff 1%, #eaeaea 100%);
  background: linear-gradient(top, #ffffff 1%, #eaeaea 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eaeaea', GradientType=0);
}
.s-ReportPage div.report-list li {
  background-color: #eaeaea;
  box-shadow: 0px 0px 0px 1px rgba(155, 155, 155, 0.3), 0px 0px 0px 0px rgba(255, 255, 255, 0.9) inset, 0px 2px 2px rgba(0, 0, 0, 0.1);
}
.s-ReportPage div.report-list ul.has-reports {
  background-color: #fff;
  border-top: 1px solid #999;
  border-left: 1px solid #999;
}
.s-ReportPage li > .line > span.toggle {
  position: absolute;
  left: 5px;
  top: 10px;
  display: block;
  height: 11px;
  width: 11px;
  background: transparent url(images/accordion-arrows.png) no-repeat 0px -22px;
}
.s-ReportPage li.expanded > .line > span.toggle {
  background-position: 0px 0px;
}
.s-ReportPage div.report-list li.report-item {
  background-color: #fff;
  box-shadow: none;
  margin-top: 0px;
  font-size: 13px;
  padding: 4px;
  border-bottom: 1px solid #eee;
}
.s-ReportPage div.report-list li.report-item.even {
  background-color: #f7f7f7;
}
.s-ReportPage .report-item a {
  background: url(../serenity/images/spreadsheet.png) no-repeat 0 center;
  padding: 0 0 0 18px;
  line-height: 16px;
  display: inline-block;
}
.s-ReportPage ul ul {
  display: none;
}
.reset-box-sizing,
.reset-box-sizing *,
.reset-box-sizing *:before,
.reset-box-sizing *:after {
  -ms-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.s-DataGrid {
  border: 1px solid #c0c0c0;
  margin: 0px;
  padding: 6px;
  overflow: hidden;
}
.s-DataGrid .slick-pane-header {
  position: absolute;
  display: inline-block;
  top: 0px;
  right: 0px !important;
  left: 0px;
  width: 100%;
  overflow: hidden;
}
.s-DataGrid .slick-header.ui-state-default,
.s-DataGrid .slick-headerrow.ui-state-default {
  width: 100%;
  overflow: hidden;
  border-left: 0px;
}
.s-DataGrid .slick-header-columns,
.s-DataGrid .slick-headerrow-columns {
  position: relative;
  cursor: default;
  overflow: hidden;
  white-space: normal;
  height: 26px;
  background: #D9ECFF;
  border-right: 1px solid silver;
  border-left: 0px;
  border-top: 0px;
  border-bottom: 2px solid #ccc;
}
.s-DataGrid .slick-header-column.ui-state-default {
  position: relative;
  display: inline-block;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  height: 100%;
  line-height: 14px;
  font-size: 12px;
  margin: 0;
  padding: 4px;
  border-right: 1px solid silver;
  border-left: 0px;
  border-top: 1px solid silver;
  border-bottom: 0px;
  float: left;
}
.s-DataGrid .slick-headerrow-column.ui-state-default {
  padding: 4px;
}
.s-DataGrid .slick-header-column-sorted {
  font-style: italic;
}
.s-DataGrid .slick-sort-indicator {
  display: inline-block;
  width: 8px;
  height: 5px;
  margin-left: 4px;
  margin-top: 6px;
  float: left;
}
.s-DataGrid .slick-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  cursor: col-resize;
  width: 4px;
  right: 0px;
  top: 0;
  height: 100%;
}
.s-DataGrid .slick-sortable-placeholder {
  background: silver;
}
.s-DataGrid .slick-cell,
.s-DataGrid .slick-headerrow-column {
  position: absolute;
  font-size: 12px;
  border: 1px solid transparent;
  border-right: 1px dotted silver;
  border-bottom-color: silver;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  vertical-align: middle;
  z-index: 1;
  padding: 1px 2px 2px 1px;
  margin: 0;
  white-space: nowrap;
  cursor: default;
}
.s-DataGrid .slick-cell.highlighted {
  background: lightskyblue;
  background: rgba(0, 0, 255, 0.2);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.s-DataGrid .hide-checkbox .col-checkbox {
  visibility: hidden !important;
}
.s-DataGrid .display-checkbox .col-checkbox {
  visibility: visible !important;
}
.s-DataGrid .brief-stage-1 .col-template-status {
  background-color: #000000 !important;
}
.s-DataGrid .brief-stage-2 .col-template-status {
  background-color: #FF8000 !important;
}
.s-DataGrid .brief-stage-3 .col-template-status {
  background-color: #EE8500 !important;
}
.s-DataGrid .brief-stage-4 .col-template-status {
  background-color: #DD9000 !important;
}
.s-DataGrid .brief-stage-5 .col-template-status {
  background-color: #CC9500 !important;
}
.s-DataGrid .brief-stage-6 .col-template-status {
  background-color: #BBA000 !important;
}
.s-DataGrid .brief-stage-7 .col-template-status {
  background-color: #AAA500 !important;
}
.s-DataGrid .brief-stage-8 .col-template-status {
  background-color: #36D900 !important;
}
.view-switch {
  position: relative;
  top: -12px;
}
.card-container {
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: #ecf0f5;
}
.card-container .card-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.card-container .card-item {
  flex: 0 1 calc(100% - 4px);
  padding: 8px;
  background-color: #fff;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
  height: 130px;
  overflow: hidden;
  margin: 6px;
}
.card-container .card-item table {
  width: 100%;
  table-layout: fixed;
}
.card-container .card-item td {
  padding: 4px;
}
.card-container .card-item td.img {
  width: 116px;
}
.card-container .card-item td.img img {
  width: 100px;
}
.card-container .card-item .name {
  font-weight: normal;
}
.card-container .card-item .cardlabel {
  font-weight: bold;
}
@media (min-width: 900px) {
  .card-container .card-item {
    flex-basis: calc(50% - 12px);
  }
}
@media (min-width: 1600px) {
  .card-container .card-item {
    flex-basis: calc(33% - 12px);
  }
}
.favorite-views {
  margin-right: 4px;
  position: relative;
  top: -12px;
}
.favorite-views ul {
  font-size: 12px;
  width: 150px;
  min-width: 150px;
}
.favorite-views li.save {
  padding: 6px;
}
.favorite-views li.save input {
  margin-top: 2px;
  width: 126px;
}
.favorite-views li.save button {
  margin-top: 4px;
  font-size: 12px;
}
.favorite-views li.fav {
  position: relative;
  padding-right: 16px;
}
.favorite-views i.fa-trash-o {
  cursor: pointer;
  position: absolute;
  right: 4px;
  top: 5px;
  color: maroon;
}
.s-Administration-LanguageDialog > .size {
  width: 450px;
}
.s-Administration-LanguageDialog .caption {
  width: 120px;
}
.s-Administration-RoleDialog > .size {
  width: 450px;
}
.s-Administration-RoleDialog .caption {
  width: 120px;
}
.s-Administration-UserDialog > .size {
  width: 650px;
}
.s-Administration-UserDialog .caption {
  width: 120px;
}
.s-Administration-UserDialog .s-PropertyGrid .categories {
  height: 450px;
}
.s-TranslationGrid input.custom-text {
  width: 100%;
  height: 23px;
  padding: 0 3px;
}
.s-UserPermissionDialog > .size,
.s-RolePermissionDialog > .size,
.s-UserRoleDialog > .size {
  min-width: 620px;
  width: 620px;
  min-height: 450px;
  height: 450px;
}
.s-UserPermissionDialog .s-DataGrid,
.s-RolePermissionDialog .s-DataGrid,
.s-UserRoleDialog .s-DataGrid {
  height: 100%;
}
.s-UserPermissionDialog .ui-dialog-content,
.s-RolePermissionDialog .ui-dialog-content,
.s-UserRoleDialog .ui-dialog-content {
  padding: 8px;
}
.s-PermissionCheckEditor .check-box {
  background-image: url(../serenity/images/tick-empty.png);
  background-position: center center;
  width: 22px;
  height: 22px;
  margin: 0;
}
.s-PermissionCheckEditor .check-box.checked {
  background-image: url(../serenity/images/tick-green.png);
  background-position: center center;
}
.s-PermissionCheckEditor .check-box.checked.revoke {
  background-image: url(../serenity/images/tick-red.png);
  background-position: center center;
}
.s-PermissionCheckEditor .check-box.partial {
  opacity: 0.8;
}
.s-PermissionCheckEditor .check-box.checked.partial {
  background-image: url(images/tick-green-partial.png);
}
.s-PermissionCheckEditor .check-box.checked.revoke.partial {
  background-image: url(images/tick-red-partial.png);
}
.s-PermissionCheckEditor .effective-permission {
  cursor: default;
  padding-left: 22px;
  background-image: url(../serenity/images/check2.png);
  background-repeat: no-repeat;
  background-position: left center;
}
.s-PermissionCheckEditor .effective-permission.partial {
  background-image: url(../serenity/images/checkbox-null.png);
}
.s-PermissionCheckEditor .effective-permission.deny {
  background-image: url(../serenity/images/slash.png);
}
.s-Administration-SergenPanel table > tbody > tr > td {
  vertical-align: middle;
}
.s-Administration-SergenPanel td > input {
  width: 100%;
  padding: 2px 4px;
  border: 1px solid #a3b2d2;
}
.s-Administration-OperatorsDialog > .size {
  width: 650px;
}
.s-Administration-OperatorsDialog .caption {
  width: 150px;
}
.s-Administration-CommitteeDepartmentsDialog > .size {
  width: 650px;
}
.s-Administration-CommitteeDepartmentsDialog .caption {
  width: 150px;
}
.s-Administration-UAPCodeAccessPermissionsDialog > .size {
  width: 650px;
}
.s-Administration-UAPCodeAccessPermissionsDialog .caption {
  width: 150px;
}
.s-Administration-DepartmentMembersDialog > .size {
  width: 650px;
}
.s-Administration-DepartmentMembersDialog .caption {
  width: 150px;
}
.s-Administration-OperatorPartnersDialog > .size {
  width: 650px;
}
.s-Administration-OperatorPartnersDialog .caption {
  width: 150px;
}
.s-Administration-RoleAreasDialog > .size {
  width: 650px;
}
.s-Administration-RoleAreasDialog .caption {
  width: 150px;
}
.s-NoteEditor {
  border: 1px solid #ccc;
  border-radius: 4px;
}
.s-NoteEditor ul {
  padding: 0;
  min-height: 110px;
  overflow-y: auto;
  list-style: none;
}
.s-NoteEditor li {
  margin: 10px;
  border-radius: 4px;
  border: 1px solid #C3C2C2;
  background-color: #F5E7DC;
  padding: 8px;
  position: relative;
}
.s-NoteEditor .note-text {
  padding-right: 24px;
  display: block;
}
.s-NoteEditor .note-delete {
  background-image: url('../serenity/images/delete2.png');
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  right: 6px;
  top: 6px;
  opacity: 0.4;
}
.s-NoteEditor .note-delete:hover {
  opacity: 1;
}
.s-NoteEditor .note-date {
  margin-top: 6px;
  display: block;
  text-align: right;
  color: #2a4084;
  font-style: italic;
}
.s-NoteEditor .s-Toolbar {
  background-color: #eee;
  padding: 4px;
}
.s-NoteDialog > .size {
  width: 465px;
}
.s-NoteDialog .ui-dialog-content {
  padding-bottom: 10px;
}
.s-Administration-AuditLogDialog > .size {
  width: 650px;
}
.s-Administration-AuditLogDialog .caption {
  width: 150px;
}
.s-Administration-BudgetTemplateProcessesDialog > .size {
  width: 650px;
}
.s-Administration-BudgetTemplateProcessesDialog .caption {
  width: 150px;
}
.s-Administration-CashCallProcessesDialog > .size {
  width: 650px;
}
.s-Administration-CashCallProcessesDialog .caption {
  width: 150px;
}
.s-Administration-BudgetThresholdProcessesDialog > .size {
  width: 650px;
}
.s-Administration-BudgetThresholdProcessesDialog .caption {
  width: 150px;
}
.s-Administration-BudgetCallCircularProcessesDialog > .size {
  width: 650px;
}
.s-Administration-BudgetCallCircularProcessesDialog .caption {
  width: 150px;
}
.s-Administration-AuditLogGrid .slick-header.ui-state-default,
.s-Administration-CommitteeGrid .slick-header.ui-state-default,
.s-Administration-CommitteeMembersGrid .slick-header.ui-state-default,
.s-Administration-DepartmentMembersGrid .slick-header.ui-state-default,
.s-Administration-DepartmentsGrid .slick-header.ui-state-default,
.s-Administration-ExceptionsGrid .slick-header.ui-state-default,
.s-Administration-IssueTrackingGrid .slick-header.ui-state-default,
.s-Administration-IssueTrackingIssuesGrid .slick-header.ui-state-default,
.s-Administration-IssueTrackingPrioritiesGrid .slick-header.ui-state-default,
.s-Administration-IssueTrackingCategoriesGrid .slick-header.ui-state-default,
.s-Administration-IssueTrackingStatusesGrid .slick-header.ui-state-default,
.s-Administration-LanguageGrid .slick-header.ui-state-default,
.s-Administration-LoggingGrid .slick-header.ui-state-default,
.s-Administration-OperatorsGrid .slick-header.ui-state-default,
.s-Administration-OperatorToFundingTrancheTypesGrid .slick-header.ui-state-default,
.s-Administration-OperatorFundingTypeToEquityShareGrid .slick-header.ui-state-default,
.s-Administration-PartnersGrid .slick-header.ui-state-default,
.s-Administration-RoleGrid .slick-header.ui-state-default,
.s-Administration-RoleAreasGrid .slick-header.ui-state-default,
.s-Administration-RolePermissionGrid .slick-header.ui-state-default,
.s-Administration-SettingsGrid .slick-header.ui-state-default,
.s-Administration-UserGrid .slick-header.ui-state-default,
.s-Administration-UserPermissionGrid .slick-header.ui-state-default,
.s-Administration-UserRoleGrid .slick-header.ui-state-default,
.s-Administration-WorkFlowsGrid .slick-header.ui-state-default,
.s-Administration-AnnualBudgetProcessesGrid .slick-header.ui-state-default,
.s-Administration-BudgetCallCircularProcessesGrid .slick-header.ui-state-default,
.s-Administration-BudgetProfileProcessesGrid .slick-header.ui-state-default,
.s-Administration-BudgetTemplateProcessesGrid .slick-header.ui-state-default,
.s-Administration-BudgetThresholdProcessesGrid .slick-header.ui-state-default,
.s-Administration-CashCallProcessesGrid .slick-header.ui-state-default,
.s-Administration-PerformanceProcessesGrid .slick-header.ui-state-default,
.s-Administration-AuditLogGrid .slick-headerrow.ui-state-default,
.s-Administration-CommitteeGrid .slick-headerrow.ui-state-default,
.s-Administration-CommitteeMembersGrid .slick-headerrow.ui-state-default,
.s-Administration-DepartmentMembersGrid .slick-headerrow.ui-state-default,
.s-Administration-DepartmentsGrid .slick-headerrow.ui-state-default,
.s-Administration-ExceptionsGrid .slick-headerrow.ui-state-default,
.s-Administration-IssueTrackingGrid .slick-headerrow.ui-state-default,
.s-Administration-IssueTrackingIssuesGrid .slick-headerrow.ui-state-default,
.s-Administration-IssueTrackingPrioritiesGrid .slick-headerrow.ui-state-default,
.s-Administration-IssueTrackingCategoriesGrid .slick-headerrow.ui-state-default,
.s-Administration-IssueTrackingStatusesGrid .slick-headerrow.ui-state-default,
.s-Administration-LanguageGrid .slick-headerrow.ui-state-default,
.s-Administration-LoggingGrid .slick-headerrow.ui-state-default,
.s-Administration-OperatorsGrid .slick-headerrow.ui-state-default,
.s-Administration-OperatorToFundingTrancheTypesGrid .slick-headerrow.ui-state-default,
.s-Administration-OperatorFundingTypeToEquityShareGrid .slick-headerrow.ui-state-default,
.s-Administration-PartnersGrid .slick-headerrow.ui-state-default,
.s-Administration-RoleGrid .slick-headerrow.ui-state-default,
.s-Administration-RoleAreasGrid .slick-headerrow.ui-state-default,
.s-Administration-RolePermissionGrid .slick-headerrow.ui-state-default,
.s-Administration-SettingsGrid .slick-headerrow.ui-state-default,
.s-Administration-UserGrid .slick-headerrow.ui-state-default,
.s-Administration-UserPermissionGrid .slick-headerrow.ui-state-default,
.s-Administration-UserRoleGrid .slick-headerrow.ui-state-default,
.s-Administration-WorkFlowsGrid .slick-headerrow.ui-state-default,
.s-Administration-AnnualBudgetProcessesGrid .slick-headerrow.ui-state-default,
.s-Administration-BudgetCallCircularProcessesGrid .slick-headerrow.ui-state-default,
.s-Administration-BudgetProfileProcessesGrid .slick-headerrow.ui-state-default,
.s-Administration-BudgetTemplateProcessesGrid .slick-headerrow.ui-state-default,
.s-Administration-BudgetThresholdProcessesGrid .slick-headerrow.ui-state-default,
.s-Administration-CashCallProcessesGrid .slick-headerrow.ui-state-default,
.s-Administration-PerformanceProcessesGrid .slick-headerrow.ui-state-default {
  width: 100%;
  overflow: hidden;
  border-left: 0px;
}
.s-Administration-AuditLogGrid .slick-header-columns,
.s-Administration-CommitteeGrid .slick-header-columns,
.s-Administration-CommitteeMembersGrid .slick-header-columns,
.s-Administration-DepartmentMembersGrid .slick-header-columns,
.s-Administration-DepartmentsGrid .slick-header-columns,
.s-Administration-ExceptionsGrid .slick-header-columns,
.s-Administration-IssueTrackingGrid .slick-header-columns,
.s-Administration-IssueTrackingIssuesGrid .slick-header-columns,
.s-Administration-IssueTrackingPrioritiesGrid .slick-header-columns,
.s-Administration-IssueTrackingCategoriesGrid .slick-header-columns,
.s-Administration-IssueTrackingStatusesGrid .slick-header-columns,
.s-Administration-LanguageGrid .slick-header-columns,
.s-Administration-LoggingGrid .slick-header-columns,
.s-Administration-OperatorsGrid .slick-header-columns,
.s-Administration-OperatorToFundingTrancheTypesGrid .slick-header-columns,
.s-Administration-OperatorFundingTypeToEquityShareGrid .slick-header-columns,
.s-Administration-PartnersGrid .slick-header-columns,
.s-Administration-RoleGrid .slick-header-columns,
.s-Administration-RoleAreasGrid .slick-header-columns,
.s-Administration-RolePermissionGrid .slick-header-columns,
.s-Administration-SettingsGrid .slick-header-columns,
.s-Administration-UserGrid .slick-header-columns,
.s-Administration-UserPermissionGrid .slick-header-columns,
.s-Administration-UserRoleGrid .slick-header-columns,
.s-Administration-WorkFlowsGrid .slick-header-columns,
.s-Administration-AnnualBudgetProcessesGrid .slick-header-columns,
.s-Administration-BudgetCallCircularProcessesGrid .slick-header-columns,
.s-Administration-BudgetProfileProcessesGrid .slick-header-columns,
.s-Administration-BudgetTemplateProcessesGrid .slick-header-columns,
.s-Administration-BudgetThresholdProcessesGrid .slick-header-columns,
.s-Administration-CashCallProcessesGrid .slick-header-columns,
.s-Administration-PerformanceProcessesGrid .slick-header-columns,
.s-Administration-AuditLogGrid .slick-headerrow-columns,
.s-Administration-CommitteeGrid .slick-headerrow-columns,
.s-Administration-CommitteeMembersGrid .slick-headerrow-columns,
.s-Administration-DepartmentMembersGrid .slick-headerrow-columns,
.s-Administration-DepartmentsGrid .slick-headerrow-columns,
.s-Administration-ExceptionsGrid .slick-headerrow-columns,
.s-Administration-IssueTrackingGrid .slick-headerrow-columns,
.s-Administration-IssueTrackingIssuesGrid .slick-headerrow-columns,
.s-Administration-IssueTrackingPrioritiesGrid .slick-headerrow-columns,
.s-Administration-IssueTrackingCategoriesGrid .slick-headerrow-columns,
.s-Administration-IssueTrackingStatusesGrid .slick-headerrow-columns,
.s-Administration-LanguageGrid .slick-headerrow-columns,
.s-Administration-LoggingGrid .slick-headerrow-columns,
.s-Administration-OperatorsGrid .slick-headerrow-columns,
.s-Administration-OperatorToFundingTrancheTypesGrid .slick-headerrow-columns,
.s-Administration-OperatorFundingTypeToEquityShareGrid .slick-headerrow-columns,
.s-Administration-PartnersGrid .slick-headerrow-columns,
.s-Administration-RoleGrid .slick-headerrow-columns,
.s-Administration-RoleAreasGrid .slick-headerrow-columns,
.s-Administration-RolePermissionGrid .slick-headerrow-columns,
.s-Administration-SettingsGrid .slick-headerrow-columns,
.s-Administration-UserGrid .slick-headerrow-columns,
.s-Administration-UserPermissionGrid .slick-headerrow-columns,
.s-Administration-UserRoleGrid .slick-headerrow-columns,
.s-Administration-WorkFlowsGrid .slick-headerrow-columns,
.s-Administration-AnnualBudgetProcessesGrid .slick-headerrow-columns,
.s-Administration-BudgetCallCircularProcessesGrid .slick-headerrow-columns,
.s-Administration-BudgetProfileProcessesGrid .slick-headerrow-columns,
.s-Administration-BudgetTemplateProcessesGrid .slick-headerrow-columns,
.s-Administration-BudgetThresholdProcessesGrid .slick-headerrow-columns,
.s-Administration-CashCallProcessesGrid .slick-headerrow-columns,
.s-Administration-PerformanceProcessesGrid .slick-headerrow-columns {
  position: relative;
  cursor: default;
  overflow: hidden;
  white-space: normal;
  height: 26px;
  background: #D9ECFF;
  border-right: 1px solid silver;
  border-left: 0px;
  border-top: 0px;
  border-bottom: 2px solid #ccc;
}
.s-Administration-AuditLogGrid .slick-header-column.ui-state-default,
.s-Administration-CommitteeGrid .slick-header-column.ui-state-default,
.s-Administration-CommitteeMembersGrid .slick-header-column.ui-state-default,
.s-Administration-DepartmentMembersGrid .slick-header-column.ui-state-default,
.s-Administration-DepartmentsGrid .slick-header-column.ui-state-default,
.s-Administration-ExceptionsGrid .slick-header-column.ui-state-default,
.s-Administration-IssueTrackingGrid .slick-header-column.ui-state-default,
.s-Administration-IssueTrackingIssuesGrid .slick-header-column.ui-state-default,
.s-Administration-IssueTrackingPrioritiesGrid .slick-header-column.ui-state-default,
.s-Administration-IssueTrackingCategoriesGrid .slick-header-column.ui-state-default,
.s-Administration-IssueTrackingStatusesGrid .slick-header-column.ui-state-default,
.s-Administration-LanguageGrid .slick-header-column.ui-state-default,
.s-Administration-LoggingGrid .slick-header-column.ui-state-default,
.s-Administration-OperatorsGrid .slick-header-column.ui-state-default,
.s-Administration-OperatorToFundingTrancheTypesGrid .slick-header-column.ui-state-default,
.s-Administration-OperatorFundingTypeToEquityShareGrid .slick-header-column.ui-state-default,
.s-Administration-PartnersGrid .slick-header-column.ui-state-default,
.s-Administration-RoleGrid .slick-header-column.ui-state-default,
.s-Administration-RoleAreasGrid .slick-header-column.ui-state-default,
.s-Administration-RolePermissionGrid .slick-header-column.ui-state-default,
.s-Administration-SettingsGrid .slick-header-column.ui-state-default,
.s-Administration-UserGrid .slick-header-column.ui-state-default,
.s-Administration-UserPermissionGrid .slick-header-column.ui-state-default,
.s-Administration-UserRoleGrid .slick-header-column.ui-state-default,
.s-Administration-WorkFlowsGrid .slick-header-column.ui-state-default,
.s-Administration-AnnualBudgetProcessesGrid .slick-header-column.ui-state-default,
.s-Administration-BudgetCallCircularProcessesGrid .slick-header-column.ui-state-default,
.s-Administration-BudgetProfileProcessesGrid .slick-header-column.ui-state-default,
.s-Administration-BudgetTemplateProcessesGrid .slick-header-column.ui-state-default,
.s-Administration-BudgetThresholdProcessesGrid .slick-header-column.ui-state-default,
.s-Administration-CashCallProcessesGrid .slick-header-column.ui-state-default,
.s-Administration-PerformanceProcessesGrid .slick-header-column.ui-state-default {
  position: relative;
  display: inline-block;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  height: 100%;
  line-height: 14px;
  font-size: 12px;
  margin: 0;
  padding: 4px;
  border-right: 1px solid silver;
  border-left: 0px;
  border-top: 1px solid silver;
  border-bottom: 0px;
  float: left;
}
.s-Administration-AuditLogGrid .slick-headerrow-column.ui-state-default,
.s-Administration-CommitteeGrid .slick-headerrow-column.ui-state-default,
.s-Administration-CommitteeMembersGrid .slick-headerrow-column.ui-state-default,
.s-Administration-DepartmentMembersGrid .slick-headerrow-column.ui-state-default,
.s-Administration-DepartmentsGrid .slick-headerrow-column.ui-state-default,
.s-Administration-ExceptionsGrid .slick-headerrow-column.ui-state-default,
.s-Administration-IssueTrackingGrid .slick-headerrow-column.ui-state-default,
.s-Administration-IssueTrackingIssuesGrid .slick-headerrow-column.ui-state-default,
.s-Administration-IssueTrackingPrioritiesGrid .slick-headerrow-column.ui-state-default,
.s-Administration-IssueTrackingCategoriesGrid .slick-headerrow-column.ui-state-default,
.s-Administration-IssueTrackingStatusesGrid .slick-headerrow-column.ui-state-default,
.s-Administration-LanguageGrid .slick-headerrow-column.ui-state-default,
.s-Administration-LoggingGrid .slick-headerrow-column.ui-state-default,
.s-Administration-OperatorsGrid .slick-headerrow-column.ui-state-default,
.s-Administration-OperatorToFundingTrancheTypesGrid .slick-headerrow-column.ui-state-default,
.s-Administration-OperatorFundingTypeToEquityShareGrid .slick-headerrow-column.ui-state-default,
.s-Administration-PartnersGrid .slick-headerrow-column.ui-state-default,
.s-Administration-RoleGrid .slick-headerrow-column.ui-state-default,
.s-Administration-RoleAreasGrid .slick-headerrow-column.ui-state-default,
.s-Administration-RolePermissionGrid .slick-headerrow-column.ui-state-default,
.s-Administration-SettingsGrid .slick-headerrow-column.ui-state-default,
.s-Administration-UserGrid .slick-headerrow-column.ui-state-default,
.s-Administration-UserPermissionGrid .slick-headerrow-column.ui-state-default,
.s-Administration-UserRoleGrid .slick-headerrow-column.ui-state-default,
.s-Administration-WorkFlowsGrid .slick-headerrow-column.ui-state-default,
.s-Administration-AnnualBudgetProcessesGrid .slick-headerrow-column.ui-state-default,
.s-Administration-BudgetCallCircularProcessesGrid .slick-headerrow-column.ui-state-default,
.s-Administration-BudgetProfileProcessesGrid .slick-headerrow-column.ui-state-default,
.s-Administration-BudgetTemplateProcessesGrid .slick-headerrow-column.ui-state-default,
.s-Administration-BudgetThresholdProcessesGrid .slick-headerrow-column.ui-state-default,
.s-Administration-CashCallProcessesGrid .slick-headerrow-column.ui-state-default,
.s-Administration-PerformanceProcessesGrid .slick-headerrow-column.ui-state-default {
  padding: 4px;
}
.s-Administration-AuditLogGrid .slick-header-column-sorted,
.s-Administration-CommitteeGrid .slick-header-column-sorted,
.s-Administration-CommitteeMembersGrid .slick-header-column-sorted,
.s-Administration-DepartmentMembersGrid .slick-header-column-sorted,
.s-Administration-DepartmentsGrid .slick-header-column-sorted,
.s-Administration-ExceptionsGrid .slick-header-column-sorted,
.s-Administration-IssueTrackingGrid .slick-header-column-sorted,
.s-Administration-IssueTrackingIssuesGrid .slick-header-column-sorted,
.s-Administration-IssueTrackingPrioritiesGrid .slick-header-column-sorted,
.s-Administration-IssueTrackingCategoriesGrid .slick-header-column-sorted,
.s-Administration-IssueTrackingStatusesGrid .slick-header-column-sorted,
.s-Administration-LanguageGrid .slick-header-column-sorted,
.s-Administration-LoggingGrid .slick-header-column-sorted,
.s-Administration-OperatorsGrid .slick-header-column-sorted,
.s-Administration-OperatorToFundingTrancheTypesGrid .slick-header-column-sorted,
.s-Administration-OperatorFundingTypeToEquityShareGrid .slick-header-column-sorted,
.s-Administration-PartnersGrid .slick-header-column-sorted,
.s-Administration-RoleGrid .slick-header-column-sorted,
.s-Administration-RoleAreasGrid .slick-header-column-sorted,
.s-Administration-RolePermissionGrid .slick-header-column-sorted,
.s-Administration-SettingsGrid .slick-header-column-sorted,
.s-Administration-UserGrid .slick-header-column-sorted,
.s-Administration-UserPermissionGrid .slick-header-column-sorted,
.s-Administration-UserRoleGrid .slick-header-column-sorted,
.s-Administration-WorkFlowsGrid .slick-header-column-sorted,
.s-Administration-AnnualBudgetProcessesGrid .slick-header-column-sorted,
.s-Administration-BudgetCallCircularProcessesGrid .slick-header-column-sorted,
.s-Administration-BudgetProfileProcessesGrid .slick-header-column-sorted,
.s-Administration-BudgetTemplateProcessesGrid .slick-header-column-sorted,
.s-Administration-BudgetThresholdProcessesGrid .slick-header-column-sorted,
.s-Administration-CashCallProcessesGrid .slick-header-column-sorted,
.s-Administration-PerformanceProcessesGrid .slick-header-column-sorted {
  font-style: italic;
}
.s-Administration-AuditLogGrid .slick-sort-indicator,
.s-Administration-CommitteeGrid .slick-sort-indicator,
.s-Administration-CommitteeMembersGrid .slick-sort-indicator,
.s-Administration-DepartmentMembersGrid .slick-sort-indicator,
.s-Administration-DepartmentsGrid .slick-sort-indicator,
.s-Administration-ExceptionsGrid .slick-sort-indicator,
.s-Administration-IssueTrackingGrid .slick-sort-indicator,
.s-Administration-IssueTrackingIssuesGrid .slick-sort-indicator,
.s-Administration-IssueTrackingPrioritiesGrid .slick-sort-indicator,
.s-Administration-IssueTrackingCategoriesGrid .slick-sort-indicator,
.s-Administration-IssueTrackingStatusesGrid .slick-sort-indicator,
.s-Administration-LanguageGrid .slick-sort-indicator,
.s-Administration-LoggingGrid .slick-sort-indicator,
.s-Administration-OperatorsGrid .slick-sort-indicator,
.s-Administration-OperatorToFundingTrancheTypesGrid .slick-sort-indicator,
.s-Administration-OperatorFundingTypeToEquityShareGrid .slick-sort-indicator,
.s-Administration-PartnersGrid .slick-sort-indicator,
.s-Administration-RoleGrid .slick-sort-indicator,
.s-Administration-RoleAreasGrid .slick-sort-indicator,
.s-Administration-RolePermissionGrid .slick-sort-indicator,
.s-Administration-SettingsGrid .slick-sort-indicator,
.s-Administration-UserGrid .slick-sort-indicator,
.s-Administration-UserPermissionGrid .slick-sort-indicator,
.s-Administration-UserRoleGrid .slick-sort-indicator,
.s-Administration-WorkFlowsGrid .slick-sort-indicator,
.s-Administration-AnnualBudgetProcessesGrid .slick-sort-indicator,
.s-Administration-BudgetCallCircularProcessesGrid .slick-sort-indicator,
.s-Administration-BudgetProfileProcessesGrid .slick-sort-indicator,
.s-Administration-BudgetTemplateProcessesGrid .slick-sort-indicator,
.s-Administration-BudgetThresholdProcessesGrid .slick-sort-indicator,
.s-Administration-CashCallProcessesGrid .slick-sort-indicator,
.s-Administration-PerformanceProcessesGrid .slick-sort-indicator {
  display: inline-block;
  width: 8px;
  height: 5px;
  margin-left: 4px;
  margin-top: 6px;
  float: left;
}
.s-Administration-AuditLogGrid .slick-sort-indicator-desc,
.s-Administration-CommitteeGrid .slick-sort-indicator-desc,
.s-Administration-CommitteeMembersGrid .slick-sort-indicator-desc,
.s-Administration-DepartmentMembersGrid .slick-sort-indicator-desc,
.s-Administration-DepartmentsGrid .slick-sort-indicator-desc,
.s-Administration-ExceptionsGrid .slick-sort-indicator-desc,
.s-Administration-IssueTrackingGrid .slick-sort-indicator-desc,
.s-Administration-IssueTrackingIssuesGrid .slick-sort-indicator-desc,
.s-Administration-IssueTrackingPrioritiesGrid .slick-sort-indicator-desc,
.s-Administration-IssueTrackingCategoriesGrid .slick-sort-indicator-desc,
.s-Administration-IssueTrackingStatusesGrid .slick-sort-indicator-desc,
.s-Administration-LanguageGrid .slick-sort-indicator-desc,
.s-Administration-LoggingGrid .slick-sort-indicator-desc,
.s-Administration-OperatorsGrid .slick-sort-indicator-desc,
.s-Administration-OperatorToFundingTrancheTypesGrid .slick-sort-indicator-desc,
.s-Administration-OperatorFundingTypeToEquityShareGrid .slick-sort-indicator-desc,
.s-Administration-PartnersGrid .slick-sort-indicator-desc,
.s-Administration-RoleGrid .slick-sort-indicator-desc,
.s-Administration-RoleAreasGrid .slick-sort-indicator-desc,
.s-Administration-RolePermissionGrid .slick-sort-indicator-desc,
.s-Administration-SettingsGrid .slick-sort-indicator-desc,
.s-Administration-UserGrid .slick-sort-indicator-desc,
.s-Administration-UserPermissionGrid .slick-sort-indicator-desc,
.s-Administration-UserRoleGrid .slick-sort-indicator-desc,
.s-Administration-WorkFlowsGrid .slick-sort-indicator-desc,
.s-Administration-AnnualBudgetProcessesGrid .slick-sort-indicator-desc,
.s-Administration-BudgetCallCircularProcessesGrid .slick-sort-indicator-desc,
.s-Administration-BudgetProfileProcessesGrid .slick-sort-indicator-desc,
.s-Administration-BudgetTemplateProcessesGrid .slick-sort-indicator-desc,
.s-Administration-BudgetThresholdProcessesGrid .slick-sort-indicator-desc,
.s-Administration-CashCallProcessesGrid .slick-sort-indicator-desc,
.s-Administration-PerformanceProcessesGrid .slick-sort-indicator-desc {
  background: url(images/sort-desc.gif);
}
.s-Administration-AuditLogGrid .slick-sort-indicator-asc,
.s-Administration-CommitteeGrid .slick-sort-indicator-asc,
.s-Administration-CommitteeMembersGrid .slick-sort-indicator-asc,
.s-Administration-DepartmentMembersGrid .slick-sort-indicator-asc,
.s-Administration-DepartmentsGrid .slick-sort-indicator-asc,
.s-Administration-ExceptionsGrid .slick-sort-indicator-asc,
.s-Administration-IssueTrackingGrid .slick-sort-indicator-asc,
.s-Administration-IssueTrackingIssuesGrid .slick-sort-indicator-asc,
.s-Administration-IssueTrackingPrioritiesGrid .slick-sort-indicator-asc,
.s-Administration-IssueTrackingCategoriesGrid .slick-sort-indicator-asc,
.s-Administration-IssueTrackingStatusesGrid .slick-sort-indicator-asc,
.s-Administration-LanguageGrid .slick-sort-indicator-asc,
.s-Administration-LoggingGrid .slick-sort-indicator-asc,
.s-Administration-OperatorsGrid .slick-sort-indicator-asc,
.s-Administration-OperatorToFundingTrancheTypesGrid .slick-sort-indicator-asc,
.s-Administration-OperatorFundingTypeToEquityShareGrid .slick-sort-indicator-asc,
.s-Administration-PartnersGrid .slick-sort-indicator-asc,
.s-Administration-RoleGrid .slick-sort-indicator-asc,
.s-Administration-RoleAreasGrid .slick-sort-indicator-asc,
.s-Administration-RolePermissionGrid .slick-sort-indicator-asc,
.s-Administration-SettingsGrid .slick-sort-indicator-asc,
.s-Administration-UserGrid .slick-sort-indicator-asc,
.s-Administration-UserPermissionGrid .slick-sort-indicator-asc,
.s-Administration-UserRoleGrid .slick-sort-indicator-asc,
.s-Administration-WorkFlowsGrid .slick-sort-indicator-asc,
.s-Administration-AnnualBudgetProcessesGrid .slick-sort-indicator-asc,
.s-Administration-BudgetCallCircularProcessesGrid .slick-sort-indicator-asc,
.s-Administration-BudgetProfileProcessesGrid .slick-sort-indicator-asc,
.s-Administration-BudgetTemplateProcessesGrid .slick-sort-indicator-asc,
.s-Administration-BudgetThresholdProcessesGrid .slick-sort-indicator-asc,
.s-Administration-CashCallProcessesGrid .slick-sort-indicator-asc,
.s-Administration-PerformanceProcessesGrid .slick-sort-indicator-asc {
  background: url(images/sort-asc.gif);
}
.s-Administration-AuditLogGrid .slick-resizable-handle,
.s-Administration-CommitteeGrid .slick-resizable-handle,
.s-Administration-CommitteeMembersGrid .slick-resizable-handle,
.s-Administration-DepartmentMembersGrid .slick-resizable-handle,
.s-Administration-DepartmentsGrid .slick-resizable-handle,
.s-Administration-ExceptionsGrid .slick-resizable-handle,
.s-Administration-IssueTrackingGrid .slick-resizable-handle,
.s-Administration-IssueTrackingIssuesGrid .slick-resizable-handle,
.s-Administration-IssueTrackingPrioritiesGrid .slick-resizable-handle,
.s-Administration-IssueTrackingCategoriesGrid .slick-resizable-handle,
.s-Administration-IssueTrackingStatusesGrid .slick-resizable-handle,
.s-Administration-LanguageGrid .slick-resizable-handle,
.s-Administration-LoggingGrid .slick-resizable-handle,
.s-Administration-OperatorsGrid .slick-resizable-handle,
.s-Administration-OperatorToFundingTrancheTypesGrid .slick-resizable-handle,
.s-Administration-OperatorFundingTypeToEquityShareGrid .slick-resizable-handle,
.s-Administration-PartnersGrid .slick-resizable-handle,
.s-Administration-RoleGrid .slick-resizable-handle,
.s-Administration-RoleAreasGrid .slick-resizable-handle,
.s-Administration-RolePermissionGrid .slick-resizable-handle,
.s-Administration-SettingsGrid .slick-resizable-handle,
.s-Administration-UserGrid .slick-resizable-handle,
.s-Administration-UserPermissionGrid .slick-resizable-handle,
.s-Administration-UserRoleGrid .slick-resizable-handle,
.s-Administration-WorkFlowsGrid .slick-resizable-handle,
.s-Administration-AnnualBudgetProcessesGrid .slick-resizable-handle,
.s-Administration-BudgetCallCircularProcessesGrid .slick-resizable-handle,
.s-Administration-BudgetProfileProcessesGrid .slick-resizable-handle,
.s-Administration-BudgetTemplateProcessesGrid .slick-resizable-handle,
.s-Administration-BudgetThresholdProcessesGrid .slick-resizable-handle,
.s-Administration-CashCallProcessesGrid .slick-resizable-handle,
.s-Administration-PerformanceProcessesGrid .slick-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  cursor: col-resize;
  width: 4px;
  right: 0px;
  top: 0;
  height: 100%;
}
.s-Administration-AuditLogGrid .slick-sortable-placeholder,
.s-Administration-CommitteeGrid .slick-sortable-placeholder,
.s-Administration-CommitteeMembersGrid .slick-sortable-placeholder,
.s-Administration-DepartmentMembersGrid .slick-sortable-placeholder,
.s-Administration-DepartmentsGrid .slick-sortable-placeholder,
.s-Administration-ExceptionsGrid .slick-sortable-placeholder,
.s-Administration-IssueTrackingGrid .slick-sortable-placeholder,
.s-Administration-IssueTrackingIssuesGrid .slick-sortable-placeholder,
.s-Administration-IssueTrackingPrioritiesGrid .slick-sortable-placeholder,
.s-Administration-IssueTrackingCategoriesGrid .slick-sortable-placeholder,
.s-Administration-IssueTrackingStatusesGrid .slick-sortable-placeholder,
.s-Administration-LanguageGrid .slick-sortable-placeholder,
.s-Administration-LoggingGrid .slick-sortable-placeholder,
.s-Administration-OperatorsGrid .slick-sortable-placeholder,
.s-Administration-OperatorToFundingTrancheTypesGrid .slick-sortable-placeholder,
.s-Administration-OperatorFundingTypeToEquityShareGrid .slick-sortable-placeholder,
.s-Administration-PartnersGrid .slick-sortable-placeholder,
.s-Administration-RoleGrid .slick-sortable-placeholder,
.s-Administration-RoleAreasGrid .slick-sortable-placeholder,
.s-Administration-RolePermissionGrid .slick-sortable-placeholder,
.s-Administration-SettingsGrid .slick-sortable-placeholder,
.s-Administration-UserGrid .slick-sortable-placeholder,
.s-Administration-UserPermissionGrid .slick-sortable-placeholder,
.s-Administration-UserRoleGrid .slick-sortable-placeholder,
.s-Administration-WorkFlowsGrid .slick-sortable-placeholder,
.s-Administration-AnnualBudgetProcessesGrid .slick-sortable-placeholder,
.s-Administration-BudgetCallCircularProcessesGrid .slick-sortable-placeholder,
.s-Administration-BudgetProfileProcessesGrid .slick-sortable-placeholder,
.s-Administration-BudgetTemplateProcessesGrid .slick-sortable-placeholder,
.s-Administration-BudgetThresholdProcessesGrid .slick-sortable-placeholder,
.s-Administration-CashCallProcessesGrid .slick-sortable-placeholder,
.s-Administration-PerformanceProcessesGrid .slick-sortable-placeholder {
  background: silver;
}
.s-Administration-AuditLogGrid .slick-cell,
.s-Administration-CommitteeGrid .slick-cell,
.s-Administration-CommitteeMembersGrid .slick-cell,
.s-Administration-DepartmentMembersGrid .slick-cell,
.s-Administration-DepartmentsGrid .slick-cell,
.s-Administration-ExceptionsGrid .slick-cell,
.s-Administration-IssueTrackingGrid .slick-cell,
.s-Administration-IssueTrackingIssuesGrid .slick-cell,
.s-Administration-IssueTrackingPrioritiesGrid .slick-cell,
.s-Administration-IssueTrackingCategoriesGrid .slick-cell,
.s-Administration-IssueTrackingStatusesGrid .slick-cell,
.s-Administration-LanguageGrid .slick-cell,
.s-Administration-LoggingGrid .slick-cell,
.s-Administration-OperatorsGrid .slick-cell,
.s-Administration-OperatorToFundingTrancheTypesGrid .slick-cell,
.s-Administration-OperatorFundingTypeToEquityShareGrid .slick-cell,
.s-Administration-PartnersGrid .slick-cell,
.s-Administration-RoleGrid .slick-cell,
.s-Administration-RoleAreasGrid .slick-cell,
.s-Administration-RolePermissionGrid .slick-cell,
.s-Administration-SettingsGrid .slick-cell,
.s-Administration-UserGrid .slick-cell,
.s-Administration-UserPermissionGrid .slick-cell,
.s-Administration-UserRoleGrid .slick-cell,
.s-Administration-WorkFlowsGrid .slick-cell,
.s-Administration-AnnualBudgetProcessesGrid .slick-cell,
.s-Administration-BudgetCallCircularProcessesGrid .slick-cell,
.s-Administration-BudgetProfileProcessesGrid .slick-cell,
.s-Administration-BudgetTemplateProcessesGrid .slick-cell,
.s-Administration-BudgetThresholdProcessesGrid .slick-cell,
.s-Administration-CashCallProcessesGrid .slick-cell,
.s-Administration-PerformanceProcessesGrid .slick-cell,
.s-Administration-AuditLogGrid .slick-headerrow-column,
.s-Administration-CommitteeGrid .slick-headerrow-column,
.s-Administration-CommitteeMembersGrid .slick-headerrow-column,
.s-Administration-DepartmentMembersGrid .slick-headerrow-column,
.s-Administration-DepartmentsGrid .slick-headerrow-column,
.s-Administration-ExceptionsGrid .slick-headerrow-column,
.s-Administration-IssueTrackingGrid .slick-headerrow-column,
.s-Administration-IssueTrackingIssuesGrid .slick-headerrow-column,
.s-Administration-IssueTrackingPrioritiesGrid .slick-headerrow-column,
.s-Administration-IssueTrackingCategoriesGrid .slick-headerrow-column,
.s-Administration-IssueTrackingStatusesGrid .slick-headerrow-column,
.s-Administration-LanguageGrid .slick-headerrow-column,
.s-Administration-LoggingGrid .slick-headerrow-column,
.s-Administration-OperatorsGrid .slick-headerrow-column,
.s-Administration-OperatorToFundingTrancheTypesGrid .slick-headerrow-column,
.s-Administration-OperatorFundingTypeToEquityShareGrid .slick-headerrow-column,
.s-Administration-PartnersGrid .slick-headerrow-column,
.s-Administration-RoleGrid .slick-headerrow-column,
.s-Administration-RoleAreasGrid .slick-headerrow-column,
.s-Administration-RolePermissionGrid .slick-headerrow-column,
.s-Administration-SettingsGrid .slick-headerrow-column,
.s-Administration-UserGrid .slick-headerrow-column,
.s-Administration-UserPermissionGrid .slick-headerrow-column,
.s-Administration-UserRoleGrid .slick-headerrow-column,
.s-Administration-WorkFlowsGrid .slick-headerrow-column,
.s-Administration-AnnualBudgetProcessesGrid .slick-headerrow-column,
.s-Administration-BudgetCallCircularProcessesGrid .slick-headerrow-column,
.s-Administration-BudgetProfileProcessesGrid .slick-headerrow-column,
.s-Administration-BudgetTemplateProcessesGrid .slick-headerrow-column,
.s-Administration-BudgetThresholdProcessesGrid .slick-headerrow-column,
.s-Administration-CashCallProcessesGrid .slick-headerrow-column,
.s-Administration-PerformanceProcessesGrid .slick-headerrow-column {
  position: absolute;
  font-size: 12px;
  border: 1px solid transparent;
  border-right: 1px dotted silver;
  border-bottom-color: silver;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  vertical-align: middle;
  z-index: 1;
  padding: 1px 2px 2px 1px;
  margin: 0;
  white-space: nowrap;
  cursor: default;
}
.s-Administration-AuditLogGrid .slick-cell.highlighted,
.s-Administration-CommitteeGrid .slick-cell.highlighted,
.s-Administration-CommitteeMembersGrid .slick-cell.highlighted,
.s-Administration-DepartmentMembersGrid .slick-cell.highlighted,
.s-Administration-DepartmentsGrid .slick-cell.highlighted,
.s-Administration-ExceptionsGrid .slick-cell.highlighted,
.s-Administration-IssueTrackingGrid .slick-cell.highlighted,
.s-Administration-IssueTrackingIssuesGrid .slick-cell.highlighted,
.s-Administration-IssueTrackingPrioritiesGrid .slick-cell.highlighted,
.s-Administration-IssueTrackingCategoriesGrid .slick-cell.highlighted,
.s-Administration-IssueTrackingStatusesGrid .slick-cell.highlighted,
.s-Administration-LanguageGrid .slick-cell.highlighted,
.s-Administration-LoggingGrid .slick-cell.highlighted,
.s-Administration-OperatorsGrid .slick-cell.highlighted,
.s-Administration-OperatorToFundingTrancheTypesGrid .slick-cell.highlighted,
.s-Administration-OperatorFundingTypeToEquityShareGrid .slick-cell.highlighted,
.s-Administration-PartnersGrid .slick-cell.highlighted,
.s-Administration-RoleGrid .slick-cell.highlighted,
.s-Administration-RoleAreasGrid .slick-cell.highlighted,
.s-Administration-RolePermissionGrid .slick-cell.highlighted,
.s-Administration-SettingsGrid .slick-cell.highlighted,
.s-Administration-UserGrid .slick-cell.highlighted,
.s-Administration-UserPermissionGrid .slick-cell.highlighted,
.s-Administration-UserRoleGrid .slick-cell.highlighted,
.s-Administration-WorkFlowsGrid .slick-cell.highlighted,
.s-Administration-AnnualBudgetProcessesGrid .slick-cell.highlighted,
.s-Administration-BudgetCallCircularProcessesGrid .slick-cell.highlighted,
.s-Administration-BudgetProfileProcessesGrid .slick-cell.highlighted,
.s-Administration-BudgetTemplateProcessesGrid .slick-cell.highlighted,
.s-Administration-BudgetThresholdProcessesGrid .slick-cell.highlighted,
.s-Administration-CashCallProcessesGrid .slick-cell.highlighted,
.s-Administration-PerformanceProcessesGrid .slick-cell.highlighted {
  background: lightskyblue;
  background: rgba(0, 0, 255, 0.2);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.s-Administration-PerformanceProcessesDialog > .size {
  width: 650px;
}
.s-Administration-PerformanceProcessesDialog .caption {
  width: 150px;
}
.s-Administration-NotificationTemplatesDialog > .size {
  width: 650px;
}
.s-Administration-NotificationTemplatesDialog .caption {
  width: 150px;
}
.s-Administration-BudgetTemplateProcessesDiscussionsModifySecurityRolesDialog > .size {
  width: 650px;
}
.s-Administration-BudgetTemplateProcessesDiscussionsModifySecurityRolesDialog .caption {
  width: 150px;
}
.s-Administration-BudgetTemplateProcessesDiscussionsViewSecurityRolesDialog > .size {
  width: 650px;
}
.s-Administration-BudgetTemplateProcessesDiscussionsViewSecurityRolesDialog .caption {
  width: 150px;
}
.s-Administration-BudgetTemplateProcessesRemarksModifySecurityRolesDialog > .size {
  width: 650px;
}
.s-Administration-BudgetTemplateProcessesRemarksModifySecurityRolesDialog .caption {
  width: 150px;
}
.s-Administration-BudgetTemplateProcessesRemarksViewSecurityRolesDialog > .size {
  width: 650px;
}
.s-Administration-BudgetTemplateProcessesRemarksViewSecurityRolesDialog .caption {
  width: 150px;
}
.s-Administration-DiscussionsModifySecurityRolesDialog > .size {
  width: 650px;
}
.s-Administration-DiscussionsModifySecurityRolesDialog .caption {
  width: 150px;
}
.s-Administration-DiscussionsViewSecurityRolesDialog > .size {
  width: 650px;
}
.s-Administration-DiscussionsViewSecurityRolesDialog .caption {
  width: 150px;
}
.s-Administration-RemarksModifySecurityRolesDialog > .size {
  width: 650px;
}
.s-Administration-RemarksModifySecurityRolesDialog .caption {
  width: 150px;
}
.s-Administration-RemarksViewSecurityRolesDialog > .size {
  width: 650px;
}
.s-Administration-RemarksViewSecurityRolesDialog .caption {
  width: 150px;
}
.s-Administration-RolePermissionsPanelDialog > .size {
  width: 650px;
}
.s-Administration-RolePermissionsPanelDialog .caption {
  width: 150px;
}
.s-Administration-DataGranularityDialog > .size {
  width: 650px;
}
.s-Administration-DataGranularityDialog .caption {
  width: 150px;
}
.s-Administration-AcceptanceStatusesDialog > .size {
  width: 650px;
}
.s-Administration-AcceptanceStatusesDialog .caption {
  width: 150px;
}
.s-Administration-TemplateStatusTypesDialog > .size {
  width: 650px;
}
.s-Administration-TemplateStatusTypesDialog .caption {
  width: 150px;
}
.s-Administration-OperatorTemplateProcessesDialog > .size {
  width: 650px;
}
.s-Administration-OperatorTemplateProcessesDialog .caption {
  width: 150px;
}
.s-Administration-PerformanceTemplateProcessesDialog > .size {
  width: 650px;
}
.s-Administration-PerformanceTemplateProcessesDialog .caption {
  width: 150px;
}
.s-Administration-PartnersDialog > .size {
  width: 650px;
}
.s-Administration-PartnersDialog .caption {
  width: 150px;
}
.s-Administration-UserPartnersDialog > .size {
  width: 650px;
}
.s-Administration-UserPartnersDialog .caption {
  width: 150px;
}
.s-Administration-CalendarScheduleProcessesDialog > .size {
  width: 650px;
}
.s-Administration-CalendarScheduleProcessesDialog .caption {
  width: 150px;
}
.s-Administration-BCPproModulesDialog > .size {
  width: 650px;
}
.s-Administration-BCPproModulesDialog .caption {
  width: 150px;
}
.s-Administration-OtherProcessesDialog > .size {
  width: 650px;
}
.s-Administration-OtherProcessesDialog .caption {
  width: 150px;
}
.s-Administration-IssueTrackingFeedbackDialog > .size {
  width: 650px;
}
.s-Administration-IssueTrackingFeedbackDialog .caption {
  width: 150px;
}
.s-Administration-IssueTrackingChangeRequestDialog > .size {
  width: 650px;
}
.s-Administration-IssueTrackingChangeRequestDialog .caption {
  width: 150px;
}
.s-Administration-OtherStatusAreaTypeDialog > .size {
  width: 650px;
}
.s-Administration-OtherStatusAreaTypeDialog .caption {
  width: 150px;
}
.s-Administration-WorkflowActionTypeDialog > .size {
  width: 650px;
}
.s-Administration-WorkflowActionTypeDialog .caption {
  width: 150px;
}
.s-Administration-OperatorBusinessEntitiesDialog > .size {
  width: 650px;
}
.s-Administration-OperatorBusinessEntitiesDialog .caption {
  width: 150px;
}
.s-Administration-OperatorToEntitiesDialog > .size {
  width: 650px;
}
.s-Administration-OperatorToEntitiesDialog .caption {
  width: 150px;
}
.s-Administration-OperatorUsersDialog > .size {
  width: 650px;
}
.s-Administration-OperatorUsersDialog .caption {
  width: 150px;
}
.s-Administration-OperatorToFundingTrancheTypesDialog > .size {
  width: 650px;
}
.s-Administration-OperatorToFundingTrancheTypesDialog .caption {
  width: 150px;
}
.s-Administration-OperatorFundingTypeToEquityShareDialog > .size {
  width: 650px;
}
.s-Administration-OperatorFundingTypeToEquityShareDialog .caption {
  width: 150px;
}
.s-Administration-BcPproExceptionsDialog > .size {
  width: 650px;
}
.s-Administration-BcPproExceptionsDialog .caption {
  width: 150px;
}
.s-Administration-BudgetAutoTestDialog > .size {
  width: 650px;
}
.s-Administration-BudgetAutoTestDialog .caption {
  width: 150px;
}
.s-Administration-CashCallAutoTestDialog > .size {
  width: 650px;
}
.s-Administration-CashCallAutoTestDialog .caption {
  width: 150px;
}
.s-Adminstration-PerformanceMonthAutoTestDialog > .size {
  width: 650px;
}
.s-Adminstration-PerformanceMonthAutoTestDialog .caption {
  width: 150px;
}
.s-Administration-PerformanceQuarterAutoTestDialog > .size {
  width: 650px;
}
.s-Administration-PerformanceQuarterAutoTestDialog .caption {
  width: 150px;
}
.s-Administration-AutoTestToOperatorDialog > .size {
  width: 650px;
}
.s-Administration-AutoTestToOperatorDialog .caption {
  width: 150px;
}
.s-Administration-PerformanceMonthAutoTestDialog > .size {
  width: 650px;
}
.s-Administration-PerformanceMonthAutoTestDialog .caption {
  width: 150px;
}
.s-Administration-SiteNotificationsDialog > .size {
  width: 650px;
}
.s-Administration-SiteNotificationsDialog .caption {
  width: 150px;
}
.s-Meeting-MeetingDialog > .size {
  width: 850px;
  height: 550px;
}
.s-Meeting-MeetingDialog .caption {
  width: 120px;
}
@media (min-width: 768px) {
  .s-Meeting-MeetingDialog .field.MeetingTypeId,
  .s-Meeting-MeetingDialog .field.MeetingNumber,
  .s-Meeting-MeetingDialog .field.StartDate,
  .s-Meeting-MeetingDialog .field.EndDate,
  .s-Meeting-MeetingDialog .field.OrganizerContactId,
  .s-Meeting-MeetingDialog .field.ReporterContactId {
    max-width: 50%;
  }
}
.s-Meeting-MeetingAttendeeEditor .slick-cell select {
  padding: 0;
  width: 100%;
}
.s-Meeting-MeetingAgendaDialog > .size {
  width: 650px;
}
.s-Meeting-MeetingAgendaDialog .caption {
  width: 150px;
}
.s-Meeting-MeetingAgendaRelevantDialog > .size {
  width: 650px;
}
.s-Meeting-MeetingAgendaRelevantDialog .caption {
  width: 150px;
}
.s-Meeting-MeetingAgendaTypeDialog > .size {
  width: 650px;
}
.s-Meeting-MeetingAgendaTypeDialog .caption {
  width: 150px;
}
.s-Meeting-MeetingDecisionDialog > .size {
  width: 650px;
}
.s-Meeting-MeetingDecisionDialog .caption {
  width: 150px;
}
.s-Meeting-MeetingDecisionRelevantDialog > .size {
  width: 650px;
}
.s-Meeting-MeetingDecisionRelevantDialog .caption {
  width: 150px;
}
.s-Meeting-MeetingLocationDialog > .size {
  width: 650px;
}
.s-Meeting-MeetingLocationDialog .caption {
  width: 150px;
}
.s-Meeting-MeetingTypeDialog > .size {
  width: 650px;
}
.s-Meeting-MeetingTypeDialog .caption {
  width: 150px;
}
/*Default styles for login/register pages*/
.page-content .s-ChangePasswordPanel {
  width: 550px;
}
.page-content .s-ChangePasswordPanel .caption {
  width: 150px;
}
.page-content .s-ChangePasswordPanel .editor {
  width: 350px;
}
.page-content .s-ChangePasswordPanel input.editor[type=checkbox] {
  width: auto;
}
.page-content .s-ChangePasswordPanel .s-Form .editor.dateQ {
  width: 326px;
}
.page-content .s-ChangePasswordPanel .s-Form .editor.emailuser {
  width: 170px;
}
.page-content .s-ChangePasswordPanel .s-Form .editor.dateQ.s-DateTimeEditor {
  width: 231px;
}
.page-content .s-ChangePasswordPanel .s-Form .editor.s-DateTimeEditor.time {
  width: 64px;
  margin-left: 4px;
}
.page-content .s-ChangePasswordPanel .s-Form .editor.has-inplace-button {
  width: 324px;
}
.page-content .s-ChangePasswordPanel .s-Form .emaildomain {
  width: 165px;
}
.page-content .s-ChangePasswordPanel .buttons {
  text-align: right;
  padding: 8px 48px;
}
.page-content .s-ForgotPasswordPanel {
  border: 2px solid #e7e7e7;
  padding: 40px;
  border-radius: 8px;
  width: 650px;
  margin: 60px auto auto auto;
}
.page-content .s-ForgotPasswordPanel .caption {
  width: 150px;
}
.page-content .s-ForgotPasswordPanel .editor {
  width: 350px;
}
.page-content .s-ForgotPasswordPanel input.editor[type=checkbox] {
  width: auto;
}
.page-content .s-ForgotPasswordPanel .s-Form .editor.dateQ {
  width: 326px;
}
.page-content .s-ForgotPasswordPanel .s-Form .editor.emailuser {
  width: 170px;
}
.page-content .s-ForgotPasswordPanel .s-Form .editor.dateQ.s-DateTimeEditor {
  width: 231px;
}
.page-content .s-ForgotPasswordPanel .s-Form .editor.s-DateTimeEditor.time {
  width: 64px;
  margin-left: 4px;
}
.page-content .s-ForgotPasswordPanel .s-Form .editor.has-inplace-button {
  width: 324px;
}
.page-content .s-ForgotPasswordPanel .s-Form .emaildomain {
  width: 165px;
}
.page-content .s-ForgotPasswordPanel .buttons {
  text-align: right;
  padding: 8px 62px;
}
.page-content .s-ForgotPasswordPanel p {
  padding: 8px;
  margin: 24px 0;
}
.page-content .s-ResetPasswordPanel {
  border: 2px solid #e7e7e7;
  padding: 40px;
  border-radius: 8px;
  width: 650px;
  margin: 60px auto auto auto;
}
.page-content .s-ResetPasswordPanel .caption {
  width: 150px;
}
.page-content .s-ResetPasswordPanel .editor {
  width: 350px;
}
.page-content .s-ResetPasswordPanel input.editor[type=checkbox] {
  width: auto;
}
.page-content .s-ResetPasswordPanel .s-Form .editor.dateQ {
  width: 326px;
}
.page-content .s-ResetPasswordPanel .s-Form .editor.emailuser {
  width: 170px;
}
.page-content .s-ResetPasswordPanel .s-Form .editor.dateQ.s-DateTimeEditor {
  width: 231px;
}
.page-content .s-ResetPasswordPanel .s-Form .editor.s-DateTimeEditor.time {
  width: 64px;
  margin-left: 4px;
}
.page-content .s-ResetPasswordPanel .s-Form .editor.has-inplace-button {
  width: 324px;
}
.page-content .s-ResetPasswordPanel .s-Form .emaildomain {
  width: 165px;
}
.page-content .s-ResetPasswordPanel .buttons {
  text-align: right;
  padding: 8px 62px;
}
.page-content .s-SignUpPanel {
  border: 2px solid #e7e7e7;
  padding: 40px;
  border-radius: 8px;
  width: 650px;
  margin: 60px auto auto auto;
}
.page-content .s-SignUpPanel .caption {
  width: 150px;
}
.page-content .s-SignUpPanel .editor {
  width: 350px;
}
.page-content .s-SignUpPanel input.editor[type=checkbox] {
  width: auto;
}
.page-content .s-SignUpPanel .s-Form .editor.dateQ {
  width: 326px;
}
.page-content .s-SignUpPanel .s-Form .editor.emailuser {
  width: 170px;
}
.page-content .s-SignUpPanel .s-Form .editor.dateQ.s-DateTimeEditor {
  width: 231px;
}
.page-content .s-SignUpPanel .s-Form .editor.s-DateTimeEditor.time {
  width: 64px;
  margin-left: 4px;
}
.page-content .s-SignUpPanel .s-Form .editor.has-inplace-button {
  width: 324px;
}
.page-content .s-SignUpPanel .s-Form .emaildomain {
  width: 165px;
}
.page-content .s-SignUpPanel .buttons {
  text-align: right;
  padding: 8px 62px;
}
.page-content .s-SignUpPanel p {
  padding: 8px;
  margin: 24px 0;
}
/*BCPpro style login/register box*/
.login-box .page-title,
.register-box .page-title {
  margin-top: 0;
  padding: 0 0 8px;
}
.login-box login-box-msg,
.register-box login-box-msg,
.login-box .register-box-msg,
.register-box .register-box-msg {
  padding-bottom: 20px;
}
.login-box .s-LoginPanel,
.register-box .s-LoginPanel,
.login-box .s-SignUpPanel,
.register-box .s-SignUpPanel,
.login-box .s-ForgotPasswordPanel,
.register-box .s-ForgotPasswordPanel,
.login-box .s-ChangePasswordPanel,
.register-box .s-ChangePasswordPanel,
.login-box .s-ResetPasswordPanel,
.register-box .s-ResetPasswordPanel {
  margin-bottom: 10px;
}
.login-box .s-Form input,
.register-box .s-Form input {
  display: block;
  width: 100%;
  height: 34px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 0;
}
.login-box .s-Form .field,
.register-box .s-Form .field {
  margin-bottom: 15px;
  padding: 0;
}
.login-box .s-Form .has-icon,
.register-box .s-Form .has-icon {
  position: relative;
}
.login-box .s-Form .has-icon input,
.register-box .s-Form .has-icon input {
  padding-right: 34px;
}
.login-box .s-Form .has-icon input.emailuser,
.register-box .s-Form .has-icon input.emailuser {
  padding-right: 6px;
}
.login-box .s-Form .caption,
.register-box .s-Form .caption {
  width: 100%;
  text-align: left;
  display: none;
}
.login-box .s-Form label.error,
.register-box .s-Form label.error {
  background-image: url(../serenity/images/cross.png);
  padding: 26px 0 0 22px;
}
.login-box .s-Form label.error.checked,
.register-box .s-Form label.error.checked {
  background-image: none;
}
.login-box .s-Form .vx,
.register-box .s-Form .vx {
  position: absolute;
  top: 3px;
  right: -20px;
  z-index: 2;
  width: 22px;
}
.login-box .s-Form .btn,
.register-box .s-Form .btn {
  font-weight: 600;
  text-transform: uppercase;
}
.login-box .s-Form .s-EmailEditor,
.register-box .s-Form .s-EmailEditor {
  width: 45%;
}
.login-box .s-Form .emaildomain,
.register-box .s-Form .emaildomain {
  width: 45%;
  float: right;
}
#s-AccessDeniedPage div.message,
#s-ApplicationErrorPage div.message,
#s-NotFoundPage div.message,
#s-GenericErrorPage div.message {
  background: #fff;
  padding: 40px;
  margin: 100px auto;
  min-height: 170px;
  max-width: 70%;
  min-width: 400px;
  border-radius: 8px;
  border: 2px solid #ECC2C2;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}
#s-AccessDeniedPage div.message table,
#s-ApplicationErrorPage div.message table,
#s-NotFoundPage div.message table,
#s-GenericErrorPage div.message table {
  width: 100%;
}
#s-AccessDeniedPage div.message h1,
#s-ApplicationErrorPage div.message h1,
#s-NotFoundPage div.message h1,
#s-GenericErrorPage div.message h1 {
  color: red;
  font-size: 30px;
}
#s-AccessDeniedPage div.message h3,
#s-ApplicationErrorPage div.message h3,
#s-NotFoundPage div.message h3,
#s-GenericErrorPage div.message h3 {
  font-size: 18px;
  color: maroon;
  margin-top: 16px;
  line-height: 26px;
}
#s-AccessDeniedPage div.message a.redirect,
#s-ApplicationErrorPage div.message a.redirect,
#s-NotFoundPage div.message a.redirect,
#s-GenericErrorPage div.message a.redirect {
  display: block;
  float: left;
  margin-top: 40px;
  font-size: 16px;
  font-weight: bold;
}
#s-AccessDeniedPage div.message div.date-time,
#s-ApplicationErrorPage div.message div.date-time,
#s-NotFoundPage div.message div.date-time,
#s-GenericErrorPage div.message div.date-time {
  float: right;
  margin-top: 40px;
  font-weight: bold;
  font-style: italic;
  color: #966;
}
.s-Organization-BusinessUnitDialog > .size {
  width: 650px;
}
.s-Organization-BusinessUnitDialog .caption {
  width: 150px;
}
.s-Organization-ContactDialog > .size {
  width: 650px;
}
.s-Organization-ContactDialog .caption {
  width: 150px;
}
.inline-action.add-child-unit {
  background-image: url(../serenity/images/node-insert-next.png);
}
.box-content {
  font-size: 15px;
  font-weight: bold;
}
.box-height {
  height: 140px;
}
.discussiondata {
  margin-left: 2px;
  margin-right: 2px;
}
.s-Communication-DiscussionsDialog > .size {
  width: 600px;
}
.s-Communication-DiscussionsDialog .caption {
  width: 100px;
}
.s-Communication-DiscussionsGrid .wrap-text {
  white-space: normal;
}
.s-Communication-DiscussionsGrid ul.posts {
  height: 100%;
  overflow-y: auto;
  margin: 0;
  padding: 0;
}
.s-Communication-DiscussionsGrid ul.posts pre {
  white-space: pre-wrap;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  border: none;
  background-color: transparent;
}
.s-Communication-DiscussionsGrid ul.posts li {
  list-style: none;
  margin: 6px;
  border-radius: 8px;
  padding: 4px;
  border: 1px solid #ccc;
  background-color: #CEDDD1;
}
.s-Communication-DiscussionsGrid ul.posts h4 {
  font-size: 13px;
  text-align: right;
  font-weight: bold;
  font-style: italic;
}
.s-Communication-RemarksDialog > .size,
.s-Communication-RemarksActionDialog > .size {
  width: 600px;
}
.s-Communication-RemarksDialog .caption,
.s-Communication-RemarksActionDialog .caption {
  width: 100px;
}
.s-Communication-RemarksGrid .wrap-text {
  white-space: normal;
}
.s-Communication-RemarksGrid ul.posts {
  height: 100%;
  overflow-y: auto;
  margin: 0;
  padding: 0;
}
.s-Communication-RemarksGrid ul.posts pre {
  white-space: pre-wrap;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  border: none;
  background-color: transparent;
}
.s-Communication-RemarksGrid ul.posts li {
  list-style: none;
  margin: 6px;
  border-radius: 8px;
  padding: 4px;
  border: 1px solid #ccc;
  background-color: #CEDDD1;
}
.s-Communication-RemarksGrid ul.posts h4 {
  font-size: 13px;
  text-align: right;
  font-weight: bold;
  font-style: italic;
}
.s-Communication-PrivateMessagesDialog > .size {
  width: 650px;
}
.s-Communication-PrivateMessagesDialog .caption {
  width: 150px;
}
.s-Communication-CommentsDialog > .size {
  width: 650px;
}
.s-Communication-CommentsDialog .caption {
  width: 150px;
}
.s-Communication-CommentReadTrackingDialog > .size {
  width: 650px;
}
.s-Communication-CommentReadTrackingDialog .caption {
  width: 150px;
}
.s-Communication-CommentTrackingDialog > .size {
  width: 650px;
}
.s-Communication-CommentTrackingDialog .caption {
  width: 150px;
}
.top-info-inner {
  min-height: 100px;
}
.comment {
  position: relative;
  max-height: 450px;
  overflow-y: auto;
  padding: 15px;
}
.details {
  font-size: 16px;
  margin-bottom: 2px;
}
#msg {
  margin-left: 10px;
  font-weight: bold;
  font-size: 20px;
}
.info-table {
  font-size: 15px;
}
.operator-name {
  color: black;
}
.template_name {
  font-weight: bold;
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 8px;
  color: grey;
}
.template_name > a {
  margin-left: 10px;
}
.s-Communication-RemarksGrid,
.s-Communication-DiscussionsGrid {
  border: 1px solid #c0c0c0;
  margin: 0px;
  padding: 6px;
  overflow: hidden;
}
.s-Communication-RemarksGrid .slick-pane-header,
.s-Communication-DiscussionsGrid .slick-pane-header {
  position: absolute;
  display: inline-block;
  top: 0px;
  right: 0px !important;
  left: 0px;
  width: 100%;
  overflow: hidden;
}
.s-Communication-RemarksGrid .slick-header.ui-state-default,
.s-Communication-DiscussionsGrid .slick-header.ui-state-default,
.s-Communication-RemarksGrid .slick-headerrow.ui-state-default,
.s-Communication-DiscussionsGrid .slick-headerrow.ui-state-default {
  overflow: hidden;
  border-left: 0px;
}
.s-Communication-RemarksGrid .slick-header-columns,
.s-Communication-DiscussionsGrid .slick-header-columns,
.s-Communication-RemarksGrid .slick-headerrow-columns,
.s-Communication-DiscussionsGrid .slick-headerrow-columns {
  position: relative;
  right: 0px;
  left: 0px;
  cursor: default;
  overflow: hidden;
  width: 100%;
  white-space: normal;
  height: 25px;
  background: #D9ECFF;
  border-right: 1px solid silver;
  border-left: 1px solid silver;
  border-top: 0px;
  border-bottom: 1px solid #000000;
}
.s-Communication-RemarksGrid .slick-header-column.ui-state-default,
.s-Communication-DiscussionsGrid .slick-header-column.ui-state-default {
  position: relative;
  display: inline-block;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  height: 100%;
  line-height: 14px;
  font-size: 12px;
  margin: 0;
  padding: 4px;
  border-right: 1px solid silver;
  border-left: 0px;
  border-top: 1px solid silver;
  border-bottom: 0px;
  float: left;
}
.s-Communication-RemarksGrid .slick-headerrow-column.ui-state-default,
.s-Communication-DiscussionsGrid .slick-headerrow-column.ui-state-default {
  padding: 4px;
}
.s-Communication-RemarksGrid .slick-header-column-sorted,
.s-Communication-DiscussionsGrid .slick-header-column-sorted {
  font-style: italic;
}
.s-Communication-RemarksGrid .slick-sort-indicator,
.s-Communication-DiscussionsGrid .slick-sort-indicator {
  display: inline-block;
  width: 8px;
  height: 5px;
  margin-left: 4px;
  margin-top: 6px;
  float: left;
}
.s-Communication-RemarksGrid .slick-resizable-handle,
.s-Communication-DiscussionsGrid .slick-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  cursor: col-resize;
  width: 4px;
  right: 0px;
  top: 0;
  height: 100%;
}
.s-Communication-RemarksGrid .slick-sortable-placeholder,
.s-Communication-DiscussionsGrid .slick-sortable-placeholder {
  background: silver;
}
.s-Communication-RemarksGrid .slick-cell,
.s-Communication-DiscussionsGrid .slick-cell,
.s-Communication-RemarksGrid .slick-headerrow-column,
.s-Communication-DiscussionsGrid .slick-headerrow-column {
  position: absolute;
  line-height: 16px;
  font-size: 12px;
  margin: 0;
  padding: 4px;
  border-right: 1px dotted silver;
  border-left: 1px solid silver;
  border-top: 0;
  border-bottom: 1px solid silver;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  vertical-align: middle;
  z-index: 1;
  white-space: nowrap;
  cursor: default;
}
.s-Communication-RemarksGrid .slick-cell.highlighted,
.s-Communication-DiscussionsGrid .slick-cell.highlighted {
  background: black;
  background: rgba(0, 0, 255, 0.2);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.s-Communication-RemarkCategoriesDialog > .size {
  width: 650px;
}
.s-Communication-RemarkCategoriesDialog .caption {
  width: 150px;
}
.s-CashCall-CashCallRequestItemsGrid .slick-header-columns,
.s-CashCall-CashCallPayableItemsGrid .slick-header-columns,
.s-CashCall-CashCallPayablesAnnualGrid .slick-header-columns,
.s-CashCall-CashCallGgmSummariesItemGrid .slick-header-columns {
  height: 50px !important;
  overflow: hidden;
}
.s-CashCall-CashCallBriefsDialog > .size {
  width: 650px;
}
.s-CashCall-CashCallBriefsDialog .caption {
  width: 150px;
}
.s-CashCall-CashCallCircularsDialog > .size {
  width: 650px;
}
.s-CashCall-CashCallCircularsDialog .caption {
  width: 150px;
}
.s-CashCall-CashCallSchedulesDialog > .size {
  width: 650px;
}
.s-CashCall-CashCallSchedulesDialog .caption {
  width: 150px;
}
.s-CashCall-CashCallsDialog > .size {
  width: 650px;
}
.s-CashCall-CashCallsDialog .caption {
  width: 150px;
}
.s-CashCall-CashCallScheduleActivitiesDialog > .size {
  width: 650px;
}
.s-CashCall-CashCallScheduleActivitiesDialog .caption {
  width: 150px;
}
.s-CashCall-CashCallCalendarsDialog > .size {
  width: 650px;
}
.s-CashCall-CashCallCalendarsDialog .caption {
  width: 150px;
}
.s-CashCall-CashCallBriefCashComRecommendationsDialog > .size {
  width: 650px;
}
.s-CashCall-CashCallBriefCashComRecommendationsDialog .caption {
  width: 150px;
}
.s-CashCall-CashCallBriefNuimsReviewsDialog > .size {
  width: 650px;
}
.s-CashCall-CashCallBriefNuimsReviewsDialog .caption {
  width: 150px;
}
.s-CashCall-CashCallCashComRecommendationsDialog > .size {
  width: 650px;
}
.s-CashCall-CashCallCashComRecommendationsDialog .caption {
  width: 150px;
}
.s-CashCall-CashCallNuimsReviewsDialog > .size {
  width: 650px;
}
.s-CashCall-CashCallNuimsReviewsDialog .caption {
  width: 150px;
}
.s-CashCall-CashCallOperatorProposalDialog > .size {
  width: 650px;
}
.s-CashCall-CashCallOperatorProposalDialog .caption {
  width: 150px;
}
.s-CashCall-CashCallSubcomRecomendationsDialog > .size {
  width: 650px;
}
.s-CashCall-CashCallSubcomRecomendationsDialog .caption {
  width: 150px;
}
.s-CashCall-CashCallRequestsDialog > .size {
  width: 650px;
}
.s-CashCall-CashCallRequestsDialog .caption {
  width: 150px;
}
.s-CashCall-CashCallOperatorRequestsDialog > .size {
  width: 650px;
}
.s-CashCall-CashCallOperatorRequestsDialog .caption {
  width: 150px;
}
.s-CashCall-CashCallRequestItemsDialog > .size {
  width: 650px;
}
.s-CashCall-CashCallRequestItemsDialog .caption {
  width: 150px;
}
.s-CashCall-CashCallRequestItemsMasterDialog > .size {
  width: 650px;
}
.s-CashCall-CashCallRequestItemsMasterDialog .caption {
  width: 150px;
}
.s-CashCall-CashCallPaymentDataDialog > .size {
  width: 650px;
}
.s-CashCall-CashCallPaymentDataDialog .caption {
  width: 150px;
}
.s-CashCall-CashCallPaymentDataDialog > .size {
  width: 650px;
}
.s-CashCall-CashCallPaymentDataDialog .caption {
  width: 150px;
}
.s-CashCall-CashCallFincomCollationDialog > .size {
  width: 650px;
}
.s-CashCall-CashCallFincomCollationDialog .caption {
  width: 150px;
}
@media print {
  .new-page {
    page-break-before: always;
  }
}
.slick-header {
  width: 100% !important;
}
.s-Budget-WellsAllGrid .slick-header-columns,
.s-Budget-WellsGrid .slick-header-columns,
.s-Budget-BudgetPreviewGrid .slick-header-columns,
.s-Budget-NonRigWorkOverCostElementsGrid .slick-header-columns,
.s-Budget-WellCostElementsGrid .slick-header-columns,
.s-Budget-SharedCostsGrid .slick-header-columns,
.s-Budget-SharedCostAllocationsGrid .slick-header-columns,
.s-Budget-ReservesGrid .slick-header-columns,
.s-Budget-VesselSchedulesGrid .slick-header-columns,
.s-Budget-PADWorkProgrammesGrid .slick-header-columns,
.s-Budget-BudgetHistoricTemplateGrid .slick-header-columns,
.s-Budget-AffiliateCostGrid .slick-header-columns,
.s-Budget-MajorProjectGrid .slick-header-columns,
.s-Budget-RiglessActivityGrid .slick-header-columns,
.s-Budget-DecarbonizationMonetizationPlGrid .slick-header-columns,
.s-Budget-WellSummaryGrid .slick-header-columns,
.s-Budget-HrSummariesGrid .slick-header-columns,
.s-Budget-WellSchedulesGrid .slick-header-columns,
.s-Budget-StudiesGrid .slick-header-columns {
  height: 35px !important;
  overflow: hidden;
}
.s-Budget-GeneralWorkProgrammesGrid .slick-header-columns,
.s-Budget-GroupedGeneralWorkProgrammesGrid .slick-header-columns,
.s-Budget-ExpenditureBreakdownsGrid .slick-header-columns,
.s-Budget-WellCostsGrid .slick-header-columns,
.s-Budget-WellCostsNonRigWorkGrid .slick-header-columns,
.s-Budget-ProjectSummariesGrid .slick-header-columns,
.s-Budget-RiglessSummaryGrid .slick-header-columns {
  height: 50px !important;
  overflow: hidden;
}
.s-Budget-ExpenditureBreakdownsGrid .slick-header-columns,
.s-Budget-WellCostElementsGrid .slick-header-columns,
.s-Budget-NonRigWorkOverCostElementsGrid .slick-header-columns,
.s-Budget-ExpenditureBreakdownsGrid .slick-headerrow-columns,
.s-Budget-WellCostElementsGrid .slick-headerrow-columns,
.s-Budget-NonRigWorkOverCostElementsGrid .slick-headerrow-columns {
  border: hidden;
  padding: 0px;
}
.s-Budget-BTFundingTranchesGrid {
  padding: 6px;
}
.tab-budget {
  background-color: #D7F0F1;
}
.inactive-tab {
  background-color: #D7F0F1;
}
.comment-tab {
  background-color: #f0f5e9;
}
.tab-cashcall {
  background-color: #D7F0F1;
}
.tab-performance {
  background-color: #D7F0F1;
}
.financial {
  background-color: lightgoldenrodyellow;
}
.non-financial {
  background-color: antiquewhite;
}
.bcppro-hide {
  display: none;
}
.ui-tabs .ui-tabs-nav .ui-state-active {
  background: #fff;
}
.ui-tabs .ui-tabs-nav .ui-state-active .non-financial,
.ui-tabs .ui-tabs-nav .ui-state-active .financial {
  background: #fff;
}
.ui-tabs .ui-tabs-nav li {
  border-top: 3px solid #1a7d2d;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  border-top: 3px solid #fbe35f;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active a {
  color: #000;
}
.ui-tabs .ui-tabs-nav li a {
  font-size: 11px;
  font-weight: 600;
}
.budgetdata {
  margin-left: 2px;
  margin-right: 2px;
}
.panel-holder {
  position: absolute;
  height: auto;
  display: block;
  bottom: 0px;
  left: 0px;
  right: 0px;
}
.panel-holder-call-circular {
  top: 120px;
}
.panel-grid {
  position: relative;
  height: 100%;
  min-height: 90%;
  display: block;
  top: 0px;
  bottom: 0px;
  margin: 0;
  padding: 6px;
}
.panel-tab-holder {
  position: absolute;
  height: auto;
  display: block;
  bottom: 0px;
  left: 0px;
  right: 0px;
  border: 1px solid #c0c0c0;
  padding: 6px;
}
.panel-tab-grid {
  position: absolute;
  height: auto;
  display: block;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding: 6px;
}
.editbutton {
  font-weight: bold;
  color: black;
}
.button-import-previous-year span.button-inner {
  background-image: url('data: image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACESURBVDhPY6AZEE3bbyOacmAVGAPZUGHiwagBDAzCqQeiRFMP/AdhEBsqTDwg2wDhlINOQGf/hmmGY6AYSA6qDD8QTd2fiWEAUAwqTRwQST0wCaYZxIYKkwBCVzGLpuzfBsIgNlSUNCCYtpsfhKFc/AAe50RiqDYEwKYIH4ZqoxQwMAAA27CKwaoryyoAAAAASUVORK5CYII=');
}
.s-RemarksEditor {
  border: 1px solid #ccc;
  border-radius: 4px;
}
.s-RemarksEditor ul {
  padding: 0;
  min-height: 110px;
  overflow-y: auto;
  list-style: none;
}
.s-RemarksEditor li {
  margin: 10px;
  border-radius: 4px;
  border: 1px solid #C3C2C2;
  background-color: #F5E7DC;
  padding: 8px;
  position: relative;
}
.s-RemarksEditor .note-text {
  padding-right: 24px;
  display: block;
}
.s-RemarksEditor .note-delete {
  background-image: url('../serenity/images/delete2.png');
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  right: 6px;
  top: 6px;
  opacity: 0.4;
}
.s-RemarksEditor .note-delete:hover {
  opacity: 1;
}
.s-RemarksEditor .note-date {
  margin-top: 6px;
  display: block;
  text-align: right;
  color: #2a4084;
  font-style: italic;
}
.s-RemarksEditor .s-Toolbar {
  background-color: #eee;
  padding: 4px;
}
.s-Budget-AnnualBudgetsDialog > .size {
  width: 650px;
}
.s-Budget-AnnualBudgetsDialog .caption {
  width: 150px;
}
.s-Budget-SwotsDialog > .size {
  width: 650px;
}
.s-Budget-SwotsDialog .caption {
  width: 150px;
}
.s-Budget-BudgetAssumptionsDialog > .size {
  width: 650px;
}
.s-Budget-BudgetAssumptionsDialog .caption {
  width: 150px;
}
.s-Budget-SeismicActivitiesDialog > .size {
  width: 650px;
}
.s-Budget-SeismicActivitiesDialog .caption {
  width: 150px;
}
.s-Budget-ReservesDialog > .size {
  width: 650px;
}
.s-Budget-ReservesDialog .caption {
  width: 150px;
}
.s-Budget-WellCostsDialog > .size {
  width: 650px;
}
.s-Budget-WellCostsDialog .caption {
  width: 450px;
}
.s-Budget-WellCostElementsDialog > .size {
  width: 650px;
}
.s-Budget-WellCostElementsDialog .caption {
  width: 150px;
}
.s-Budget-WellCostsFiveYearMtpDialog > .size {
  width: 650px;
}
.s-Budget-WellCostsFiveYearMtpDialog .caption {
  width: 150px;
}
.s-Budget-WellCostsNonRigWorkDialog > .size {
  width: 650px;
}
.s-Budget-WellCostsNonRigWorkDialog .caption {
  width: 150px;
}
.s-Budget-WellCostsNonRigWorkFiveYearMtpDialog > .size {
  width: 650px;
}
.s-Budget-WellCostsNonRigWorkFiveYearMtpDialog .caption {
  width: 150px;
}
.s-Budget-WellCostsFiveYearWellCostElementsDialog > .size {
  width: 650px;
}
.s-Budget-WellCostsFiveYearWellCostElementsDialog .caption {
  width: 150px;
}
.s-Budget-ProductionDialog > .size {
  width: 650px;
}
.s-Budget-ProductionDialog .caption {
  width: 150px;
}
.s-Budget-GasUtilizationDialog > .size {
  width: 650px;
}
.s-Budget-GasUtilizationDialog .caption {
  width: 150px;
}
.s-Budget-ProjectSummariesDialog > .size {
  width: 650px;
}
.s-Budget-ProjectSummariesDialog .caption {
  width: 150px;
}
.s-Budget-RigSequencesDialog > .size {
  width: 650px;
}
.s-Budget-RigSequencesDialog .caption {
  width: 150px;
}
.s-Budget-VesselSchedulesDialog > .size {
  width: 650px;
}
.s-Budget-VesselSchedulesDialog .caption {
  width: 150px;
}
.s-Budget-HrSummariesDialog > .size {
  width: 650px;
}
.s-Budget-HrSummariesDialog .caption {
  width: 150px;
}
.s-Budget-SharedCostsDialog > .size {
  width: 650px;
}
.s-Budget-SharedCostsDialog .caption {
  width: 150px;
}
.s-Budget-SharedCostAllocationsDialog > .size {
  width: 650px;
}
.s-Budget-SharedCostAllocationsDialog .caption {
  width: 150px;
}
.s-Budget-PADWorkProgrammesDialog > .size {
  width: 650px;
}
.s-Budget-PADWorkProgrammesDialog .caption {
  width: 150px;
}
.s-Budget-GeneralWorkProgrammesDialog > .size {
  width: 650px;
}
.s-Budget-GeneralWorkProgrammesDialog .caption {
  width: 150px;
}
.s-Budget-ExpenditureBreakdownsDialog > .size {
  width: 650px;
}
.s-Budget-ExpenditureBreakdownsDialog .caption {
  width: 150px;
}
.s-Budget-OperatorProposalsDialog > .size {
  width: 650px;
}
.s-Budget-OperatorProposalsDialog .caption {
  width: 150px;
}
.s-Budget-NonRigWorkOverCostElementsDialog > .size {
  width: 650px;
}
.s-Budget-NonRigWorkOverCostElementsDialog .caption {
  width: 150px;
}
.s-Budget-ResponsiblePartyOperatorsDialog > .size {
  width: 650px;
}
.s-Budget-ResponsiblePartyOperatorsDialog .caption {
  width: 150px;
}
.s-Budget-CashCallEquitySharesDialog > .size {
  width: 650px;
}
.s-Budget-CashCallEquitySharesDialog .caption {
  width: 150px;
}
.s-Budget-ExcelTemplatesDialog > .size {
  width: 650px;
}
.s-Budget-ExcelTemplatesDialog .caption {
  width: 150px;
}
.s-Budget-BudgetData_ExcelTemplatesDialog > .size {
  width: 650px;
}
.s-Budget-BudgetData_ExcelTemplatesDialog .caption {
  width: 150px;
}
.s-Budget-AgreementTypesDialog > .size {
  width: 650px;
}
.s-Budget-AgreementTypesDialog .caption {
  width: 150px;
}
.s-Budget-BlocksDialog > .size {
  width: 650px;
}
.s-Budget-BlocksDialog .caption {
  width: 150px;
}
.s-Budget-BudgetTypesDialog > .size {
  width: 650px;
}
.s-Budget-BudgetTypesDialog .caption {
  width: 150px;
}
.s-Budget-BriefTypeDialog > .size {
  width: 650px;
}
.s-Budget-BriefTypeDialog .caption {
  width: 150px;
}
.s-Budget-BudgetTypesDialog > .size {
  width: 650px;
}
.s-Budget-BudgetTypesDialog .caption {
  width: 150px;
}
.s-Budget-CommitteesDialog > .size {
  width: 650px;
}
.s-Budget-CommitteesDialog .caption {
  width: 150px;
}
.s-Budget-YearsDialog > .size {
  width: 650px;
}
.s-Budget-YearsDialog .caption {
  width: 150px;
}
.s-Budget-YearsDialog > .size {
  width: 650px;
}
.s-Budget-YearsDialog .caption {
  width: 150px;
}
.s-Budget-BudgetAssumptionsDialog > .size {
  width: 650px;
}
.s-Budget-BudgetAssumptionsDialog .caption {
  width: 150px;
}
.s-Budget-YearsDialog > .size {
  width: 650px;
}
.s-Budget-YearsDialog .caption {
  width: 150px;
}
.s-Budget-AgreementTypeDialog > .size {
  width: 650px;
}
.s-Budget-AgreementTypeDialog .caption {
  width: 150px;
}
.s-Budget-EmploymentTypeDialog > .size {
  width: 650px;
}
.s-Budget-EmploymentTypeDialog .caption {
  width: 150px;
}
.s-Budget-NationalityDialog > .size {
  width: 650px;
}
.s-Budget-NationalityDialog .caption {
  width: 150px;
}
.s-Budget-FieldsDialog > .size {
  width: 650px;
}
.s-Budget-FieldsDialog .caption {
  width: 150px;
}
.s-Budget-OmlDialog > .size {
  width: 650px;
}
.s-Budget-OmlDialog .caption {
  width: 150px;
}
.s-Budget-ProductTypesDialog > .size {
  width: 650px;
}
.s-Budget-ProductTypesDialog .caption {
  width: 150px;
}
.s-Budget-ReservesDialog > .size {
  width: 650px;
}
.s-Budget-ReservesDialog .caption {
  width: 150px;
}
.s-Budget-UnitsDialog > .size {
  width: 650px;
}
.s-Budget-UnitsDialog .caption {
  width: 150px;
}
.s-Budget-ActivityCodesDialog > .size {
  width: 650px;
}
.s-Budget-ActivityCodesDialog .caption {
  width: 150px;
}
.s-Budget-ContractApprovingBodiesDialog > .size {
  width: 650px;
}
.s-Budget-ContractApprovingBodiesDialog .caption {
  width: 150px;
}
.s-Budget-ContractStatusesDialog > .size {
  width: 650px;
}
.s-Budget-ContractStatusesDialog .caption {
  width: 150px;
}
.s-Budget-MajorDriverCodesDialog > .size {
  width: 650px;
}
.s-Budget-MajorDriverCodesDialog .caption {
  width: 150px;
}
.s-Budget-ProductsDialog > .size {
  width: 650px;
}
.s-Budget-ProductsDialog .caption {
  width: 150px;
}
.s-Budget-ProductTypesDialog > .size {
  width: 650px;
}
.s-Budget-ProductTypesDialog .caption {
  width: 150px;
}
.s-Budget-ProjectStatusDialog > .size {
  width: 650px;
}
.s-Budget-ProjectStatusDialog .caption {
  width: 150px;
}
.s-Budget-RigsDialog > .size {
  width: 650px;
}
.s-Budget-RigsDialog .caption {
  width: 150px;
}
.s-Budget-RigTypesDialog > .size {
  width: 650px;
}
.s-Budget-RigTypesDialog .caption {
  width: 150px;
}
.s-Budget-UnitCodesDialog > .size {
  width: 650px;
}
.s-Budget-UnitCodesDialog .caption {
  width: 150px;
}
.s-Budget-WellsDialog > .size {
  width: 650px;
}
.s-Budget-WellsDialog .caption {
  width: 150px;
}
.s-Budget-WellTypesDialog > .size {
  width: 650px;
}
.s-Budget-WellTypesDialog .caption {
  width: 150px;
}
.s-Budget-ContractApprovingBodiesDialog > .size {
  width: 650px;
}
.s-Budget-ContractApprovingBodiesDialog .caption {
  width: 150px;
}
.s-Budget-ContractStatusesDialog > .size {
  width: 650px;
}
.s-Budget-ContractStatusesDialog .caption {
  width: 150px;
}
.s-Budget-FundingTrancheCodesDialog > .size {
  width: 650px;
}
.s-Budget-FundingTrancheCodesDialog .caption {
  width: 150px;
}
.s-Budget-FundingTranchesDialog > .size {
  width: 650px;
}
.s-Budget-FundingTranchesDialog .caption {
  width: 150px;
}
.s-Budget-ProjectsDialog > .size {
  width: 650px;
}
.s-Budget-ProjectsDialog .caption {
  width: 150px;
}
.s-Budget-ProjectStatusDialog > .size {
  width: 650px;
}
.s-Budget-ProjectStatusDialog .caption {
  width: 150px;
}
.s-Budget-WellCostsDialog > .size {
  width: 650px;
}
.s-Budget-WellCostsDialog .caption {
  width: 150px;
}
.s-Budget-ExplorationWellCostsDialog > .size {
  width: 650px;
}
.s-Budget-ExplorationWellCostsDialog .caption {
  width: 150px;
}
.s-Budget-ProductionWellCostsDialog > .size {
  width: 650px;
}
.s-Budget-ProductionWellCostsDialog .caption {
  width: 150px;
}
.s-Budget-SharedCostAllocationsDialog > .size {
  width: 650px;
}
.s-Budget-SharedCostAllocationsDialog .caption {
  width: 150px;
}
.s-Budget-ContractTypesDialog > .size {
  width: 650px;
}
.s-Budget-ContractTypesDialog .caption {
  width: 150px;
}
.s-Budget-ExpenditureBreakdownDialog > .size {
  width: 650px;
}
.s-Budget-ExpenditureBreakdownDialog .caption {
  width: 150px;
}
.s-Budget-ProgrammeTypesDialog > .size {
  width: 650px;
}
.s-Budget-ProgrammeTypesDialog .caption {
  width: 150px;
}
.s-Budget-PublishingStatusesDialog > .size {
  width: 650px;
}
.s-Budget-PublishingStatusesDialog .caption {
  width: 150px;
}
.s-Budget-UAPCodeTypesDialog > .size {
  width: 650px;
}
.s-Budget-UAPCodeTypesDialog .caption {
  width: 150px;
}
.s-Budget-UnitCodesDialog > .size {
  width: 650px;
}
.s-Budget-UnitCodesDialog .caption {
  width: 150px;
}
.s-Budget-MonthsDialog > .size {
  width: 650px;
}
.s-Budget-MonthsDialog .caption {
  width: 150px;
}
.s-Budget-FundingTrancheCodesDialog > .size {
  width: 650px;
}
.s-Budget-FundingTrancheCodesDialog .caption {
  width: 150px;
}
.s-Budget-BudgetStatusesDialog > .size {
  width: 650px;
}
.s-Budget-BudgetStatusesDialog .caption {
  width: 150px;
}
.s-Budget-FieldTerrainsDialog > .size {
  width: 650px;
}
.s-Budget-FieldTerrainsDialog .caption {
  width: 150px;
}
.s-Budget-SeismicActivitiesDialog > .size {
  width: 650px;
}
.s-Budget-SeismicActivitiesDialog .caption {
  width: 150px;
}
.s-Budget-WellClassificationsDialog > .size {
  width: 650px;
}
.s-Budget-WellClassificationsDialog .caption {
  width: 150px;
}
.s-Budget-BudgetThresholdStatusesDialog > .size {
  width: 650px;
}
.s-Budget-BudgetThresholdStatusesDialog .caption {
  width: 150px;
}
.s-Budget-VesselActivitiesDialog > .size {
  width: 650px;
}
.s-Budget-VesselActivitiesDialog .caption {
  width: 150px;
}
.s-Budget-VesselTypesDialog > .size {
  width: 650px;
}
.s-Budget-VesselTypesDialog .caption {
  width: 150px;
}
.s-Budget-ProjectTypesDialog > .size {
  width: 650px;
}
.s-Budget-ProjectTypesDialog .caption {
  width: 150px;
}
.s-Budget-AnnualBudgetStatusesDialog > .size {
  width: 650px;
}
.s-Budget-AnnualBudgetStatusesDialog .caption {
  width: 150px;
}
.s-Budget-BriefStatusesDialog > .size {
  width: 650px;
}
.s-Budget-BriefStatusesDialog .caption {
  width: 150px;
}
.s-Budget-TemplateStatusesDialog > .size {
  width: 650px;
}
.s-Budget-TemplateStatusesDialog .caption {
  width: 150px;
}
.s-Budget-PadClustersDialog > .size {
  width: 650px;
}
.s-Budget-PadClustersDialog .caption {
  width: 150px;
}
.s-Budget-PadCommunitiesDialog > .size {
  width: 650px;
}
.s-Budget-PadCommunitiesDialog .caption {
  width: 150px;
}
.s-Budget-PadProgramTypesDialog > .size {
  width: 650px;
}
.s-Budget-PadProgramTypesDialog .caption {
  width: 150px;
}
.s-Budget-OperatorStatusesDialog > .size {
  width: 650px;
}
.s-Budget-OperatorStatusesDialog .caption {
  width: 150px;
}
.s-Budget-UAPCodeLevelsDialog > .size {
  width: 650px;
}
.s-Budget-UAPCodeLevelsDialog .caption {
  width: 150px;
}
.s-Budget-UAPCodesDialog > .size {
  width: 650px;
}
.s-Budget-UAPCodesDialog .caption {
  width: 150px;
}
.s-Budget-UAPCodeStatusesDialog > .size {
  width: 650px;
}
.s-Budget-UAPCodeStatusesDialog .caption {
  width: 150px;
}
.s-Budget-AccessPermissionsDialog > .size {
  width: 650px;
}
.s-Budget-AccessPermissionsDialog .caption {
  width: 150px;
}
.s-Budget-CommitteeTypesDialog > .size {
  width: 650px;
}
.s-Budget-CommitteeTypesDialog .caption {
  width: 150px;
}
.s-Budget-SeismicActivityDescriptionsDialog > .size {
  width: 650px;
}
.s-Budget-SeismicActivityDescriptionsDialog .caption {
  width: 150px;
}
.s-Budget-VesselsDialog > .size {
  width: 650px;
}
.s-Budget-VesselsDialog .caption {
  width: 150px;
}
.s-Budget-WellCostElementGroupsDialog > .size {
  width: 650px;
}
.s-Budget-WellCostElementGroupsDialog .caption {
  width: 150px;
}
.s-Budget-WellCostElementTypesDialog > .size {
  width: 650px;
}
.s-Budget-WellCostElementTypesDialog .caption {
  width: 150px;
}
.s-Budget-WellCostsElementDetailsDialog > .size {
  width: 650px;
}
.s-Budget-WellCostsElementDetailsDialog .caption {
  width: 150px;
}
.s-Budget-SharedCostAllocationTypesDialog > .size {
  width: 650px;
}
.s-Budget-SharedCostAllocationTypesDialog .caption {
  width: 150px;
}
.s-Budget-CallCircularStatusesDialog > .size {
  width: 650px;
}
.s-Budget-CallCircularStatusesDialog .caption {
  width: 150px;
}
.s-Budget-FundingTrancheSourcesDialog > .size {
  width: 650px;
}
.s-Budget-FundingTrancheSourcesDialog .caption {
  width: 150px;
}
.s-Budget-FundingTrancheTypesDialog > .size {
  width: 650px;
}
.s-Budget-FundingTrancheTypesDialog .caption {
  width: 150px;
}
.s-Budget-BlockStatusesDialog > .size {
  width: 650px;
}
.s-Budget-BlockStatusesDialog .caption {
  width: 150px;
}
.s-Budget-UapAccessPermissionsDialog > .size {
  width: 650px;
}
.s-Budget-UapAccessPermissionsDialog .caption {
  width: 150px;
}
.s-Budget-UAPAccessPermissionsDialog > .size {
  width: 650px;
}
.s-Budget-UAPAccessPermissionsDialog .caption {
  width: 150px;
}
.s-Budget-UnitsOfMeasureDialog > .size {
  width: 650px;
}
.s-Budget-UnitsOfMeasureDialog .caption {
  width: 150px;
}
.s-Budget-UserStatusesDialog > .size {
  width: 650px;
}
.s-Budget-UserStatusesDialog .caption {
  width: 150px;
}
.s-Budget-TemplatesDialog > .size {
  width: 650px;
}
.s-Budget-TemplatesDialog .caption {
  width: 150px;
}
.s-Budget-CountryDialog > .size {
  width: 650px;
}
.s-Budget-CountryDialog .caption {
  width: 150px;
}
.s-Budget-BudgetThresholdsFundingTranchesDialog > .size {
  width: 650px;
}
.s-Budget-BudgetThresholdsFundingTranchesDialog .caption {
  width: 150px;
}
.s-Budget-BTFundingTranchesDialog > .size {
  width: 650px;
}
.s-Budget-BTFundingTranchesDialog .caption {
  width: 150px;
}
.s-Budget-CashCallStatusesDialog > .size {
  width: 650px;
}
.s-Budget-CashCallStatusesDialog .caption {
  width: 150px;
}
.s-Budget-PerformanceStatusesDialog > .size {
  width: 650px;
}
.s-Budget-PerformanceStatusesDialog .caption {
  width: 150px;
}
.s-Budget-MajorDriversDialog > .size {
  width: 650px;
}
.s-Budget-MajorDriversDialog .caption {
  width: 150px;
}
.s-Budget-BudgetSummaryDialog > .size {
  width: 650px;
}
.s-Budget-BudgetSummaryDialog .caption {
  width: 150px;
}
.s-Budget-BudgetsDialog > .size {
  width: 650px;
}
.s-Budget-BudgetsDialog .caption {
  width: 200px;
}
.s-Budget-CashCallsDialog > .size {
  width: 650px;
}
.s-Budget-CashCallsDialog .caption {
  width: 150px;
}
.s-Budget-PerformancesDialog > .size {
  width: 650px;
}
.s-Budget-PerformancesDialog .caption {
  width: 150px;
}
.s-Budget-SecurityRolesDialog > .size {
  width: 650px;
}
.s-Budget-SecurityRolesDialog .caption {
  width: 150px;
}
.s-Budget-ApprovedBudgetsDialog > .size {
  width: 650px;
}
.s-Budget-ApprovedBudgetsDialog .caption {
  width: 150px;
}
.s-Budget-MacomApprovedBudgetsDialog > .size {
  width: 650px;
}
.s-Budget-MacomApprovedBudgetsDialog .caption {
  width: 150px;
}
.s-Budget-OpcomApprovedBudgetsDialog > .size {
  width: 650px;
}
.s-Budget-OpcomApprovedBudgetsDialog .caption {
  width: 150px;
}
.s-Budget-ApprovedBudgetStatusesDialog > .size {
  width: 650px;
}
.s-Budget-ApprovedBudgetStatusesDialog .caption {
  width: 150px;
}
.s-Budget-BudgetPreviewStatusesDialog > .size {
  width: 650px;
}
.s-Budget-BudgetPreviewStatusesDialog .caption {
  width: 150px;
}
.s-Budget-MacomReviewStatusesDialog > .size {
  width: 650px;
}
.s-Budget-MacomReviewStatusesDialog .caption {
  width: 150px;
}
.s-Budget-NuimsPlanningReviewStatusesDialog > .size {
  width: 650px;
}
.s-Budget-NuimsPlanningReviewStatusesDialog .caption {
  width: 150px;
}
.s-Budget-OpcomReviewStatusesDialog > .size {
  width: 650px;
}
.s-Budget-OpcomReviewStatusesDialog .caption {
  width: 150px;
}
.s-Budget-OperatorProposalStatusesDialog > .size {
  width: 650px;
}
.s-Budget-OperatorProposalStatusesDialog .caption {
  width: 150px;
}
.s-Budget-SubcomRecommendationStatusesDialog > .size {
  width: 650px;
}
.s-Budget-SubcomRecommendationStatusesDialog .caption {
  width: 150px;
}
.s-Budget-TecomRecommendationStatusesDialog > .size {
  width: 650px;
}
.s-Budget-TecomRecommendationStatusesDialog .caption {
  width: 150px;
}
.s-Budget-FincomStatusesDialog > .size {
  width: 650px;
}
.s-Budget-FincomStatusesDialog .caption {
  width: 150px;
}
.s-Budget-RealignedBudgetStatusesDialog > .size {
  width: 650px;
}
.s-Budget-RealignedBudgetStatusesDialog .caption {
  width: 150px;
}
.s-Budget-BudgetProfileStatusesDialog > .size {
  width: 650px;
}
.s-Budget-BudgetProfileStatusesDialog .caption {
  width: 120px;
}
.s-Budget-BudgetProfilesDialog > .size {
  width: 650px;
}
.s-Budget-BudgetProfilesDialog .caption {
  width: 150px;
}
.s-Budget-BudgetTemplateProcessesDialog > .size {
  width: 650px;
}
.s-Budget-BudgetTemplateProcessesDialog .caption {
  width: 200px;
}
.s-Budget-BudgetPreviewDialog > .size {
  width: 650px;
}
.s-Budget-BudgetPreviewDialog .caption {
  width: 150px;
}
.s-Budget-NonRigWorkOverCostsDialog > .size {
  width: 650px;
}
.s-Budget-NonRigWorkOverCostsDialog .caption {
  width: 150px;
}
.s-Budget-WorkflowButtonSequenceTypesDialog > .size {
  width: 650px;
}
.s-Budget-WorkflowButtonSequenceTypesDialog .caption {
  width: 150px;
}
.s-Budget-ButtonStatusesDialog > .size {
  width: 650px;
}
.s-Budget-ButtonStatusesDialog .caption {
  width: 150px;
}
.s-Budget-PadTypesDialog > .size {
  width: 650px;
}
.s-Budget-PadTypesDialog .caption {
  width: 150px;
}
.s-Budget-GasUtilizationTypesDialog > .size {
  width: 650px;
}
.s-Budget-GasUtilizationTypesDialog .caption {
  width: 150px;
}
.s-Administration-IssueTrackingIssuesGrid,
.s-Administration-IssueTrackingFeedbackGrid,
.s-Administration-IssueTrackingChangeRequestGrid,
.s-Administration-NotificationTemplatesGrid,
.s-Administration-BudgetAutoTestGrid,
.s-Administration-CashCallAutoTestGrid,
.s-Administration-PerformanceMonthAutoTestGrid,
.s-Administration-PerformanceQuarterAutoTestGrid,
.s-Administration-SiteNotificationsGrid,
.s-Budget-AnnualBudgetsGrid,
.s-Budget-AnnualBudgetsAllGrid,
.s-Budget-BudgetProfilesABGrid,
.s-Budget-OperatorProposalsGrid,
.s-Budget-MACOMApprovalsGrid,
.s-Budget-OPCOMApprovalsGrid,
.s-Budget-ApprovedBudgetsGrid,
.s-Budget-FiveYearForecastsGrid,
.s-Budget-NUIMSPlanningReviewsGrid,
.s-Budget-SUBCOMRecommendationsGrid,
.s-Budget-SUBCOMRecommendationsAllGrid,
.s-Budget-TECOMRecommendationsGrid,
.s-Budget-BudgetProfilesGrid,
.s-Budget-BudgetProfilesAllGrid,
.s-Budget-BudgetsGrid,
.s-Budget-CallCircularsGrid,
.s-Budget-CallCircularsAllGrid,
.s-Budget-CallSchedulesGrid,
.s-Budget-CallScheduleCalendarsGrid,
.s-Budget-CallScheduleCalendarsAllGrid,
.s-Budget-BudgetThresholdsAllGrid,
.s-Budget-BudgetThresholdsGrid,
.s-Budget-BudgetThresholdBackupGrid,
.s-Budget-BTFundingTrancheBackupGrid,
.s-Budget-OperatorTemplatesGrid,
.s-Budget-TemplateCommitteeGrid,
.s-Budget-BudgetHistoricBriefGrid,
.s-Budget-BudgetHistoricTemplateGrid,
.s-Budget-BTFundingTranchesGrid,
.s-Budget-BTFundingTranchesAllGrid,
.s-Budget-BTFundingTrancheBreakdownsGrid,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid,
.s-Budget-CallScheduleCalendarsGrid,
.s-Budget-CallCircularsAllGrid,
.s-Budget-CallCircularsGrid,
.s-Budget-CallScheduleActivitiesGrid,
.s-Budget-CallSchedulesAllGrid,
.s-Budget-CallSchedulesGrid,
.s-Budget-SwotsGrid,
.s-Budget-BudgetAssumptionsGrid,
.s-Budget-SeismicActivitiesGrid,
.s-Budget-ReservesGrid,
.s-Budget-ProductionGrid,
.s-Budget-GasUtilizationGrid,
.s-Budget-RigSequencesGrid,
.s-Budget-VesselSchedulesGrid,
.s-Budget-HrSummariesGrid,
.s-Budget-SharedCostsGrid,
.s-Budget-SharedCostAllocationsGrid,
.s-Budget-GeneralWorkProgrammesGrid,
.s-Budget-ExpenditureBreakdownsGrid,
.s-Budget-WellCostsNonRigWorkGrid,
.s-Budget-NonRigWorkOverCostElementsGrid,
.s-Budget-WellCostsGrid,
.s-Budget-WellCostElementsGrid,
.s-Budget-ProjectSummariesGrid,
.s-Budget-PADWorkProgrammesGrid,
.s-Budget-RigSequencesGrid,
.s-Budget-BlocksGrid,
.s-Budget-CashCallEquitySharesGrid,
.s-Budget-FieldsGrid,
.s-Budget-FieldTerrainsGrid,
.s-Budget-FundingTranchesGrid,
.s-Budget-FundingTranchesAllGrid,
.s-Budget-MajorDriversGrid,
.s-Budget-BudgetData_ExcelTemplatesGrid,
.s-Budget-MyBudgetData_ExcelTemplatesGrid,
.s-Budget-ExcelTemplatesGrid,
.s-Budget-OperatorBlocksAllGrid,
.s-Budget-OperatorBlocksGrid,
.s-Budget-ProductsGrid,
.s-Budget-RigsGrid,
.s-Budget-SeismicActivityDescriptionsGrid,
.s-Budget-UAPCodeAccessPermissionsGrid,
.s-Budget-UAPCodesAllGrid,
.s-Budget-NUIMS_UAPCodesGrid,
.s-Budget-Operator_UAPCodesGrid,
.s-Budget-VesselsGrid,
.s-Budget-WellCostElementGroupsGrid,
.s-Budget-WellCostsElementDetailsGrid,
.s-Budget-WellCostsElementDetailsAllGrid,
.s-Budget-NonRigActivityTypesGrid,
.s-Budget-NonRigElementDetailsGrid,
.s-Budget-NonRigElementDetailsAllGrid,
.s-Budget-WellsAllGrid,
.s-Budget-WellsGrid,
.s-Budget-ProjectsGrid,
.s-Budget-ResponsiblePartyOperatorsGrid,
.s-Budget-ContractApprovingBodiesGrid,
.s-Budget-CountryGrid,
.s-Budget-FundingTrancheSourcesGrid,
.s-Budget-MonthsGrid,
.s-Budget-NationalityGrid,
.s-Budget-PadClustersGrid,
.s-Budget-PadCommunitiesGrid,
.s-Budget-SecurityRolesGrid,
.s-Budget-TemplatesGrid,
.s-Budget-TerrainsGrid,
.s-Budget-UAPAccessPermissionsGrid,
.s-Budget-UAPCodeLevelsGrid,
.s-Budget-UAPCodeGroupsGrid,
.s-Budget-UAPCodeGroupTitlesGrid,
.s-Budget-UnitsGrid,
.s-Budget-UnitsOfMeasureGrid,
.s-Budget-UnitsOfMeasureUsageGrid,
.s-Budget-VesselActivitiesGrid,
.s-Budget-WellClassificationsGrid,
.s-Budget-YearsGrid,
.s-Budget-AnnualBudgetStatusesGrid,
.s-Budget-ApprovedBudgetStatusesGrid,
.s-Budget-BudgetPreviewStatusesGrid,
.s-Budget-BudgetProfileStatusesGrid,
.s-Budget-BudgetStatusesGrid,
.s-Budget-BudgetThresholdStatusesGrid,
.s-Budget-ButtonStatusesGrid,
.s-Budget-CallCircularStatusesGrid,
.s-Budget-CashCallStatusesGrid,
.s-Budget-ContractStatusesGrid,
.s-Budget-FieldStatusesGrid,
.s-Budget-FincomStatusesGrid,
.s-Budget-MacomReviewStatusesGrid,
.s-Budget-NuimsPlanningReviewStatusesGrid,
.s-Budget-OpcomReviewStatusesGrid,
.s-Budget-OperatorProposalStatusesGrid,
.s-Budget-OperatorStatusesGrid,
.s-Budget-OwnershipStatusesGrid,
.s-Budget-PerformanceStatusesGrid,
.s-Budget-ProjectStatusGrid,
.s-Budget-RealignedBudgetStatusesGrid,
.s-Budget-SubcomRecommendationStatusesGrid,
.s-Budget-TecomRecommendationStatusesGrid,
.s-Budget-TemplateStatusesGrid,
.s-Budget-UAPCodeStatusesGrid,
.s-Budget-AgreementTypesGrid,
.s-Budget-BriefTypesGrid,
.s-Budget-BudgetTypesGrid,
.s-Budget-MeetingGrid,
.s-Budget-MeetingAgendaGrid,
.s-Budget-MeetingAgendaRelevantGrid,
.s-Budget-MeetingAgendaTypeGrid,
.s-Budget-MeetingDecisionGrid,
.s-Budget-MeetingDecisionRelevantGrid,
.s-Budget-MeetingLocationGrid,
.s-Budget-MeetingTypeGrid,
.s-Budget-FinancialDataGrid,
.s-Budget-WorkflowButtonSequenceTypesGrid,
.s-Budget-CommitteeTypesGrid,
.s-Budget-ContractTypesGrid,
.s-Budget-EmploymentTypeGrid,
.s-Budget-ExpenditureTypesGrid,
.s-Budget-FundingTrancheTypesGrid,
.s-Budget-GasUtilizationTypesGrid,
.s-Budget-PadProgramTypesGrid,
.s-Budget-PadTypesGrid,
.s-Budget-ProductTypesGrid,
.s-Budget-ProjectTypesGrid,
.s-Budget-RigTypesGrid,
.s-Budget-SharedCostAllocationTypesGrid,
.s-Budget-UAPCodeTypesGrid,
.s-Budget-VesselTypesGrid,
.s-Budget-WellCostElementTypesGrid,
.s-Budget-WellTypesGrid,
.s-Budget-BudgetPreviewGrid,
.s-Budget-FINCOMAppendixIGrid,
.s-Budget-FINCOMAppendixIIGrid,
.s-Budget-FINCOMCollationGrid,
.s-Budget-CallScheduleActionsGrid,
.s-CashCall-CashCallCalendarsGrid,
.s-CashCall-CashCallActivitiesGrid,
.s-CashCall-CashCallScheduleActivitiesGrid,
.s-CashCall-CashCallCircularsGrid,
.s-CashCall-CashCallCircularsAllGrid,
.s-CashCall-CashCallCalendarsGrid,
.s-CashCall-CashCallCalendarsAllGrid,
.s-CashCall-CashCallBriefsGrid,
.s-CashCall-CashCallCashComRecommendationsGrid,
.s-CashCall-CashCallMandatesGrid,
.s-CashCall-CashCallMeetingDayAttendancesGrid,
.s-CashCall-CashCallPayablesGrid,
.s-CashCall-CashCallsGrid,
.s-CashCall-CashCallsAllGrid,
.s-CashCall-CashCallsEPGrid,
.s-CashCall-CashCallsBDGGrid,
.s-CashCall-CashCallSchedulesGrid,
.s-CashCall-CashCallSchedulesAllGrid,
.s-CashCall-CashCallRequestsGrid,
.s-CashCall-CashCallRequestsEPGrid,
.s-CashCall-CashCallRequestItemsGrid,
.s-CashCall-CashCallUapCodeItemsGrid,
.s-CashCall-CashCallOperatorRequestsGrid,
.s-CashCall-CashCallNuimsReviewsGrid,
.s-CashCall-CashCallManagerJVReviewGrid,
.s-CashCall-CashCallCashComSubComReviewGrid,
.s-CashCall-CashCallFincomCollationGrid,
.s-CashCall-CashCallSubcomRecomendationsGrid,
.s-CashCall-CashCallEndorsementGrid,
.s-CashCall-CashCallGgmSummariesGrid,
.s-CashCall-CashCallGgmSummariesItemGrid,
.s-CashCall-CashCallPayablesGrid,
.s-CashCall-CashCallPayableItemsGrid,
.s-CashCall-CashCallPayableItemsAdjustedGrid,
.s-CashCall-CashCallPayablesAnnualGrid,
.s-CashCall-CashCallMandatesGrid,
.s-CashCall-CashCallPaymentConfirmationGrid,
.s-CashCall-CashCallPayableItemsEditor,
.s-CashCall-CashCallPaymentDataEditor,
.s-CashCall-CashCallPaymentDataGrid,
.s-Performance-PerformancesGrid,
.s-Performance-PerformancesAllGrid,
.s-Performance-PerformancesBDGGrid,
.s-Performance-PerformanceSchedulesGrid,
.s-Performance-PerformanceCallScheduleCalendarsGrid,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid,
.s-Performance-PerformanceCallScheduleActivitiesGrid,
.s-Performance-PerformanceCallScheduleActivitiesGrid,
.s-Performance-PerformanceCallCircularsGrid,
.s-Performance-PerformanceCallCircularsAllGrid,
.s-Performance-PerformanceMonthlyGrid,
.s-Performance-PerformanceQuarterlyGrid,
.s-Performance-PerformanceQuarterFourGrid,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid,
.s-Performance-PerformanceFinancialItemsGrid,
.s-Performance-PerformanceNonFinancialItemsGrid,
.s-Performance-PerformanceFinancialMonthItemsGrid,
.s-Performance-PerformanceNonFinancialMonthItemsGrid,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid,
.s-Common-DashboardWidgetGrid,
.s-Administration-BcPproExceptionsGrid {
  border: 1px solid #c0c0c0;
  margin: 0px;
  padding: 6px;
  overflow: hidden;
}
.s-Administration-IssueTrackingIssuesGrid .slick-pane-header,
.s-Administration-IssueTrackingFeedbackGrid .slick-pane-header,
.s-Administration-IssueTrackingChangeRequestGrid .slick-pane-header,
.s-Administration-NotificationTemplatesGrid .slick-pane-header,
.s-Administration-BudgetAutoTestGrid .slick-pane-header,
.s-Administration-CashCallAutoTestGrid .slick-pane-header,
.s-Administration-PerformanceMonthAutoTestGrid .slick-pane-header,
.s-Administration-PerformanceQuarterAutoTestGrid .slick-pane-header,
.s-Administration-SiteNotificationsGrid .slick-pane-header,
.s-Budget-AnnualBudgetsGrid .slick-pane-header,
.s-Budget-AnnualBudgetsAllGrid .slick-pane-header,
.s-Budget-BudgetProfilesABGrid .slick-pane-header,
.s-Budget-OperatorProposalsGrid .slick-pane-header,
.s-Budget-MACOMApprovalsGrid .slick-pane-header,
.s-Budget-OPCOMApprovalsGrid .slick-pane-header,
.s-Budget-ApprovedBudgetsGrid .slick-pane-header,
.s-Budget-FiveYearForecastsGrid .slick-pane-header,
.s-Budget-NUIMSPlanningReviewsGrid .slick-pane-header,
.s-Budget-SUBCOMRecommendationsGrid .slick-pane-header,
.s-Budget-SUBCOMRecommendationsAllGrid .slick-pane-header,
.s-Budget-TECOMRecommendationsGrid .slick-pane-header,
.s-Budget-BudgetProfilesGrid .slick-pane-header,
.s-Budget-BudgetProfilesAllGrid .slick-pane-header,
.s-Budget-BudgetsGrid .slick-pane-header,
.s-Budget-CallCircularsGrid .slick-pane-header,
.s-Budget-CallCircularsAllGrid .slick-pane-header,
.s-Budget-CallSchedulesGrid .slick-pane-header,
.s-Budget-CallScheduleCalendarsGrid .slick-pane-header,
.s-Budget-CallScheduleCalendarsAllGrid .slick-pane-header,
.s-Budget-BudgetThresholdsAllGrid .slick-pane-header,
.s-Budget-BudgetThresholdsGrid .slick-pane-header,
.s-Budget-BudgetThresholdBackupGrid .slick-pane-header,
.s-Budget-BTFundingTrancheBackupGrid .slick-pane-header,
.s-Budget-OperatorTemplatesGrid .slick-pane-header,
.s-Budget-TemplateCommitteeGrid .slick-pane-header,
.s-Budget-BudgetHistoricBriefGrid .slick-pane-header,
.s-Budget-BudgetHistoricTemplateGrid .slick-pane-header,
.s-Budget-BTFundingTranchesGrid .slick-pane-header,
.s-Budget-BTFundingTranchesAllGrid .slick-pane-header,
.s-Budget-BTFundingTrancheBreakdownsGrid .slick-pane-header,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .slick-pane-header,
.s-Budget-CallScheduleCalendarsGrid .slick-pane-header,
.s-Budget-CallCircularsAllGrid .slick-pane-header,
.s-Budget-CallCircularsGrid .slick-pane-header,
.s-Budget-CallScheduleActivitiesGrid .slick-pane-header,
.s-Budget-CallSchedulesAllGrid .slick-pane-header,
.s-Budget-CallSchedulesGrid .slick-pane-header,
.s-Budget-SwotsGrid .slick-pane-header,
.s-Budget-BudgetAssumptionsGrid .slick-pane-header,
.s-Budget-SeismicActivitiesGrid .slick-pane-header,
.s-Budget-ReservesGrid .slick-pane-header,
.s-Budget-ProductionGrid .slick-pane-header,
.s-Budget-GasUtilizationGrid .slick-pane-header,
.s-Budget-RigSequencesGrid .slick-pane-header,
.s-Budget-VesselSchedulesGrid .slick-pane-header,
.s-Budget-HrSummariesGrid .slick-pane-header,
.s-Budget-SharedCostsGrid .slick-pane-header,
.s-Budget-SharedCostAllocationsGrid .slick-pane-header,
.s-Budget-GeneralWorkProgrammesGrid .slick-pane-header,
.s-Budget-ExpenditureBreakdownsGrid .slick-pane-header,
.s-Budget-WellCostsNonRigWorkGrid .slick-pane-header,
.s-Budget-NonRigWorkOverCostElementsGrid .slick-pane-header,
.s-Budget-WellCostsGrid .slick-pane-header,
.s-Budget-WellCostElementsGrid .slick-pane-header,
.s-Budget-ProjectSummariesGrid .slick-pane-header,
.s-Budget-PADWorkProgrammesGrid .slick-pane-header,
.s-Budget-RigSequencesGrid .slick-pane-header,
.s-Budget-BlocksGrid .slick-pane-header,
.s-Budget-CashCallEquitySharesGrid .slick-pane-header,
.s-Budget-FieldsGrid .slick-pane-header,
.s-Budget-FieldTerrainsGrid .slick-pane-header,
.s-Budget-FundingTranchesGrid .slick-pane-header,
.s-Budget-FundingTranchesAllGrid .slick-pane-header,
.s-Budget-MajorDriversGrid .slick-pane-header,
.s-Budget-BudgetData_ExcelTemplatesGrid .slick-pane-header,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .slick-pane-header,
.s-Budget-ExcelTemplatesGrid .slick-pane-header,
.s-Budget-OperatorBlocksAllGrid .slick-pane-header,
.s-Budget-OperatorBlocksGrid .slick-pane-header,
.s-Budget-ProductsGrid .slick-pane-header,
.s-Budget-RigsGrid .slick-pane-header,
.s-Budget-SeismicActivityDescriptionsGrid .slick-pane-header,
.s-Budget-UAPCodeAccessPermissionsGrid .slick-pane-header,
.s-Budget-UAPCodesAllGrid .slick-pane-header,
.s-Budget-NUIMS_UAPCodesGrid .slick-pane-header,
.s-Budget-Operator_UAPCodesGrid .slick-pane-header,
.s-Budget-VesselsGrid .slick-pane-header,
.s-Budget-WellCostElementGroupsGrid .slick-pane-header,
.s-Budget-WellCostsElementDetailsGrid .slick-pane-header,
.s-Budget-WellCostsElementDetailsAllGrid .slick-pane-header,
.s-Budget-NonRigActivityTypesGrid .slick-pane-header,
.s-Budget-NonRigElementDetailsGrid .slick-pane-header,
.s-Budget-NonRigElementDetailsAllGrid .slick-pane-header,
.s-Budget-WellsAllGrid .slick-pane-header,
.s-Budget-WellsGrid .slick-pane-header,
.s-Budget-ProjectsGrid .slick-pane-header,
.s-Budget-ResponsiblePartyOperatorsGrid .slick-pane-header,
.s-Budget-ContractApprovingBodiesGrid .slick-pane-header,
.s-Budget-CountryGrid .slick-pane-header,
.s-Budget-FundingTrancheSourcesGrid .slick-pane-header,
.s-Budget-MonthsGrid .slick-pane-header,
.s-Budget-NationalityGrid .slick-pane-header,
.s-Budget-PadClustersGrid .slick-pane-header,
.s-Budget-PadCommunitiesGrid .slick-pane-header,
.s-Budget-SecurityRolesGrid .slick-pane-header,
.s-Budget-TemplatesGrid .slick-pane-header,
.s-Budget-TerrainsGrid .slick-pane-header,
.s-Budget-UAPAccessPermissionsGrid .slick-pane-header,
.s-Budget-UAPCodeLevelsGrid .slick-pane-header,
.s-Budget-UAPCodeGroupsGrid .slick-pane-header,
.s-Budget-UAPCodeGroupTitlesGrid .slick-pane-header,
.s-Budget-UnitsGrid .slick-pane-header,
.s-Budget-UnitsOfMeasureGrid .slick-pane-header,
.s-Budget-UnitsOfMeasureUsageGrid .slick-pane-header,
.s-Budget-VesselActivitiesGrid .slick-pane-header,
.s-Budget-WellClassificationsGrid .slick-pane-header,
.s-Budget-YearsGrid .slick-pane-header,
.s-Budget-AnnualBudgetStatusesGrid .slick-pane-header,
.s-Budget-ApprovedBudgetStatusesGrid .slick-pane-header,
.s-Budget-BudgetPreviewStatusesGrid .slick-pane-header,
.s-Budget-BudgetProfileStatusesGrid .slick-pane-header,
.s-Budget-BudgetStatusesGrid .slick-pane-header,
.s-Budget-BudgetThresholdStatusesGrid .slick-pane-header,
.s-Budget-ButtonStatusesGrid .slick-pane-header,
.s-Budget-CallCircularStatusesGrid .slick-pane-header,
.s-Budget-CashCallStatusesGrid .slick-pane-header,
.s-Budget-ContractStatusesGrid .slick-pane-header,
.s-Budget-FieldStatusesGrid .slick-pane-header,
.s-Budget-FincomStatusesGrid .slick-pane-header,
.s-Budget-MacomReviewStatusesGrid .slick-pane-header,
.s-Budget-NuimsPlanningReviewStatusesGrid .slick-pane-header,
.s-Budget-OpcomReviewStatusesGrid .slick-pane-header,
.s-Budget-OperatorProposalStatusesGrid .slick-pane-header,
.s-Budget-OperatorStatusesGrid .slick-pane-header,
.s-Budget-OwnershipStatusesGrid .slick-pane-header,
.s-Budget-PerformanceStatusesGrid .slick-pane-header,
.s-Budget-ProjectStatusGrid .slick-pane-header,
.s-Budget-RealignedBudgetStatusesGrid .slick-pane-header,
.s-Budget-SubcomRecommendationStatusesGrid .slick-pane-header,
.s-Budget-TecomRecommendationStatusesGrid .slick-pane-header,
.s-Budget-TemplateStatusesGrid .slick-pane-header,
.s-Budget-UAPCodeStatusesGrid .slick-pane-header,
.s-Budget-AgreementTypesGrid .slick-pane-header,
.s-Budget-BriefTypesGrid .slick-pane-header,
.s-Budget-BudgetTypesGrid .slick-pane-header,
.s-Budget-MeetingGrid .slick-pane-header,
.s-Budget-MeetingAgendaGrid .slick-pane-header,
.s-Budget-MeetingAgendaRelevantGrid .slick-pane-header,
.s-Budget-MeetingAgendaTypeGrid .slick-pane-header,
.s-Budget-MeetingDecisionGrid .slick-pane-header,
.s-Budget-MeetingDecisionRelevantGrid .slick-pane-header,
.s-Budget-MeetingLocationGrid .slick-pane-header,
.s-Budget-MeetingTypeGrid .slick-pane-header,
.s-Budget-FinancialDataGrid .slick-pane-header,
.s-Budget-WorkflowButtonSequenceTypesGrid .slick-pane-header,
.s-Budget-CommitteeTypesGrid .slick-pane-header,
.s-Budget-ContractTypesGrid .slick-pane-header,
.s-Budget-EmploymentTypeGrid .slick-pane-header,
.s-Budget-ExpenditureTypesGrid .slick-pane-header,
.s-Budget-FundingTrancheTypesGrid .slick-pane-header,
.s-Budget-GasUtilizationTypesGrid .slick-pane-header,
.s-Budget-PadProgramTypesGrid .slick-pane-header,
.s-Budget-PadTypesGrid .slick-pane-header,
.s-Budget-ProductTypesGrid .slick-pane-header,
.s-Budget-ProjectTypesGrid .slick-pane-header,
.s-Budget-RigTypesGrid .slick-pane-header,
.s-Budget-SharedCostAllocationTypesGrid .slick-pane-header,
.s-Budget-UAPCodeTypesGrid .slick-pane-header,
.s-Budget-VesselTypesGrid .slick-pane-header,
.s-Budget-WellCostElementTypesGrid .slick-pane-header,
.s-Budget-WellTypesGrid .slick-pane-header,
.s-Budget-BudgetPreviewGrid .slick-pane-header,
.s-Budget-FINCOMAppendixIGrid .slick-pane-header,
.s-Budget-FINCOMAppendixIIGrid .slick-pane-header,
.s-Budget-FINCOMCollationGrid .slick-pane-header,
.s-Budget-CallScheduleActionsGrid .slick-pane-header,
.s-CashCall-CashCallCalendarsGrid .slick-pane-header,
.s-CashCall-CashCallActivitiesGrid .slick-pane-header,
.s-CashCall-CashCallScheduleActivitiesGrid .slick-pane-header,
.s-CashCall-CashCallCircularsGrid .slick-pane-header,
.s-CashCall-CashCallCircularsAllGrid .slick-pane-header,
.s-CashCall-CashCallCalendarsGrid .slick-pane-header,
.s-CashCall-CashCallCalendarsAllGrid .slick-pane-header,
.s-CashCall-CashCallBriefsGrid .slick-pane-header,
.s-CashCall-CashCallCashComRecommendationsGrid .slick-pane-header,
.s-CashCall-CashCallMandatesGrid .slick-pane-header,
.s-CashCall-CashCallMeetingDayAttendancesGrid .slick-pane-header,
.s-CashCall-CashCallPayablesGrid .slick-pane-header,
.s-CashCall-CashCallsGrid .slick-pane-header,
.s-CashCall-CashCallsAllGrid .slick-pane-header,
.s-CashCall-CashCallsEPGrid .slick-pane-header,
.s-CashCall-CashCallsBDGGrid .slick-pane-header,
.s-CashCall-CashCallSchedulesGrid .slick-pane-header,
.s-CashCall-CashCallSchedulesAllGrid .slick-pane-header,
.s-CashCall-CashCallRequestsGrid .slick-pane-header,
.s-CashCall-CashCallRequestsEPGrid .slick-pane-header,
.s-CashCall-CashCallRequestItemsGrid .slick-pane-header,
.s-CashCall-CashCallUapCodeItemsGrid .slick-pane-header,
.s-CashCall-CashCallOperatorRequestsGrid .slick-pane-header,
.s-CashCall-CashCallNuimsReviewsGrid .slick-pane-header,
.s-CashCall-CashCallManagerJVReviewGrid .slick-pane-header,
.s-CashCall-CashCallCashComSubComReviewGrid .slick-pane-header,
.s-CashCall-CashCallFincomCollationGrid .slick-pane-header,
.s-CashCall-CashCallSubcomRecomendationsGrid .slick-pane-header,
.s-CashCall-CashCallEndorsementGrid .slick-pane-header,
.s-CashCall-CashCallGgmSummariesGrid .slick-pane-header,
.s-CashCall-CashCallGgmSummariesItemGrid .slick-pane-header,
.s-CashCall-CashCallPayablesGrid .slick-pane-header,
.s-CashCall-CashCallPayableItemsGrid .slick-pane-header,
.s-CashCall-CashCallPayableItemsAdjustedGrid .slick-pane-header,
.s-CashCall-CashCallPayablesAnnualGrid .slick-pane-header,
.s-CashCall-CashCallMandatesGrid .slick-pane-header,
.s-CashCall-CashCallPaymentConfirmationGrid .slick-pane-header,
.s-CashCall-CashCallPayableItemsEditor .slick-pane-header,
.s-CashCall-CashCallPaymentDataEditor .slick-pane-header,
.s-CashCall-CashCallPaymentDataGrid .slick-pane-header,
.s-Performance-PerformancesGrid .slick-pane-header,
.s-Performance-PerformancesAllGrid .slick-pane-header,
.s-Performance-PerformancesBDGGrid .slick-pane-header,
.s-Performance-PerformanceSchedulesGrid .slick-pane-header,
.s-Performance-PerformanceCallScheduleCalendarsGrid .slick-pane-header,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .slick-pane-header,
.s-Performance-PerformanceCallScheduleActivitiesGrid .slick-pane-header,
.s-Performance-PerformanceCallScheduleActivitiesGrid .slick-pane-header,
.s-Performance-PerformanceCallCircularsGrid .slick-pane-header,
.s-Performance-PerformanceCallCircularsAllGrid .slick-pane-header,
.s-Performance-PerformanceMonthlyGrid .slick-pane-header,
.s-Performance-PerformanceQuarterlyGrid .slick-pane-header,
.s-Performance-PerformanceQuarterFourGrid .slick-pane-header,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .slick-pane-header,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .slick-pane-header,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .slick-pane-header,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .slick-pane-header,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .slick-pane-header,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .slick-pane-header,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .slick-pane-header,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .slick-pane-header,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .slick-pane-header,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .slick-pane-header,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .slick-pane-header,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .slick-pane-header,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .slick-pane-header,
.s-Performance-PerformanceFinancialItemsGrid .slick-pane-header,
.s-Performance-PerformanceNonFinancialItemsGrid .slick-pane-header,
.s-Performance-PerformanceFinancialMonthItemsGrid .slick-pane-header,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .slick-pane-header,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .slick-pane-header,
.s-Common-DashboardWidgetGrid .slick-pane-header,
.s-Administration-BcPproExceptionsGrid .slick-pane-header {
  position: absolute;
  display: inline-block;
  top: 0px;
  right: 0px !important;
  left: 0px;
  width: 100%;
  overflow: hidden;
}
.s-Administration-IssueTrackingIssuesGrid .slick-header.ui-state-default,
.s-Administration-IssueTrackingFeedbackGrid .slick-header.ui-state-default,
.s-Administration-IssueTrackingChangeRequestGrid .slick-header.ui-state-default,
.s-Administration-NotificationTemplatesGrid .slick-header.ui-state-default,
.s-Administration-BudgetAutoTestGrid .slick-header.ui-state-default,
.s-Administration-CashCallAutoTestGrid .slick-header.ui-state-default,
.s-Administration-PerformanceMonthAutoTestGrid .slick-header.ui-state-default,
.s-Administration-PerformanceQuarterAutoTestGrid .slick-header.ui-state-default,
.s-Administration-SiteNotificationsGrid .slick-header.ui-state-default,
.s-Budget-AnnualBudgetsGrid .slick-header.ui-state-default,
.s-Budget-AnnualBudgetsAllGrid .slick-header.ui-state-default,
.s-Budget-BudgetProfilesABGrid .slick-header.ui-state-default,
.s-Budget-OperatorProposalsGrid .slick-header.ui-state-default,
.s-Budget-MACOMApprovalsGrid .slick-header.ui-state-default,
.s-Budget-OPCOMApprovalsGrid .slick-header.ui-state-default,
.s-Budget-ApprovedBudgetsGrid .slick-header.ui-state-default,
.s-Budget-FiveYearForecastsGrid .slick-header.ui-state-default,
.s-Budget-NUIMSPlanningReviewsGrid .slick-header.ui-state-default,
.s-Budget-SUBCOMRecommendationsGrid .slick-header.ui-state-default,
.s-Budget-SUBCOMRecommendationsAllGrid .slick-header.ui-state-default,
.s-Budget-TECOMRecommendationsGrid .slick-header.ui-state-default,
.s-Budget-BudgetProfilesGrid .slick-header.ui-state-default,
.s-Budget-BudgetProfilesAllGrid .slick-header.ui-state-default,
.s-Budget-BudgetsGrid .slick-header.ui-state-default,
.s-Budget-CallCircularsGrid .slick-header.ui-state-default,
.s-Budget-CallCircularsAllGrid .slick-header.ui-state-default,
.s-Budget-CallSchedulesGrid .slick-header.ui-state-default,
.s-Budget-CallScheduleCalendarsGrid .slick-header.ui-state-default,
.s-Budget-CallScheduleCalendarsAllGrid .slick-header.ui-state-default,
.s-Budget-BudgetThresholdsAllGrid .slick-header.ui-state-default,
.s-Budget-BudgetThresholdsGrid .slick-header.ui-state-default,
.s-Budget-BudgetThresholdBackupGrid .slick-header.ui-state-default,
.s-Budget-BTFundingTrancheBackupGrid .slick-header.ui-state-default,
.s-Budget-OperatorTemplatesGrid .slick-header.ui-state-default,
.s-Budget-TemplateCommitteeGrid .slick-header.ui-state-default,
.s-Budget-BudgetHistoricBriefGrid .slick-header.ui-state-default,
.s-Budget-BudgetHistoricTemplateGrid .slick-header.ui-state-default,
.s-Budget-BTFundingTranchesGrid .slick-header.ui-state-default,
.s-Budget-BTFundingTranchesAllGrid .slick-header.ui-state-default,
.s-Budget-BTFundingTrancheBreakdownsGrid .slick-header.ui-state-default,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .slick-header.ui-state-default,
.s-Budget-CallScheduleCalendarsGrid .slick-header.ui-state-default,
.s-Budget-CallCircularsAllGrid .slick-header.ui-state-default,
.s-Budget-CallCircularsGrid .slick-header.ui-state-default,
.s-Budget-CallScheduleActivitiesGrid .slick-header.ui-state-default,
.s-Budget-CallSchedulesAllGrid .slick-header.ui-state-default,
.s-Budget-CallSchedulesGrid .slick-header.ui-state-default,
.s-Budget-SwotsGrid .slick-header.ui-state-default,
.s-Budget-BudgetAssumptionsGrid .slick-header.ui-state-default,
.s-Budget-SeismicActivitiesGrid .slick-header.ui-state-default,
.s-Budget-ReservesGrid .slick-header.ui-state-default,
.s-Budget-ProductionGrid .slick-header.ui-state-default,
.s-Budget-GasUtilizationGrid .slick-header.ui-state-default,
.s-Budget-RigSequencesGrid .slick-header.ui-state-default,
.s-Budget-VesselSchedulesGrid .slick-header.ui-state-default,
.s-Budget-HrSummariesGrid .slick-header.ui-state-default,
.s-Budget-SharedCostsGrid .slick-header.ui-state-default,
.s-Budget-SharedCostAllocationsGrid .slick-header.ui-state-default,
.s-Budget-GeneralWorkProgrammesGrid .slick-header.ui-state-default,
.s-Budget-ExpenditureBreakdownsGrid .slick-header.ui-state-default,
.s-Budget-WellCostsNonRigWorkGrid .slick-header.ui-state-default,
.s-Budget-NonRigWorkOverCostElementsGrid .slick-header.ui-state-default,
.s-Budget-WellCostsGrid .slick-header.ui-state-default,
.s-Budget-WellCostElementsGrid .slick-header.ui-state-default,
.s-Budget-ProjectSummariesGrid .slick-header.ui-state-default,
.s-Budget-PADWorkProgrammesGrid .slick-header.ui-state-default,
.s-Budget-RigSequencesGrid .slick-header.ui-state-default,
.s-Budget-BlocksGrid .slick-header.ui-state-default,
.s-Budget-CashCallEquitySharesGrid .slick-header.ui-state-default,
.s-Budget-FieldsGrid .slick-header.ui-state-default,
.s-Budget-FieldTerrainsGrid .slick-header.ui-state-default,
.s-Budget-FundingTranchesGrid .slick-header.ui-state-default,
.s-Budget-FundingTranchesAllGrid .slick-header.ui-state-default,
.s-Budget-MajorDriversGrid .slick-header.ui-state-default,
.s-Budget-BudgetData_ExcelTemplatesGrid .slick-header.ui-state-default,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .slick-header.ui-state-default,
.s-Budget-ExcelTemplatesGrid .slick-header.ui-state-default,
.s-Budget-OperatorBlocksAllGrid .slick-header.ui-state-default,
.s-Budget-OperatorBlocksGrid .slick-header.ui-state-default,
.s-Budget-ProductsGrid .slick-header.ui-state-default,
.s-Budget-RigsGrid .slick-header.ui-state-default,
.s-Budget-SeismicActivityDescriptionsGrid .slick-header.ui-state-default,
.s-Budget-UAPCodeAccessPermissionsGrid .slick-header.ui-state-default,
.s-Budget-UAPCodesAllGrid .slick-header.ui-state-default,
.s-Budget-NUIMS_UAPCodesGrid .slick-header.ui-state-default,
.s-Budget-Operator_UAPCodesGrid .slick-header.ui-state-default,
.s-Budget-VesselsGrid .slick-header.ui-state-default,
.s-Budget-WellCostElementGroupsGrid .slick-header.ui-state-default,
.s-Budget-WellCostsElementDetailsGrid .slick-header.ui-state-default,
.s-Budget-WellCostsElementDetailsAllGrid .slick-header.ui-state-default,
.s-Budget-NonRigActivityTypesGrid .slick-header.ui-state-default,
.s-Budget-NonRigElementDetailsGrid .slick-header.ui-state-default,
.s-Budget-NonRigElementDetailsAllGrid .slick-header.ui-state-default,
.s-Budget-WellsAllGrid .slick-header.ui-state-default,
.s-Budget-WellsGrid .slick-header.ui-state-default,
.s-Budget-ProjectsGrid .slick-header.ui-state-default,
.s-Budget-ResponsiblePartyOperatorsGrid .slick-header.ui-state-default,
.s-Budget-ContractApprovingBodiesGrid .slick-header.ui-state-default,
.s-Budget-CountryGrid .slick-header.ui-state-default,
.s-Budget-FundingTrancheSourcesGrid .slick-header.ui-state-default,
.s-Budget-MonthsGrid .slick-header.ui-state-default,
.s-Budget-NationalityGrid .slick-header.ui-state-default,
.s-Budget-PadClustersGrid .slick-header.ui-state-default,
.s-Budget-PadCommunitiesGrid .slick-header.ui-state-default,
.s-Budget-SecurityRolesGrid .slick-header.ui-state-default,
.s-Budget-TemplatesGrid .slick-header.ui-state-default,
.s-Budget-TerrainsGrid .slick-header.ui-state-default,
.s-Budget-UAPAccessPermissionsGrid .slick-header.ui-state-default,
.s-Budget-UAPCodeLevelsGrid .slick-header.ui-state-default,
.s-Budget-UAPCodeGroupsGrid .slick-header.ui-state-default,
.s-Budget-UAPCodeGroupTitlesGrid .slick-header.ui-state-default,
.s-Budget-UnitsGrid .slick-header.ui-state-default,
.s-Budget-UnitsOfMeasureGrid .slick-header.ui-state-default,
.s-Budget-UnitsOfMeasureUsageGrid .slick-header.ui-state-default,
.s-Budget-VesselActivitiesGrid .slick-header.ui-state-default,
.s-Budget-WellClassificationsGrid .slick-header.ui-state-default,
.s-Budget-YearsGrid .slick-header.ui-state-default,
.s-Budget-AnnualBudgetStatusesGrid .slick-header.ui-state-default,
.s-Budget-ApprovedBudgetStatusesGrid .slick-header.ui-state-default,
.s-Budget-BudgetPreviewStatusesGrid .slick-header.ui-state-default,
.s-Budget-BudgetProfileStatusesGrid .slick-header.ui-state-default,
.s-Budget-BudgetStatusesGrid .slick-header.ui-state-default,
.s-Budget-BudgetThresholdStatusesGrid .slick-header.ui-state-default,
.s-Budget-ButtonStatusesGrid .slick-header.ui-state-default,
.s-Budget-CallCircularStatusesGrid .slick-header.ui-state-default,
.s-Budget-CashCallStatusesGrid .slick-header.ui-state-default,
.s-Budget-ContractStatusesGrid .slick-header.ui-state-default,
.s-Budget-FieldStatusesGrid .slick-header.ui-state-default,
.s-Budget-FincomStatusesGrid .slick-header.ui-state-default,
.s-Budget-MacomReviewStatusesGrid .slick-header.ui-state-default,
.s-Budget-NuimsPlanningReviewStatusesGrid .slick-header.ui-state-default,
.s-Budget-OpcomReviewStatusesGrid .slick-header.ui-state-default,
.s-Budget-OperatorProposalStatusesGrid .slick-header.ui-state-default,
.s-Budget-OperatorStatusesGrid .slick-header.ui-state-default,
.s-Budget-OwnershipStatusesGrid .slick-header.ui-state-default,
.s-Budget-PerformanceStatusesGrid .slick-header.ui-state-default,
.s-Budget-ProjectStatusGrid .slick-header.ui-state-default,
.s-Budget-RealignedBudgetStatusesGrid .slick-header.ui-state-default,
.s-Budget-SubcomRecommendationStatusesGrid .slick-header.ui-state-default,
.s-Budget-TecomRecommendationStatusesGrid .slick-header.ui-state-default,
.s-Budget-TemplateStatusesGrid .slick-header.ui-state-default,
.s-Budget-UAPCodeStatusesGrid .slick-header.ui-state-default,
.s-Budget-AgreementTypesGrid .slick-header.ui-state-default,
.s-Budget-BriefTypesGrid .slick-header.ui-state-default,
.s-Budget-BudgetTypesGrid .slick-header.ui-state-default,
.s-Budget-MeetingGrid .slick-header.ui-state-default,
.s-Budget-MeetingAgendaGrid .slick-header.ui-state-default,
.s-Budget-MeetingAgendaRelevantGrid .slick-header.ui-state-default,
.s-Budget-MeetingAgendaTypeGrid .slick-header.ui-state-default,
.s-Budget-MeetingDecisionGrid .slick-header.ui-state-default,
.s-Budget-MeetingDecisionRelevantGrid .slick-header.ui-state-default,
.s-Budget-MeetingLocationGrid .slick-header.ui-state-default,
.s-Budget-MeetingTypeGrid .slick-header.ui-state-default,
.s-Budget-FinancialDataGrid .slick-header.ui-state-default,
.s-Budget-WorkflowButtonSequenceTypesGrid .slick-header.ui-state-default,
.s-Budget-CommitteeTypesGrid .slick-header.ui-state-default,
.s-Budget-ContractTypesGrid .slick-header.ui-state-default,
.s-Budget-EmploymentTypeGrid .slick-header.ui-state-default,
.s-Budget-ExpenditureTypesGrid .slick-header.ui-state-default,
.s-Budget-FundingTrancheTypesGrid .slick-header.ui-state-default,
.s-Budget-GasUtilizationTypesGrid .slick-header.ui-state-default,
.s-Budget-PadProgramTypesGrid .slick-header.ui-state-default,
.s-Budget-PadTypesGrid .slick-header.ui-state-default,
.s-Budget-ProductTypesGrid .slick-header.ui-state-default,
.s-Budget-ProjectTypesGrid .slick-header.ui-state-default,
.s-Budget-RigTypesGrid .slick-header.ui-state-default,
.s-Budget-SharedCostAllocationTypesGrid .slick-header.ui-state-default,
.s-Budget-UAPCodeTypesGrid .slick-header.ui-state-default,
.s-Budget-VesselTypesGrid .slick-header.ui-state-default,
.s-Budget-WellCostElementTypesGrid .slick-header.ui-state-default,
.s-Budget-WellTypesGrid .slick-header.ui-state-default,
.s-Budget-BudgetPreviewGrid .slick-header.ui-state-default,
.s-Budget-FINCOMAppendixIGrid .slick-header.ui-state-default,
.s-Budget-FINCOMAppendixIIGrid .slick-header.ui-state-default,
.s-Budget-FINCOMCollationGrid .slick-header.ui-state-default,
.s-Budget-CallScheduleActionsGrid .slick-header.ui-state-default,
.s-CashCall-CashCallCalendarsGrid .slick-header.ui-state-default,
.s-CashCall-CashCallActivitiesGrid .slick-header.ui-state-default,
.s-CashCall-CashCallScheduleActivitiesGrid .slick-header.ui-state-default,
.s-CashCall-CashCallCircularsGrid .slick-header.ui-state-default,
.s-CashCall-CashCallCircularsAllGrid .slick-header.ui-state-default,
.s-CashCall-CashCallCalendarsGrid .slick-header.ui-state-default,
.s-CashCall-CashCallCalendarsAllGrid .slick-header.ui-state-default,
.s-CashCall-CashCallBriefsGrid .slick-header.ui-state-default,
.s-CashCall-CashCallCashComRecommendationsGrid .slick-header.ui-state-default,
.s-CashCall-CashCallMandatesGrid .slick-header.ui-state-default,
.s-CashCall-CashCallMeetingDayAttendancesGrid .slick-header.ui-state-default,
.s-CashCall-CashCallPayablesGrid .slick-header.ui-state-default,
.s-CashCall-CashCallsGrid .slick-header.ui-state-default,
.s-CashCall-CashCallsAllGrid .slick-header.ui-state-default,
.s-CashCall-CashCallsEPGrid .slick-header.ui-state-default,
.s-CashCall-CashCallsBDGGrid .slick-header.ui-state-default,
.s-CashCall-CashCallSchedulesGrid .slick-header.ui-state-default,
.s-CashCall-CashCallSchedulesAllGrid .slick-header.ui-state-default,
.s-CashCall-CashCallRequestsGrid .slick-header.ui-state-default,
.s-CashCall-CashCallRequestsEPGrid .slick-header.ui-state-default,
.s-CashCall-CashCallRequestItemsGrid .slick-header.ui-state-default,
.s-CashCall-CashCallUapCodeItemsGrid .slick-header.ui-state-default,
.s-CashCall-CashCallOperatorRequestsGrid .slick-header.ui-state-default,
.s-CashCall-CashCallNuimsReviewsGrid .slick-header.ui-state-default,
.s-CashCall-CashCallManagerJVReviewGrid .slick-header.ui-state-default,
.s-CashCall-CashCallCashComSubComReviewGrid .slick-header.ui-state-default,
.s-CashCall-CashCallFincomCollationGrid .slick-header.ui-state-default,
.s-CashCall-CashCallSubcomRecomendationsGrid .slick-header.ui-state-default,
.s-CashCall-CashCallEndorsementGrid .slick-header.ui-state-default,
.s-CashCall-CashCallGgmSummariesGrid .slick-header.ui-state-default,
.s-CashCall-CashCallGgmSummariesItemGrid .slick-header.ui-state-default,
.s-CashCall-CashCallPayablesGrid .slick-header.ui-state-default,
.s-CashCall-CashCallPayableItemsGrid .slick-header.ui-state-default,
.s-CashCall-CashCallPayableItemsAdjustedGrid .slick-header.ui-state-default,
.s-CashCall-CashCallPayablesAnnualGrid .slick-header.ui-state-default,
.s-CashCall-CashCallMandatesGrid .slick-header.ui-state-default,
.s-CashCall-CashCallPaymentConfirmationGrid .slick-header.ui-state-default,
.s-CashCall-CashCallPayableItemsEditor .slick-header.ui-state-default,
.s-CashCall-CashCallPaymentDataEditor .slick-header.ui-state-default,
.s-CashCall-CashCallPaymentDataGrid .slick-header.ui-state-default,
.s-Performance-PerformancesGrid .slick-header.ui-state-default,
.s-Performance-PerformancesAllGrid .slick-header.ui-state-default,
.s-Performance-PerformancesBDGGrid .slick-header.ui-state-default,
.s-Performance-PerformanceSchedulesGrid .slick-header.ui-state-default,
.s-Performance-PerformanceCallScheduleCalendarsGrid .slick-header.ui-state-default,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .slick-header.ui-state-default,
.s-Performance-PerformanceCallScheduleActivitiesGrid .slick-header.ui-state-default,
.s-Performance-PerformanceCallScheduleActivitiesGrid .slick-header.ui-state-default,
.s-Performance-PerformanceCallCircularsGrid .slick-header.ui-state-default,
.s-Performance-PerformanceCallCircularsAllGrid .slick-header.ui-state-default,
.s-Performance-PerformanceMonthlyGrid .slick-header.ui-state-default,
.s-Performance-PerformanceQuarterlyGrid .slick-header.ui-state-default,
.s-Performance-PerformanceQuarterFourGrid .slick-header.ui-state-default,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .slick-header.ui-state-default,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .slick-header.ui-state-default,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .slick-header.ui-state-default,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .slick-header.ui-state-default,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .slick-header.ui-state-default,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .slick-header.ui-state-default,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .slick-header.ui-state-default,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .slick-header.ui-state-default,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .slick-header.ui-state-default,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .slick-header.ui-state-default,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .slick-header.ui-state-default,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .slick-header.ui-state-default,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .slick-header.ui-state-default,
.s-Performance-PerformanceFinancialItemsGrid .slick-header.ui-state-default,
.s-Performance-PerformanceNonFinancialItemsGrid .slick-header.ui-state-default,
.s-Performance-PerformanceFinancialMonthItemsGrid .slick-header.ui-state-default,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .slick-header.ui-state-default,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .slick-header.ui-state-default,
.s-Common-DashboardWidgetGrid .slick-header.ui-state-default,
.s-Administration-BcPproExceptionsGrid .slick-header.ui-state-default,
.s-Administration-IssueTrackingIssuesGrid .slick-headerrow.ui-state-default,
.s-Administration-IssueTrackingFeedbackGrid .slick-headerrow.ui-state-default,
.s-Administration-IssueTrackingChangeRequestGrid .slick-headerrow.ui-state-default,
.s-Administration-NotificationTemplatesGrid .slick-headerrow.ui-state-default,
.s-Administration-BudgetAutoTestGrid .slick-headerrow.ui-state-default,
.s-Administration-CashCallAutoTestGrid .slick-headerrow.ui-state-default,
.s-Administration-PerformanceMonthAutoTestGrid .slick-headerrow.ui-state-default,
.s-Administration-PerformanceQuarterAutoTestGrid .slick-headerrow.ui-state-default,
.s-Administration-SiteNotificationsGrid .slick-headerrow.ui-state-default,
.s-Budget-AnnualBudgetsGrid .slick-headerrow.ui-state-default,
.s-Budget-AnnualBudgetsAllGrid .slick-headerrow.ui-state-default,
.s-Budget-BudgetProfilesABGrid .slick-headerrow.ui-state-default,
.s-Budget-OperatorProposalsGrid .slick-headerrow.ui-state-default,
.s-Budget-MACOMApprovalsGrid .slick-headerrow.ui-state-default,
.s-Budget-OPCOMApprovalsGrid .slick-headerrow.ui-state-default,
.s-Budget-ApprovedBudgetsGrid .slick-headerrow.ui-state-default,
.s-Budget-FiveYearForecastsGrid .slick-headerrow.ui-state-default,
.s-Budget-NUIMSPlanningReviewsGrid .slick-headerrow.ui-state-default,
.s-Budget-SUBCOMRecommendationsGrid .slick-headerrow.ui-state-default,
.s-Budget-SUBCOMRecommendationsAllGrid .slick-headerrow.ui-state-default,
.s-Budget-TECOMRecommendationsGrid .slick-headerrow.ui-state-default,
.s-Budget-BudgetProfilesGrid .slick-headerrow.ui-state-default,
.s-Budget-BudgetProfilesAllGrid .slick-headerrow.ui-state-default,
.s-Budget-BudgetsGrid .slick-headerrow.ui-state-default,
.s-Budget-CallCircularsGrid .slick-headerrow.ui-state-default,
.s-Budget-CallCircularsAllGrid .slick-headerrow.ui-state-default,
.s-Budget-CallSchedulesGrid .slick-headerrow.ui-state-default,
.s-Budget-CallScheduleCalendarsGrid .slick-headerrow.ui-state-default,
.s-Budget-CallScheduleCalendarsAllGrid .slick-headerrow.ui-state-default,
.s-Budget-BudgetThresholdsAllGrid .slick-headerrow.ui-state-default,
.s-Budget-BudgetThresholdsGrid .slick-headerrow.ui-state-default,
.s-Budget-BudgetThresholdBackupGrid .slick-headerrow.ui-state-default,
.s-Budget-BTFundingTrancheBackupGrid .slick-headerrow.ui-state-default,
.s-Budget-OperatorTemplatesGrid .slick-headerrow.ui-state-default,
.s-Budget-TemplateCommitteeGrid .slick-headerrow.ui-state-default,
.s-Budget-BudgetHistoricBriefGrid .slick-headerrow.ui-state-default,
.s-Budget-BudgetHistoricTemplateGrid .slick-headerrow.ui-state-default,
.s-Budget-BTFundingTranchesGrid .slick-headerrow.ui-state-default,
.s-Budget-BTFundingTranchesAllGrid .slick-headerrow.ui-state-default,
.s-Budget-BTFundingTrancheBreakdownsGrid .slick-headerrow.ui-state-default,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .slick-headerrow.ui-state-default,
.s-Budget-CallScheduleCalendarsGrid .slick-headerrow.ui-state-default,
.s-Budget-CallCircularsAllGrid .slick-headerrow.ui-state-default,
.s-Budget-CallCircularsGrid .slick-headerrow.ui-state-default,
.s-Budget-CallScheduleActivitiesGrid .slick-headerrow.ui-state-default,
.s-Budget-CallSchedulesAllGrid .slick-headerrow.ui-state-default,
.s-Budget-CallSchedulesGrid .slick-headerrow.ui-state-default,
.s-Budget-SwotsGrid .slick-headerrow.ui-state-default,
.s-Budget-BudgetAssumptionsGrid .slick-headerrow.ui-state-default,
.s-Budget-SeismicActivitiesGrid .slick-headerrow.ui-state-default,
.s-Budget-ReservesGrid .slick-headerrow.ui-state-default,
.s-Budget-ProductionGrid .slick-headerrow.ui-state-default,
.s-Budget-GasUtilizationGrid .slick-headerrow.ui-state-default,
.s-Budget-RigSequencesGrid .slick-headerrow.ui-state-default,
.s-Budget-VesselSchedulesGrid .slick-headerrow.ui-state-default,
.s-Budget-HrSummariesGrid .slick-headerrow.ui-state-default,
.s-Budget-SharedCostsGrid .slick-headerrow.ui-state-default,
.s-Budget-SharedCostAllocationsGrid .slick-headerrow.ui-state-default,
.s-Budget-GeneralWorkProgrammesGrid .slick-headerrow.ui-state-default,
.s-Budget-ExpenditureBreakdownsGrid .slick-headerrow.ui-state-default,
.s-Budget-WellCostsNonRigWorkGrid .slick-headerrow.ui-state-default,
.s-Budget-NonRigWorkOverCostElementsGrid .slick-headerrow.ui-state-default,
.s-Budget-WellCostsGrid .slick-headerrow.ui-state-default,
.s-Budget-WellCostElementsGrid .slick-headerrow.ui-state-default,
.s-Budget-ProjectSummariesGrid .slick-headerrow.ui-state-default,
.s-Budget-PADWorkProgrammesGrid .slick-headerrow.ui-state-default,
.s-Budget-RigSequencesGrid .slick-headerrow.ui-state-default,
.s-Budget-BlocksGrid .slick-headerrow.ui-state-default,
.s-Budget-CashCallEquitySharesGrid .slick-headerrow.ui-state-default,
.s-Budget-FieldsGrid .slick-headerrow.ui-state-default,
.s-Budget-FieldTerrainsGrid .slick-headerrow.ui-state-default,
.s-Budget-FundingTranchesGrid .slick-headerrow.ui-state-default,
.s-Budget-FundingTranchesAllGrid .slick-headerrow.ui-state-default,
.s-Budget-MajorDriversGrid .slick-headerrow.ui-state-default,
.s-Budget-BudgetData_ExcelTemplatesGrid .slick-headerrow.ui-state-default,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .slick-headerrow.ui-state-default,
.s-Budget-ExcelTemplatesGrid .slick-headerrow.ui-state-default,
.s-Budget-OperatorBlocksAllGrid .slick-headerrow.ui-state-default,
.s-Budget-OperatorBlocksGrid .slick-headerrow.ui-state-default,
.s-Budget-ProductsGrid .slick-headerrow.ui-state-default,
.s-Budget-RigsGrid .slick-headerrow.ui-state-default,
.s-Budget-SeismicActivityDescriptionsGrid .slick-headerrow.ui-state-default,
.s-Budget-UAPCodeAccessPermissionsGrid .slick-headerrow.ui-state-default,
.s-Budget-UAPCodesAllGrid .slick-headerrow.ui-state-default,
.s-Budget-NUIMS_UAPCodesGrid .slick-headerrow.ui-state-default,
.s-Budget-Operator_UAPCodesGrid .slick-headerrow.ui-state-default,
.s-Budget-VesselsGrid .slick-headerrow.ui-state-default,
.s-Budget-WellCostElementGroupsGrid .slick-headerrow.ui-state-default,
.s-Budget-WellCostsElementDetailsGrid .slick-headerrow.ui-state-default,
.s-Budget-WellCostsElementDetailsAllGrid .slick-headerrow.ui-state-default,
.s-Budget-NonRigActivityTypesGrid .slick-headerrow.ui-state-default,
.s-Budget-NonRigElementDetailsGrid .slick-headerrow.ui-state-default,
.s-Budget-NonRigElementDetailsAllGrid .slick-headerrow.ui-state-default,
.s-Budget-WellsAllGrid .slick-headerrow.ui-state-default,
.s-Budget-WellsGrid .slick-headerrow.ui-state-default,
.s-Budget-ProjectsGrid .slick-headerrow.ui-state-default,
.s-Budget-ResponsiblePartyOperatorsGrid .slick-headerrow.ui-state-default,
.s-Budget-ContractApprovingBodiesGrid .slick-headerrow.ui-state-default,
.s-Budget-CountryGrid .slick-headerrow.ui-state-default,
.s-Budget-FundingTrancheSourcesGrid .slick-headerrow.ui-state-default,
.s-Budget-MonthsGrid .slick-headerrow.ui-state-default,
.s-Budget-NationalityGrid .slick-headerrow.ui-state-default,
.s-Budget-PadClustersGrid .slick-headerrow.ui-state-default,
.s-Budget-PadCommunitiesGrid .slick-headerrow.ui-state-default,
.s-Budget-SecurityRolesGrid .slick-headerrow.ui-state-default,
.s-Budget-TemplatesGrid .slick-headerrow.ui-state-default,
.s-Budget-TerrainsGrid .slick-headerrow.ui-state-default,
.s-Budget-UAPAccessPermissionsGrid .slick-headerrow.ui-state-default,
.s-Budget-UAPCodeLevelsGrid .slick-headerrow.ui-state-default,
.s-Budget-UAPCodeGroupsGrid .slick-headerrow.ui-state-default,
.s-Budget-UAPCodeGroupTitlesGrid .slick-headerrow.ui-state-default,
.s-Budget-UnitsGrid .slick-headerrow.ui-state-default,
.s-Budget-UnitsOfMeasureGrid .slick-headerrow.ui-state-default,
.s-Budget-UnitsOfMeasureUsageGrid .slick-headerrow.ui-state-default,
.s-Budget-VesselActivitiesGrid .slick-headerrow.ui-state-default,
.s-Budget-WellClassificationsGrid .slick-headerrow.ui-state-default,
.s-Budget-YearsGrid .slick-headerrow.ui-state-default,
.s-Budget-AnnualBudgetStatusesGrid .slick-headerrow.ui-state-default,
.s-Budget-ApprovedBudgetStatusesGrid .slick-headerrow.ui-state-default,
.s-Budget-BudgetPreviewStatusesGrid .slick-headerrow.ui-state-default,
.s-Budget-BudgetProfileStatusesGrid .slick-headerrow.ui-state-default,
.s-Budget-BudgetStatusesGrid .slick-headerrow.ui-state-default,
.s-Budget-BudgetThresholdStatusesGrid .slick-headerrow.ui-state-default,
.s-Budget-ButtonStatusesGrid .slick-headerrow.ui-state-default,
.s-Budget-CallCircularStatusesGrid .slick-headerrow.ui-state-default,
.s-Budget-CashCallStatusesGrid .slick-headerrow.ui-state-default,
.s-Budget-ContractStatusesGrid .slick-headerrow.ui-state-default,
.s-Budget-FieldStatusesGrid .slick-headerrow.ui-state-default,
.s-Budget-FincomStatusesGrid .slick-headerrow.ui-state-default,
.s-Budget-MacomReviewStatusesGrid .slick-headerrow.ui-state-default,
.s-Budget-NuimsPlanningReviewStatusesGrid .slick-headerrow.ui-state-default,
.s-Budget-OpcomReviewStatusesGrid .slick-headerrow.ui-state-default,
.s-Budget-OperatorProposalStatusesGrid .slick-headerrow.ui-state-default,
.s-Budget-OperatorStatusesGrid .slick-headerrow.ui-state-default,
.s-Budget-OwnershipStatusesGrid .slick-headerrow.ui-state-default,
.s-Budget-PerformanceStatusesGrid .slick-headerrow.ui-state-default,
.s-Budget-ProjectStatusGrid .slick-headerrow.ui-state-default,
.s-Budget-RealignedBudgetStatusesGrid .slick-headerrow.ui-state-default,
.s-Budget-SubcomRecommendationStatusesGrid .slick-headerrow.ui-state-default,
.s-Budget-TecomRecommendationStatusesGrid .slick-headerrow.ui-state-default,
.s-Budget-TemplateStatusesGrid .slick-headerrow.ui-state-default,
.s-Budget-UAPCodeStatusesGrid .slick-headerrow.ui-state-default,
.s-Budget-AgreementTypesGrid .slick-headerrow.ui-state-default,
.s-Budget-BriefTypesGrid .slick-headerrow.ui-state-default,
.s-Budget-BudgetTypesGrid .slick-headerrow.ui-state-default,
.s-Budget-MeetingGrid .slick-headerrow.ui-state-default,
.s-Budget-MeetingAgendaGrid .slick-headerrow.ui-state-default,
.s-Budget-MeetingAgendaRelevantGrid .slick-headerrow.ui-state-default,
.s-Budget-MeetingAgendaTypeGrid .slick-headerrow.ui-state-default,
.s-Budget-MeetingDecisionGrid .slick-headerrow.ui-state-default,
.s-Budget-MeetingDecisionRelevantGrid .slick-headerrow.ui-state-default,
.s-Budget-MeetingLocationGrid .slick-headerrow.ui-state-default,
.s-Budget-MeetingTypeGrid .slick-headerrow.ui-state-default,
.s-Budget-FinancialDataGrid .slick-headerrow.ui-state-default,
.s-Budget-WorkflowButtonSequenceTypesGrid .slick-headerrow.ui-state-default,
.s-Budget-CommitteeTypesGrid .slick-headerrow.ui-state-default,
.s-Budget-ContractTypesGrid .slick-headerrow.ui-state-default,
.s-Budget-EmploymentTypeGrid .slick-headerrow.ui-state-default,
.s-Budget-ExpenditureTypesGrid .slick-headerrow.ui-state-default,
.s-Budget-FundingTrancheTypesGrid .slick-headerrow.ui-state-default,
.s-Budget-GasUtilizationTypesGrid .slick-headerrow.ui-state-default,
.s-Budget-PadProgramTypesGrid .slick-headerrow.ui-state-default,
.s-Budget-PadTypesGrid .slick-headerrow.ui-state-default,
.s-Budget-ProductTypesGrid .slick-headerrow.ui-state-default,
.s-Budget-ProjectTypesGrid .slick-headerrow.ui-state-default,
.s-Budget-RigTypesGrid .slick-headerrow.ui-state-default,
.s-Budget-SharedCostAllocationTypesGrid .slick-headerrow.ui-state-default,
.s-Budget-UAPCodeTypesGrid .slick-headerrow.ui-state-default,
.s-Budget-VesselTypesGrid .slick-headerrow.ui-state-default,
.s-Budget-WellCostElementTypesGrid .slick-headerrow.ui-state-default,
.s-Budget-WellTypesGrid .slick-headerrow.ui-state-default,
.s-Budget-BudgetPreviewGrid .slick-headerrow.ui-state-default,
.s-Budget-FINCOMAppendixIGrid .slick-headerrow.ui-state-default,
.s-Budget-FINCOMAppendixIIGrid .slick-headerrow.ui-state-default,
.s-Budget-FINCOMCollationGrid .slick-headerrow.ui-state-default,
.s-Budget-CallScheduleActionsGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallCalendarsGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallActivitiesGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallScheduleActivitiesGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallCircularsGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallCircularsAllGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallCalendarsGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallCalendarsAllGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallBriefsGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallCashComRecommendationsGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallMandatesGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallMeetingDayAttendancesGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallPayablesGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallsGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallsAllGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallsEPGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallsBDGGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallSchedulesGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallSchedulesAllGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallRequestsGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallRequestsEPGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallRequestItemsGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallUapCodeItemsGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallOperatorRequestsGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallNuimsReviewsGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallManagerJVReviewGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallCashComSubComReviewGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallFincomCollationGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallSubcomRecomendationsGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallEndorsementGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallGgmSummariesGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallGgmSummariesItemGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallPayablesGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallPayableItemsGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallPayableItemsAdjustedGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallPayablesAnnualGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallMandatesGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallPaymentConfirmationGrid .slick-headerrow.ui-state-default,
.s-CashCall-CashCallPayableItemsEditor .slick-headerrow.ui-state-default,
.s-CashCall-CashCallPaymentDataEditor .slick-headerrow.ui-state-default,
.s-CashCall-CashCallPaymentDataGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformancesGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformancesAllGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformancesBDGGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformanceSchedulesGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformanceCallScheduleCalendarsGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformanceCallScheduleActivitiesGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformanceCallScheduleActivitiesGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformanceCallCircularsGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformanceCallCircularsAllGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformanceMonthlyGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformanceQuarterlyGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformanceQuarterFourGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformanceFinancialItemsGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformanceNonFinancialItemsGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformanceFinancialMonthItemsGrid .slick-headerrow.ui-state-default,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .slick-headerrow.ui-state-default,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .slick-headerrow.ui-state-default,
.s-Common-DashboardWidgetGrid .slick-headerrow.ui-state-default,
.s-Administration-BcPproExceptionsGrid .slick-headerrow.ui-state-default {
  overflow: hidden;
  border-left: 0px;
}
.s-Administration-IssueTrackingIssuesGrid .slick-header-columns,
.s-Administration-IssueTrackingFeedbackGrid .slick-header-columns,
.s-Administration-IssueTrackingChangeRequestGrid .slick-header-columns,
.s-Administration-NotificationTemplatesGrid .slick-header-columns,
.s-Administration-BudgetAutoTestGrid .slick-header-columns,
.s-Administration-CashCallAutoTestGrid .slick-header-columns,
.s-Administration-PerformanceMonthAutoTestGrid .slick-header-columns,
.s-Administration-PerformanceQuarterAutoTestGrid .slick-header-columns,
.s-Administration-SiteNotificationsGrid .slick-header-columns,
.s-Budget-AnnualBudgetsGrid .slick-header-columns,
.s-Budget-AnnualBudgetsAllGrid .slick-header-columns,
.s-Budget-BudgetProfilesABGrid .slick-header-columns,
.s-Budget-OperatorProposalsGrid .slick-header-columns,
.s-Budget-MACOMApprovalsGrid .slick-header-columns,
.s-Budget-OPCOMApprovalsGrid .slick-header-columns,
.s-Budget-ApprovedBudgetsGrid .slick-header-columns,
.s-Budget-FiveYearForecastsGrid .slick-header-columns,
.s-Budget-NUIMSPlanningReviewsGrid .slick-header-columns,
.s-Budget-SUBCOMRecommendationsGrid .slick-header-columns,
.s-Budget-SUBCOMRecommendationsAllGrid .slick-header-columns,
.s-Budget-TECOMRecommendationsGrid .slick-header-columns,
.s-Budget-BudgetProfilesGrid .slick-header-columns,
.s-Budget-BudgetProfilesAllGrid .slick-header-columns,
.s-Budget-BudgetsGrid .slick-header-columns,
.s-Budget-CallCircularsGrid .slick-header-columns,
.s-Budget-CallCircularsAllGrid .slick-header-columns,
.s-Budget-CallSchedulesGrid .slick-header-columns,
.s-Budget-CallScheduleCalendarsGrid .slick-header-columns,
.s-Budget-CallScheduleCalendarsAllGrid .slick-header-columns,
.s-Budget-BudgetThresholdsAllGrid .slick-header-columns,
.s-Budget-BudgetThresholdsGrid .slick-header-columns,
.s-Budget-BudgetThresholdBackupGrid .slick-header-columns,
.s-Budget-BTFundingTrancheBackupGrid .slick-header-columns,
.s-Budget-OperatorTemplatesGrid .slick-header-columns,
.s-Budget-TemplateCommitteeGrid .slick-header-columns,
.s-Budget-BudgetHistoricBriefGrid .slick-header-columns,
.s-Budget-BudgetHistoricTemplateGrid .slick-header-columns,
.s-Budget-BTFundingTranchesGrid .slick-header-columns,
.s-Budget-BTFundingTranchesAllGrid .slick-header-columns,
.s-Budget-BTFundingTrancheBreakdownsGrid .slick-header-columns,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .slick-header-columns,
.s-Budget-CallScheduleCalendarsGrid .slick-header-columns,
.s-Budget-CallCircularsAllGrid .slick-header-columns,
.s-Budget-CallCircularsGrid .slick-header-columns,
.s-Budget-CallScheduleActivitiesGrid .slick-header-columns,
.s-Budget-CallSchedulesAllGrid .slick-header-columns,
.s-Budget-CallSchedulesGrid .slick-header-columns,
.s-Budget-SwotsGrid .slick-header-columns,
.s-Budget-BudgetAssumptionsGrid .slick-header-columns,
.s-Budget-SeismicActivitiesGrid .slick-header-columns,
.s-Budget-ReservesGrid .slick-header-columns,
.s-Budget-ProductionGrid .slick-header-columns,
.s-Budget-GasUtilizationGrid .slick-header-columns,
.s-Budget-RigSequencesGrid .slick-header-columns,
.s-Budget-VesselSchedulesGrid .slick-header-columns,
.s-Budget-HrSummariesGrid .slick-header-columns,
.s-Budget-SharedCostsGrid .slick-header-columns,
.s-Budget-SharedCostAllocationsGrid .slick-header-columns,
.s-Budget-GeneralWorkProgrammesGrid .slick-header-columns,
.s-Budget-ExpenditureBreakdownsGrid .slick-header-columns,
.s-Budget-WellCostsNonRigWorkGrid .slick-header-columns,
.s-Budget-NonRigWorkOverCostElementsGrid .slick-header-columns,
.s-Budget-WellCostsGrid .slick-header-columns,
.s-Budget-WellCostElementsGrid .slick-header-columns,
.s-Budget-ProjectSummariesGrid .slick-header-columns,
.s-Budget-PADWorkProgrammesGrid .slick-header-columns,
.s-Budget-RigSequencesGrid .slick-header-columns,
.s-Budget-BlocksGrid .slick-header-columns,
.s-Budget-CashCallEquitySharesGrid .slick-header-columns,
.s-Budget-FieldsGrid .slick-header-columns,
.s-Budget-FieldTerrainsGrid .slick-header-columns,
.s-Budget-FundingTranchesGrid .slick-header-columns,
.s-Budget-FundingTranchesAllGrid .slick-header-columns,
.s-Budget-MajorDriversGrid .slick-header-columns,
.s-Budget-BudgetData_ExcelTemplatesGrid .slick-header-columns,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .slick-header-columns,
.s-Budget-ExcelTemplatesGrid .slick-header-columns,
.s-Budget-OperatorBlocksAllGrid .slick-header-columns,
.s-Budget-OperatorBlocksGrid .slick-header-columns,
.s-Budget-ProductsGrid .slick-header-columns,
.s-Budget-RigsGrid .slick-header-columns,
.s-Budget-SeismicActivityDescriptionsGrid .slick-header-columns,
.s-Budget-UAPCodeAccessPermissionsGrid .slick-header-columns,
.s-Budget-UAPCodesAllGrid .slick-header-columns,
.s-Budget-NUIMS_UAPCodesGrid .slick-header-columns,
.s-Budget-Operator_UAPCodesGrid .slick-header-columns,
.s-Budget-VesselsGrid .slick-header-columns,
.s-Budget-WellCostElementGroupsGrid .slick-header-columns,
.s-Budget-WellCostsElementDetailsGrid .slick-header-columns,
.s-Budget-WellCostsElementDetailsAllGrid .slick-header-columns,
.s-Budget-NonRigActivityTypesGrid .slick-header-columns,
.s-Budget-NonRigElementDetailsGrid .slick-header-columns,
.s-Budget-NonRigElementDetailsAllGrid .slick-header-columns,
.s-Budget-WellsAllGrid .slick-header-columns,
.s-Budget-WellsGrid .slick-header-columns,
.s-Budget-ProjectsGrid .slick-header-columns,
.s-Budget-ResponsiblePartyOperatorsGrid .slick-header-columns,
.s-Budget-ContractApprovingBodiesGrid .slick-header-columns,
.s-Budget-CountryGrid .slick-header-columns,
.s-Budget-FundingTrancheSourcesGrid .slick-header-columns,
.s-Budget-MonthsGrid .slick-header-columns,
.s-Budget-NationalityGrid .slick-header-columns,
.s-Budget-PadClustersGrid .slick-header-columns,
.s-Budget-PadCommunitiesGrid .slick-header-columns,
.s-Budget-SecurityRolesGrid .slick-header-columns,
.s-Budget-TemplatesGrid .slick-header-columns,
.s-Budget-TerrainsGrid .slick-header-columns,
.s-Budget-UAPAccessPermissionsGrid .slick-header-columns,
.s-Budget-UAPCodeLevelsGrid .slick-header-columns,
.s-Budget-UAPCodeGroupsGrid .slick-header-columns,
.s-Budget-UAPCodeGroupTitlesGrid .slick-header-columns,
.s-Budget-UnitsGrid .slick-header-columns,
.s-Budget-UnitsOfMeasureGrid .slick-header-columns,
.s-Budget-UnitsOfMeasureUsageGrid .slick-header-columns,
.s-Budget-VesselActivitiesGrid .slick-header-columns,
.s-Budget-WellClassificationsGrid .slick-header-columns,
.s-Budget-YearsGrid .slick-header-columns,
.s-Budget-AnnualBudgetStatusesGrid .slick-header-columns,
.s-Budget-ApprovedBudgetStatusesGrid .slick-header-columns,
.s-Budget-BudgetPreviewStatusesGrid .slick-header-columns,
.s-Budget-BudgetProfileStatusesGrid .slick-header-columns,
.s-Budget-BudgetStatusesGrid .slick-header-columns,
.s-Budget-BudgetThresholdStatusesGrid .slick-header-columns,
.s-Budget-ButtonStatusesGrid .slick-header-columns,
.s-Budget-CallCircularStatusesGrid .slick-header-columns,
.s-Budget-CashCallStatusesGrid .slick-header-columns,
.s-Budget-ContractStatusesGrid .slick-header-columns,
.s-Budget-FieldStatusesGrid .slick-header-columns,
.s-Budget-FincomStatusesGrid .slick-header-columns,
.s-Budget-MacomReviewStatusesGrid .slick-header-columns,
.s-Budget-NuimsPlanningReviewStatusesGrid .slick-header-columns,
.s-Budget-OpcomReviewStatusesGrid .slick-header-columns,
.s-Budget-OperatorProposalStatusesGrid .slick-header-columns,
.s-Budget-OperatorStatusesGrid .slick-header-columns,
.s-Budget-OwnershipStatusesGrid .slick-header-columns,
.s-Budget-PerformanceStatusesGrid .slick-header-columns,
.s-Budget-ProjectStatusGrid .slick-header-columns,
.s-Budget-RealignedBudgetStatusesGrid .slick-header-columns,
.s-Budget-SubcomRecommendationStatusesGrid .slick-header-columns,
.s-Budget-TecomRecommendationStatusesGrid .slick-header-columns,
.s-Budget-TemplateStatusesGrid .slick-header-columns,
.s-Budget-UAPCodeStatusesGrid .slick-header-columns,
.s-Budget-AgreementTypesGrid .slick-header-columns,
.s-Budget-BriefTypesGrid .slick-header-columns,
.s-Budget-BudgetTypesGrid .slick-header-columns,
.s-Budget-MeetingGrid .slick-header-columns,
.s-Budget-MeetingAgendaGrid .slick-header-columns,
.s-Budget-MeetingAgendaRelevantGrid .slick-header-columns,
.s-Budget-MeetingAgendaTypeGrid .slick-header-columns,
.s-Budget-MeetingDecisionGrid .slick-header-columns,
.s-Budget-MeetingDecisionRelevantGrid .slick-header-columns,
.s-Budget-MeetingLocationGrid .slick-header-columns,
.s-Budget-MeetingTypeGrid .slick-header-columns,
.s-Budget-FinancialDataGrid .slick-header-columns,
.s-Budget-WorkflowButtonSequenceTypesGrid .slick-header-columns,
.s-Budget-CommitteeTypesGrid .slick-header-columns,
.s-Budget-ContractTypesGrid .slick-header-columns,
.s-Budget-EmploymentTypeGrid .slick-header-columns,
.s-Budget-ExpenditureTypesGrid .slick-header-columns,
.s-Budget-FundingTrancheTypesGrid .slick-header-columns,
.s-Budget-GasUtilizationTypesGrid .slick-header-columns,
.s-Budget-PadProgramTypesGrid .slick-header-columns,
.s-Budget-PadTypesGrid .slick-header-columns,
.s-Budget-ProductTypesGrid .slick-header-columns,
.s-Budget-ProjectTypesGrid .slick-header-columns,
.s-Budget-RigTypesGrid .slick-header-columns,
.s-Budget-SharedCostAllocationTypesGrid .slick-header-columns,
.s-Budget-UAPCodeTypesGrid .slick-header-columns,
.s-Budget-VesselTypesGrid .slick-header-columns,
.s-Budget-WellCostElementTypesGrid .slick-header-columns,
.s-Budget-WellTypesGrid .slick-header-columns,
.s-Budget-BudgetPreviewGrid .slick-header-columns,
.s-Budget-FINCOMAppendixIGrid .slick-header-columns,
.s-Budget-FINCOMAppendixIIGrid .slick-header-columns,
.s-Budget-FINCOMCollationGrid .slick-header-columns,
.s-Budget-CallScheduleActionsGrid .slick-header-columns,
.s-CashCall-CashCallCalendarsGrid .slick-header-columns,
.s-CashCall-CashCallActivitiesGrid .slick-header-columns,
.s-CashCall-CashCallScheduleActivitiesGrid .slick-header-columns,
.s-CashCall-CashCallCircularsGrid .slick-header-columns,
.s-CashCall-CashCallCircularsAllGrid .slick-header-columns,
.s-CashCall-CashCallCalendarsGrid .slick-header-columns,
.s-CashCall-CashCallCalendarsAllGrid .slick-header-columns,
.s-CashCall-CashCallBriefsGrid .slick-header-columns,
.s-CashCall-CashCallCashComRecommendationsGrid .slick-header-columns,
.s-CashCall-CashCallMandatesGrid .slick-header-columns,
.s-CashCall-CashCallMeetingDayAttendancesGrid .slick-header-columns,
.s-CashCall-CashCallPayablesGrid .slick-header-columns,
.s-CashCall-CashCallsGrid .slick-header-columns,
.s-CashCall-CashCallsAllGrid .slick-header-columns,
.s-CashCall-CashCallsEPGrid .slick-header-columns,
.s-CashCall-CashCallsBDGGrid .slick-header-columns,
.s-CashCall-CashCallSchedulesGrid .slick-header-columns,
.s-CashCall-CashCallSchedulesAllGrid .slick-header-columns,
.s-CashCall-CashCallRequestsGrid .slick-header-columns,
.s-CashCall-CashCallRequestsEPGrid .slick-header-columns,
.s-CashCall-CashCallRequestItemsGrid .slick-header-columns,
.s-CashCall-CashCallUapCodeItemsGrid .slick-header-columns,
.s-CashCall-CashCallOperatorRequestsGrid .slick-header-columns,
.s-CashCall-CashCallNuimsReviewsGrid .slick-header-columns,
.s-CashCall-CashCallManagerJVReviewGrid .slick-header-columns,
.s-CashCall-CashCallCashComSubComReviewGrid .slick-header-columns,
.s-CashCall-CashCallFincomCollationGrid .slick-header-columns,
.s-CashCall-CashCallSubcomRecomendationsGrid .slick-header-columns,
.s-CashCall-CashCallEndorsementGrid .slick-header-columns,
.s-CashCall-CashCallGgmSummariesGrid .slick-header-columns,
.s-CashCall-CashCallGgmSummariesItemGrid .slick-header-columns,
.s-CashCall-CashCallPayablesGrid .slick-header-columns,
.s-CashCall-CashCallPayableItemsGrid .slick-header-columns,
.s-CashCall-CashCallPayableItemsAdjustedGrid .slick-header-columns,
.s-CashCall-CashCallPayablesAnnualGrid .slick-header-columns,
.s-CashCall-CashCallMandatesGrid .slick-header-columns,
.s-CashCall-CashCallPaymentConfirmationGrid .slick-header-columns,
.s-CashCall-CashCallPayableItemsEditor .slick-header-columns,
.s-CashCall-CashCallPaymentDataEditor .slick-header-columns,
.s-CashCall-CashCallPaymentDataGrid .slick-header-columns,
.s-Performance-PerformancesGrid .slick-header-columns,
.s-Performance-PerformancesAllGrid .slick-header-columns,
.s-Performance-PerformancesBDGGrid .slick-header-columns,
.s-Performance-PerformanceSchedulesGrid .slick-header-columns,
.s-Performance-PerformanceCallScheduleCalendarsGrid .slick-header-columns,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .slick-header-columns,
.s-Performance-PerformanceCallScheduleActivitiesGrid .slick-header-columns,
.s-Performance-PerformanceCallScheduleActivitiesGrid .slick-header-columns,
.s-Performance-PerformanceCallCircularsGrid .slick-header-columns,
.s-Performance-PerformanceCallCircularsAllGrid .slick-header-columns,
.s-Performance-PerformanceMonthlyGrid .slick-header-columns,
.s-Performance-PerformanceQuarterlyGrid .slick-header-columns,
.s-Performance-PerformanceQuarterFourGrid .slick-header-columns,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .slick-header-columns,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .slick-header-columns,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .slick-header-columns,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .slick-header-columns,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .slick-header-columns,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .slick-header-columns,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .slick-header-columns,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .slick-header-columns,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .slick-header-columns,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .slick-header-columns,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .slick-header-columns,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .slick-header-columns,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .slick-header-columns,
.s-Performance-PerformanceFinancialItemsGrid .slick-header-columns,
.s-Performance-PerformanceNonFinancialItemsGrid .slick-header-columns,
.s-Performance-PerformanceFinancialMonthItemsGrid .slick-header-columns,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .slick-header-columns,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .slick-header-columns,
.s-Common-DashboardWidgetGrid .slick-header-columns,
.s-Administration-BcPproExceptionsGrid .slick-header-columns,
.s-Administration-IssueTrackingIssuesGrid .slick-headerrow-columns,
.s-Administration-IssueTrackingFeedbackGrid .slick-headerrow-columns,
.s-Administration-IssueTrackingChangeRequestGrid .slick-headerrow-columns,
.s-Administration-NotificationTemplatesGrid .slick-headerrow-columns,
.s-Administration-BudgetAutoTestGrid .slick-headerrow-columns,
.s-Administration-CashCallAutoTestGrid .slick-headerrow-columns,
.s-Administration-PerformanceMonthAutoTestGrid .slick-headerrow-columns,
.s-Administration-PerformanceQuarterAutoTestGrid .slick-headerrow-columns,
.s-Administration-SiteNotificationsGrid .slick-headerrow-columns,
.s-Budget-AnnualBudgetsGrid .slick-headerrow-columns,
.s-Budget-AnnualBudgetsAllGrid .slick-headerrow-columns,
.s-Budget-BudgetProfilesABGrid .slick-headerrow-columns,
.s-Budget-OperatorProposalsGrid .slick-headerrow-columns,
.s-Budget-MACOMApprovalsGrid .slick-headerrow-columns,
.s-Budget-OPCOMApprovalsGrid .slick-headerrow-columns,
.s-Budget-ApprovedBudgetsGrid .slick-headerrow-columns,
.s-Budget-FiveYearForecastsGrid .slick-headerrow-columns,
.s-Budget-NUIMSPlanningReviewsGrid .slick-headerrow-columns,
.s-Budget-SUBCOMRecommendationsGrid .slick-headerrow-columns,
.s-Budget-SUBCOMRecommendationsAllGrid .slick-headerrow-columns,
.s-Budget-TECOMRecommendationsGrid .slick-headerrow-columns,
.s-Budget-BudgetProfilesGrid .slick-headerrow-columns,
.s-Budget-BudgetProfilesAllGrid .slick-headerrow-columns,
.s-Budget-BudgetsGrid .slick-headerrow-columns,
.s-Budget-CallCircularsGrid .slick-headerrow-columns,
.s-Budget-CallCircularsAllGrid .slick-headerrow-columns,
.s-Budget-CallSchedulesGrid .slick-headerrow-columns,
.s-Budget-CallScheduleCalendarsGrid .slick-headerrow-columns,
.s-Budget-CallScheduleCalendarsAllGrid .slick-headerrow-columns,
.s-Budget-BudgetThresholdsAllGrid .slick-headerrow-columns,
.s-Budget-BudgetThresholdsGrid .slick-headerrow-columns,
.s-Budget-BudgetThresholdBackupGrid .slick-headerrow-columns,
.s-Budget-BTFundingTrancheBackupGrid .slick-headerrow-columns,
.s-Budget-OperatorTemplatesGrid .slick-headerrow-columns,
.s-Budget-TemplateCommitteeGrid .slick-headerrow-columns,
.s-Budget-BudgetHistoricBriefGrid .slick-headerrow-columns,
.s-Budget-BudgetHistoricTemplateGrid .slick-headerrow-columns,
.s-Budget-BTFundingTranchesGrid .slick-headerrow-columns,
.s-Budget-BTFundingTranchesAllGrid .slick-headerrow-columns,
.s-Budget-BTFundingTrancheBreakdownsGrid .slick-headerrow-columns,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .slick-headerrow-columns,
.s-Budget-CallScheduleCalendarsGrid .slick-headerrow-columns,
.s-Budget-CallCircularsAllGrid .slick-headerrow-columns,
.s-Budget-CallCircularsGrid .slick-headerrow-columns,
.s-Budget-CallScheduleActivitiesGrid .slick-headerrow-columns,
.s-Budget-CallSchedulesAllGrid .slick-headerrow-columns,
.s-Budget-CallSchedulesGrid .slick-headerrow-columns,
.s-Budget-SwotsGrid .slick-headerrow-columns,
.s-Budget-BudgetAssumptionsGrid .slick-headerrow-columns,
.s-Budget-SeismicActivitiesGrid .slick-headerrow-columns,
.s-Budget-ReservesGrid .slick-headerrow-columns,
.s-Budget-ProductionGrid .slick-headerrow-columns,
.s-Budget-GasUtilizationGrid .slick-headerrow-columns,
.s-Budget-RigSequencesGrid .slick-headerrow-columns,
.s-Budget-VesselSchedulesGrid .slick-headerrow-columns,
.s-Budget-HrSummariesGrid .slick-headerrow-columns,
.s-Budget-SharedCostsGrid .slick-headerrow-columns,
.s-Budget-SharedCostAllocationsGrid .slick-headerrow-columns,
.s-Budget-GeneralWorkProgrammesGrid .slick-headerrow-columns,
.s-Budget-ExpenditureBreakdownsGrid .slick-headerrow-columns,
.s-Budget-WellCostsNonRigWorkGrid .slick-headerrow-columns,
.s-Budget-NonRigWorkOverCostElementsGrid .slick-headerrow-columns,
.s-Budget-WellCostsGrid .slick-headerrow-columns,
.s-Budget-WellCostElementsGrid .slick-headerrow-columns,
.s-Budget-ProjectSummariesGrid .slick-headerrow-columns,
.s-Budget-PADWorkProgrammesGrid .slick-headerrow-columns,
.s-Budget-RigSequencesGrid .slick-headerrow-columns,
.s-Budget-BlocksGrid .slick-headerrow-columns,
.s-Budget-CashCallEquitySharesGrid .slick-headerrow-columns,
.s-Budget-FieldsGrid .slick-headerrow-columns,
.s-Budget-FieldTerrainsGrid .slick-headerrow-columns,
.s-Budget-FundingTranchesGrid .slick-headerrow-columns,
.s-Budget-FundingTranchesAllGrid .slick-headerrow-columns,
.s-Budget-MajorDriversGrid .slick-headerrow-columns,
.s-Budget-BudgetData_ExcelTemplatesGrid .slick-headerrow-columns,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .slick-headerrow-columns,
.s-Budget-ExcelTemplatesGrid .slick-headerrow-columns,
.s-Budget-OperatorBlocksAllGrid .slick-headerrow-columns,
.s-Budget-OperatorBlocksGrid .slick-headerrow-columns,
.s-Budget-ProductsGrid .slick-headerrow-columns,
.s-Budget-RigsGrid .slick-headerrow-columns,
.s-Budget-SeismicActivityDescriptionsGrid .slick-headerrow-columns,
.s-Budget-UAPCodeAccessPermissionsGrid .slick-headerrow-columns,
.s-Budget-UAPCodesAllGrid .slick-headerrow-columns,
.s-Budget-NUIMS_UAPCodesGrid .slick-headerrow-columns,
.s-Budget-Operator_UAPCodesGrid .slick-headerrow-columns,
.s-Budget-VesselsGrid .slick-headerrow-columns,
.s-Budget-WellCostElementGroupsGrid .slick-headerrow-columns,
.s-Budget-WellCostsElementDetailsGrid .slick-headerrow-columns,
.s-Budget-WellCostsElementDetailsAllGrid .slick-headerrow-columns,
.s-Budget-NonRigActivityTypesGrid .slick-headerrow-columns,
.s-Budget-NonRigElementDetailsGrid .slick-headerrow-columns,
.s-Budget-NonRigElementDetailsAllGrid .slick-headerrow-columns,
.s-Budget-WellsAllGrid .slick-headerrow-columns,
.s-Budget-WellsGrid .slick-headerrow-columns,
.s-Budget-ProjectsGrid .slick-headerrow-columns,
.s-Budget-ResponsiblePartyOperatorsGrid .slick-headerrow-columns,
.s-Budget-ContractApprovingBodiesGrid .slick-headerrow-columns,
.s-Budget-CountryGrid .slick-headerrow-columns,
.s-Budget-FundingTrancheSourcesGrid .slick-headerrow-columns,
.s-Budget-MonthsGrid .slick-headerrow-columns,
.s-Budget-NationalityGrid .slick-headerrow-columns,
.s-Budget-PadClustersGrid .slick-headerrow-columns,
.s-Budget-PadCommunitiesGrid .slick-headerrow-columns,
.s-Budget-SecurityRolesGrid .slick-headerrow-columns,
.s-Budget-TemplatesGrid .slick-headerrow-columns,
.s-Budget-TerrainsGrid .slick-headerrow-columns,
.s-Budget-UAPAccessPermissionsGrid .slick-headerrow-columns,
.s-Budget-UAPCodeLevelsGrid .slick-headerrow-columns,
.s-Budget-UAPCodeGroupsGrid .slick-headerrow-columns,
.s-Budget-UAPCodeGroupTitlesGrid .slick-headerrow-columns,
.s-Budget-UnitsGrid .slick-headerrow-columns,
.s-Budget-UnitsOfMeasureGrid .slick-headerrow-columns,
.s-Budget-UnitsOfMeasureUsageGrid .slick-headerrow-columns,
.s-Budget-VesselActivitiesGrid .slick-headerrow-columns,
.s-Budget-WellClassificationsGrid .slick-headerrow-columns,
.s-Budget-YearsGrid .slick-headerrow-columns,
.s-Budget-AnnualBudgetStatusesGrid .slick-headerrow-columns,
.s-Budget-ApprovedBudgetStatusesGrid .slick-headerrow-columns,
.s-Budget-BudgetPreviewStatusesGrid .slick-headerrow-columns,
.s-Budget-BudgetProfileStatusesGrid .slick-headerrow-columns,
.s-Budget-BudgetStatusesGrid .slick-headerrow-columns,
.s-Budget-BudgetThresholdStatusesGrid .slick-headerrow-columns,
.s-Budget-ButtonStatusesGrid .slick-headerrow-columns,
.s-Budget-CallCircularStatusesGrid .slick-headerrow-columns,
.s-Budget-CashCallStatusesGrid .slick-headerrow-columns,
.s-Budget-ContractStatusesGrid .slick-headerrow-columns,
.s-Budget-FieldStatusesGrid .slick-headerrow-columns,
.s-Budget-FincomStatusesGrid .slick-headerrow-columns,
.s-Budget-MacomReviewStatusesGrid .slick-headerrow-columns,
.s-Budget-NuimsPlanningReviewStatusesGrid .slick-headerrow-columns,
.s-Budget-OpcomReviewStatusesGrid .slick-headerrow-columns,
.s-Budget-OperatorProposalStatusesGrid .slick-headerrow-columns,
.s-Budget-OperatorStatusesGrid .slick-headerrow-columns,
.s-Budget-OwnershipStatusesGrid .slick-headerrow-columns,
.s-Budget-PerformanceStatusesGrid .slick-headerrow-columns,
.s-Budget-ProjectStatusGrid .slick-headerrow-columns,
.s-Budget-RealignedBudgetStatusesGrid .slick-headerrow-columns,
.s-Budget-SubcomRecommendationStatusesGrid .slick-headerrow-columns,
.s-Budget-TecomRecommendationStatusesGrid .slick-headerrow-columns,
.s-Budget-TemplateStatusesGrid .slick-headerrow-columns,
.s-Budget-UAPCodeStatusesGrid .slick-headerrow-columns,
.s-Budget-AgreementTypesGrid .slick-headerrow-columns,
.s-Budget-BriefTypesGrid .slick-headerrow-columns,
.s-Budget-BudgetTypesGrid .slick-headerrow-columns,
.s-Budget-MeetingGrid .slick-headerrow-columns,
.s-Budget-MeetingAgendaGrid .slick-headerrow-columns,
.s-Budget-MeetingAgendaRelevantGrid .slick-headerrow-columns,
.s-Budget-MeetingAgendaTypeGrid .slick-headerrow-columns,
.s-Budget-MeetingDecisionGrid .slick-headerrow-columns,
.s-Budget-MeetingDecisionRelevantGrid .slick-headerrow-columns,
.s-Budget-MeetingLocationGrid .slick-headerrow-columns,
.s-Budget-MeetingTypeGrid .slick-headerrow-columns,
.s-Budget-FinancialDataGrid .slick-headerrow-columns,
.s-Budget-WorkflowButtonSequenceTypesGrid .slick-headerrow-columns,
.s-Budget-CommitteeTypesGrid .slick-headerrow-columns,
.s-Budget-ContractTypesGrid .slick-headerrow-columns,
.s-Budget-EmploymentTypeGrid .slick-headerrow-columns,
.s-Budget-ExpenditureTypesGrid .slick-headerrow-columns,
.s-Budget-FundingTrancheTypesGrid .slick-headerrow-columns,
.s-Budget-GasUtilizationTypesGrid .slick-headerrow-columns,
.s-Budget-PadProgramTypesGrid .slick-headerrow-columns,
.s-Budget-PadTypesGrid .slick-headerrow-columns,
.s-Budget-ProductTypesGrid .slick-headerrow-columns,
.s-Budget-ProjectTypesGrid .slick-headerrow-columns,
.s-Budget-RigTypesGrid .slick-headerrow-columns,
.s-Budget-SharedCostAllocationTypesGrid .slick-headerrow-columns,
.s-Budget-UAPCodeTypesGrid .slick-headerrow-columns,
.s-Budget-VesselTypesGrid .slick-headerrow-columns,
.s-Budget-WellCostElementTypesGrid .slick-headerrow-columns,
.s-Budget-WellTypesGrid .slick-headerrow-columns,
.s-Budget-BudgetPreviewGrid .slick-headerrow-columns,
.s-Budget-FINCOMAppendixIGrid .slick-headerrow-columns,
.s-Budget-FINCOMAppendixIIGrid .slick-headerrow-columns,
.s-Budget-FINCOMCollationGrid .slick-headerrow-columns,
.s-Budget-CallScheduleActionsGrid .slick-headerrow-columns,
.s-CashCall-CashCallCalendarsGrid .slick-headerrow-columns,
.s-CashCall-CashCallActivitiesGrid .slick-headerrow-columns,
.s-CashCall-CashCallScheduleActivitiesGrid .slick-headerrow-columns,
.s-CashCall-CashCallCircularsGrid .slick-headerrow-columns,
.s-CashCall-CashCallCircularsAllGrid .slick-headerrow-columns,
.s-CashCall-CashCallCalendarsGrid .slick-headerrow-columns,
.s-CashCall-CashCallCalendarsAllGrid .slick-headerrow-columns,
.s-CashCall-CashCallBriefsGrid .slick-headerrow-columns,
.s-CashCall-CashCallCashComRecommendationsGrid .slick-headerrow-columns,
.s-CashCall-CashCallMandatesGrid .slick-headerrow-columns,
.s-CashCall-CashCallMeetingDayAttendancesGrid .slick-headerrow-columns,
.s-CashCall-CashCallPayablesGrid .slick-headerrow-columns,
.s-CashCall-CashCallsGrid .slick-headerrow-columns,
.s-CashCall-CashCallsAllGrid .slick-headerrow-columns,
.s-CashCall-CashCallsEPGrid .slick-headerrow-columns,
.s-CashCall-CashCallsBDGGrid .slick-headerrow-columns,
.s-CashCall-CashCallSchedulesGrid .slick-headerrow-columns,
.s-CashCall-CashCallSchedulesAllGrid .slick-headerrow-columns,
.s-CashCall-CashCallRequestsGrid .slick-headerrow-columns,
.s-CashCall-CashCallRequestsEPGrid .slick-headerrow-columns,
.s-CashCall-CashCallRequestItemsGrid .slick-headerrow-columns,
.s-CashCall-CashCallUapCodeItemsGrid .slick-headerrow-columns,
.s-CashCall-CashCallOperatorRequestsGrid .slick-headerrow-columns,
.s-CashCall-CashCallNuimsReviewsGrid .slick-headerrow-columns,
.s-CashCall-CashCallManagerJVReviewGrid .slick-headerrow-columns,
.s-CashCall-CashCallCashComSubComReviewGrid .slick-headerrow-columns,
.s-CashCall-CashCallFincomCollationGrid .slick-headerrow-columns,
.s-CashCall-CashCallSubcomRecomendationsGrid .slick-headerrow-columns,
.s-CashCall-CashCallEndorsementGrid .slick-headerrow-columns,
.s-CashCall-CashCallGgmSummariesGrid .slick-headerrow-columns,
.s-CashCall-CashCallGgmSummariesItemGrid .slick-headerrow-columns,
.s-CashCall-CashCallPayablesGrid .slick-headerrow-columns,
.s-CashCall-CashCallPayableItemsGrid .slick-headerrow-columns,
.s-CashCall-CashCallPayableItemsAdjustedGrid .slick-headerrow-columns,
.s-CashCall-CashCallPayablesAnnualGrid .slick-headerrow-columns,
.s-CashCall-CashCallMandatesGrid .slick-headerrow-columns,
.s-CashCall-CashCallPaymentConfirmationGrid .slick-headerrow-columns,
.s-CashCall-CashCallPayableItemsEditor .slick-headerrow-columns,
.s-CashCall-CashCallPaymentDataEditor .slick-headerrow-columns,
.s-CashCall-CashCallPaymentDataGrid .slick-headerrow-columns,
.s-Performance-PerformancesGrid .slick-headerrow-columns,
.s-Performance-PerformancesAllGrid .slick-headerrow-columns,
.s-Performance-PerformancesBDGGrid .slick-headerrow-columns,
.s-Performance-PerformanceSchedulesGrid .slick-headerrow-columns,
.s-Performance-PerformanceCallScheduleCalendarsGrid .slick-headerrow-columns,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .slick-headerrow-columns,
.s-Performance-PerformanceCallScheduleActivitiesGrid .slick-headerrow-columns,
.s-Performance-PerformanceCallScheduleActivitiesGrid .slick-headerrow-columns,
.s-Performance-PerformanceCallCircularsGrid .slick-headerrow-columns,
.s-Performance-PerformanceCallCircularsAllGrid .slick-headerrow-columns,
.s-Performance-PerformanceMonthlyGrid .slick-headerrow-columns,
.s-Performance-PerformanceQuarterlyGrid .slick-headerrow-columns,
.s-Performance-PerformanceQuarterFourGrid .slick-headerrow-columns,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .slick-headerrow-columns,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .slick-headerrow-columns,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .slick-headerrow-columns,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .slick-headerrow-columns,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .slick-headerrow-columns,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .slick-headerrow-columns,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .slick-headerrow-columns,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .slick-headerrow-columns,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .slick-headerrow-columns,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .slick-headerrow-columns,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .slick-headerrow-columns,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .slick-headerrow-columns,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .slick-headerrow-columns,
.s-Performance-PerformanceFinancialItemsGrid .slick-headerrow-columns,
.s-Performance-PerformanceNonFinancialItemsGrid .slick-headerrow-columns,
.s-Performance-PerformanceFinancialMonthItemsGrid .slick-headerrow-columns,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .slick-headerrow-columns,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .slick-headerrow-columns,
.s-Common-DashboardWidgetGrid .slick-headerrow-columns,
.s-Administration-BcPproExceptionsGrid .slick-headerrow-columns {
  position: relative;
  right: 0px;
  left: 0px;
  cursor: default;
  overflow: hidden;
  width: 100%;
  white-space: normal;
  height: 25px;
  background: #D9ECFF;
  border-right: 1px solid silver;
  border-left: 1px solid silver;
  border-top: 0px;
  border-bottom: 1px solid #000000;
}
.s-Administration-IssueTrackingIssuesGrid .slick-header-column.ui-state-default,
.s-Administration-IssueTrackingFeedbackGrid .slick-header-column.ui-state-default,
.s-Administration-IssueTrackingChangeRequestGrid .slick-header-column.ui-state-default,
.s-Administration-NotificationTemplatesGrid .slick-header-column.ui-state-default,
.s-Administration-BudgetAutoTestGrid .slick-header-column.ui-state-default,
.s-Administration-CashCallAutoTestGrid .slick-header-column.ui-state-default,
.s-Administration-PerformanceMonthAutoTestGrid .slick-header-column.ui-state-default,
.s-Administration-PerformanceQuarterAutoTestGrid .slick-header-column.ui-state-default,
.s-Administration-SiteNotificationsGrid .slick-header-column.ui-state-default,
.s-Budget-AnnualBudgetsGrid .slick-header-column.ui-state-default,
.s-Budget-AnnualBudgetsAllGrid .slick-header-column.ui-state-default,
.s-Budget-BudgetProfilesABGrid .slick-header-column.ui-state-default,
.s-Budget-OperatorProposalsGrid .slick-header-column.ui-state-default,
.s-Budget-MACOMApprovalsGrid .slick-header-column.ui-state-default,
.s-Budget-OPCOMApprovalsGrid .slick-header-column.ui-state-default,
.s-Budget-ApprovedBudgetsGrid .slick-header-column.ui-state-default,
.s-Budget-FiveYearForecastsGrid .slick-header-column.ui-state-default,
.s-Budget-NUIMSPlanningReviewsGrid .slick-header-column.ui-state-default,
.s-Budget-SUBCOMRecommendationsGrid .slick-header-column.ui-state-default,
.s-Budget-SUBCOMRecommendationsAllGrid .slick-header-column.ui-state-default,
.s-Budget-TECOMRecommendationsGrid .slick-header-column.ui-state-default,
.s-Budget-BudgetProfilesGrid .slick-header-column.ui-state-default,
.s-Budget-BudgetProfilesAllGrid .slick-header-column.ui-state-default,
.s-Budget-BudgetsGrid .slick-header-column.ui-state-default,
.s-Budget-CallCircularsGrid .slick-header-column.ui-state-default,
.s-Budget-CallCircularsAllGrid .slick-header-column.ui-state-default,
.s-Budget-CallSchedulesGrid .slick-header-column.ui-state-default,
.s-Budget-CallScheduleCalendarsGrid .slick-header-column.ui-state-default,
.s-Budget-CallScheduleCalendarsAllGrid .slick-header-column.ui-state-default,
.s-Budget-BudgetThresholdsAllGrid .slick-header-column.ui-state-default,
.s-Budget-BudgetThresholdsGrid .slick-header-column.ui-state-default,
.s-Budget-BudgetThresholdBackupGrid .slick-header-column.ui-state-default,
.s-Budget-BTFundingTrancheBackupGrid .slick-header-column.ui-state-default,
.s-Budget-OperatorTemplatesGrid .slick-header-column.ui-state-default,
.s-Budget-TemplateCommitteeGrid .slick-header-column.ui-state-default,
.s-Budget-BudgetHistoricBriefGrid .slick-header-column.ui-state-default,
.s-Budget-BudgetHistoricTemplateGrid .slick-header-column.ui-state-default,
.s-Budget-BTFundingTranchesGrid .slick-header-column.ui-state-default,
.s-Budget-BTFundingTranchesAllGrid .slick-header-column.ui-state-default,
.s-Budget-BTFundingTrancheBreakdownsGrid .slick-header-column.ui-state-default,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .slick-header-column.ui-state-default,
.s-Budget-CallScheduleCalendarsGrid .slick-header-column.ui-state-default,
.s-Budget-CallCircularsAllGrid .slick-header-column.ui-state-default,
.s-Budget-CallCircularsGrid .slick-header-column.ui-state-default,
.s-Budget-CallScheduleActivitiesGrid .slick-header-column.ui-state-default,
.s-Budget-CallSchedulesAllGrid .slick-header-column.ui-state-default,
.s-Budget-CallSchedulesGrid .slick-header-column.ui-state-default,
.s-Budget-SwotsGrid .slick-header-column.ui-state-default,
.s-Budget-BudgetAssumptionsGrid .slick-header-column.ui-state-default,
.s-Budget-SeismicActivitiesGrid .slick-header-column.ui-state-default,
.s-Budget-ReservesGrid .slick-header-column.ui-state-default,
.s-Budget-ProductionGrid .slick-header-column.ui-state-default,
.s-Budget-GasUtilizationGrid .slick-header-column.ui-state-default,
.s-Budget-RigSequencesGrid .slick-header-column.ui-state-default,
.s-Budget-VesselSchedulesGrid .slick-header-column.ui-state-default,
.s-Budget-HrSummariesGrid .slick-header-column.ui-state-default,
.s-Budget-SharedCostsGrid .slick-header-column.ui-state-default,
.s-Budget-SharedCostAllocationsGrid .slick-header-column.ui-state-default,
.s-Budget-GeneralWorkProgrammesGrid .slick-header-column.ui-state-default,
.s-Budget-ExpenditureBreakdownsGrid .slick-header-column.ui-state-default,
.s-Budget-WellCostsNonRigWorkGrid .slick-header-column.ui-state-default,
.s-Budget-NonRigWorkOverCostElementsGrid .slick-header-column.ui-state-default,
.s-Budget-WellCostsGrid .slick-header-column.ui-state-default,
.s-Budget-WellCostElementsGrid .slick-header-column.ui-state-default,
.s-Budget-ProjectSummariesGrid .slick-header-column.ui-state-default,
.s-Budget-PADWorkProgrammesGrid .slick-header-column.ui-state-default,
.s-Budget-RigSequencesGrid .slick-header-column.ui-state-default,
.s-Budget-BlocksGrid .slick-header-column.ui-state-default,
.s-Budget-CashCallEquitySharesGrid .slick-header-column.ui-state-default,
.s-Budget-FieldsGrid .slick-header-column.ui-state-default,
.s-Budget-FieldTerrainsGrid .slick-header-column.ui-state-default,
.s-Budget-FundingTranchesGrid .slick-header-column.ui-state-default,
.s-Budget-FundingTranchesAllGrid .slick-header-column.ui-state-default,
.s-Budget-MajorDriversGrid .slick-header-column.ui-state-default,
.s-Budget-BudgetData_ExcelTemplatesGrid .slick-header-column.ui-state-default,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .slick-header-column.ui-state-default,
.s-Budget-ExcelTemplatesGrid .slick-header-column.ui-state-default,
.s-Budget-OperatorBlocksAllGrid .slick-header-column.ui-state-default,
.s-Budget-OperatorBlocksGrid .slick-header-column.ui-state-default,
.s-Budget-ProductsGrid .slick-header-column.ui-state-default,
.s-Budget-RigsGrid .slick-header-column.ui-state-default,
.s-Budget-SeismicActivityDescriptionsGrid .slick-header-column.ui-state-default,
.s-Budget-UAPCodeAccessPermissionsGrid .slick-header-column.ui-state-default,
.s-Budget-UAPCodesAllGrid .slick-header-column.ui-state-default,
.s-Budget-NUIMS_UAPCodesGrid .slick-header-column.ui-state-default,
.s-Budget-Operator_UAPCodesGrid .slick-header-column.ui-state-default,
.s-Budget-VesselsGrid .slick-header-column.ui-state-default,
.s-Budget-WellCostElementGroupsGrid .slick-header-column.ui-state-default,
.s-Budget-WellCostsElementDetailsGrid .slick-header-column.ui-state-default,
.s-Budget-WellCostsElementDetailsAllGrid .slick-header-column.ui-state-default,
.s-Budget-NonRigActivityTypesGrid .slick-header-column.ui-state-default,
.s-Budget-NonRigElementDetailsGrid .slick-header-column.ui-state-default,
.s-Budget-NonRigElementDetailsAllGrid .slick-header-column.ui-state-default,
.s-Budget-WellsAllGrid .slick-header-column.ui-state-default,
.s-Budget-WellsGrid .slick-header-column.ui-state-default,
.s-Budget-ProjectsGrid .slick-header-column.ui-state-default,
.s-Budget-ResponsiblePartyOperatorsGrid .slick-header-column.ui-state-default,
.s-Budget-ContractApprovingBodiesGrid .slick-header-column.ui-state-default,
.s-Budget-CountryGrid .slick-header-column.ui-state-default,
.s-Budget-FundingTrancheSourcesGrid .slick-header-column.ui-state-default,
.s-Budget-MonthsGrid .slick-header-column.ui-state-default,
.s-Budget-NationalityGrid .slick-header-column.ui-state-default,
.s-Budget-PadClustersGrid .slick-header-column.ui-state-default,
.s-Budget-PadCommunitiesGrid .slick-header-column.ui-state-default,
.s-Budget-SecurityRolesGrid .slick-header-column.ui-state-default,
.s-Budget-TemplatesGrid .slick-header-column.ui-state-default,
.s-Budget-TerrainsGrid .slick-header-column.ui-state-default,
.s-Budget-UAPAccessPermissionsGrid .slick-header-column.ui-state-default,
.s-Budget-UAPCodeLevelsGrid .slick-header-column.ui-state-default,
.s-Budget-UAPCodeGroupsGrid .slick-header-column.ui-state-default,
.s-Budget-UAPCodeGroupTitlesGrid .slick-header-column.ui-state-default,
.s-Budget-UnitsGrid .slick-header-column.ui-state-default,
.s-Budget-UnitsOfMeasureGrid .slick-header-column.ui-state-default,
.s-Budget-UnitsOfMeasureUsageGrid .slick-header-column.ui-state-default,
.s-Budget-VesselActivitiesGrid .slick-header-column.ui-state-default,
.s-Budget-WellClassificationsGrid .slick-header-column.ui-state-default,
.s-Budget-YearsGrid .slick-header-column.ui-state-default,
.s-Budget-AnnualBudgetStatusesGrid .slick-header-column.ui-state-default,
.s-Budget-ApprovedBudgetStatusesGrid .slick-header-column.ui-state-default,
.s-Budget-BudgetPreviewStatusesGrid .slick-header-column.ui-state-default,
.s-Budget-BudgetProfileStatusesGrid .slick-header-column.ui-state-default,
.s-Budget-BudgetStatusesGrid .slick-header-column.ui-state-default,
.s-Budget-BudgetThresholdStatusesGrid .slick-header-column.ui-state-default,
.s-Budget-ButtonStatusesGrid .slick-header-column.ui-state-default,
.s-Budget-CallCircularStatusesGrid .slick-header-column.ui-state-default,
.s-Budget-CashCallStatusesGrid .slick-header-column.ui-state-default,
.s-Budget-ContractStatusesGrid .slick-header-column.ui-state-default,
.s-Budget-FieldStatusesGrid .slick-header-column.ui-state-default,
.s-Budget-FincomStatusesGrid .slick-header-column.ui-state-default,
.s-Budget-MacomReviewStatusesGrid .slick-header-column.ui-state-default,
.s-Budget-NuimsPlanningReviewStatusesGrid .slick-header-column.ui-state-default,
.s-Budget-OpcomReviewStatusesGrid .slick-header-column.ui-state-default,
.s-Budget-OperatorProposalStatusesGrid .slick-header-column.ui-state-default,
.s-Budget-OperatorStatusesGrid .slick-header-column.ui-state-default,
.s-Budget-OwnershipStatusesGrid .slick-header-column.ui-state-default,
.s-Budget-PerformanceStatusesGrid .slick-header-column.ui-state-default,
.s-Budget-ProjectStatusGrid .slick-header-column.ui-state-default,
.s-Budget-RealignedBudgetStatusesGrid .slick-header-column.ui-state-default,
.s-Budget-SubcomRecommendationStatusesGrid .slick-header-column.ui-state-default,
.s-Budget-TecomRecommendationStatusesGrid .slick-header-column.ui-state-default,
.s-Budget-TemplateStatusesGrid .slick-header-column.ui-state-default,
.s-Budget-UAPCodeStatusesGrid .slick-header-column.ui-state-default,
.s-Budget-AgreementTypesGrid .slick-header-column.ui-state-default,
.s-Budget-BriefTypesGrid .slick-header-column.ui-state-default,
.s-Budget-BudgetTypesGrid .slick-header-column.ui-state-default,
.s-Budget-MeetingGrid .slick-header-column.ui-state-default,
.s-Budget-MeetingAgendaGrid .slick-header-column.ui-state-default,
.s-Budget-MeetingAgendaRelevantGrid .slick-header-column.ui-state-default,
.s-Budget-MeetingAgendaTypeGrid .slick-header-column.ui-state-default,
.s-Budget-MeetingDecisionGrid .slick-header-column.ui-state-default,
.s-Budget-MeetingDecisionRelevantGrid .slick-header-column.ui-state-default,
.s-Budget-MeetingLocationGrid .slick-header-column.ui-state-default,
.s-Budget-MeetingTypeGrid .slick-header-column.ui-state-default,
.s-Budget-FinancialDataGrid .slick-header-column.ui-state-default,
.s-Budget-WorkflowButtonSequenceTypesGrid .slick-header-column.ui-state-default,
.s-Budget-CommitteeTypesGrid .slick-header-column.ui-state-default,
.s-Budget-ContractTypesGrid .slick-header-column.ui-state-default,
.s-Budget-EmploymentTypeGrid .slick-header-column.ui-state-default,
.s-Budget-ExpenditureTypesGrid .slick-header-column.ui-state-default,
.s-Budget-FundingTrancheTypesGrid .slick-header-column.ui-state-default,
.s-Budget-GasUtilizationTypesGrid .slick-header-column.ui-state-default,
.s-Budget-PadProgramTypesGrid .slick-header-column.ui-state-default,
.s-Budget-PadTypesGrid .slick-header-column.ui-state-default,
.s-Budget-ProductTypesGrid .slick-header-column.ui-state-default,
.s-Budget-ProjectTypesGrid .slick-header-column.ui-state-default,
.s-Budget-RigTypesGrid .slick-header-column.ui-state-default,
.s-Budget-SharedCostAllocationTypesGrid .slick-header-column.ui-state-default,
.s-Budget-UAPCodeTypesGrid .slick-header-column.ui-state-default,
.s-Budget-VesselTypesGrid .slick-header-column.ui-state-default,
.s-Budget-WellCostElementTypesGrid .slick-header-column.ui-state-default,
.s-Budget-WellTypesGrid .slick-header-column.ui-state-default,
.s-Budget-BudgetPreviewGrid .slick-header-column.ui-state-default,
.s-Budget-FINCOMAppendixIGrid .slick-header-column.ui-state-default,
.s-Budget-FINCOMAppendixIIGrid .slick-header-column.ui-state-default,
.s-Budget-FINCOMCollationGrid .slick-header-column.ui-state-default,
.s-Budget-CallScheduleActionsGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallCalendarsGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallActivitiesGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallScheduleActivitiesGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallCircularsGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallCircularsAllGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallCalendarsGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallCalendarsAllGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallBriefsGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallCashComRecommendationsGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallMandatesGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallMeetingDayAttendancesGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallPayablesGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallsGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallsAllGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallsEPGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallsBDGGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallSchedulesGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallSchedulesAllGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallRequestsGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallRequestsEPGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallRequestItemsGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallUapCodeItemsGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallOperatorRequestsGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallNuimsReviewsGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallManagerJVReviewGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallCashComSubComReviewGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallFincomCollationGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallSubcomRecomendationsGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallEndorsementGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallGgmSummariesGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallGgmSummariesItemGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallPayablesGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallPayableItemsGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallPayableItemsAdjustedGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallPayablesAnnualGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallMandatesGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallPaymentConfirmationGrid .slick-header-column.ui-state-default,
.s-CashCall-CashCallPayableItemsEditor .slick-header-column.ui-state-default,
.s-CashCall-CashCallPaymentDataEditor .slick-header-column.ui-state-default,
.s-CashCall-CashCallPaymentDataGrid .slick-header-column.ui-state-default,
.s-Performance-PerformancesGrid .slick-header-column.ui-state-default,
.s-Performance-PerformancesAllGrid .slick-header-column.ui-state-default,
.s-Performance-PerformancesBDGGrid .slick-header-column.ui-state-default,
.s-Performance-PerformanceSchedulesGrid .slick-header-column.ui-state-default,
.s-Performance-PerformanceCallScheduleCalendarsGrid .slick-header-column.ui-state-default,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .slick-header-column.ui-state-default,
.s-Performance-PerformanceCallScheduleActivitiesGrid .slick-header-column.ui-state-default,
.s-Performance-PerformanceCallScheduleActivitiesGrid .slick-header-column.ui-state-default,
.s-Performance-PerformanceCallCircularsGrid .slick-header-column.ui-state-default,
.s-Performance-PerformanceCallCircularsAllGrid .slick-header-column.ui-state-default,
.s-Performance-PerformanceMonthlyGrid .slick-header-column.ui-state-default,
.s-Performance-PerformanceQuarterlyGrid .slick-header-column.ui-state-default,
.s-Performance-PerformanceQuarterFourGrid .slick-header-column.ui-state-default,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .slick-header-column.ui-state-default,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .slick-header-column.ui-state-default,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .slick-header-column.ui-state-default,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .slick-header-column.ui-state-default,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .slick-header-column.ui-state-default,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .slick-header-column.ui-state-default,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .slick-header-column.ui-state-default,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .slick-header-column.ui-state-default,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .slick-header-column.ui-state-default,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .slick-header-column.ui-state-default,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .slick-header-column.ui-state-default,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .slick-header-column.ui-state-default,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .slick-header-column.ui-state-default,
.s-Performance-PerformanceFinancialItemsGrid .slick-header-column.ui-state-default,
.s-Performance-PerformanceNonFinancialItemsGrid .slick-header-column.ui-state-default,
.s-Performance-PerformanceFinancialMonthItemsGrid .slick-header-column.ui-state-default,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .slick-header-column.ui-state-default,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .slick-header-column.ui-state-default,
.s-Common-DashboardWidgetGrid .slick-header-column.ui-state-default,
.s-Administration-BcPproExceptionsGrid .slick-header-column.ui-state-default {
  position: relative;
  display: inline-block;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  height: 100%;
  line-height: 14px;
  font-size: 12px;
  margin: 0;
  padding: 4px;
  border-right: 1px solid silver;
  border-left: 0px;
  border-top: 1px solid silver;
  border-bottom: 0px;
  float: left;
}
.s-Administration-IssueTrackingIssuesGrid .slick-headerrow-column.ui-state-default,
.s-Administration-IssueTrackingFeedbackGrid .slick-headerrow-column.ui-state-default,
.s-Administration-IssueTrackingChangeRequestGrid .slick-headerrow-column.ui-state-default,
.s-Administration-NotificationTemplatesGrid .slick-headerrow-column.ui-state-default,
.s-Administration-BudgetAutoTestGrid .slick-headerrow-column.ui-state-default,
.s-Administration-CashCallAutoTestGrid .slick-headerrow-column.ui-state-default,
.s-Administration-PerformanceMonthAutoTestGrid .slick-headerrow-column.ui-state-default,
.s-Administration-PerformanceQuarterAutoTestGrid .slick-headerrow-column.ui-state-default,
.s-Administration-SiteNotificationsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-AnnualBudgetsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-AnnualBudgetsAllGrid .slick-headerrow-column.ui-state-default,
.s-Budget-BudgetProfilesABGrid .slick-headerrow-column.ui-state-default,
.s-Budget-OperatorProposalsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-MACOMApprovalsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-OPCOMApprovalsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-ApprovedBudgetsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-FiveYearForecastsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-NUIMSPlanningReviewsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-SUBCOMRecommendationsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-SUBCOMRecommendationsAllGrid .slick-headerrow-column.ui-state-default,
.s-Budget-TECOMRecommendationsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-BudgetProfilesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-BudgetProfilesAllGrid .slick-headerrow-column.ui-state-default,
.s-Budget-BudgetsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-CallCircularsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-CallCircularsAllGrid .slick-headerrow-column.ui-state-default,
.s-Budget-CallSchedulesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-CallScheduleCalendarsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-CallScheduleCalendarsAllGrid .slick-headerrow-column.ui-state-default,
.s-Budget-BudgetThresholdsAllGrid .slick-headerrow-column.ui-state-default,
.s-Budget-BudgetThresholdsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-BudgetThresholdBackupGrid .slick-headerrow-column.ui-state-default,
.s-Budget-BTFundingTrancheBackupGrid .slick-headerrow-column.ui-state-default,
.s-Budget-OperatorTemplatesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-TemplateCommitteeGrid .slick-headerrow-column.ui-state-default,
.s-Budget-BudgetHistoricBriefGrid .slick-headerrow-column.ui-state-default,
.s-Budget-BudgetHistoricTemplateGrid .slick-headerrow-column.ui-state-default,
.s-Budget-BTFundingTranchesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-BTFundingTranchesAllGrid .slick-headerrow-column.ui-state-default,
.s-Budget-BTFundingTrancheBreakdownsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .slick-headerrow-column.ui-state-default,
.s-Budget-CallScheduleCalendarsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-CallCircularsAllGrid .slick-headerrow-column.ui-state-default,
.s-Budget-CallCircularsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-CallScheduleActivitiesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-CallSchedulesAllGrid .slick-headerrow-column.ui-state-default,
.s-Budget-CallSchedulesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-SwotsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-BudgetAssumptionsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-SeismicActivitiesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-ReservesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-ProductionGrid .slick-headerrow-column.ui-state-default,
.s-Budget-GasUtilizationGrid .slick-headerrow-column.ui-state-default,
.s-Budget-RigSequencesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-VesselSchedulesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-HrSummariesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-SharedCostsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-SharedCostAllocationsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-GeneralWorkProgrammesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-ExpenditureBreakdownsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-WellCostsNonRigWorkGrid .slick-headerrow-column.ui-state-default,
.s-Budget-NonRigWorkOverCostElementsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-WellCostsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-WellCostElementsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-ProjectSummariesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-PADWorkProgrammesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-RigSequencesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-BlocksGrid .slick-headerrow-column.ui-state-default,
.s-Budget-CashCallEquitySharesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-FieldsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-FieldTerrainsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-FundingTranchesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-FundingTranchesAllGrid .slick-headerrow-column.ui-state-default,
.s-Budget-MajorDriversGrid .slick-headerrow-column.ui-state-default,
.s-Budget-BudgetData_ExcelTemplatesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-ExcelTemplatesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-OperatorBlocksAllGrid .slick-headerrow-column.ui-state-default,
.s-Budget-OperatorBlocksGrid .slick-headerrow-column.ui-state-default,
.s-Budget-ProductsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-RigsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-SeismicActivityDescriptionsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-UAPCodeAccessPermissionsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-UAPCodesAllGrid .slick-headerrow-column.ui-state-default,
.s-Budget-NUIMS_UAPCodesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-Operator_UAPCodesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-VesselsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-WellCostElementGroupsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-WellCostsElementDetailsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-WellCostsElementDetailsAllGrid .slick-headerrow-column.ui-state-default,
.s-Budget-NonRigActivityTypesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-NonRigElementDetailsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-NonRigElementDetailsAllGrid .slick-headerrow-column.ui-state-default,
.s-Budget-WellsAllGrid .slick-headerrow-column.ui-state-default,
.s-Budget-WellsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-ProjectsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-ResponsiblePartyOperatorsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-ContractApprovingBodiesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-CountryGrid .slick-headerrow-column.ui-state-default,
.s-Budget-FundingTrancheSourcesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-MonthsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-NationalityGrid .slick-headerrow-column.ui-state-default,
.s-Budget-PadClustersGrid .slick-headerrow-column.ui-state-default,
.s-Budget-PadCommunitiesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-SecurityRolesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-TemplatesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-TerrainsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-UAPAccessPermissionsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-UAPCodeLevelsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-UAPCodeGroupsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-UAPCodeGroupTitlesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-UnitsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-UnitsOfMeasureGrid .slick-headerrow-column.ui-state-default,
.s-Budget-UnitsOfMeasureUsageGrid .slick-headerrow-column.ui-state-default,
.s-Budget-VesselActivitiesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-WellClassificationsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-YearsGrid .slick-headerrow-column.ui-state-default,
.s-Budget-AnnualBudgetStatusesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-ApprovedBudgetStatusesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-BudgetPreviewStatusesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-BudgetProfileStatusesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-BudgetStatusesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-BudgetThresholdStatusesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-ButtonStatusesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-CallCircularStatusesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-CashCallStatusesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-ContractStatusesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-FieldStatusesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-FincomStatusesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-MacomReviewStatusesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-NuimsPlanningReviewStatusesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-OpcomReviewStatusesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-OperatorProposalStatusesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-OperatorStatusesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-OwnershipStatusesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-PerformanceStatusesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-ProjectStatusGrid .slick-headerrow-column.ui-state-default,
.s-Budget-RealignedBudgetStatusesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-SubcomRecommendationStatusesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-TecomRecommendationStatusesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-TemplateStatusesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-UAPCodeStatusesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-AgreementTypesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-BriefTypesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-BudgetTypesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-MeetingGrid .slick-headerrow-column.ui-state-default,
.s-Budget-MeetingAgendaGrid .slick-headerrow-column.ui-state-default,
.s-Budget-MeetingAgendaRelevantGrid .slick-headerrow-column.ui-state-default,
.s-Budget-MeetingAgendaTypeGrid .slick-headerrow-column.ui-state-default,
.s-Budget-MeetingDecisionGrid .slick-headerrow-column.ui-state-default,
.s-Budget-MeetingDecisionRelevantGrid .slick-headerrow-column.ui-state-default,
.s-Budget-MeetingLocationGrid .slick-headerrow-column.ui-state-default,
.s-Budget-MeetingTypeGrid .slick-headerrow-column.ui-state-default,
.s-Budget-FinancialDataGrid .slick-headerrow-column.ui-state-default,
.s-Budget-WorkflowButtonSequenceTypesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-CommitteeTypesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-ContractTypesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-EmploymentTypeGrid .slick-headerrow-column.ui-state-default,
.s-Budget-ExpenditureTypesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-FundingTrancheTypesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-GasUtilizationTypesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-PadProgramTypesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-PadTypesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-ProductTypesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-ProjectTypesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-RigTypesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-SharedCostAllocationTypesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-UAPCodeTypesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-VesselTypesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-WellCostElementTypesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-WellTypesGrid .slick-headerrow-column.ui-state-default,
.s-Budget-BudgetPreviewGrid .slick-headerrow-column.ui-state-default,
.s-Budget-FINCOMAppendixIGrid .slick-headerrow-column.ui-state-default,
.s-Budget-FINCOMAppendixIIGrid .slick-headerrow-column.ui-state-default,
.s-Budget-FINCOMCollationGrid .slick-headerrow-column.ui-state-default,
.s-Budget-CallScheduleActionsGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallCalendarsGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallActivitiesGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallScheduleActivitiesGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallCircularsGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallCircularsAllGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallCalendarsGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallCalendarsAllGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallBriefsGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallCashComRecommendationsGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallMandatesGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallMeetingDayAttendancesGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallPayablesGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallsGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallsAllGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallsEPGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallsBDGGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallSchedulesGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallSchedulesAllGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallRequestsGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallRequestsEPGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallRequestItemsGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallUapCodeItemsGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallOperatorRequestsGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallNuimsReviewsGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallManagerJVReviewGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallCashComSubComReviewGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallFincomCollationGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallSubcomRecomendationsGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallEndorsementGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallGgmSummariesGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallGgmSummariesItemGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallPayablesGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallPayableItemsGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallPayableItemsAdjustedGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallPayablesAnnualGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallMandatesGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallPaymentConfirmationGrid .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallPayableItemsEditor .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallPaymentDataEditor .slick-headerrow-column.ui-state-default,
.s-CashCall-CashCallPaymentDataGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformancesGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformancesAllGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformancesBDGGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformanceSchedulesGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformanceCallScheduleCalendarsGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformanceCallScheduleActivitiesGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformanceCallScheduleActivitiesGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformanceCallCircularsGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformanceCallCircularsAllGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformanceMonthlyGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformanceQuarterlyGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformanceQuarterFourGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformanceFinancialItemsGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformanceNonFinancialItemsGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformanceFinancialMonthItemsGrid .slick-headerrow-column.ui-state-default,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .slick-headerrow-column.ui-state-default,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .slick-headerrow-column.ui-state-default,
.s-Common-DashboardWidgetGrid .slick-headerrow-column.ui-state-default,
.s-Administration-BcPproExceptionsGrid .slick-headerrow-column.ui-state-default {
  padding: 4px;
}
.s-Administration-IssueTrackingIssuesGrid .slick-header-column-sorted,
.s-Administration-IssueTrackingFeedbackGrid .slick-header-column-sorted,
.s-Administration-IssueTrackingChangeRequestGrid .slick-header-column-sorted,
.s-Administration-NotificationTemplatesGrid .slick-header-column-sorted,
.s-Administration-BudgetAutoTestGrid .slick-header-column-sorted,
.s-Administration-CashCallAutoTestGrid .slick-header-column-sorted,
.s-Administration-PerformanceMonthAutoTestGrid .slick-header-column-sorted,
.s-Administration-PerformanceQuarterAutoTestGrid .slick-header-column-sorted,
.s-Administration-SiteNotificationsGrid .slick-header-column-sorted,
.s-Budget-AnnualBudgetsGrid .slick-header-column-sorted,
.s-Budget-AnnualBudgetsAllGrid .slick-header-column-sorted,
.s-Budget-BudgetProfilesABGrid .slick-header-column-sorted,
.s-Budget-OperatorProposalsGrid .slick-header-column-sorted,
.s-Budget-MACOMApprovalsGrid .slick-header-column-sorted,
.s-Budget-OPCOMApprovalsGrid .slick-header-column-sorted,
.s-Budget-ApprovedBudgetsGrid .slick-header-column-sorted,
.s-Budget-FiveYearForecastsGrid .slick-header-column-sorted,
.s-Budget-NUIMSPlanningReviewsGrid .slick-header-column-sorted,
.s-Budget-SUBCOMRecommendationsGrid .slick-header-column-sorted,
.s-Budget-SUBCOMRecommendationsAllGrid .slick-header-column-sorted,
.s-Budget-TECOMRecommendationsGrid .slick-header-column-sorted,
.s-Budget-BudgetProfilesGrid .slick-header-column-sorted,
.s-Budget-BudgetProfilesAllGrid .slick-header-column-sorted,
.s-Budget-BudgetsGrid .slick-header-column-sorted,
.s-Budget-CallCircularsGrid .slick-header-column-sorted,
.s-Budget-CallCircularsAllGrid .slick-header-column-sorted,
.s-Budget-CallSchedulesGrid .slick-header-column-sorted,
.s-Budget-CallScheduleCalendarsGrid .slick-header-column-sorted,
.s-Budget-CallScheduleCalendarsAllGrid .slick-header-column-sorted,
.s-Budget-BudgetThresholdsAllGrid .slick-header-column-sorted,
.s-Budget-BudgetThresholdsGrid .slick-header-column-sorted,
.s-Budget-BudgetThresholdBackupGrid .slick-header-column-sorted,
.s-Budget-BTFundingTrancheBackupGrid .slick-header-column-sorted,
.s-Budget-OperatorTemplatesGrid .slick-header-column-sorted,
.s-Budget-TemplateCommitteeGrid .slick-header-column-sorted,
.s-Budget-BudgetHistoricBriefGrid .slick-header-column-sorted,
.s-Budget-BudgetHistoricTemplateGrid .slick-header-column-sorted,
.s-Budget-BTFundingTranchesGrid .slick-header-column-sorted,
.s-Budget-BTFundingTranchesAllGrid .slick-header-column-sorted,
.s-Budget-BTFundingTrancheBreakdownsGrid .slick-header-column-sorted,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .slick-header-column-sorted,
.s-Budget-CallScheduleCalendarsGrid .slick-header-column-sorted,
.s-Budget-CallCircularsAllGrid .slick-header-column-sorted,
.s-Budget-CallCircularsGrid .slick-header-column-sorted,
.s-Budget-CallScheduleActivitiesGrid .slick-header-column-sorted,
.s-Budget-CallSchedulesAllGrid .slick-header-column-sorted,
.s-Budget-CallSchedulesGrid .slick-header-column-sorted,
.s-Budget-SwotsGrid .slick-header-column-sorted,
.s-Budget-BudgetAssumptionsGrid .slick-header-column-sorted,
.s-Budget-SeismicActivitiesGrid .slick-header-column-sorted,
.s-Budget-ReservesGrid .slick-header-column-sorted,
.s-Budget-ProductionGrid .slick-header-column-sorted,
.s-Budget-GasUtilizationGrid .slick-header-column-sorted,
.s-Budget-RigSequencesGrid .slick-header-column-sorted,
.s-Budget-VesselSchedulesGrid .slick-header-column-sorted,
.s-Budget-HrSummariesGrid .slick-header-column-sorted,
.s-Budget-SharedCostsGrid .slick-header-column-sorted,
.s-Budget-SharedCostAllocationsGrid .slick-header-column-sorted,
.s-Budget-GeneralWorkProgrammesGrid .slick-header-column-sorted,
.s-Budget-ExpenditureBreakdownsGrid .slick-header-column-sorted,
.s-Budget-WellCostsNonRigWorkGrid .slick-header-column-sorted,
.s-Budget-NonRigWorkOverCostElementsGrid .slick-header-column-sorted,
.s-Budget-WellCostsGrid .slick-header-column-sorted,
.s-Budget-WellCostElementsGrid .slick-header-column-sorted,
.s-Budget-ProjectSummariesGrid .slick-header-column-sorted,
.s-Budget-PADWorkProgrammesGrid .slick-header-column-sorted,
.s-Budget-RigSequencesGrid .slick-header-column-sorted,
.s-Budget-BlocksGrid .slick-header-column-sorted,
.s-Budget-CashCallEquitySharesGrid .slick-header-column-sorted,
.s-Budget-FieldsGrid .slick-header-column-sorted,
.s-Budget-FieldTerrainsGrid .slick-header-column-sorted,
.s-Budget-FundingTranchesGrid .slick-header-column-sorted,
.s-Budget-FundingTranchesAllGrid .slick-header-column-sorted,
.s-Budget-MajorDriversGrid .slick-header-column-sorted,
.s-Budget-BudgetData_ExcelTemplatesGrid .slick-header-column-sorted,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .slick-header-column-sorted,
.s-Budget-ExcelTemplatesGrid .slick-header-column-sorted,
.s-Budget-OperatorBlocksAllGrid .slick-header-column-sorted,
.s-Budget-OperatorBlocksGrid .slick-header-column-sorted,
.s-Budget-ProductsGrid .slick-header-column-sorted,
.s-Budget-RigsGrid .slick-header-column-sorted,
.s-Budget-SeismicActivityDescriptionsGrid .slick-header-column-sorted,
.s-Budget-UAPCodeAccessPermissionsGrid .slick-header-column-sorted,
.s-Budget-UAPCodesAllGrid .slick-header-column-sorted,
.s-Budget-NUIMS_UAPCodesGrid .slick-header-column-sorted,
.s-Budget-Operator_UAPCodesGrid .slick-header-column-sorted,
.s-Budget-VesselsGrid .slick-header-column-sorted,
.s-Budget-WellCostElementGroupsGrid .slick-header-column-sorted,
.s-Budget-WellCostsElementDetailsGrid .slick-header-column-sorted,
.s-Budget-WellCostsElementDetailsAllGrid .slick-header-column-sorted,
.s-Budget-NonRigActivityTypesGrid .slick-header-column-sorted,
.s-Budget-NonRigElementDetailsGrid .slick-header-column-sorted,
.s-Budget-NonRigElementDetailsAllGrid .slick-header-column-sorted,
.s-Budget-WellsAllGrid .slick-header-column-sorted,
.s-Budget-WellsGrid .slick-header-column-sorted,
.s-Budget-ProjectsGrid .slick-header-column-sorted,
.s-Budget-ResponsiblePartyOperatorsGrid .slick-header-column-sorted,
.s-Budget-ContractApprovingBodiesGrid .slick-header-column-sorted,
.s-Budget-CountryGrid .slick-header-column-sorted,
.s-Budget-FundingTrancheSourcesGrid .slick-header-column-sorted,
.s-Budget-MonthsGrid .slick-header-column-sorted,
.s-Budget-NationalityGrid .slick-header-column-sorted,
.s-Budget-PadClustersGrid .slick-header-column-sorted,
.s-Budget-PadCommunitiesGrid .slick-header-column-sorted,
.s-Budget-SecurityRolesGrid .slick-header-column-sorted,
.s-Budget-TemplatesGrid .slick-header-column-sorted,
.s-Budget-TerrainsGrid .slick-header-column-sorted,
.s-Budget-UAPAccessPermissionsGrid .slick-header-column-sorted,
.s-Budget-UAPCodeLevelsGrid .slick-header-column-sorted,
.s-Budget-UAPCodeGroupsGrid .slick-header-column-sorted,
.s-Budget-UAPCodeGroupTitlesGrid .slick-header-column-sorted,
.s-Budget-UnitsGrid .slick-header-column-sorted,
.s-Budget-UnitsOfMeasureGrid .slick-header-column-sorted,
.s-Budget-UnitsOfMeasureUsageGrid .slick-header-column-sorted,
.s-Budget-VesselActivitiesGrid .slick-header-column-sorted,
.s-Budget-WellClassificationsGrid .slick-header-column-sorted,
.s-Budget-YearsGrid .slick-header-column-sorted,
.s-Budget-AnnualBudgetStatusesGrid .slick-header-column-sorted,
.s-Budget-ApprovedBudgetStatusesGrid .slick-header-column-sorted,
.s-Budget-BudgetPreviewStatusesGrid .slick-header-column-sorted,
.s-Budget-BudgetProfileStatusesGrid .slick-header-column-sorted,
.s-Budget-BudgetStatusesGrid .slick-header-column-sorted,
.s-Budget-BudgetThresholdStatusesGrid .slick-header-column-sorted,
.s-Budget-ButtonStatusesGrid .slick-header-column-sorted,
.s-Budget-CallCircularStatusesGrid .slick-header-column-sorted,
.s-Budget-CashCallStatusesGrid .slick-header-column-sorted,
.s-Budget-ContractStatusesGrid .slick-header-column-sorted,
.s-Budget-FieldStatusesGrid .slick-header-column-sorted,
.s-Budget-FincomStatusesGrid .slick-header-column-sorted,
.s-Budget-MacomReviewStatusesGrid .slick-header-column-sorted,
.s-Budget-NuimsPlanningReviewStatusesGrid .slick-header-column-sorted,
.s-Budget-OpcomReviewStatusesGrid .slick-header-column-sorted,
.s-Budget-OperatorProposalStatusesGrid .slick-header-column-sorted,
.s-Budget-OperatorStatusesGrid .slick-header-column-sorted,
.s-Budget-OwnershipStatusesGrid .slick-header-column-sorted,
.s-Budget-PerformanceStatusesGrid .slick-header-column-sorted,
.s-Budget-ProjectStatusGrid .slick-header-column-sorted,
.s-Budget-RealignedBudgetStatusesGrid .slick-header-column-sorted,
.s-Budget-SubcomRecommendationStatusesGrid .slick-header-column-sorted,
.s-Budget-TecomRecommendationStatusesGrid .slick-header-column-sorted,
.s-Budget-TemplateStatusesGrid .slick-header-column-sorted,
.s-Budget-UAPCodeStatusesGrid .slick-header-column-sorted,
.s-Budget-AgreementTypesGrid .slick-header-column-sorted,
.s-Budget-BriefTypesGrid .slick-header-column-sorted,
.s-Budget-BudgetTypesGrid .slick-header-column-sorted,
.s-Budget-MeetingGrid .slick-header-column-sorted,
.s-Budget-MeetingAgendaGrid .slick-header-column-sorted,
.s-Budget-MeetingAgendaRelevantGrid .slick-header-column-sorted,
.s-Budget-MeetingAgendaTypeGrid .slick-header-column-sorted,
.s-Budget-MeetingDecisionGrid .slick-header-column-sorted,
.s-Budget-MeetingDecisionRelevantGrid .slick-header-column-sorted,
.s-Budget-MeetingLocationGrid .slick-header-column-sorted,
.s-Budget-MeetingTypeGrid .slick-header-column-sorted,
.s-Budget-FinancialDataGrid .slick-header-column-sorted,
.s-Budget-WorkflowButtonSequenceTypesGrid .slick-header-column-sorted,
.s-Budget-CommitteeTypesGrid .slick-header-column-sorted,
.s-Budget-ContractTypesGrid .slick-header-column-sorted,
.s-Budget-EmploymentTypeGrid .slick-header-column-sorted,
.s-Budget-ExpenditureTypesGrid .slick-header-column-sorted,
.s-Budget-FundingTrancheTypesGrid .slick-header-column-sorted,
.s-Budget-GasUtilizationTypesGrid .slick-header-column-sorted,
.s-Budget-PadProgramTypesGrid .slick-header-column-sorted,
.s-Budget-PadTypesGrid .slick-header-column-sorted,
.s-Budget-ProductTypesGrid .slick-header-column-sorted,
.s-Budget-ProjectTypesGrid .slick-header-column-sorted,
.s-Budget-RigTypesGrid .slick-header-column-sorted,
.s-Budget-SharedCostAllocationTypesGrid .slick-header-column-sorted,
.s-Budget-UAPCodeTypesGrid .slick-header-column-sorted,
.s-Budget-VesselTypesGrid .slick-header-column-sorted,
.s-Budget-WellCostElementTypesGrid .slick-header-column-sorted,
.s-Budget-WellTypesGrid .slick-header-column-sorted,
.s-Budget-BudgetPreviewGrid .slick-header-column-sorted,
.s-Budget-FINCOMAppendixIGrid .slick-header-column-sorted,
.s-Budget-FINCOMAppendixIIGrid .slick-header-column-sorted,
.s-Budget-FINCOMCollationGrid .slick-header-column-sorted,
.s-Budget-CallScheduleActionsGrid .slick-header-column-sorted,
.s-CashCall-CashCallCalendarsGrid .slick-header-column-sorted,
.s-CashCall-CashCallActivitiesGrid .slick-header-column-sorted,
.s-CashCall-CashCallScheduleActivitiesGrid .slick-header-column-sorted,
.s-CashCall-CashCallCircularsGrid .slick-header-column-sorted,
.s-CashCall-CashCallCircularsAllGrid .slick-header-column-sorted,
.s-CashCall-CashCallCalendarsGrid .slick-header-column-sorted,
.s-CashCall-CashCallCalendarsAllGrid .slick-header-column-sorted,
.s-CashCall-CashCallBriefsGrid .slick-header-column-sorted,
.s-CashCall-CashCallCashComRecommendationsGrid .slick-header-column-sorted,
.s-CashCall-CashCallMandatesGrid .slick-header-column-sorted,
.s-CashCall-CashCallMeetingDayAttendancesGrid .slick-header-column-sorted,
.s-CashCall-CashCallPayablesGrid .slick-header-column-sorted,
.s-CashCall-CashCallsGrid .slick-header-column-sorted,
.s-CashCall-CashCallsAllGrid .slick-header-column-sorted,
.s-CashCall-CashCallsEPGrid .slick-header-column-sorted,
.s-CashCall-CashCallsBDGGrid .slick-header-column-sorted,
.s-CashCall-CashCallSchedulesGrid .slick-header-column-sorted,
.s-CashCall-CashCallSchedulesAllGrid .slick-header-column-sorted,
.s-CashCall-CashCallRequestsGrid .slick-header-column-sorted,
.s-CashCall-CashCallRequestsEPGrid .slick-header-column-sorted,
.s-CashCall-CashCallRequestItemsGrid .slick-header-column-sorted,
.s-CashCall-CashCallUapCodeItemsGrid .slick-header-column-sorted,
.s-CashCall-CashCallOperatorRequestsGrid .slick-header-column-sorted,
.s-CashCall-CashCallNuimsReviewsGrid .slick-header-column-sorted,
.s-CashCall-CashCallManagerJVReviewGrid .slick-header-column-sorted,
.s-CashCall-CashCallCashComSubComReviewGrid .slick-header-column-sorted,
.s-CashCall-CashCallFincomCollationGrid .slick-header-column-sorted,
.s-CashCall-CashCallSubcomRecomendationsGrid .slick-header-column-sorted,
.s-CashCall-CashCallEndorsementGrid .slick-header-column-sorted,
.s-CashCall-CashCallGgmSummariesGrid .slick-header-column-sorted,
.s-CashCall-CashCallGgmSummariesItemGrid .slick-header-column-sorted,
.s-CashCall-CashCallPayablesGrid .slick-header-column-sorted,
.s-CashCall-CashCallPayableItemsGrid .slick-header-column-sorted,
.s-CashCall-CashCallPayableItemsAdjustedGrid .slick-header-column-sorted,
.s-CashCall-CashCallPayablesAnnualGrid .slick-header-column-sorted,
.s-CashCall-CashCallMandatesGrid .slick-header-column-sorted,
.s-CashCall-CashCallPaymentConfirmationGrid .slick-header-column-sorted,
.s-CashCall-CashCallPayableItemsEditor .slick-header-column-sorted,
.s-CashCall-CashCallPaymentDataEditor .slick-header-column-sorted,
.s-CashCall-CashCallPaymentDataGrid .slick-header-column-sorted,
.s-Performance-PerformancesGrid .slick-header-column-sorted,
.s-Performance-PerformancesAllGrid .slick-header-column-sorted,
.s-Performance-PerformancesBDGGrid .slick-header-column-sorted,
.s-Performance-PerformanceSchedulesGrid .slick-header-column-sorted,
.s-Performance-PerformanceCallScheduleCalendarsGrid .slick-header-column-sorted,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .slick-header-column-sorted,
.s-Performance-PerformanceCallScheduleActivitiesGrid .slick-header-column-sorted,
.s-Performance-PerformanceCallScheduleActivitiesGrid .slick-header-column-sorted,
.s-Performance-PerformanceCallCircularsGrid .slick-header-column-sorted,
.s-Performance-PerformanceCallCircularsAllGrid .slick-header-column-sorted,
.s-Performance-PerformanceMonthlyGrid .slick-header-column-sorted,
.s-Performance-PerformanceQuarterlyGrid .slick-header-column-sorted,
.s-Performance-PerformanceQuarterFourGrid .slick-header-column-sorted,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .slick-header-column-sorted,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .slick-header-column-sorted,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .slick-header-column-sorted,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .slick-header-column-sorted,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .slick-header-column-sorted,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .slick-header-column-sorted,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .slick-header-column-sorted,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .slick-header-column-sorted,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .slick-header-column-sorted,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .slick-header-column-sorted,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .slick-header-column-sorted,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .slick-header-column-sorted,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .slick-header-column-sorted,
.s-Performance-PerformanceFinancialItemsGrid .slick-header-column-sorted,
.s-Performance-PerformanceNonFinancialItemsGrid .slick-header-column-sorted,
.s-Performance-PerformanceFinancialMonthItemsGrid .slick-header-column-sorted,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .slick-header-column-sorted,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .slick-header-column-sorted,
.s-Common-DashboardWidgetGrid .slick-header-column-sorted,
.s-Administration-BcPproExceptionsGrid .slick-header-column-sorted {
  font-style: italic;
}
.s-Administration-IssueTrackingIssuesGrid .slick-sort-indicator,
.s-Administration-IssueTrackingFeedbackGrid .slick-sort-indicator,
.s-Administration-IssueTrackingChangeRequestGrid .slick-sort-indicator,
.s-Administration-NotificationTemplatesGrid .slick-sort-indicator,
.s-Administration-BudgetAutoTestGrid .slick-sort-indicator,
.s-Administration-CashCallAutoTestGrid .slick-sort-indicator,
.s-Administration-PerformanceMonthAutoTestGrid .slick-sort-indicator,
.s-Administration-PerformanceQuarterAutoTestGrid .slick-sort-indicator,
.s-Administration-SiteNotificationsGrid .slick-sort-indicator,
.s-Budget-AnnualBudgetsGrid .slick-sort-indicator,
.s-Budget-AnnualBudgetsAllGrid .slick-sort-indicator,
.s-Budget-BudgetProfilesABGrid .slick-sort-indicator,
.s-Budget-OperatorProposalsGrid .slick-sort-indicator,
.s-Budget-MACOMApprovalsGrid .slick-sort-indicator,
.s-Budget-OPCOMApprovalsGrid .slick-sort-indicator,
.s-Budget-ApprovedBudgetsGrid .slick-sort-indicator,
.s-Budget-FiveYearForecastsGrid .slick-sort-indicator,
.s-Budget-NUIMSPlanningReviewsGrid .slick-sort-indicator,
.s-Budget-SUBCOMRecommendationsGrid .slick-sort-indicator,
.s-Budget-SUBCOMRecommendationsAllGrid .slick-sort-indicator,
.s-Budget-TECOMRecommendationsGrid .slick-sort-indicator,
.s-Budget-BudgetProfilesGrid .slick-sort-indicator,
.s-Budget-BudgetProfilesAllGrid .slick-sort-indicator,
.s-Budget-BudgetsGrid .slick-sort-indicator,
.s-Budget-CallCircularsGrid .slick-sort-indicator,
.s-Budget-CallCircularsAllGrid .slick-sort-indicator,
.s-Budget-CallSchedulesGrid .slick-sort-indicator,
.s-Budget-CallScheduleCalendarsGrid .slick-sort-indicator,
.s-Budget-CallScheduleCalendarsAllGrid .slick-sort-indicator,
.s-Budget-BudgetThresholdsAllGrid .slick-sort-indicator,
.s-Budget-BudgetThresholdsGrid .slick-sort-indicator,
.s-Budget-BudgetThresholdBackupGrid .slick-sort-indicator,
.s-Budget-BTFundingTrancheBackupGrid .slick-sort-indicator,
.s-Budget-OperatorTemplatesGrid .slick-sort-indicator,
.s-Budget-TemplateCommitteeGrid .slick-sort-indicator,
.s-Budget-BudgetHistoricBriefGrid .slick-sort-indicator,
.s-Budget-BudgetHistoricTemplateGrid .slick-sort-indicator,
.s-Budget-BTFundingTranchesGrid .slick-sort-indicator,
.s-Budget-BTFundingTranchesAllGrid .slick-sort-indicator,
.s-Budget-BTFundingTrancheBreakdownsGrid .slick-sort-indicator,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .slick-sort-indicator,
.s-Budget-CallScheduleCalendarsGrid .slick-sort-indicator,
.s-Budget-CallCircularsAllGrid .slick-sort-indicator,
.s-Budget-CallCircularsGrid .slick-sort-indicator,
.s-Budget-CallScheduleActivitiesGrid .slick-sort-indicator,
.s-Budget-CallSchedulesAllGrid .slick-sort-indicator,
.s-Budget-CallSchedulesGrid .slick-sort-indicator,
.s-Budget-SwotsGrid .slick-sort-indicator,
.s-Budget-BudgetAssumptionsGrid .slick-sort-indicator,
.s-Budget-SeismicActivitiesGrid .slick-sort-indicator,
.s-Budget-ReservesGrid .slick-sort-indicator,
.s-Budget-ProductionGrid .slick-sort-indicator,
.s-Budget-GasUtilizationGrid .slick-sort-indicator,
.s-Budget-RigSequencesGrid .slick-sort-indicator,
.s-Budget-VesselSchedulesGrid .slick-sort-indicator,
.s-Budget-HrSummariesGrid .slick-sort-indicator,
.s-Budget-SharedCostsGrid .slick-sort-indicator,
.s-Budget-SharedCostAllocationsGrid .slick-sort-indicator,
.s-Budget-GeneralWorkProgrammesGrid .slick-sort-indicator,
.s-Budget-ExpenditureBreakdownsGrid .slick-sort-indicator,
.s-Budget-WellCostsNonRigWorkGrid .slick-sort-indicator,
.s-Budget-NonRigWorkOverCostElementsGrid .slick-sort-indicator,
.s-Budget-WellCostsGrid .slick-sort-indicator,
.s-Budget-WellCostElementsGrid .slick-sort-indicator,
.s-Budget-ProjectSummariesGrid .slick-sort-indicator,
.s-Budget-PADWorkProgrammesGrid .slick-sort-indicator,
.s-Budget-RigSequencesGrid .slick-sort-indicator,
.s-Budget-BlocksGrid .slick-sort-indicator,
.s-Budget-CashCallEquitySharesGrid .slick-sort-indicator,
.s-Budget-FieldsGrid .slick-sort-indicator,
.s-Budget-FieldTerrainsGrid .slick-sort-indicator,
.s-Budget-FundingTranchesGrid .slick-sort-indicator,
.s-Budget-FundingTranchesAllGrid .slick-sort-indicator,
.s-Budget-MajorDriversGrid .slick-sort-indicator,
.s-Budget-BudgetData_ExcelTemplatesGrid .slick-sort-indicator,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .slick-sort-indicator,
.s-Budget-ExcelTemplatesGrid .slick-sort-indicator,
.s-Budget-OperatorBlocksAllGrid .slick-sort-indicator,
.s-Budget-OperatorBlocksGrid .slick-sort-indicator,
.s-Budget-ProductsGrid .slick-sort-indicator,
.s-Budget-RigsGrid .slick-sort-indicator,
.s-Budget-SeismicActivityDescriptionsGrid .slick-sort-indicator,
.s-Budget-UAPCodeAccessPermissionsGrid .slick-sort-indicator,
.s-Budget-UAPCodesAllGrid .slick-sort-indicator,
.s-Budget-NUIMS_UAPCodesGrid .slick-sort-indicator,
.s-Budget-Operator_UAPCodesGrid .slick-sort-indicator,
.s-Budget-VesselsGrid .slick-sort-indicator,
.s-Budget-WellCostElementGroupsGrid .slick-sort-indicator,
.s-Budget-WellCostsElementDetailsGrid .slick-sort-indicator,
.s-Budget-WellCostsElementDetailsAllGrid .slick-sort-indicator,
.s-Budget-NonRigActivityTypesGrid .slick-sort-indicator,
.s-Budget-NonRigElementDetailsGrid .slick-sort-indicator,
.s-Budget-NonRigElementDetailsAllGrid .slick-sort-indicator,
.s-Budget-WellsAllGrid .slick-sort-indicator,
.s-Budget-WellsGrid .slick-sort-indicator,
.s-Budget-ProjectsGrid .slick-sort-indicator,
.s-Budget-ResponsiblePartyOperatorsGrid .slick-sort-indicator,
.s-Budget-ContractApprovingBodiesGrid .slick-sort-indicator,
.s-Budget-CountryGrid .slick-sort-indicator,
.s-Budget-FundingTrancheSourcesGrid .slick-sort-indicator,
.s-Budget-MonthsGrid .slick-sort-indicator,
.s-Budget-NationalityGrid .slick-sort-indicator,
.s-Budget-PadClustersGrid .slick-sort-indicator,
.s-Budget-PadCommunitiesGrid .slick-sort-indicator,
.s-Budget-SecurityRolesGrid .slick-sort-indicator,
.s-Budget-TemplatesGrid .slick-sort-indicator,
.s-Budget-TerrainsGrid .slick-sort-indicator,
.s-Budget-UAPAccessPermissionsGrid .slick-sort-indicator,
.s-Budget-UAPCodeLevelsGrid .slick-sort-indicator,
.s-Budget-UAPCodeGroupsGrid .slick-sort-indicator,
.s-Budget-UAPCodeGroupTitlesGrid .slick-sort-indicator,
.s-Budget-UnitsGrid .slick-sort-indicator,
.s-Budget-UnitsOfMeasureGrid .slick-sort-indicator,
.s-Budget-UnitsOfMeasureUsageGrid .slick-sort-indicator,
.s-Budget-VesselActivitiesGrid .slick-sort-indicator,
.s-Budget-WellClassificationsGrid .slick-sort-indicator,
.s-Budget-YearsGrid .slick-sort-indicator,
.s-Budget-AnnualBudgetStatusesGrid .slick-sort-indicator,
.s-Budget-ApprovedBudgetStatusesGrid .slick-sort-indicator,
.s-Budget-BudgetPreviewStatusesGrid .slick-sort-indicator,
.s-Budget-BudgetProfileStatusesGrid .slick-sort-indicator,
.s-Budget-BudgetStatusesGrid .slick-sort-indicator,
.s-Budget-BudgetThresholdStatusesGrid .slick-sort-indicator,
.s-Budget-ButtonStatusesGrid .slick-sort-indicator,
.s-Budget-CallCircularStatusesGrid .slick-sort-indicator,
.s-Budget-CashCallStatusesGrid .slick-sort-indicator,
.s-Budget-ContractStatusesGrid .slick-sort-indicator,
.s-Budget-FieldStatusesGrid .slick-sort-indicator,
.s-Budget-FincomStatusesGrid .slick-sort-indicator,
.s-Budget-MacomReviewStatusesGrid .slick-sort-indicator,
.s-Budget-NuimsPlanningReviewStatusesGrid .slick-sort-indicator,
.s-Budget-OpcomReviewStatusesGrid .slick-sort-indicator,
.s-Budget-OperatorProposalStatusesGrid .slick-sort-indicator,
.s-Budget-OperatorStatusesGrid .slick-sort-indicator,
.s-Budget-OwnershipStatusesGrid .slick-sort-indicator,
.s-Budget-PerformanceStatusesGrid .slick-sort-indicator,
.s-Budget-ProjectStatusGrid .slick-sort-indicator,
.s-Budget-RealignedBudgetStatusesGrid .slick-sort-indicator,
.s-Budget-SubcomRecommendationStatusesGrid .slick-sort-indicator,
.s-Budget-TecomRecommendationStatusesGrid .slick-sort-indicator,
.s-Budget-TemplateStatusesGrid .slick-sort-indicator,
.s-Budget-UAPCodeStatusesGrid .slick-sort-indicator,
.s-Budget-AgreementTypesGrid .slick-sort-indicator,
.s-Budget-BriefTypesGrid .slick-sort-indicator,
.s-Budget-BudgetTypesGrid .slick-sort-indicator,
.s-Budget-MeetingGrid .slick-sort-indicator,
.s-Budget-MeetingAgendaGrid .slick-sort-indicator,
.s-Budget-MeetingAgendaRelevantGrid .slick-sort-indicator,
.s-Budget-MeetingAgendaTypeGrid .slick-sort-indicator,
.s-Budget-MeetingDecisionGrid .slick-sort-indicator,
.s-Budget-MeetingDecisionRelevantGrid .slick-sort-indicator,
.s-Budget-MeetingLocationGrid .slick-sort-indicator,
.s-Budget-MeetingTypeGrid .slick-sort-indicator,
.s-Budget-FinancialDataGrid .slick-sort-indicator,
.s-Budget-WorkflowButtonSequenceTypesGrid .slick-sort-indicator,
.s-Budget-CommitteeTypesGrid .slick-sort-indicator,
.s-Budget-ContractTypesGrid .slick-sort-indicator,
.s-Budget-EmploymentTypeGrid .slick-sort-indicator,
.s-Budget-ExpenditureTypesGrid .slick-sort-indicator,
.s-Budget-FundingTrancheTypesGrid .slick-sort-indicator,
.s-Budget-GasUtilizationTypesGrid .slick-sort-indicator,
.s-Budget-PadProgramTypesGrid .slick-sort-indicator,
.s-Budget-PadTypesGrid .slick-sort-indicator,
.s-Budget-ProductTypesGrid .slick-sort-indicator,
.s-Budget-ProjectTypesGrid .slick-sort-indicator,
.s-Budget-RigTypesGrid .slick-sort-indicator,
.s-Budget-SharedCostAllocationTypesGrid .slick-sort-indicator,
.s-Budget-UAPCodeTypesGrid .slick-sort-indicator,
.s-Budget-VesselTypesGrid .slick-sort-indicator,
.s-Budget-WellCostElementTypesGrid .slick-sort-indicator,
.s-Budget-WellTypesGrid .slick-sort-indicator,
.s-Budget-BudgetPreviewGrid .slick-sort-indicator,
.s-Budget-FINCOMAppendixIGrid .slick-sort-indicator,
.s-Budget-FINCOMAppendixIIGrid .slick-sort-indicator,
.s-Budget-FINCOMCollationGrid .slick-sort-indicator,
.s-Budget-CallScheduleActionsGrid .slick-sort-indicator,
.s-CashCall-CashCallCalendarsGrid .slick-sort-indicator,
.s-CashCall-CashCallActivitiesGrid .slick-sort-indicator,
.s-CashCall-CashCallScheduleActivitiesGrid .slick-sort-indicator,
.s-CashCall-CashCallCircularsGrid .slick-sort-indicator,
.s-CashCall-CashCallCircularsAllGrid .slick-sort-indicator,
.s-CashCall-CashCallCalendarsGrid .slick-sort-indicator,
.s-CashCall-CashCallCalendarsAllGrid .slick-sort-indicator,
.s-CashCall-CashCallBriefsGrid .slick-sort-indicator,
.s-CashCall-CashCallCashComRecommendationsGrid .slick-sort-indicator,
.s-CashCall-CashCallMandatesGrid .slick-sort-indicator,
.s-CashCall-CashCallMeetingDayAttendancesGrid .slick-sort-indicator,
.s-CashCall-CashCallPayablesGrid .slick-sort-indicator,
.s-CashCall-CashCallsGrid .slick-sort-indicator,
.s-CashCall-CashCallsAllGrid .slick-sort-indicator,
.s-CashCall-CashCallsEPGrid .slick-sort-indicator,
.s-CashCall-CashCallsBDGGrid .slick-sort-indicator,
.s-CashCall-CashCallSchedulesGrid .slick-sort-indicator,
.s-CashCall-CashCallSchedulesAllGrid .slick-sort-indicator,
.s-CashCall-CashCallRequestsGrid .slick-sort-indicator,
.s-CashCall-CashCallRequestsEPGrid .slick-sort-indicator,
.s-CashCall-CashCallRequestItemsGrid .slick-sort-indicator,
.s-CashCall-CashCallUapCodeItemsGrid .slick-sort-indicator,
.s-CashCall-CashCallOperatorRequestsGrid .slick-sort-indicator,
.s-CashCall-CashCallNuimsReviewsGrid .slick-sort-indicator,
.s-CashCall-CashCallManagerJVReviewGrid .slick-sort-indicator,
.s-CashCall-CashCallCashComSubComReviewGrid .slick-sort-indicator,
.s-CashCall-CashCallFincomCollationGrid .slick-sort-indicator,
.s-CashCall-CashCallSubcomRecomendationsGrid .slick-sort-indicator,
.s-CashCall-CashCallEndorsementGrid .slick-sort-indicator,
.s-CashCall-CashCallGgmSummariesGrid .slick-sort-indicator,
.s-CashCall-CashCallGgmSummariesItemGrid .slick-sort-indicator,
.s-CashCall-CashCallPayablesGrid .slick-sort-indicator,
.s-CashCall-CashCallPayableItemsGrid .slick-sort-indicator,
.s-CashCall-CashCallPayableItemsAdjustedGrid .slick-sort-indicator,
.s-CashCall-CashCallPayablesAnnualGrid .slick-sort-indicator,
.s-CashCall-CashCallMandatesGrid .slick-sort-indicator,
.s-CashCall-CashCallPaymentConfirmationGrid .slick-sort-indicator,
.s-CashCall-CashCallPayableItemsEditor .slick-sort-indicator,
.s-CashCall-CashCallPaymentDataEditor .slick-sort-indicator,
.s-CashCall-CashCallPaymentDataGrid .slick-sort-indicator,
.s-Performance-PerformancesGrid .slick-sort-indicator,
.s-Performance-PerformancesAllGrid .slick-sort-indicator,
.s-Performance-PerformancesBDGGrid .slick-sort-indicator,
.s-Performance-PerformanceSchedulesGrid .slick-sort-indicator,
.s-Performance-PerformanceCallScheduleCalendarsGrid .slick-sort-indicator,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .slick-sort-indicator,
.s-Performance-PerformanceCallScheduleActivitiesGrid .slick-sort-indicator,
.s-Performance-PerformanceCallScheduleActivitiesGrid .slick-sort-indicator,
.s-Performance-PerformanceCallCircularsGrid .slick-sort-indicator,
.s-Performance-PerformanceCallCircularsAllGrid .slick-sort-indicator,
.s-Performance-PerformanceMonthlyGrid .slick-sort-indicator,
.s-Performance-PerformanceQuarterlyGrid .slick-sort-indicator,
.s-Performance-PerformanceQuarterFourGrid .slick-sort-indicator,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .slick-sort-indicator,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .slick-sort-indicator,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .slick-sort-indicator,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .slick-sort-indicator,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .slick-sort-indicator,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .slick-sort-indicator,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .slick-sort-indicator,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .slick-sort-indicator,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .slick-sort-indicator,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .slick-sort-indicator,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .slick-sort-indicator,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .slick-sort-indicator,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .slick-sort-indicator,
.s-Performance-PerformanceFinancialItemsGrid .slick-sort-indicator,
.s-Performance-PerformanceNonFinancialItemsGrid .slick-sort-indicator,
.s-Performance-PerformanceFinancialMonthItemsGrid .slick-sort-indicator,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .slick-sort-indicator,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .slick-sort-indicator,
.s-Common-DashboardWidgetGrid .slick-sort-indicator,
.s-Administration-BcPproExceptionsGrid .slick-sort-indicator {
  display: inline-block;
  width: 8px;
  height: 5px;
  margin-left: 4px;
  margin-top: 6px;
  float: left;
}
.s-Administration-IssueTrackingIssuesGrid .slick-resizable-handle,
.s-Administration-IssueTrackingFeedbackGrid .slick-resizable-handle,
.s-Administration-IssueTrackingChangeRequestGrid .slick-resizable-handle,
.s-Administration-NotificationTemplatesGrid .slick-resizable-handle,
.s-Administration-BudgetAutoTestGrid .slick-resizable-handle,
.s-Administration-CashCallAutoTestGrid .slick-resizable-handle,
.s-Administration-PerformanceMonthAutoTestGrid .slick-resizable-handle,
.s-Administration-PerformanceQuarterAutoTestGrid .slick-resizable-handle,
.s-Administration-SiteNotificationsGrid .slick-resizable-handle,
.s-Budget-AnnualBudgetsGrid .slick-resizable-handle,
.s-Budget-AnnualBudgetsAllGrid .slick-resizable-handle,
.s-Budget-BudgetProfilesABGrid .slick-resizable-handle,
.s-Budget-OperatorProposalsGrid .slick-resizable-handle,
.s-Budget-MACOMApprovalsGrid .slick-resizable-handle,
.s-Budget-OPCOMApprovalsGrid .slick-resizable-handle,
.s-Budget-ApprovedBudgetsGrid .slick-resizable-handle,
.s-Budget-FiveYearForecastsGrid .slick-resizable-handle,
.s-Budget-NUIMSPlanningReviewsGrid .slick-resizable-handle,
.s-Budget-SUBCOMRecommendationsGrid .slick-resizable-handle,
.s-Budget-SUBCOMRecommendationsAllGrid .slick-resizable-handle,
.s-Budget-TECOMRecommendationsGrid .slick-resizable-handle,
.s-Budget-BudgetProfilesGrid .slick-resizable-handle,
.s-Budget-BudgetProfilesAllGrid .slick-resizable-handle,
.s-Budget-BudgetsGrid .slick-resizable-handle,
.s-Budget-CallCircularsGrid .slick-resizable-handle,
.s-Budget-CallCircularsAllGrid .slick-resizable-handle,
.s-Budget-CallSchedulesGrid .slick-resizable-handle,
.s-Budget-CallScheduleCalendarsGrid .slick-resizable-handle,
.s-Budget-CallScheduleCalendarsAllGrid .slick-resizable-handle,
.s-Budget-BudgetThresholdsAllGrid .slick-resizable-handle,
.s-Budget-BudgetThresholdsGrid .slick-resizable-handle,
.s-Budget-BudgetThresholdBackupGrid .slick-resizable-handle,
.s-Budget-BTFundingTrancheBackupGrid .slick-resizable-handle,
.s-Budget-OperatorTemplatesGrid .slick-resizable-handle,
.s-Budget-TemplateCommitteeGrid .slick-resizable-handle,
.s-Budget-BudgetHistoricBriefGrid .slick-resizable-handle,
.s-Budget-BudgetHistoricTemplateGrid .slick-resizable-handle,
.s-Budget-BTFundingTranchesGrid .slick-resizable-handle,
.s-Budget-BTFundingTranchesAllGrid .slick-resizable-handle,
.s-Budget-BTFundingTrancheBreakdownsGrid .slick-resizable-handle,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .slick-resizable-handle,
.s-Budget-CallScheduleCalendarsGrid .slick-resizable-handle,
.s-Budget-CallCircularsAllGrid .slick-resizable-handle,
.s-Budget-CallCircularsGrid .slick-resizable-handle,
.s-Budget-CallScheduleActivitiesGrid .slick-resizable-handle,
.s-Budget-CallSchedulesAllGrid .slick-resizable-handle,
.s-Budget-CallSchedulesGrid .slick-resizable-handle,
.s-Budget-SwotsGrid .slick-resizable-handle,
.s-Budget-BudgetAssumptionsGrid .slick-resizable-handle,
.s-Budget-SeismicActivitiesGrid .slick-resizable-handle,
.s-Budget-ReservesGrid .slick-resizable-handle,
.s-Budget-ProductionGrid .slick-resizable-handle,
.s-Budget-GasUtilizationGrid .slick-resizable-handle,
.s-Budget-RigSequencesGrid .slick-resizable-handle,
.s-Budget-VesselSchedulesGrid .slick-resizable-handle,
.s-Budget-HrSummariesGrid .slick-resizable-handle,
.s-Budget-SharedCostsGrid .slick-resizable-handle,
.s-Budget-SharedCostAllocationsGrid .slick-resizable-handle,
.s-Budget-GeneralWorkProgrammesGrid .slick-resizable-handle,
.s-Budget-ExpenditureBreakdownsGrid .slick-resizable-handle,
.s-Budget-WellCostsNonRigWorkGrid .slick-resizable-handle,
.s-Budget-NonRigWorkOverCostElementsGrid .slick-resizable-handle,
.s-Budget-WellCostsGrid .slick-resizable-handle,
.s-Budget-WellCostElementsGrid .slick-resizable-handle,
.s-Budget-ProjectSummariesGrid .slick-resizable-handle,
.s-Budget-PADWorkProgrammesGrid .slick-resizable-handle,
.s-Budget-RigSequencesGrid .slick-resizable-handle,
.s-Budget-BlocksGrid .slick-resizable-handle,
.s-Budget-CashCallEquitySharesGrid .slick-resizable-handle,
.s-Budget-FieldsGrid .slick-resizable-handle,
.s-Budget-FieldTerrainsGrid .slick-resizable-handle,
.s-Budget-FundingTranchesGrid .slick-resizable-handle,
.s-Budget-FundingTranchesAllGrid .slick-resizable-handle,
.s-Budget-MajorDriversGrid .slick-resizable-handle,
.s-Budget-BudgetData_ExcelTemplatesGrid .slick-resizable-handle,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .slick-resizable-handle,
.s-Budget-ExcelTemplatesGrid .slick-resizable-handle,
.s-Budget-OperatorBlocksAllGrid .slick-resizable-handle,
.s-Budget-OperatorBlocksGrid .slick-resizable-handle,
.s-Budget-ProductsGrid .slick-resizable-handle,
.s-Budget-RigsGrid .slick-resizable-handle,
.s-Budget-SeismicActivityDescriptionsGrid .slick-resizable-handle,
.s-Budget-UAPCodeAccessPermissionsGrid .slick-resizable-handle,
.s-Budget-UAPCodesAllGrid .slick-resizable-handle,
.s-Budget-NUIMS_UAPCodesGrid .slick-resizable-handle,
.s-Budget-Operator_UAPCodesGrid .slick-resizable-handle,
.s-Budget-VesselsGrid .slick-resizable-handle,
.s-Budget-WellCostElementGroupsGrid .slick-resizable-handle,
.s-Budget-WellCostsElementDetailsGrid .slick-resizable-handle,
.s-Budget-WellCostsElementDetailsAllGrid .slick-resizable-handle,
.s-Budget-NonRigActivityTypesGrid .slick-resizable-handle,
.s-Budget-NonRigElementDetailsGrid .slick-resizable-handle,
.s-Budget-NonRigElementDetailsAllGrid .slick-resizable-handle,
.s-Budget-WellsAllGrid .slick-resizable-handle,
.s-Budget-WellsGrid .slick-resizable-handle,
.s-Budget-ProjectsGrid .slick-resizable-handle,
.s-Budget-ResponsiblePartyOperatorsGrid .slick-resizable-handle,
.s-Budget-ContractApprovingBodiesGrid .slick-resizable-handle,
.s-Budget-CountryGrid .slick-resizable-handle,
.s-Budget-FundingTrancheSourcesGrid .slick-resizable-handle,
.s-Budget-MonthsGrid .slick-resizable-handle,
.s-Budget-NationalityGrid .slick-resizable-handle,
.s-Budget-PadClustersGrid .slick-resizable-handle,
.s-Budget-PadCommunitiesGrid .slick-resizable-handle,
.s-Budget-SecurityRolesGrid .slick-resizable-handle,
.s-Budget-TemplatesGrid .slick-resizable-handle,
.s-Budget-TerrainsGrid .slick-resizable-handle,
.s-Budget-UAPAccessPermissionsGrid .slick-resizable-handle,
.s-Budget-UAPCodeLevelsGrid .slick-resizable-handle,
.s-Budget-UAPCodeGroupsGrid .slick-resizable-handle,
.s-Budget-UAPCodeGroupTitlesGrid .slick-resizable-handle,
.s-Budget-UnitsGrid .slick-resizable-handle,
.s-Budget-UnitsOfMeasureGrid .slick-resizable-handle,
.s-Budget-UnitsOfMeasureUsageGrid .slick-resizable-handle,
.s-Budget-VesselActivitiesGrid .slick-resizable-handle,
.s-Budget-WellClassificationsGrid .slick-resizable-handle,
.s-Budget-YearsGrid .slick-resizable-handle,
.s-Budget-AnnualBudgetStatusesGrid .slick-resizable-handle,
.s-Budget-ApprovedBudgetStatusesGrid .slick-resizable-handle,
.s-Budget-BudgetPreviewStatusesGrid .slick-resizable-handle,
.s-Budget-BudgetProfileStatusesGrid .slick-resizable-handle,
.s-Budget-BudgetStatusesGrid .slick-resizable-handle,
.s-Budget-BudgetThresholdStatusesGrid .slick-resizable-handle,
.s-Budget-ButtonStatusesGrid .slick-resizable-handle,
.s-Budget-CallCircularStatusesGrid .slick-resizable-handle,
.s-Budget-CashCallStatusesGrid .slick-resizable-handle,
.s-Budget-ContractStatusesGrid .slick-resizable-handle,
.s-Budget-FieldStatusesGrid .slick-resizable-handle,
.s-Budget-FincomStatusesGrid .slick-resizable-handle,
.s-Budget-MacomReviewStatusesGrid .slick-resizable-handle,
.s-Budget-NuimsPlanningReviewStatusesGrid .slick-resizable-handle,
.s-Budget-OpcomReviewStatusesGrid .slick-resizable-handle,
.s-Budget-OperatorProposalStatusesGrid .slick-resizable-handle,
.s-Budget-OperatorStatusesGrid .slick-resizable-handle,
.s-Budget-OwnershipStatusesGrid .slick-resizable-handle,
.s-Budget-PerformanceStatusesGrid .slick-resizable-handle,
.s-Budget-ProjectStatusGrid .slick-resizable-handle,
.s-Budget-RealignedBudgetStatusesGrid .slick-resizable-handle,
.s-Budget-SubcomRecommendationStatusesGrid .slick-resizable-handle,
.s-Budget-TecomRecommendationStatusesGrid .slick-resizable-handle,
.s-Budget-TemplateStatusesGrid .slick-resizable-handle,
.s-Budget-UAPCodeStatusesGrid .slick-resizable-handle,
.s-Budget-AgreementTypesGrid .slick-resizable-handle,
.s-Budget-BriefTypesGrid .slick-resizable-handle,
.s-Budget-BudgetTypesGrid .slick-resizable-handle,
.s-Budget-MeetingGrid .slick-resizable-handle,
.s-Budget-MeetingAgendaGrid .slick-resizable-handle,
.s-Budget-MeetingAgendaRelevantGrid .slick-resizable-handle,
.s-Budget-MeetingAgendaTypeGrid .slick-resizable-handle,
.s-Budget-MeetingDecisionGrid .slick-resizable-handle,
.s-Budget-MeetingDecisionRelevantGrid .slick-resizable-handle,
.s-Budget-MeetingLocationGrid .slick-resizable-handle,
.s-Budget-MeetingTypeGrid .slick-resizable-handle,
.s-Budget-FinancialDataGrid .slick-resizable-handle,
.s-Budget-WorkflowButtonSequenceTypesGrid .slick-resizable-handle,
.s-Budget-CommitteeTypesGrid .slick-resizable-handle,
.s-Budget-ContractTypesGrid .slick-resizable-handle,
.s-Budget-EmploymentTypeGrid .slick-resizable-handle,
.s-Budget-ExpenditureTypesGrid .slick-resizable-handle,
.s-Budget-FundingTrancheTypesGrid .slick-resizable-handle,
.s-Budget-GasUtilizationTypesGrid .slick-resizable-handle,
.s-Budget-PadProgramTypesGrid .slick-resizable-handle,
.s-Budget-PadTypesGrid .slick-resizable-handle,
.s-Budget-ProductTypesGrid .slick-resizable-handle,
.s-Budget-ProjectTypesGrid .slick-resizable-handle,
.s-Budget-RigTypesGrid .slick-resizable-handle,
.s-Budget-SharedCostAllocationTypesGrid .slick-resizable-handle,
.s-Budget-UAPCodeTypesGrid .slick-resizable-handle,
.s-Budget-VesselTypesGrid .slick-resizable-handle,
.s-Budget-WellCostElementTypesGrid .slick-resizable-handle,
.s-Budget-WellTypesGrid .slick-resizable-handle,
.s-Budget-BudgetPreviewGrid .slick-resizable-handle,
.s-Budget-FINCOMAppendixIGrid .slick-resizable-handle,
.s-Budget-FINCOMAppendixIIGrid .slick-resizable-handle,
.s-Budget-FINCOMCollationGrid .slick-resizable-handle,
.s-Budget-CallScheduleActionsGrid .slick-resizable-handle,
.s-CashCall-CashCallCalendarsGrid .slick-resizable-handle,
.s-CashCall-CashCallActivitiesGrid .slick-resizable-handle,
.s-CashCall-CashCallScheduleActivitiesGrid .slick-resizable-handle,
.s-CashCall-CashCallCircularsGrid .slick-resizable-handle,
.s-CashCall-CashCallCircularsAllGrid .slick-resizable-handle,
.s-CashCall-CashCallCalendarsGrid .slick-resizable-handle,
.s-CashCall-CashCallCalendarsAllGrid .slick-resizable-handle,
.s-CashCall-CashCallBriefsGrid .slick-resizable-handle,
.s-CashCall-CashCallCashComRecommendationsGrid .slick-resizable-handle,
.s-CashCall-CashCallMandatesGrid .slick-resizable-handle,
.s-CashCall-CashCallMeetingDayAttendancesGrid .slick-resizable-handle,
.s-CashCall-CashCallPayablesGrid .slick-resizable-handle,
.s-CashCall-CashCallsGrid .slick-resizable-handle,
.s-CashCall-CashCallsAllGrid .slick-resizable-handle,
.s-CashCall-CashCallsEPGrid .slick-resizable-handle,
.s-CashCall-CashCallsBDGGrid .slick-resizable-handle,
.s-CashCall-CashCallSchedulesGrid .slick-resizable-handle,
.s-CashCall-CashCallSchedulesAllGrid .slick-resizable-handle,
.s-CashCall-CashCallRequestsGrid .slick-resizable-handle,
.s-CashCall-CashCallRequestsEPGrid .slick-resizable-handle,
.s-CashCall-CashCallRequestItemsGrid .slick-resizable-handle,
.s-CashCall-CashCallUapCodeItemsGrid .slick-resizable-handle,
.s-CashCall-CashCallOperatorRequestsGrid .slick-resizable-handle,
.s-CashCall-CashCallNuimsReviewsGrid .slick-resizable-handle,
.s-CashCall-CashCallManagerJVReviewGrid .slick-resizable-handle,
.s-CashCall-CashCallCashComSubComReviewGrid .slick-resizable-handle,
.s-CashCall-CashCallFincomCollationGrid .slick-resizable-handle,
.s-CashCall-CashCallSubcomRecomendationsGrid .slick-resizable-handle,
.s-CashCall-CashCallEndorsementGrid .slick-resizable-handle,
.s-CashCall-CashCallGgmSummariesGrid .slick-resizable-handle,
.s-CashCall-CashCallGgmSummariesItemGrid .slick-resizable-handle,
.s-CashCall-CashCallPayablesGrid .slick-resizable-handle,
.s-CashCall-CashCallPayableItemsGrid .slick-resizable-handle,
.s-CashCall-CashCallPayableItemsAdjustedGrid .slick-resizable-handle,
.s-CashCall-CashCallPayablesAnnualGrid .slick-resizable-handle,
.s-CashCall-CashCallMandatesGrid .slick-resizable-handle,
.s-CashCall-CashCallPaymentConfirmationGrid .slick-resizable-handle,
.s-CashCall-CashCallPayableItemsEditor .slick-resizable-handle,
.s-CashCall-CashCallPaymentDataEditor .slick-resizable-handle,
.s-CashCall-CashCallPaymentDataGrid .slick-resizable-handle,
.s-Performance-PerformancesGrid .slick-resizable-handle,
.s-Performance-PerformancesAllGrid .slick-resizable-handle,
.s-Performance-PerformancesBDGGrid .slick-resizable-handle,
.s-Performance-PerformanceSchedulesGrid .slick-resizable-handle,
.s-Performance-PerformanceCallScheduleCalendarsGrid .slick-resizable-handle,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .slick-resizable-handle,
.s-Performance-PerformanceCallScheduleActivitiesGrid .slick-resizable-handle,
.s-Performance-PerformanceCallScheduleActivitiesGrid .slick-resizable-handle,
.s-Performance-PerformanceCallCircularsGrid .slick-resizable-handle,
.s-Performance-PerformanceCallCircularsAllGrid .slick-resizable-handle,
.s-Performance-PerformanceMonthlyGrid .slick-resizable-handle,
.s-Performance-PerformanceQuarterlyGrid .slick-resizable-handle,
.s-Performance-PerformanceQuarterFourGrid .slick-resizable-handle,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .slick-resizable-handle,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .slick-resizable-handle,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .slick-resizable-handle,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .slick-resizable-handle,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .slick-resizable-handle,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .slick-resizable-handle,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .slick-resizable-handle,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .slick-resizable-handle,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .slick-resizable-handle,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .slick-resizable-handle,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .slick-resizable-handle,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .slick-resizable-handle,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .slick-resizable-handle,
.s-Performance-PerformanceFinancialItemsGrid .slick-resizable-handle,
.s-Performance-PerformanceNonFinancialItemsGrid .slick-resizable-handle,
.s-Performance-PerformanceFinancialMonthItemsGrid .slick-resizable-handle,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .slick-resizable-handle,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .slick-resizable-handle,
.s-Common-DashboardWidgetGrid .slick-resizable-handle,
.s-Administration-BcPproExceptionsGrid .slick-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  cursor: col-resize;
  width: 4px;
  right: 0px;
  top: 0;
  height: 100%;
}
.s-Administration-IssueTrackingIssuesGrid .slick-sortable-placeholder,
.s-Administration-IssueTrackingFeedbackGrid .slick-sortable-placeholder,
.s-Administration-IssueTrackingChangeRequestGrid .slick-sortable-placeholder,
.s-Administration-NotificationTemplatesGrid .slick-sortable-placeholder,
.s-Administration-BudgetAutoTestGrid .slick-sortable-placeholder,
.s-Administration-CashCallAutoTestGrid .slick-sortable-placeholder,
.s-Administration-PerformanceMonthAutoTestGrid .slick-sortable-placeholder,
.s-Administration-PerformanceQuarterAutoTestGrid .slick-sortable-placeholder,
.s-Administration-SiteNotificationsGrid .slick-sortable-placeholder,
.s-Budget-AnnualBudgetsGrid .slick-sortable-placeholder,
.s-Budget-AnnualBudgetsAllGrid .slick-sortable-placeholder,
.s-Budget-BudgetProfilesABGrid .slick-sortable-placeholder,
.s-Budget-OperatorProposalsGrid .slick-sortable-placeholder,
.s-Budget-MACOMApprovalsGrid .slick-sortable-placeholder,
.s-Budget-OPCOMApprovalsGrid .slick-sortable-placeholder,
.s-Budget-ApprovedBudgetsGrid .slick-sortable-placeholder,
.s-Budget-FiveYearForecastsGrid .slick-sortable-placeholder,
.s-Budget-NUIMSPlanningReviewsGrid .slick-sortable-placeholder,
.s-Budget-SUBCOMRecommendationsGrid .slick-sortable-placeholder,
.s-Budget-SUBCOMRecommendationsAllGrid .slick-sortable-placeholder,
.s-Budget-TECOMRecommendationsGrid .slick-sortable-placeholder,
.s-Budget-BudgetProfilesGrid .slick-sortable-placeholder,
.s-Budget-BudgetProfilesAllGrid .slick-sortable-placeholder,
.s-Budget-BudgetsGrid .slick-sortable-placeholder,
.s-Budget-CallCircularsGrid .slick-sortable-placeholder,
.s-Budget-CallCircularsAllGrid .slick-sortable-placeholder,
.s-Budget-CallSchedulesGrid .slick-sortable-placeholder,
.s-Budget-CallScheduleCalendarsGrid .slick-sortable-placeholder,
.s-Budget-CallScheduleCalendarsAllGrid .slick-sortable-placeholder,
.s-Budget-BudgetThresholdsAllGrid .slick-sortable-placeholder,
.s-Budget-BudgetThresholdsGrid .slick-sortable-placeholder,
.s-Budget-BudgetThresholdBackupGrid .slick-sortable-placeholder,
.s-Budget-BTFundingTrancheBackupGrid .slick-sortable-placeholder,
.s-Budget-OperatorTemplatesGrid .slick-sortable-placeholder,
.s-Budget-TemplateCommitteeGrid .slick-sortable-placeholder,
.s-Budget-BudgetHistoricBriefGrid .slick-sortable-placeholder,
.s-Budget-BudgetHistoricTemplateGrid .slick-sortable-placeholder,
.s-Budget-BTFundingTranchesGrid .slick-sortable-placeholder,
.s-Budget-BTFundingTranchesAllGrid .slick-sortable-placeholder,
.s-Budget-BTFundingTrancheBreakdownsGrid .slick-sortable-placeholder,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .slick-sortable-placeholder,
.s-Budget-CallScheduleCalendarsGrid .slick-sortable-placeholder,
.s-Budget-CallCircularsAllGrid .slick-sortable-placeholder,
.s-Budget-CallCircularsGrid .slick-sortable-placeholder,
.s-Budget-CallScheduleActivitiesGrid .slick-sortable-placeholder,
.s-Budget-CallSchedulesAllGrid .slick-sortable-placeholder,
.s-Budget-CallSchedulesGrid .slick-sortable-placeholder,
.s-Budget-SwotsGrid .slick-sortable-placeholder,
.s-Budget-BudgetAssumptionsGrid .slick-sortable-placeholder,
.s-Budget-SeismicActivitiesGrid .slick-sortable-placeholder,
.s-Budget-ReservesGrid .slick-sortable-placeholder,
.s-Budget-ProductionGrid .slick-sortable-placeholder,
.s-Budget-GasUtilizationGrid .slick-sortable-placeholder,
.s-Budget-RigSequencesGrid .slick-sortable-placeholder,
.s-Budget-VesselSchedulesGrid .slick-sortable-placeholder,
.s-Budget-HrSummariesGrid .slick-sortable-placeholder,
.s-Budget-SharedCostsGrid .slick-sortable-placeholder,
.s-Budget-SharedCostAllocationsGrid .slick-sortable-placeholder,
.s-Budget-GeneralWorkProgrammesGrid .slick-sortable-placeholder,
.s-Budget-ExpenditureBreakdownsGrid .slick-sortable-placeholder,
.s-Budget-WellCostsNonRigWorkGrid .slick-sortable-placeholder,
.s-Budget-NonRigWorkOverCostElementsGrid .slick-sortable-placeholder,
.s-Budget-WellCostsGrid .slick-sortable-placeholder,
.s-Budget-WellCostElementsGrid .slick-sortable-placeholder,
.s-Budget-ProjectSummariesGrid .slick-sortable-placeholder,
.s-Budget-PADWorkProgrammesGrid .slick-sortable-placeholder,
.s-Budget-RigSequencesGrid .slick-sortable-placeholder,
.s-Budget-BlocksGrid .slick-sortable-placeholder,
.s-Budget-CashCallEquitySharesGrid .slick-sortable-placeholder,
.s-Budget-FieldsGrid .slick-sortable-placeholder,
.s-Budget-FieldTerrainsGrid .slick-sortable-placeholder,
.s-Budget-FundingTranchesGrid .slick-sortable-placeholder,
.s-Budget-FundingTranchesAllGrid .slick-sortable-placeholder,
.s-Budget-MajorDriversGrid .slick-sortable-placeholder,
.s-Budget-BudgetData_ExcelTemplatesGrid .slick-sortable-placeholder,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .slick-sortable-placeholder,
.s-Budget-ExcelTemplatesGrid .slick-sortable-placeholder,
.s-Budget-OperatorBlocksAllGrid .slick-sortable-placeholder,
.s-Budget-OperatorBlocksGrid .slick-sortable-placeholder,
.s-Budget-ProductsGrid .slick-sortable-placeholder,
.s-Budget-RigsGrid .slick-sortable-placeholder,
.s-Budget-SeismicActivityDescriptionsGrid .slick-sortable-placeholder,
.s-Budget-UAPCodeAccessPermissionsGrid .slick-sortable-placeholder,
.s-Budget-UAPCodesAllGrid .slick-sortable-placeholder,
.s-Budget-NUIMS_UAPCodesGrid .slick-sortable-placeholder,
.s-Budget-Operator_UAPCodesGrid .slick-sortable-placeholder,
.s-Budget-VesselsGrid .slick-sortable-placeholder,
.s-Budget-WellCostElementGroupsGrid .slick-sortable-placeholder,
.s-Budget-WellCostsElementDetailsGrid .slick-sortable-placeholder,
.s-Budget-WellCostsElementDetailsAllGrid .slick-sortable-placeholder,
.s-Budget-NonRigActivityTypesGrid .slick-sortable-placeholder,
.s-Budget-NonRigElementDetailsGrid .slick-sortable-placeholder,
.s-Budget-NonRigElementDetailsAllGrid .slick-sortable-placeholder,
.s-Budget-WellsAllGrid .slick-sortable-placeholder,
.s-Budget-WellsGrid .slick-sortable-placeholder,
.s-Budget-ProjectsGrid .slick-sortable-placeholder,
.s-Budget-ResponsiblePartyOperatorsGrid .slick-sortable-placeholder,
.s-Budget-ContractApprovingBodiesGrid .slick-sortable-placeholder,
.s-Budget-CountryGrid .slick-sortable-placeholder,
.s-Budget-FundingTrancheSourcesGrid .slick-sortable-placeholder,
.s-Budget-MonthsGrid .slick-sortable-placeholder,
.s-Budget-NationalityGrid .slick-sortable-placeholder,
.s-Budget-PadClustersGrid .slick-sortable-placeholder,
.s-Budget-PadCommunitiesGrid .slick-sortable-placeholder,
.s-Budget-SecurityRolesGrid .slick-sortable-placeholder,
.s-Budget-TemplatesGrid .slick-sortable-placeholder,
.s-Budget-TerrainsGrid .slick-sortable-placeholder,
.s-Budget-UAPAccessPermissionsGrid .slick-sortable-placeholder,
.s-Budget-UAPCodeLevelsGrid .slick-sortable-placeholder,
.s-Budget-UAPCodeGroupsGrid .slick-sortable-placeholder,
.s-Budget-UAPCodeGroupTitlesGrid .slick-sortable-placeholder,
.s-Budget-UnitsGrid .slick-sortable-placeholder,
.s-Budget-UnitsOfMeasureGrid .slick-sortable-placeholder,
.s-Budget-UnitsOfMeasureUsageGrid .slick-sortable-placeholder,
.s-Budget-VesselActivitiesGrid .slick-sortable-placeholder,
.s-Budget-WellClassificationsGrid .slick-sortable-placeholder,
.s-Budget-YearsGrid .slick-sortable-placeholder,
.s-Budget-AnnualBudgetStatusesGrid .slick-sortable-placeholder,
.s-Budget-ApprovedBudgetStatusesGrid .slick-sortable-placeholder,
.s-Budget-BudgetPreviewStatusesGrid .slick-sortable-placeholder,
.s-Budget-BudgetProfileStatusesGrid .slick-sortable-placeholder,
.s-Budget-BudgetStatusesGrid .slick-sortable-placeholder,
.s-Budget-BudgetThresholdStatusesGrid .slick-sortable-placeholder,
.s-Budget-ButtonStatusesGrid .slick-sortable-placeholder,
.s-Budget-CallCircularStatusesGrid .slick-sortable-placeholder,
.s-Budget-CashCallStatusesGrid .slick-sortable-placeholder,
.s-Budget-ContractStatusesGrid .slick-sortable-placeholder,
.s-Budget-FieldStatusesGrid .slick-sortable-placeholder,
.s-Budget-FincomStatusesGrid .slick-sortable-placeholder,
.s-Budget-MacomReviewStatusesGrid .slick-sortable-placeholder,
.s-Budget-NuimsPlanningReviewStatusesGrid .slick-sortable-placeholder,
.s-Budget-OpcomReviewStatusesGrid .slick-sortable-placeholder,
.s-Budget-OperatorProposalStatusesGrid .slick-sortable-placeholder,
.s-Budget-OperatorStatusesGrid .slick-sortable-placeholder,
.s-Budget-OwnershipStatusesGrid .slick-sortable-placeholder,
.s-Budget-PerformanceStatusesGrid .slick-sortable-placeholder,
.s-Budget-ProjectStatusGrid .slick-sortable-placeholder,
.s-Budget-RealignedBudgetStatusesGrid .slick-sortable-placeholder,
.s-Budget-SubcomRecommendationStatusesGrid .slick-sortable-placeholder,
.s-Budget-TecomRecommendationStatusesGrid .slick-sortable-placeholder,
.s-Budget-TemplateStatusesGrid .slick-sortable-placeholder,
.s-Budget-UAPCodeStatusesGrid .slick-sortable-placeholder,
.s-Budget-AgreementTypesGrid .slick-sortable-placeholder,
.s-Budget-BriefTypesGrid .slick-sortable-placeholder,
.s-Budget-BudgetTypesGrid .slick-sortable-placeholder,
.s-Budget-MeetingGrid .slick-sortable-placeholder,
.s-Budget-MeetingAgendaGrid .slick-sortable-placeholder,
.s-Budget-MeetingAgendaRelevantGrid .slick-sortable-placeholder,
.s-Budget-MeetingAgendaTypeGrid .slick-sortable-placeholder,
.s-Budget-MeetingDecisionGrid .slick-sortable-placeholder,
.s-Budget-MeetingDecisionRelevantGrid .slick-sortable-placeholder,
.s-Budget-MeetingLocationGrid .slick-sortable-placeholder,
.s-Budget-MeetingTypeGrid .slick-sortable-placeholder,
.s-Budget-FinancialDataGrid .slick-sortable-placeholder,
.s-Budget-WorkflowButtonSequenceTypesGrid .slick-sortable-placeholder,
.s-Budget-CommitteeTypesGrid .slick-sortable-placeholder,
.s-Budget-ContractTypesGrid .slick-sortable-placeholder,
.s-Budget-EmploymentTypeGrid .slick-sortable-placeholder,
.s-Budget-ExpenditureTypesGrid .slick-sortable-placeholder,
.s-Budget-FundingTrancheTypesGrid .slick-sortable-placeholder,
.s-Budget-GasUtilizationTypesGrid .slick-sortable-placeholder,
.s-Budget-PadProgramTypesGrid .slick-sortable-placeholder,
.s-Budget-PadTypesGrid .slick-sortable-placeholder,
.s-Budget-ProductTypesGrid .slick-sortable-placeholder,
.s-Budget-ProjectTypesGrid .slick-sortable-placeholder,
.s-Budget-RigTypesGrid .slick-sortable-placeholder,
.s-Budget-SharedCostAllocationTypesGrid .slick-sortable-placeholder,
.s-Budget-UAPCodeTypesGrid .slick-sortable-placeholder,
.s-Budget-VesselTypesGrid .slick-sortable-placeholder,
.s-Budget-WellCostElementTypesGrid .slick-sortable-placeholder,
.s-Budget-WellTypesGrid .slick-sortable-placeholder,
.s-Budget-BudgetPreviewGrid .slick-sortable-placeholder,
.s-Budget-FINCOMAppendixIGrid .slick-sortable-placeholder,
.s-Budget-FINCOMAppendixIIGrid .slick-sortable-placeholder,
.s-Budget-FINCOMCollationGrid .slick-sortable-placeholder,
.s-Budget-CallScheduleActionsGrid .slick-sortable-placeholder,
.s-CashCall-CashCallCalendarsGrid .slick-sortable-placeholder,
.s-CashCall-CashCallActivitiesGrid .slick-sortable-placeholder,
.s-CashCall-CashCallScheduleActivitiesGrid .slick-sortable-placeholder,
.s-CashCall-CashCallCircularsGrid .slick-sortable-placeholder,
.s-CashCall-CashCallCircularsAllGrid .slick-sortable-placeholder,
.s-CashCall-CashCallCalendarsGrid .slick-sortable-placeholder,
.s-CashCall-CashCallCalendarsAllGrid .slick-sortable-placeholder,
.s-CashCall-CashCallBriefsGrid .slick-sortable-placeholder,
.s-CashCall-CashCallCashComRecommendationsGrid .slick-sortable-placeholder,
.s-CashCall-CashCallMandatesGrid .slick-sortable-placeholder,
.s-CashCall-CashCallMeetingDayAttendancesGrid .slick-sortable-placeholder,
.s-CashCall-CashCallPayablesGrid .slick-sortable-placeholder,
.s-CashCall-CashCallsGrid .slick-sortable-placeholder,
.s-CashCall-CashCallsAllGrid .slick-sortable-placeholder,
.s-CashCall-CashCallsEPGrid .slick-sortable-placeholder,
.s-CashCall-CashCallsBDGGrid .slick-sortable-placeholder,
.s-CashCall-CashCallSchedulesGrid .slick-sortable-placeholder,
.s-CashCall-CashCallSchedulesAllGrid .slick-sortable-placeholder,
.s-CashCall-CashCallRequestsGrid .slick-sortable-placeholder,
.s-CashCall-CashCallRequestsEPGrid .slick-sortable-placeholder,
.s-CashCall-CashCallRequestItemsGrid .slick-sortable-placeholder,
.s-CashCall-CashCallUapCodeItemsGrid .slick-sortable-placeholder,
.s-CashCall-CashCallOperatorRequestsGrid .slick-sortable-placeholder,
.s-CashCall-CashCallNuimsReviewsGrid .slick-sortable-placeholder,
.s-CashCall-CashCallManagerJVReviewGrid .slick-sortable-placeholder,
.s-CashCall-CashCallCashComSubComReviewGrid .slick-sortable-placeholder,
.s-CashCall-CashCallFincomCollationGrid .slick-sortable-placeholder,
.s-CashCall-CashCallSubcomRecomendationsGrid .slick-sortable-placeholder,
.s-CashCall-CashCallEndorsementGrid .slick-sortable-placeholder,
.s-CashCall-CashCallGgmSummariesGrid .slick-sortable-placeholder,
.s-CashCall-CashCallGgmSummariesItemGrid .slick-sortable-placeholder,
.s-CashCall-CashCallPayablesGrid .slick-sortable-placeholder,
.s-CashCall-CashCallPayableItemsGrid .slick-sortable-placeholder,
.s-CashCall-CashCallPayableItemsAdjustedGrid .slick-sortable-placeholder,
.s-CashCall-CashCallPayablesAnnualGrid .slick-sortable-placeholder,
.s-CashCall-CashCallMandatesGrid .slick-sortable-placeholder,
.s-CashCall-CashCallPaymentConfirmationGrid .slick-sortable-placeholder,
.s-CashCall-CashCallPayableItemsEditor .slick-sortable-placeholder,
.s-CashCall-CashCallPaymentDataEditor .slick-sortable-placeholder,
.s-CashCall-CashCallPaymentDataGrid .slick-sortable-placeholder,
.s-Performance-PerformancesGrid .slick-sortable-placeholder,
.s-Performance-PerformancesAllGrid .slick-sortable-placeholder,
.s-Performance-PerformancesBDGGrid .slick-sortable-placeholder,
.s-Performance-PerformanceSchedulesGrid .slick-sortable-placeholder,
.s-Performance-PerformanceCallScheduleCalendarsGrid .slick-sortable-placeholder,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .slick-sortable-placeholder,
.s-Performance-PerformanceCallScheduleActivitiesGrid .slick-sortable-placeholder,
.s-Performance-PerformanceCallScheduleActivitiesGrid .slick-sortable-placeholder,
.s-Performance-PerformanceCallCircularsGrid .slick-sortable-placeholder,
.s-Performance-PerformanceCallCircularsAllGrid .slick-sortable-placeholder,
.s-Performance-PerformanceMonthlyGrid .slick-sortable-placeholder,
.s-Performance-PerformanceQuarterlyGrid .slick-sortable-placeholder,
.s-Performance-PerformanceQuarterFourGrid .slick-sortable-placeholder,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .slick-sortable-placeholder,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .slick-sortable-placeholder,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .slick-sortable-placeholder,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .slick-sortable-placeholder,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .slick-sortable-placeholder,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .slick-sortable-placeholder,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .slick-sortable-placeholder,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .slick-sortable-placeholder,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .slick-sortable-placeholder,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .slick-sortable-placeholder,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .slick-sortable-placeholder,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .slick-sortable-placeholder,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .slick-sortable-placeholder,
.s-Performance-PerformanceFinancialItemsGrid .slick-sortable-placeholder,
.s-Performance-PerformanceNonFinancialItemsGrid .slick-sortable-placeholder,
.s-Performance-PerformanceFinancialMonthItemsGrid .slick-sortable-placeholder,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .slick-sortable-placeholder,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .slick-sortable-placeholder,
.s-Common-DashboardWidgetGrid .slick-sortable-placeholder,
.s-Administration-BcPproExceptionsGrid .slick-sortable-placeholder {
  background: silver;
}
.s-Administration-IssueTrackingIssuesGrid .slick-cell,
.s-Administration-IssueTrackingFeedbackGrid .slick-cell,
.s-Administration-IssueTrackingChangeRequestGrid .slick-cell,
.s-Administration-NotificationTemplatesGrid .slick-cell,
.s-Administration-BudgetAutoTestGrid .slick-cell,
.s-Administration-CashCallAutoTestGrid .slick-cell,
.s-Administration-PerformanceMonthAutoTestGrid .slick-cell,
.s-Administration-PerformanceQuarterAutoTestGrid .slick-cell,
.s-Administration-SiteNotificationsGrid .slick-cell,
.s-Budget-AnnualBudgetsGrid .slick-cell,
.s-Budget-AnnualBudgetsAllGrid .slick-cell,
.s-Budget-BudgetProfilesABGrid .slick-cell,
.s-Budget-OperatorProposalsGrid .slick-cell,
.s-Budget-MACOMApprovalsGrid .slick-cell,
.s-Budget-OPCOMApprovalsGrid .slick-cell,
.s-Budget-ApprovedBudgetsGrid .slick-cell,
.s-Budget-FiveYearForecastsGrid .slick-cell,
.s-Budget-NUIMSPlanningReviewsGrid .slick-cell,
.s-Budget-SUBCOMRecommendationsGrid .slick-cell,
.s-Budget-SUBCOMRecommendationsAllGrid .slick-cell,
.s-Budget-TECOMRecommendationsGrid .slick-cell,
.s-Budget-BudgetProfilesGrid .slick-cell,
.s-Budget-BudgetProfilesAllGrid .slick-cell,
.s-Budget-BudgetsGrid .slick-cell,
.s-Budget-CallCircularsGrid .slick-cell,
.s-Budget-CallCircularsAllGrid .slick-cell,
.s-Budget-CallSchedulesGrid .slick-cell,
.s-Budget-CallScheduleCalendarsGrid .slick-cell,
.s-Budget-CallScheduleCalendarsAllGrid .slick-cell,
.s-Budget-BudgetThresholdsAllGrid .slick-cell,
.s-Budget-BudgetThresholdsGrid .slick-cell,
.s-Budget-BudgetThresholdBackupGrid .slick-cell,
.s-Budget-BTFundingTrancheBackupGrid .slick-cell,
.s-Budget-OperatorTemplatesGrid .slick-cell,
.s-Budget-TemplateCommitteeGrid .slick-cell,
.s-Budget-BudgetHistoricBriefGrid .slick-cell,
.s-Budget-BudgetHistoricTemplateGrid .slick-cell,
.s-Budget-BTFundingTranchesGrid .slick-cell,
.s-Budget-BTFundingTranchesAllGrid .slick-cell,
.s-Budget-BTFundingTrancheBreakdownsGrid .slick-cell,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .slick-cell,
.s-Budget-CallScheduleCalendarsGrid .slick-cell,
.s-Budget-CallCircularsAllGrid .slick-cell,
.s-Budget-CallCircularsGrid .slick-cell,
.s-Budget-CallScheduleActivitiesGrid .slick-cell,
.s-Budget-CallSchedulesAllGrid .slick-cell,
.s-Budget-CallSchedulesGrid .slick-cell,
.s-Budget-SwotsGrid .slick-cell,
.s-Budget-BudgetAssumptionsGrid .slick-cell,
.s-Budget-SeismicActivitiesGrid .slick-cell,
.s-Budget-ReservesGrid .slick-cell,
.s-Budget-ProductionGrid .slick-cell,
.s-Budget-GasUtilizationGrid .slick-cell,
.s-Budget-RigSequencesGrid .slick-cell,
.s-Budget-VesselSchedulesGrid .slick-cell,
.s-Budget-HrSummariesGrid .slick-cell,
.s-Budget-SharedCostsGrid .slick-cell,
.s-Budget-SharedCostAllocationsGrid .slick-cell,
.s-Budget-GeneralWorkProgrammesGrid .slick-cell,
.s-Budget-ExpenditureBreakdownsGrid .slick-cell,
.s-Budget-WellCostsNonRigWorkGrid .slick-cell,
.s-Budget-NonRigWorkOverCostElementsGrid .slick-cell,
.s-Budget-WellCostsGrid .slick-cell,
.s-Budget-WellCostElementsGrid .slick-cell,
.s-Budget-ProjectSummariesGrid .slick-cell,
.s-Budget-PADWorkProgrammesGrid .slick-cell,
.s-Budget-RigSequencesGrid .slick-cell,
.s-Budget-BlocksGrid .slick-cell,
.s-Budget-CashCallEquitySharesGrid .slick-cell,
.s-Budget-FieldsGrid .slick-cell,
.s-Budget-FieldTerrainsGrid .slick-cell,
.s-Budget-FundingTranchesGrid .slick-cell,
.s-Budget-FundingTranchesAllGrid .slick-cell,
.s-Budget-MajorDriversGrid .slick-cell,
.s-Budget-BudgetData_ExcelTemplatesGrid .slick-cell,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .slick-cell,
.s-Budget-ExcelTemplatesGrid .slick-cell,
.s-Budget-OperatorBlocksAllGrid .slick-cell,
.s-Budget-OperatorBlocksGrid .slick-cell,
.s-Budget-ProductsGrid .slick-cell,
.s-Budget-RigsGrid .slick-cell,
.s-Budget-SeismicActivityDescriptionsGrid .slick-cell,
.s-Budget-UAPCodeAccessPermissionsGrid .slick-cell,
.s-Budget-UAPCodesAllGrid .slick-cell,
.s-Budget-NUIMS_UAPCodesGrid .slick-cell,
.s-Budget-Operator_UAPCodesGrid .slick-cell,
.s-Budget-VesselsGrid .slick-cell,
.s-Budget-WellCostElementGroupsGrid .slick-cell,
.s-Budget-WellCostsElementDetailsGrid .slick-cell,
.s-Budget-WellCostsElementDetailsAllGrid .slick-cell,
.s-Budget-NonRigActivityTypesGrid .slick-cell,
.s-Budget-NonRigElementDetailsGrid .slick-cell,
.s-Budget-NonRigElementDetailsAllGrid .slick-cell,
.s-Budget-WellsAllGrid .slick-cell,
.s-Budget-WellsGrid .slick-cell,
.s-Budget-ProjectsGrid .slick-cell,
.s-Budget-ResponsiblePartyOperatorsGrid .slick-cell,
.s-Budget-ContractApprovingBodiesGrid .slick-cell,
.s-Budget-CountryGrid .slick-cell,
.s-Budget-FundingTrancheSourcesGrid .slick-cell,
.s-Budget-MonthsGrid .slick-cell,
.s-Budget-NationalityGrid .slick-cell,
.s-Budget-PadClustersGrid .slick-cell,
.s-Budget-PadCommunitiesGrid .slick-cell,
.s-Budget-SecurityRolesGrid .slick-cell,
.s-Budget-TemplatesGrid .slick-cell,
.s-Budget-TerrainsGrid .slick-cell,
.s-Budget-UAPAccessPermissionsGrid .slick-cell,
.s-Budget-UAPCodeLevelsGrid .slick-cell,
.s-Budget-UAPCodeGroupsGrid .slick-cell,
.s-Budget-UAPCodeGroupTitlesGrid .slick-cell,
.s-Budget-UnitsGrid .slick-cell,
.s-Budget-UnitsOfMeasureGrid .slick-cell,
.s-Budget-UnitsOfMeasureUsageGrid .slick-cell,
.s-Budget-VesselActivitiesGrid .slick-cell,
.s-Budget-WellClassificationsGrid .slick-cell,
.s-Budget-YearsGrid .slick-cell,
.s-Budget-AnnualBudgetStatusesGrid .slick-cell,
.s-Budget-ApprovedBudgetStatusesGrid .slick-cell,
.s-Budget-BudgetPreviewStatusesGrid .slick-cell,
.s-Budget-BudgetProfileStatusesGrid .slick-cell,
.s-Budget-BudgetStatusesGrid .slick-cell,
.s-Budget-BudgetThresholdStatusesGrid .slick-cell,
.s-Budget-ButtonStatusesGrid .slick-cell,
.s-Budget-CallCircularStatusesGrid .slick-cell,
.s-Budget-CashCallStatusesGrid .slick-cell,
.s-Budget-ContractStatusesGrid .slick-cell,
.s-Budget-FieldStatusesGrid .slick-cell,
.s-Budget-FincomStatusesGrid .slick-cell,
.s-Budget-MacomReviewStatusesGrid .slick-cell,
.s-Budget-NuimsPlanningReviewStatusesGrid .slick-cell,
.s-Budget-OpcomReviewStatusesGrid .slick-cell,
.s-Budget-OperatorProposalStatusesGrid .slick-cell,
.s-Budget-OperatorStatusesGrid .slick-cell,
.s-Budget-OwnershipStatusesGrid .slick-cell,
.s-Budget-PerformanceStatusesGrid .slick-cell,
.s-Budget-ProjectStatusGrid .slick-cell,
.s-Budget-RealignedBudgetStatusesGrid .slick-cell,
.s-Budget-SubcomRecommendationStatusesGrid .slick-cell,
.s-Budget-TecomRecommendationStatusesGrid .slick-cell,
.s-Budget-TemplateStatusesGrid .slick-cell,
.s-Budget-UAPCodeStatusesGrid .slick-cell,
.s-Budget-AgreementTypesGrid .slick-cell,
.s-Budget-BriefTypesGrid .slick-cell,
.s-Budget-BudgetTypesGrid .slick-cell,
.s-Budget-MeetingGrid .slick-cell,
.s-Budget-MeetingAgendaGrid .slick-cell,
.s-Budget-MeetingAgendaRelevantGrid .slick-cell,
.s-Budget-MeetingAgendaTypeGrid .slick-cell,
.s-Budget-MeetingDecisionGrid .slick-cell,
.s-Budget-MeetingDecisionRelevantGrid .slick-cell,
.s-Budget-MeetingLocationGrid .slick-cell,
.s-Budget-MeetingTypeGrid .slick-cell,
.s-Budget-FinancialDataGrid .slick-cell,
.s-Budget-WorkflowButtonSequenceTypesGrid .slick-cell,
.s-Budget-CommitteeTypesGrid .slick-cell,
.s-Budget-ContractTypesGrid .slick-cell,
.s-Budget-EmploymentTypeGrid .slick-cell,
.s-Budget-ExpenditureTypesGrid .slick-cell,
.s-Budget-FundingTrancheTypesGrid .slick-cell,
.s-Budget-GasUtilizationTypesGrid .slick-cell,
.s-Budget-PadProgramTypesGrid .slick-cell,
.s-Budget-PadTypesGrid .slick-cell,
.s-Budget-ProductTypesGrid .slick-cell,
.s-Budget-ProjectTypesGrid .slick-cell,
.s-Budget-RigTypesGrid .slick-cell,
.s-Budget-SharedCostAllocationTypesGrid .slick-cell,
.s-Budget-UAPCodeTypesGrid .slick-cell,
.s-Budget-VesselTypesGrid .slick-cell,
.s-Budget-WellCostElementTypesGrid .slick-cell,
.s-Budget-WellTypesGrid .slick-cell,
.s-Budget-BudgetPreviewGrid .slick-cell,
.s-Budget-FINCOMAppendixIGrid .slick-cell,
.s-Budget-FINCOMAppendixIIGrid .slick-cell,
.s-Budget-FINCOMCollationGrid .slick-cell,
.s-Budget-CallScheduleActionsGrid .slick-cell,
.s-CashCall-CashCallCalendarsGrid .slick-cell,
.s-CashCall-CashCallActivitiesGrid .slick-cell,
.s-CashCall-CashCallScheduleActivitiesGrid .slick-cell,
.s-CashCall-CashCallCircularsGrid .slick-cell,
.s-CashCall-CashCallCircularsAllGrid .slick-cell,
.s-CashCall-CashCallCalendarsGrid .slick-cell,
.s-CashCall-CashCallCalendarsAllGrid .slick-cell,
.s-CashCall-CashCallBriefsGrid .slick-cell,
.s-CashCall-CashCallCashComRecommendationsGrid .slick-cell,
.s-CashCall-CashCallMandatesGrid .slick-cell,
.s-CashCall-CashCallMeetingDayAttendancesGrid .slick-cell,
.s-CashCall-CashCallPayablesGrid .slick-cell,
.s-CashCall-CashCallsGrid .slick-cell,
.s-CashCall-CashCallsAllGrid .slick-cell,
.s-CashCall-CashCallsEPGrid .slick-cell,
.s-CashCall-CashCallsBDGGrid .slick-cell,
.s-CashCall-CashCallSchedulesGrid .slick-cell,
.s-CashCall-CashCallSchedulesAllGrid .slick-cell,
.s-CashCall-CashCallRequestsGrid .slick-cell,
.s-CashCall-CashCallRequestsEPGrid .slick-cell,
.s-CashCall-CashCallRequestItemsGrid .slick-cell,
.s-CashCall-CashCallUapCodeItemsGrid .slick-cell,
.s-CashCall-CashCallOperatorRequestsGrid .slick-cell,
.s-CashCall-CashCallNuimsReviewsGrid .slick-cell,
.s-CashCall-CashCallManagerJVReviewGrid .slick-cell,
.s-CashCall-CashCallCashComSubComReviewGrid .slick-cell,
.s-CashCall-CashCallFincomCollationGrid .slick-cell,
.s-CashCall-CashCallSubcomRecomendationsGrid .slick-cell,
.s-CashCall-CashCallEndorsementGrid .slick-cell,
.s-CashCall-CashCallGgmSummariesGrid .slick-cell,
.s-CashCall-CashCallGgmSummariesItemGrid .slick-cell,
.s-CashCall-CashCallPayablesGrid .slick-cell,
.s-CashCall-CashCallPayableItemsGrid .slick-cell,
.s-CashCall-CashCallPayableItemsAdjustedGrid .slick-cell,
.s-CashCall-CashCallPayablesAnnualGrid .slick-cell,
.s-CashCall-CashCallMandatesGrid .slick-cell,
.s-CashCall-CashCallPaymentConfirmationGrid .slick-cell,
.s-CashCall-CashCallPayableItemsEditor .slick-cell,
.s-CashCall-CashCallPaymentDataEditor .slick-cell,
.s-CashCall-CashCallPaymentDataGrid .slick-cell,
.s-Performance-PerformancesGrid .slick-cell,
.s-Performance-PerformancesAllGrid .slick-cell,
.s-Performance-PerformancesBDGGrid .slick-cell,
.s-Performance-PerformanceSchedulesGrid .slick-cell,
.s-Performance-PerformanceCallScheduleCalendarsGrid .slick-cell,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .slick-cell,
.s-Performance-PerformanceCallScheduleActivitiesGrid .slick-cell,
.s-Performance-PerformanceCallScheduleActivitiesGrid .slick-cell,
.s-Performance-PerformanceCallCircularsGrid .slick-cell,
.s-Performance-PerformanceCallCircularsAllGrid .slick-cell,
.s-Performance-PerformanceMonthlyGrid .slick-cell,
.s-Performance-PerformanceQuarterlyGrid .slick-cell,
.s-Performance-PerformanceQuarterFourGrid .slick-cell,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .slick-cell,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .slick-cell,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .slick-cell,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .slick-cell,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .slick-cell,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .slick-cell,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .slick-cell,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .slick-cell,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .slick-cell,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .slick-cell,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .slick-cell,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .slick-cell,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .slick-cell,
.s-Performance-PerformanceFinancialItemsGrid .slick-cell,
.s-Performance-PerformanceNonFinancialItemsGrid .slick-cell,
.s-Performance-PerformanceFinancialMonthItemsGrid .slick-cell,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .slick-cell,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .slick-cell,
.s-Common-DashboardWidgetGrid .slick-cell,
.s-Administration-BcPproExceptionsGrid .slick-cell,
.s-Administration-IssueTrackingIssuesGrid .slick-headerrow-column,
.s-Administration-IssueTrackingFeedbackGrid .slick-headerrow-column,
.s-Administration-IssueTrackingChangeRequestGrid .slick-headerrow-column,
.s-Administration-NotificationTemplatesGrid .slick-headerrow-column,
.s-Administration-BudgetAutoTestGrid .slick-headerrow-column,
.s-Administration-CashCallAutoTestGrid .slick-headerrow-column,
.s-Administration-PerformanceMonthAutoTestGrid .slick-headerrow-column,
.s-Administration-PerformanceQuarterAutoTestGrid .slick-headerrow-column,
.s-Administration-SiteNotificationsGrid .slick-headerrow-column,
.s-Budget-AnnualBudgetsGrid .slick-headerrow-column,
.s-Budget-AnnualBudgetsAllGrid .slick-headerrow-column,
.s-Budget-BudgetProfilesABGrid .slick-headerrow-column,
.s-Budget-OperatorProposalsGrid .slick-headerrow-column,
.s-Budget-MACOMApprovalsGrid .slick-headerrow-column,
.s-Budget-OPCOMApprovalsGrid .slick-headerrow-column,
.s-Budget-ApprovedBudgetsGrid .slick-headerrow-column,
.s-Budget-FiveYearForecastsGrid .slick-headerrow-column,
.s-Budget-NUIMSPlanningReviewsGrid .slick-headerrow-column,
.s-Budget-SUBCOMRecommendationsGrid .slick-headerrow-column,
.s-Budget-SUBCOMRecommendationsAllGrid .slick-headerrow-column,
.s-Budget-TECOMRecommendationsGrid .slick-headerrow-column,
.s-Budget-BudgetProfilesGrid .slick-headerrow-column,
.s-Budget-BudgetProfilesAllGrid .slick-headerrow-column,
.s-Budget-BudgetsGrid .slick-headerrow-column,
.s-Budget-CallCircularsGrid .slick-headerrow-column,
.s-Budget-CallCircularsAllGrid .slick-headerrow-column,
.s-Budget-CallSchedulesGrid .slick-headerrow-column,
.s-Budget-CallScheduleCalendarsGrid .slick-headerrow-column,
.s-Budget-CallScheduleCalendarsAllGrid .slick-headerrow-column,
.s-Budget-BudgetThresholdsAllGrid .slick-headerrow-column,
.s-Budget-BudgetThresholdsGrid .slick-headerrow-column,
.s-Budget-BudgetThresholdBackupGrid .slick-headerrow-column,
.s-Budget-BTFundingTrancheBackupGrid .slick-headerrow-column,
.s-Budget-OperatorTemplatesGrid .slick-headerrow-column,
.s-Budget-TemplateCommitteeGrid .slick-headerrow-column,
.s-Budget-BudgetHistoricBriefGrid .slick-headerrow-column,
.s-Budget-BudgetHistoricTemplateGrid .slick-headerrow-column,
.s-Budget-BTFundingTranchesGrid .slick-headerrow-column,
.s-Budget-BTFundingTranchesAllGrid .slick-headerrow-column,
.s-Budget-BTFundingTrancheBreakdownsGrid .slick-headerrow-column,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .slick-headerrow-column,
.s-Budget-CallScheduleCalendarsGrid .slick-headerrow-column,
.s-Budget-CallCircularsAllGrid .slick-headerrow-column,
.s-Budget-CallCircularsGrid .slick-headerrow-column,
.s-Budget-CallScheduleActivitiesGrid .slick-headerrow-column,
.s-Budget-CallSchedulesAllGrid .slick-headerrow-column,
.s-Budget-CallSchedulesGrid .slick-headerrow-column,
.s-Budget-SwotsGrid .slick-headerrow-column,
.s-Budget-BudgetAssumptionsGrid .slick-headerrow-column,
.s-Budget-SeismicActivitiesGrid .slick-headerrow-column,
.s-Budget-ReservesGrid .slick-headerrow-column,
.s-Budget-ProductionGrid .slick-headerrow-column,
.s-Budget-GasUtilizationGrid .slick-headerrow-column,
.s-Budget-RigSequencesGrid .slick-headerrow-column,
.s-Budget-VesselSchedulesGrid .slick-headerrow-column,
.s-Budget-HrSummariesGrid .slick-headerrow-column,
.s-Budget-SharedCostsGrid .slick-headerrow-column,
.s-Budget-SharedCostAllocationsGrid .slick-headerrow-column,
.s-Budget-GeneralWorkProgrammesGrid .slick-headerrow-column,
.s-Budget-ExpenditureBreakdownsGrid .slick-headerrow-column,
.s-Budget-WellCostsNonRigWorkGrid .slick-headerrow-column,
.s-Budget-NonRigWorkOverCostElementsGrid .slick-headerrow-column,
.s-Budget-WellCostsGrid .slick-headerrow-column,
.s-Budget-WellCostElementsGrid .slick-headerrow-column,
.s-Budget-ProjectSummariesGrid .slick-headerrow-column,
.s-Budget-PADWorkProgrammesGrid .slick-headerrow-column,
.s-Budget-RigSequencesGrid .slick-headerrow-column,
.s-Budget-BlocksGrid .slick-headerrow-column,
.s-Budget-CashCallEquitySharesGrid .slick-headerrow-column,
.s-Budget-FieldsGrid .slick-headerrow-column,
.s-Budget-FieldTerrainsGrid .slick-headerrow-column,
.s-Budget-FundingTranchesGrid .slick-headerrow-column,
.s-Budget-FundingTranchesAllGrid .slick-headerrow-column,
.s-Budget-MajorDriversGrid .slick-headerrow-column,
.s-Budget-BudgetData_ExcelTemplatesGrid .slick-headerrow-column,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .slick-headerrow-column,
.s-Budget-ExcelTemplatesGrid .slick-headerrow-column,
.s-Budget-OperatorBlocksAllGrid .slick-headerrow-column,
.s-Budget-OperatorBlocksGrid .slick-headerrow-column,
.s-Budget-ProductsGrid .slick-headerrow-column,
.s-Budget-RigsGrid .slick-headerrow-column,
.s-Budget-SeismicActivityDescriptionsGrid .slick-headerrow-column,
.s-Budget-UAPCodeAccessPermissionsGrid .slick-headerrow-column,
.s-Budget-UAPCodesAllGrid .slick-headerrow-column,
.s-Budget-NUIMS_UAPCodesGrid .slick-headerrow-column,
.s-Budget-Operator_UAPCodesGrid .slick-headerrow-column,
.s-Budget-VesselsGrid .slick-headerrow-column,
.s-Budget-WellCostElementGroupsGrid .slick-headerrow-column,
.s-Budget-WellCostsElementDetailsGrid .slick-headerrow-column,
.s-Budget-WellCostsElementDetailsAllGrid .slick-headerrow-column,
.s-Budget-NonRigActivityTypesGrid .slick-headerrow-column,
.s-Budget-NonRigElementDetailsGrid .slick-headerrow-column,
.s-Budget-NonRigElementDetailsAllGrid .slick-headerrow-column,
.s-Budget-WellsAllGrid .slick-headerrow-column,
.s-Budget-WellsGrid .slick-headerrow-column,
.s-Budget-ProjectsGrid .slick-headerrow-column,
.s-Budget-ResponsiblePartyOperatorsGrid .slick-headerrow-column,
.s-Budget-ContractApprovingBodiesGrid .slick-headerrow-column,
.s-Budget-CountryGrid .slick-headerrow-column,
.s-Budget-FundingTrancheSourcesGrid .slick-headerrow-column,
.s-Budget-MonthsGrid .slick-headerrow-column,
.s-Budget-NationalityGrid .slick-headerrow-column,
.s-Budget-PadClustersGrid .slick-headerrow-column,
.s-Budget-PadCommunitiesGrid .slick-headerrow-column,
.s-Budget-SecurityRolesGrid .slick-headerrow-column,
.s-Budget-TemplatesGrid .slick-headerrow-column,
.s-Budget-TerrainsGrid .slick-headerrow-column,
.s-Budget-UAPAccessPermissionsGrid .slick-headerrow-column,
.s-Budget-UAPCodeLevelsGrid .slick-headerrow-column,
.s-Budget-UAPCodeGroupsGrid .slick-headerrow-column,
.s-Budget-UAPCodeGroupTitlesGrid .slick-headerrow-column,
.s-Budget-UnitsGrid .slick-headerrow-column,
.s-Budget-UnitsOfMeasureGrid .slick-headerrow-column,
.s-Budget-UnitsOfMeasureUsageGrid .slick-headerrow-column,
.s-Budget-VesselActivitiesGrid .slick-headerrow-column,
.s-Budget-WellClassificationsGrid .slick-headerrow-column,
.s-Budget-YearsGrid .slick-headerrow-column,
.s-Budget-AnnualBudgetStatusesGrid .slick-headerrow-column,
.s-Budget-ApprovedBudgetStatusesGrid .slick-headerrow-column,
.s-Budget-BudgetPreviewStatusesGrid .slick-headerrow-column,
.s-Budget-BudgetProfileStatusesGrid .slick-headerrow-column,
.s-Budget-BudgetStatusesGrid .slick-headerrow-column,
.s-Budget-BudgetThresholdStatusesGrid .slick-headerrow-column,
.s-Budget-ButtonStatusesGrid .slick-headerrow-column,
.s-Budget-CallCircularStatusesGrid .slick-headerrow-column,
.s-Budget-CashCallStatusesGrid .slick-headerrow-column,
.s-Budget-ContractStatusesGrid .slick-headerrow-column,
.s-Budget-FieldStatusesGrid .slick-headerrow-column,
.s-Budget-FincomStatusesGrid .slick-headerrow-column,
.s-Budget-MacomReviewStatusesGrid .slick-headerrow-column,
.s-Budget-NuimsPlanningReviewStatusesGrid .slick-headerrow-column,
.s-Budget-OpcomReviewStatusesGrid .slick-headerrow-column,
.s-Budget-OperatorProposalStatusesGrid .slick-headerrow-column,
.s-Budget-OperatorStatusesGrid .slick-headerrow-column,
.s-Budget-OwnershipStatusesGrid .slick-headerrow-column,
.s-Budget-PerformanceStatusesGrid .slick-headerrow-column,
.s-Budget-ProjectStatusGrid .slick-headerrow-column,
.s-Budget-RealignedBudgetStatusesGrid .slick-headerrow-column,
.s-Budget-SubcomRecommendationStatusesGrid .slick-headerrow-column,
.s-Budget-TecomRecommendationStatusesGrid .slick-headerrow-column,
.s-Budget-TemplateStatusesGrid .slick-headerrow-column,
.s-Budget-UAPCodeStatusesGrid .slick-headerrow-column,
.s-Budget-AgreementTypesGrid .slick-headerrow-column,
.s-Budget-BriefTypesGrid .slick-headerrow-column,
.s-Budget-BudgetTypesGrid .slick-headerrow-column,
.s-Budget-MeetingGrid .slick-headerrow-column,
.s-Budget-MeetingAgendaGrid .slick-headerrow-column,
.s-Budget-MeetingAgendaRelevantGrid .slick-headerrow-column,
.s-Budget-MeetingAgendaTypeGrid .slick-headerrow-column,
.s-Budget-MeetingDecisionGrid .slick-headerrow-column,
.s-Budget-MeetingDecisionRelevantGrid .slick-headerrow-column,
.s-Budget-MeetingLocationGrid .slick-headerrow-column,
.s-Budget-MeetingTypeGrid .slick-headerrow-column,
.s-Budget-FinancialDataGrid .slick-headerrow-column,
.s-Budget-WorkflowButtonSequenceTypesGrid .slick-headerrow-column,
.s-Budget-CommitteeTypesGrid .slick-headerrow-column,
.s-Budget-ContractTypesGrid .slick-headerrow-column,
.s-Budget-EmploymentTypeGrid .slick-headerrow-column,
.s-Budget-ExpenditureTypesGrid .slick-headerrow-column,
.s-Budget-FundingTrancheTypesGrid .slick-headerrow-column,
.s-Budget-GasUtilizationTypesGrid .slick-headerrow-column,
.s-Budget-PadProgramTypesGrid .slick-headerrow-column,
.s-Budget-PadTypesGrid .slick-headerrow-column,
.s-Budget-ProductTypesGrid .slick-headerrow-column,
.s-Budget-ProjectTypesGrid .slick-headerrow-column,
.s-Budget-RigTypesGrid .slick-headerrow-column,
.s-Budget-SharedCostAllocationTypesGrid .slick-headerrow-column,
.s-Budget-UAPCodeTypesGrid .slick-headerrow-column,
.s-Budget-VesselTypesGrid .slick-headerrow-column,
.s-Budget-WellCostElementTypesGrid .slick-headerrow-column,
.s-Budget-WellTypesGrid .slick-headerrow-column,
.s-Budget-BudgetPreviewGrid .slick-headerrow-column,
.s-Budget-FINCOMAppendixIGrid .slick-headerrow-column,
.s-Budget-FINCOMAppendixIIGrid .slick-headerrow-column,
.s-Budget-FINCOMCollationGrid .slick-headerrow-column,
.s-Budget-CallScheduleActionsGrid .slick-headerrow-column,
.s-CashCall-CashCallCalendarsGrid .slick-headerrow-column,
.s-CashCall-CashCallActivitiesGrid .slick-headerrow-column,
.s-CashCall-CashCallScheduleActivitiesGrid .slick-headerrow-column,
.s-CashCall-CashCallCircularsGrid .slick-headerrow-column,
.s-CashCall-CashCallCircularsAllGrid .slick-headerrow-column,
.s-CashCall-CashCallCalendarsGrid .slick-headerrow-column,
.s-CashCall-CashCallCalendarsAllGrid .slick-headerrow-column,
.s-CashCall-CashCallBriefsGrid .slick-headerrow-column,
.s-CashCall-CashCallCashComRecommendationsGrid .slick-headerrow-column,
.s-CashCall-CashCallMandatesGrid .slick-headerrow-column,
.s-CashCall-CashCallMeetingDayAttendancesGrid .slick-headerrow-column,
.s-CashCall-CashCallPayablesGrid .slick-headerrow-column,
.s-CashCall-CashCallsGrid .slick-headerrow-column,
.s-CashCall-CashCallsAllGrid .slick-headerrow-column,
.s-CashCall-CashCallsEPGrid .slick-headerrow-column,
.s-CashCall-CashCallsBDGGrid .slick-headerrow-column,
.s-CashCall-CashCallSchedulesGrid .slick-headerrow-column,
.s-CashCall-CashCallSchedulesAllGrid .slick-headerrow-column,
.s-CashCall-CashCallRequestsGrid .slick-headerrow-column,
.s-CashCall-CashCallRequestsEPGrid .slick-headerrow-column,
.s-CashCall-CashCallRequestItemsGrid .slick-headerrow-column,
.s-CashCall-CashCallUapCodeItemsGrid .slick-headerrow-column,
.s-CashCall-CashCallOperatorRequestsGrid .slick-headerrow-column,
.s-CashCall-CashCallNuimsReviewsGrid .slick-headerrow-column,
.s-CashCall-CashCallManagerJVReviewGrid .slick-headerrow-column,
.s-CashCall-CashCallCashComSubComReviewGrid .slick-headerrow-column,
.s-CashCall-CashCallFincomCollationGrid .slick-headerrow-column,
.s-CashCall-CashCallSubcomRecomendationsGrid .slick-headerrow-column,
.s-CashCall-CashCallEndorsementGrid .slick-headerrow-column,
.s-CashCall-CashCallGgmSummariesGrid .slick-headerrow-column,
.s-CashCall-CashCallGgmSummariesItemGrid .slick-headerrow-column,
.s-CashCall-CashCallPayablesGrid .slick-headerrow-column,
.s-CashCall-CashCallPayableItemsGrid .slick-headerrow-column,
.s-CashCall-CashCallPayableItemsAdjustedGrid .slick-headerrow-column,
.s-CashCall-CashCallPayablesAnnualGrid .slick-headerrow-column,
.s-CashCall-CashCallMandatesGrid .slick-headerrow-column,
.s-CashCall-CashCallPaymentConfirmationGrid .slick-headerrow-column,
.s-CashCall-CashCallPayableItemsEditor .slick-headerrow-column,
.s-CashCall-CashCallPaymentDataEditor .slick-headerrow-column,
.s-CashCall-CashCallPaymentDataGrid .slick-headerrow-column,
.s-Performance-PerformancesGrid .slick-headerrow-column,
.s-Performance-PerformancesAllGrid .slick-headerrow-column,
.s-Performance-PerformancesBDGGrid .slick-headerrow-column,
.s-Performance-PerformanceSchedulesGrid .slick-headerrow-column,
.s-Performance-PerformanceCallScheduleCalendarsGrid .slick-headerrow-column,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .slick-headerrow-column,
.s-Performance-PerformanceCallScheduleActivitiesGrid .slick-headerrow-column,
.s-Performance-PerformanceCallScheduleActivitiesGrid .slick-headerrow-column,
.s-Performance-PerformanceCallCircularsGrid .slick-headerrow-column,
.s-Performance-PerformanceCallCircularsAllGrid .slick-headerrow-column,
.s-Performance-PerformanceMonthlyGrid .slick-headerrow-column,
.s-Performance-PerformanceQuarterlyGrid .slick-headerrow-column,
.s-Performance-PerformanceQuarterFourGrid .slick-headerrow-column,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .slick-headerrow-column,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .slick-headerrow-column,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .slick-headerrow-column,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .slick-headerrow-column,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .slick-headerrow-column,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .slick-headerrow-column,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .slick-headerrow-column,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .slick-headerrow-column,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .slick-headerrow-column,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .slick-headerrow-column,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .slick-headerrow-column,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .slick-headerrow-column,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .slick-headerrow-column,
.s-Performance-PerformanceFinancialItemsGrid .slick-headerrow-column,
.s-Performance-PerformanceNonFinancialItemsGrid .slick-headerrow-column,
.s-Performance-PerformanceFinancialMonthItemsGrid .slick-headerrow-column,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .slick-headerrow-column,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .slick-headerrow-column,
.s-Common-DashboardWidgetGrid .slick-headerrow-column,
.s-Administration-BcPproExceptionsGrid .slick-headerrow-column {
  position: absolute;
  line-height: 16px;
  font-size: 12px;
  margin: 0;
  padding: 4px;
  border-right: 1px dotted silver;
  border-left: 1px solid silver;
  border-top: 0;
  border-bottom: 1px solid silver;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  vertical-align: middle;
  z-index: 1;
  white-space: nowrap;
  cursor: default;
}
.s-Administration-IssueTrackingIssuesGrid .slick-cell.highlighted,
.s-Administration-IssueTrackingFeedbackGrid .slick-cell.highlighted,
.s-Administration-IssueTrackingChangeRequestGrid .slick-cell.highlighted,
.s-Administration-NotificationTemplatesGrid .slick-cell.highlighted,
.s-Administration-BudgetAutoTestGrid .slick-cell.highlighted,
.s-Administration-CashCallAutoTestGrid .slick-cell.highlighted,
.s-Administration-PerformanceMonthAutoTestGrid .slick-cell.highlighted,
.s-Administration-PerformanceQuarterAutoTestGrid .slick-cell.highlighted,
.s-Administration-SiteNotificationsGrid .slick-cell.highlighted,
.s-Budget-AnnualBudgetsGrid .slick-cell.highlighted,
.s-Budget-AnnualBudgetsAllGrid .slick-cell.highlighted,
.s-Budget-BudgetProfilesABGrid .slick-cell.highlighted,
.s-Budget-OperatorProposalsGrid .slick-cell.highlighted,
.s-Budget-MACOMApprovalsGrid .slick-cell.highlighted,
.s-Budget-OPCOMApprovalsGrid .slick-cell.highlighted,
.s-Budget-ApprovedBudgetsGrid .slick-cell.highlighted,
.s-Budget-FiveYearForecastsGrid .slick-cell.highlighted,
.s-Budget-NUIMSPlanningReviewsGrid .slick-cell.highlighted,
.s-Budget-SUBCOMRecommendationsGrid .slick-cell.highlighted,
.s-Budget-SUBCOMRecommendationsAllGrid .slick-cell.highlighted,
.s-Budget-TECOMRecommendationsGrid .slick-cell.highlighted,
.s-Budget-BudgetProfilesGrid .slick-cell.highlighted,
.s-Budget-BudgetProfilesAllGrid .slick-cell.highlighted,
.s-Budget-BudgetsGrid .slick-cell.highlighted,
.s-Budget-CallCircularsGrid .slick-cell.highlighted,
.s-Budget-CallCircularsAllGrid .slick-cell.highlighted,
.s-Budget-CallSchedulesGrid .slick-cell.highlighted,
.s-Budget-CallScheduleCalendarsGrid .slick-cell.highlighted,
.s-Budget-CallScheduleCalendarsAllGrid .slick-cell.highlighted,
.s-Budget-BudgetThresholdsAllGrid .slick-cell.highlighted,
.s-Budget-BudgetThresholdsGrid .slick-cell.highlighted,
.s-Budget-BudgetThresholdBackupGrid .slick-cell.highlighted,
.s-Budget-BTFundingTrancheBackupGrid .slick-cell.highlighted,
.s-Budget-OperatorTemplatesGrid .slick-cell.highlighted,
.s-Budget-TemplateCommitteeGrid .slick-cell.highlighted,
.s-Budget-BudgetHistoricBriefGrid .slick-cell.highlighted,
.s-Budget-BudgetHistoricTemplateGrid .slick-cell.highlighted,
.s-Budget-BTFundingTranchesGrid .slick-cell.highlighted,
.s-Budget-BTFundingTranchesAllGrid .slick-cell.highlighted,
.s-Budget-BTFundingTrancheBreakdownsGrid .slick-cell.highlighted,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .slick-cell.highlighted,
.s-Budget-CallScheduleCalendarsGrid .slick-cell.highlighted,
.s-Budget-CallCircularsAllGrid .slick-cell.highlighted,
.s-Budget-CallCircularsGrid .slick-cell.highlighted,
.s-Budget-CallScheduleActivitiesGrid .slick-cell.highlighted,
.s-Budget-CallSchedulesAllGrid .slick-cell.highlighted,
.s-Budget-CallSchedulesGrid .slick-cell.highlighted,
.s-Budget-SwotsGrid .slick-cell.highlighted,
.s-Budget-BudgetAssumptionsGrid .slick-cell.highlighted,
.s-Budget-SeismicActivitiesGrid .slick-cell.highlighted,
.s-Budget-ReservesGrid .slick-cell.highlighted,
.s-Budget-ProductionGrid .slick-cell.highlighted,
.s-Budget-GasUtilizationGrid .slick-cell.highlighted,
.s-Budget-RigSequencesGrid .slick-cell.highlighted,
.s-Budget-VesselSchedulesGrid .slick-cell.highlighted,
.s-Budget-HrSummariesGrid .slick-cell.highlighted,
.s-Budget-SharedCostsGrid .slick-cell.highlighted,
.s-Budget-SharedCostAllocationsGrid .slick-cell.highlighted,
.s-Budget-GeneralWorkProgrammesGrid .slick-cell.highlighted,
.s-Budget-ExpenditureBreakdownsGrid .slick-cell.highlighted,
.s-Budget-WellCostsNonRigWorkGrid .slick-cell.highlighted,
.s-Budget-NonRigWorkOverCostElementsGrid .slick-cell.highlighted,
.s-Budget-WellCostsGrid .slick-cell.highlighted,
.s-Budget-WellCostElementsGrid .slick-cell.highlighted,
.s-Budget-ProjectSummariesGrid .slick-cell.highlighted,
.s-Budget-PADWorkProgrammesGrid .slick-cell.highlighted,
.s-Budget-RigSequencesGrid .slick-cell.highlighted,
.s-Budget-BlocksGrid .slick-cell.highlighted,
.s-Budget-CashCallEquitySharesGrid .slick-cell.highlighted,
.s-Budget-FieldsGrid .slick-cell.highlighted,
.s-Budget-FieldTerrainsGrid .slick-cell.highlighted,
.s-Budget-FundingTranchesGrid .slick-cell.highlighted,
.s-Budget-FundingTranchesAllGrid .slick-cell.highlighted,
.s-Budget-MajorDriversGrid .slick-cell.highlighted,
.s-Budget-BudgetData_ExcelTemplatesGrid .slick-cell.highlighted,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .slick-cell.highlighted,
.s-Budget-ExcelTemplatesGrid .slick-cell.highlighted,
.s-Budget-OperatorBlocksAllGrid .slick-cell.highlighted,
.s-Budget-OperatorBlocksGrid .slick-cell.highlighted,
.s-Budget-ProductsGrid .slick-cell.highlighted,
.s-Budget-RigsGrid .slick-cell.highlighted,
.s-Budget-SeismicActivityDescriptionsGrid .slick-cell.highlighted,
.s-Budget-UAPCodeAccessPermissionsGrid .slick-cell.highlighted,
.s-Budget-UAPCodesAllGrid .slick-cell.highlighted,
.s-Budget-NUIMS_UAPCodesGrid .slick-cell.highlighted,
.s-Budget-Operator_UAPCodesGrid .slick-cell.highlighted,
.s-Budget-VesselsGrid .slick-cell.highlighted,
.s-Budget-WellCostElementGroupsGrid .slick-cell.highlighted,
.s-Budget-WellCostsElementDetailsGrid .slick-cell.highlighted,
.s-Budget-WellCostsElementDetailsAllGrid .slick-cell.highlighted,
.s-Budget-NonRigActivityTypesGrid .slick-cell.highlighted,
.s-Budget-NonRigElementDetailsGrid .slick-cell.highlighted,
.s-Budget-NonRigElementDetailsAllGrid .slick-cell.highlighted,
.s-Budget-WellsAllGrid .slick-cell.highlighted,
.s-Budget-WellsGrid .slick-cell.highlighted,
.s-Budget-ProjectsGrid .slick-cell.highlighted,
.s-Budget-ResponsiblePartyOperatorsGrid .slick-cell.highlighted,
.s-Budget-ContractApprovingBodiesGrid .slick-cell.highlighted,
.s-Budget-CountryGrid .slick-cell.highlighted,
.s-Budget-FundingTrancheSourcesGrid .slick-cell.highlighted,
.s-Budget-MonthsGrid .slick-cell.highlighted,
.s-Budget-NationalityGrid .slick-cell.highlighted,
.s-Budget-PadClustersGrid .slick-cell.highlighted,
.s-Budget-PadCommunitiesGrid .slick-cell.highlighted,
.s-Budget-SecurityRolesGrid .slick-cell.highlighted,
.s-Budget-TemplatesGrid .slick-cell.highlighted,
.s-Budget-TerrainsGrid .slick-cell.highlighted,
.s-Budget-UAPAccessPermissionsGrid .slick-cell.highlighted,
.s-Budget-UAPCodeLevelsGrid .slick-cell.highlighted,
.s-Budget-UAPCodeGroupsGrid .slick-cell.highlighted,
.s-Budget-UAPCodeGroupTitlesGrid .slick-cell.highlighted,
.s-Budget-UnitsGrid .slick-cell.highlighted,
.s-Budget-UnitsOfMeasureGrid .slick-cell.highlighted,
.s-Budget-UnitsOfMeasureUsageGrid .slick-cell.highlighted,
.s-Budget-VesselActivitiesGrid .slick-cell.highlighted,
.s-Budget-WellClassificationsGrid .slick-cell.highlighted,
.s-Budget-YearsGrid .slick-cell.highlighted,
.s-Budget-AnnualBudgetStatusesGrid .slick-cell.highlighted,
.s-Budget-ApprovedBudgetStatusesGrid .slick-cell.highlighted,
.s-Budget-BudgetPreviewStatusesGrid .slick-cell.highlighted,
.s-Budget-BudgetProfileStatusesGrid .slick-cell.highlighted,
.s-Budget-BudgetStatusesGrid .slick-cell.highlighted,
.s-Budget-BudgetThresholdStatusesGrid .slick-cell.highlighted,
.s-Budget-ButtonStatusesGrid .slick-cell.highlighted,
.s-Budget-CallCircularStatusesGrid .slick-cell.highlighted,
.s-Budget-CashCallStatusesGrid .slick-cell.highlighted,
.s-Budget-ContractStatusesGrid .slick-cell.highlighted,
.s-Budget-FieldStatusesGrid .slick-cell.highlighted,
.s-Budget-FincomStatusesGrid .slick-cell.highlighted,
.s-Budget-MacomReviewStatusesGrid .slick-cell.highlighted,
.s-Budget-NuimsPlanningReviewStatusesGrid .slick-cell.highlighted,
.s-Budget-OpcomReviewStatusesGrid .slick-cell.highlighted,
.s-Budget-OperatorProposalStatusesGrid .slick-cell.highlighted,
.s-Budget-OperatorStatusesGrid .slick-cell.highlighted,
.s-Budget-OwnershipStatusesGrid .slick-cell.highlighted,
.s-Budget-PerformanceStatusesGrid .slick-cell.highlighted,
.s-Budget-ProjectStatusGrid .slick-cell.highlighted,
.s-Budget-RealignedBudgetStatusesGrid .slick-cell.highlighted,
.s-Budget-SubcomRecommendationStatusesGrid .slick-cell.highlighted,
.s-Budget-TecomRecommendationStatusesGrid .slick-cell.highlighted,
.s-Budget-TemplateStatusesGrid .slick-cell.highlighted,
.s-Budget-UAPCodeStatusesGrid .slick-cell.highlighted,
.s-Budget-AgreementTypesGrid .slick-cell.highlighted,
.s-Budget-BriefTypesGrid .slick-cell.highlighted,
.s-Budget-BudgetTypesGrid .slick-cell.highlighted,
.s-Budget-MeetingGrid .slick-cell.highlighted,
.s-Budget-MeetingAgendaGrid .slick-cell.highlighted,
.s-Budget-MeetingAgendaRelevantGrid .slick-cell.highlighted,
.s-Budget-MeetingAgendaTypeGrid .slick-cell.highlighted,
.s-Budget-MeetingDecisionGrid .slick-cell.highlighted,
.s-Budget-MeetingDecisionRelevantGrid .slick-cell.highlighted,
.s-Budget-MeetingLocationGrid .slick-cell.highlighted,
.s-Budget-MeetingTypeGrid .slick-cell.highlighted,
.s-Budget-FinancialDataGrid .slick-cell.highlighted,
.s-Budget-WorkflowButtonSequenceTypesGrid .slick-cell.highlighted,
.s-Budget-CommitteeTypesGrid .slick-cell.highlighted,
.s-Budget-ContractTypesGrid .slick-cell.highlighted,
.s-Budget-EmploymentTypeGrid .slick-cell.highlighted,
.s-Budget-ExpenditureTypesGrid .slick-cell.highlighted,
.s-Budget-FundingTrancheTypesGrid .slick-cell.highlighted,
.s-Budget-GasUtilizationTypesGrid .slick-cell.highlighted,
.s-Budget-PadProgramTypesGrid .slick-cell.highlighted,
.s-Budget-PadTypesGrid .slick-cell.highlighted,
.s-Budget-ProductTypesGrid .slick-cell.highlighted,
.s-Budget-ProjectTypesGrid .slick-cell.highlighted,
.s-Budget-RigTypesGrid .slick-cell.highlighted,
.s-Budget-SharedCostAllocationTypesGrid .slick-cell.highlighted,
.s-Budget-UAPCodeTypesGrid .slick-cell.highlighted,
.s-Budget-VesselTypesGrid .slick-cell.highlighted,
.s-Budget-WellCostElementTypesGrid .slick-cell.highlighted,
.s-Budget-WellTypesGrid .slick-cell.highlighted,
.s-Budget-BudgetPreviewGrid .slick-cell.highlighted,
.s-Budget-FINCOMAppendixIGrid .slick-cell.highlighted,
.s-Budget-FINCOMAppendixIIGrid .slick-cell.highlighted,
.s-Budget-FINCOMCollationGrid .slick-cell.highlighted,
.s-Budget-CallScheduleActionsGrid .slick-cell.highlighted,
.s-CashCall-CashCallCalendarsGrid .slick-cell.highlighted,
.s-CashCall-CashCallActivitiesGrid .slick-cell.highlighted,
.s-CashCall-CashCallScheduleActivitiesGrid .slick-cell.highlighted,
.s-CashCall-CashCallCircularsGrid .slick-cell.highlighted,
.s-CashCall-CashCallCircularsAllGrid .slick-cell.highlighted,
.s-CashCall-CashCallCalendarsGrid .slick-cell.highlighted,
.s-CashCall-CashCallCalendarsAllGrid .slick-cell.highlighted,
.s-CashCall-CashCallBriefsGrid .slick-cell.highlighted,
.s-CashCall-CashCallCashComRecommendationsGrid .slick-cell.highlighted,
.s-CashCall-CashCallMandatesGrid .slick-cell.highlighted,
.s-CashCall-CashCallMeetingDayAttendancesGrid .slick-cell.highlighted,
.s-CashCall-CashCallPayablesGrid .slick-cell.highlighted,
.s-CashCall-CashCallsGrid .slick-cell.highlighted,
.s-CashCall-CashCallsAllGrid .slick-cell.highlighted,
.s-CashCall-CashCallsEPGrid .slick-cell.highlighted,
.s-CashCall-CashCallsBDGGrid .slick-cell.highlighted,
.s-CashCall-CashCallSchedulesGrid .slick-cell.highlighted,
.s-CashCall-CashCallSchedulesAllGrid .slick-cell.highlighted,
.s-CashCall-CashCallRequestsGrid .slick-cell.highlighted,
.s-CashCall-CashCallRequestsEPGrid .slick-cell.highlighted,
.s-CashCall-CashCallRequestItemsGrid .slick-cell.highlighted,
.s-CashCall-CashCallUapCodeItemsGrid .slick-cell.highlighted,
.s-CashCall-CashCallOperatorRequestsGrid .slick-cell.highlighted,
.s-CashCall-CashCallNuimsReviewsGrid .slick-cell.highlighted,
.s-CashCall-CashCallManagerJVReviewGrid .slick-cell.highlighted,
.s-CashCall-CashCallCashComSubComReviewGrid .slick-cell.highlighted,
.s-CashCall-CashCallFincomCollationGrid .slick-cell.highlighted,
.s-CashCall-CashCallSubcomRecomendationsGrid .slick-cell.highlighted,
.s-CashCall-CashCallEndorsementGrid .slick-cell.highlighted,
.s-CashCall-CashCallGgmSummariesGrid .slick-cell.highlighted,
.s-CashCall-CashCallGgmSummariesItemGrid .slick-cell.highlighted,
.s-CashCall-CashCallPayablesGrid .slick-cell.highlighted,
.s-CashCall-CashCallPayableItemsGrid .slick-cell.highlighted,
.s-CashCall-CashCallPayableItemsAdjustedGrid .slick-cell.highlighted,
.s-CashCall-CashCallPayablesAnnualGrid .slick-cell.highlighted,
.s-CashCall-CashCallMandatesGrid .slick-cell.highlighted,
.s-CashCall-CashCallPaymentConfirmationGrid .slick-cell.highlighted,
.s-CashCall-CashCallPayableItemsEditor .slick-cell.highlighted,
.s-CashCall-CashCallPaymentDataEditor .slick-cell.highlighted,
.s-CashCall-CashCallPaymentDataGrid .slick-cell.highlighted,
.s-Performance-PerformancesGrid .slick-cell.highlighted,
.s-Performance-PerformancesAllGrid .slick-cell.highlighted,
.s-Performance-PerformancesBDGGrid .slick-cell.highlighted,
.s-Performance-PerformanceSchedulesGrid .slick-cell.highlighted,
.s-Performance-PerformanceCallScheduleCalendarsGrid .slick-cell.highlighted,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .slick-cell.highlighted,
.s-Performance-PerformanceCallScheduleActivitiesGrid .slick-cell.highlighted,
.s-Performance-PerformanceCallScheduleActivitiesGrid .slick-cell.highlighted,
.s-Performance-PerformanceCallCircularsGrid .slick-cell.highlighted,
.s-Performance-PerformanceCallCircularsAllGrid .slick-cell.highlighted,
.s-Performance-PerformanceMonthlyGrid .slick-cell.highlighted,
.s-Performance-PerformanceQuarterlyGrid .slick-cell.highlighted,
.s-Performance-PerformanceQuarterFourGrid .slick-cell.highlighted,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .slick-cell.highlighted,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .slick-cell.highlighted,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .slick-cell.highlighted,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .slick-cell.highlighted,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .slick-cell.highlighted,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .slick-cell.highlighted,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .slick-cell.highlighted,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .slick-cell.highlighted,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .slick-cell.highlighted,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .slick-cell.highlighted,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .slick-cell.highlighted,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .slick-cell.highlighted,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .slick-cell.highlighted,
.s-Performance-PerformanceFinancialItemsGrid .slick-cell.highlighted,
.s-Performance-PerformanceNonFinancialItemsGrid .slick-cell.highlighted,
.s-Performance-PerformanceFinancialMonthItemsGrid .slick-cell.highlighted,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .slick-cell.highlighted,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .slick-cell.highlighted,
.s-Common-DashboardWidgetGrid .slick-cell.highlighted,
.s-Administration-BcPproExceptionsGrid .slick-cell.highlighted {
  background: black;
  background: rgba(0, 0, 255, 0.2);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.s-Administration-IssueTrackingIssuesGrid .hide-checkbox .col-checkbox,
.s-Administration-IssueTrackingFeedbackGrid .hide-checkbox .col-checkbox,
.s-Administration-IssueTrackingChangeRequestGrid .hide-checkbox .col-checkbox,
.s-Administration-NotificationTemplatesGrid .hide-checkbox .col-checkbox,
.s-Administration-BudgetAutoTestGrid .hide-checkbox .col-checkbox,
.s-Administration-CashCallAutoTestGrid .hide-checkbox .col-checkbox,
.s-Administration-PerformanceMonthAutoTestGrid .hide-checkbox .col-checkbox,
.s-Administration-PerformanceQuarterAutoTestGrid .hide-checkbox .col-checkbox,
.s-Administration-SiteNotificationsGrid .hide-checkbox .col-checkbox,
.s-Budget-AnnualBudgetsGrid .hide-checkbox .col-checkbox,
.s-Budget-AnnualBudgetsAllGrid .hide-checkbox .col-checkbox,
.s-Budget-BudgetProfilesABGrid .hide-checkbox .col-checkbox,
.s-Budget-OperatorProposalsGrid .hide-checkbox .col-checkbox,
.s-Budget-MACOMApprovalsGrid .hide-checkbox .col-checkbox,
.s-Budget-OPCOMApprovalsGrid .hide-checkbox .col-checkbox,
.s-Budget-ApprovedBudgetsGrid .hide-checkbox .col-checkbox,
.s-Budget-FiveYearForecastsGrid .hide-checkbox .col-checkbox,
.s-Budget-NUIMSPlanningReviewsGrid .hide-checkbox .col-checkbox,
.s-Budget-SUBCOMRecommendationsGrid .hide-checkbox .col-checkbox,
.s-Budget-SUBCOMRecommendationsAllGrid .hide-checkbox .col-checkbox,
.s-Budget-TECOMRecommendationsGrid .hide-checkbox .col-checkbox,
.s-Budget-BudgetProfilesGrid .hide-checkbox .col-checkbox,
.s-Budget-BudgetProfilesAllGrid .hide-checkbox .col-checkbox,
.s-Budget-BudgetsGrid .hide-checkbox .col-checkbox,
.s-Budget-CallCircularsGrid .hide-checkbox .col-checkbox,
.s-Budget-CallCircularsAllGrid .hide-checkbox .col-checkbox,
.s-Budget-CallSchedulesGrid .hide-checkbox .col-checkbox,
.s-Budget-CallScheduleCalendarsGrid .hide-checkbox .col-checkbox,
.s-Budget-CallScheduleCalendarsAllGrid .hide-checkbox .col-checkbox,
.s-Budget-BudgetThresholdsAllGrid .hide-checkbox .col-checkbox,
.s-Budget-BudgetThresholdsGrid .hide-checkbox .col-checkbox,
.s-Budget-BudgetThresholdBackupGrid .hide-checkbox .col-checkbox,
.s-Budget-BTFundingTrancheBackupGrid .hide-checkbox .col-checkbox,
.s-Budget-OperatorTemplatesGrid .hide-checkbox .col-checkbox,
.s-Budget-TemplateCommitteeGrid .hide-checkbox .col-checkbox,
.s-Budget-BudgetHistoricBriefGrid .hide-checkbox .col-checkbox,
.s-Budget-BudgetHistoricTemplateGrid .hide-checkbox .col-checkbox,
.s-Budget-BTFundingTranchesGrid .hide-checkbox .col-checkbox,
.s-Budget-BTFundingTranchesAllGrid .hide-checkbox .col-checkbox,
.s-Budget-BTFundingTrancheBreakdownsGrid .hide-checkbox .col-checkbox,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .hide-checkbox .col-checkbox,
.s-Budget-CallScheduleCalendarsGrid .hide-checkbox .col-checkbox,
.s-Budget-CallCircularsAllGrid .hide-checkbox .col-checkbox,
.s-Budget-CallCircularsGrid .hide-checkbox .col-checkbox,
.s-Budget-CallScheduleActivitiesGrid .hide-checkbox .col-checkbox,
.s-Budget-CallSchedulesAllGrid .hide-checkbox .col-checkbox,
.s-Budget-CallSchedulesGrid .hide-checkbox .col-checkbox,
.s-Budget-SwotsGrid .hide-checkbox .col-checkbox,
.s-Budget-BudgetAssumptionsGrid .hide-checkbox .col-checkbox,
.s-Budget-SeismicActivitiesGrid .hide-checkbox .col-checkbox,
.s-Budget-ReservesGrid .hide-checkbox .col-checkbox,
.s-Budget-ProductionGrid .hide-checkbox .col-checkbox,
.s-Budget-GasUtilizationGrid .hide-checkbox .col-checkbox,
.s-Budget-RigSequencesGrid .hide-checkbox .col-checkbox,
.s-Budget-VesselSchedulesGrid .hide-checkbox .col-checkbox,
.s-Budget-HrSummariesGrid .hide-checkbox .col-checkbox,
.s-Budget-SharedCostsGrid .hide-checkbox .col-checkbox,
.s-Budget-SharedCostAllocationsGrid .hide-checkbox .col-checkbox,
.s-Budget-GeneralWorkProgrammesGrid .hide-checkbox .col-checkbox,
.s-Budget-ExpenditureBreakdownsGrid .hide-checkbox .col-checkbox,
.s-Budget-WellCostsNonRigWorkGrid .hide-checkbox .col-checkbox,
.s-Budget-NonRigWorkOverCostElementsGrid .hide-checkbox .col-checkbox,
.s-Budget-WellCostsGrid .hide-checkbox .col-checkbox,
.s-Budget-WellCostElementsGrid .hide-checkbox .col-checkbox,
.s-Budget-ProjectSummariesGrid .hide-checkbox .col-checkbox,
.s-Budget-PADWorkProgrammesGrid .hide-checkbox .col-checkbox,
.s-Budget-RigSequencesGrid .hide-checkbox .col-checkbox,
.s-Budget-BlocksGrid .hide-checkbox .col-checkbox,
.s-Budget-CashCallEquitySharesGrid .hide-checkbox .col-checkbox,
.s-Budget-FieldsGrid .hide-checkbox .col-checkbox,
.s-Budget-FieldTerrainsGrid .hide-checkbox .col-checkbox,
.s-Budget-FundingTranchesGrid .hide-checkbox .col-checkbox,
.s-Budget-FundingTranchesAllGrid .hide-checkbox .col-checkbox,
.s-Budget-MajorDriversGrid .hide-checkbox .col-checkbox,
.s-Budget-BudgetData_ExcelTemplatesGrid .hide-checkbox .col-checkbox,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .hide-checkbox .col-checkbox,
.s-Budget-ExcelTemplatesGrid .hide-checkbox .col-checkbox,
.s-Budget-OperatorBlocksAllGrid .hide-checkbox .col-checkbox,
.s-Budget-OperatorBlocksGrid .hide-checkbox .col-checkbox,
.s-Budget-ProductsGrid .hide-checkbox .col-checkbox,
.s-Budget-RigsGrid .hide-checkbox .col-checkbox,
.s-Budget-SeismicActivityDescriptionsGrid .hide-checkbox .col-checkbox,
.s-Budget-UAPCodeAccessPermissionsGrid .hide-checkbox .col-checkbox,
.s-Budget-UAPCodesAllGrid .hide-checkbox .col-checkbox,
.s-Budget-NUIMS_UAPCodesGrid .hide-checkbox .col-checkbox,
.s-Budget-Operator_UAPCodesGrid .hide-checkbox .col-checkbox,
.s-Budget-VesselsGrid .hide-checkbox .col-checkbox,
.s-Budget-WellCostElementGroupsGrid .hide-checkbox .col-checkbox,
.s-Budget-WellCostsElementDetailsGrid .hide-checkbox .col-checkbox,
.s-Budget-WellCostsElementDetailsAllGrid .hide-checkbox .col-checkbox,
.s-Budget-NonRigActivityTypesGrid .hide-checkbox .col-checkbox,
.s-Budget-NonRigElementDetailsGrid .hide-checkbox .col-checkbox,
.s-Budget-NonRigElementDetailsAllGrid .hide-checkbox .col-checkbox,
.s-Budget-WellsAllGrid .hide-checkbox .col-checkbox,
.s-Budget-WellsGrid .hide-checkbox .col-checkbox,
.s-Budget-ProjectsGrid .hide-checkbox .col-checkbox,
.s-Budget-ResponsiblePartyOperatorsGrid .hide-checkbox .col-checkbox,
.s-Budget-ContractApprovingBodiesGrid .hide-checkbox .col-checkbox,
.s-Budget-CountryGrid .hide-checkbox .col-checkbox,
.s-Budget-FundingTrancheSourcesGrid .hide-checkbox .col-checkbox,
.s-Budget-MonthsGrid .hide-checkbox .col-checkbox,
.s-Budget-NationalityGrid .hide-checkbox .col-checkbox,
.s-Budget-PadClustersGrid .hide-checkbox .col-checkbox,
.s-Budget-PadCommunitiesGrid .hide-checkbox .col-checkbox,
.s-Budget-SecurityRolesGrid .hide-checkbox .col-checkbox,
.s-Budget-TemplatesGrid .hide-checkbox .col-checkbox,
.s-Budget-TerrainsGrid .hide-checkbox .col-checkbox,
.s-Budget-UAPAccessPermissionsGrid .hide-checkbox .col-checkbox,
.s-Budget-UAPCodeLevelsGrid .hide-checkbox .col-checkbox,
.s-Budget-UAPCodeGroupsGrid .hide-checkbox .col-checkbox,
.s-Budget-UAPCodeGroupTitlesGrid .hide-checkbox .col-checkbox,
.s-Budget-UnitsGrid .hide-checkbox .col-checkbox,
.s-Budget-UnitsOfMeasureGrid .hide-checkbox .col-checkbox,
.s-Budget-UnitsOfMeasureUsageGrid .hide-checkbox .col-checkbox,
.s-Budget-VesselActivitiesGrid .hide-checkbox .col-checkbox,
.s-Budget-WellClassificationsGrid .hide-checkbox .col-checkbox,
.s-Budget-YearsGrid .hide-checkbox .col-checkbox,
.s-Budget-AnnualBudgetStatusesGrid .hide-checkbox .col-checkbox,
.s-Budget-ApprovedBudgetStatusesGrid .hide-checkbox .col-checkbox,
.s-Budget-BudgetPreviewStatusesGrid .hide-checkbox .col-checkbox,
.s-Budget-BudgetProfileStatusesGrid .hide-checkbox .col-checkbox,
.s-Budget-BudgetStatusesGrid .hide-checkbox .col-checkbox,
.s-Budget-BudgetThresholdStatusesGrid .hide-checkbox .col-checkbox,
.s-Budget-ButtonStatusesGrid .hide-checkbox .col-checkbox,
.s-Budget-CallCircularStatusesGrid .hide-checkbox .col-checkbox,
.s-Budget-CashCallStatusesGrid .hide-checkbox .col-checkbox,
.s-Budget-ContractStatusesGrid .hide-checkbox .col-checkbox,
.s-Budget-FieldStatusesGrid .hide-checkbox .col-checkbox,
.s-Budget-FincomStatusesGrid .hide-checkbox .col-checkbox,
.s-Budget-MacomReviewStatusesGrid .hide-checkbox .col-checkbox,
.s-Budget-NuimsPlanningReviewStatusesGrid .hide-checkbox .col-checkbox,
.s-Budget-OpcomReviewStatusesGrid .hide-checkbox .col-checkbox,
.s-Budget-OperatorProposalStatusesGrid .hide-checkbox .col-checkbox,
.s-Budget-OperatorStatusesGrid .hide-checkbox .col-checkbox,
.s-Budget-OwnershipStatusesGrid .hide-checkbox .col-checkbox,
.s-Budget-PerformanceStatusesGrid .hide-checkbox .col-checkbox,
.s-Budget-ProjectStatusGrid .hide-checkbox .col-checkbox,
.s-Budget-RealignedBudgetStatusesGrid .hide-checkbox .col-checkbox,
.s-Budget-SubcomRecommendationStatusesGrid .hide-checkbox .col-checkbox,
.s-Budget-TecomRecommendationStatusesGrid .hide-checkbox .col-checkbox,
.s-Budget-TemplateStatusesGrid .hide-checkbox .col-checkbox,
.s-Budget-UAPCodeStatusesGrid .hide-checkbox .col-checkbox,
.s-Budget-AgreementTypesGrid .hide-checkbox .col-checkbox,
.s-Budget-BriefTypesGrid .hide-checkbox .col-checkbox,
.s-Budget-BudgetTypesGrid .hide-checkbox .col-checkbox,
.s-Budget-MeetingGrid .hide-checkbox .col-checkbox,
.s-Budget-MeetingAgendaGrid .hide-checkbox .col-checkbox,
.s-Budget-MeetingAgendaRelevantGrid .hide-checkbox .col-checkbox,
.s-Budget-MeetingAgendaTypeGrid .hide-checkbox .col-checkbox,
.s-Budget-MeetingDecisionGrid .hide-checkbox .col-checkbox,
.s-Budget-MeetingDecisionRelevantGrid .hide-checkbox .col-checkbox,
.s-Budget-MeetingLocationGrid .hide-checkbox .col-checkbox,
.s-Budget-MeetingTypeGrid .hide-checkbox .col-checkbox,
.s-Budget-FinancialDataGrid .hide-checkbox .col-checkbox,
.s-Budget-WorkflowButtonSequenceTypesGrid .hide-checkbox .col-checkbox,
.s-Budget-CommitteeTypesGrid .hide-checkbox .col-checkbox,
.s-Budget-ContractTypesGrid .hide-checkbox .col-checkbox,
.s-Budget-EmploymentTypeGrid .hide-checkbox .col-checkbox,
.s-Budget-ExpenditureTypesGrid .hide-checkbox .col-checkbox,
.s-Budget-FundingTrancheTypesGrid .hide-checkbox .col-checkbox,
.s-Budget-GasUtilizationTypesGrid .hide-checkbox .col-checkbox,
.s-Budget-PadProgramTypesGrid .hide-checkbox .col-checkbox,
.s-Budget-PadTypesGrid .hide-checkbox .col-checkbox,
.s-Budget-ProductTypesGrid .hide-checkbox .col-checkbox,
.s-Budget-ProjectTypesGrid .hide-checkbox .col-checkbox,
.s-Budget-RigTypesGrid .hide-checkbox .col-checkbox,
.s-Budget-SharedCostAllocationTypesGrid .hide-checkbox .col-checkbox,
.s-Budget-UAPCodeTypesGrid .hide-checkbox .col-checkbox,
.s-Budget-VesselTypesGrid .hide-checkbox .col-checkbox,
.s-Budget-WellCostElementTypesGrid .hide-checkbox .col-checkbox,
.s-Budget-WellTypesGrid .hide-checkbox .col-checkbox,
.s-Budget-BudgetPreviewGrid .hide-checkbox .col-checkbox,
.s-Budget-FINCOMAppendixIGrid .hide-checkbox .col-checkbox,
.s-Budget-FINCOMAppendixIIGrid .hide-checkbox .col-checkbox,
.s-Budget-FINCOMCollationGrid .hide-checkbox .col-checkbox,
.s-Budget-CallScheduleActionsGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallCalendarsGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallActivitiesGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallScheduleActivitiesGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallCircularsGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallCircularsAllGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallCalendarsGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallCalendarsAllGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallBriefsGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallCashComRecommendationsGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallMandatesGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallMeetingDayAttendancesGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallPayablesGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallsGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallsAllGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallsEPGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallsBDGGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallSchedulesGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallSchedulesAllGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallRequestsGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallRequestsEPGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallRequestItemsGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallUapCodeItemsGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallOperatorRequestsGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallNuimsReviewsGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallManagerJVReviewGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallCashComSubComReviewGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallFincomCollationGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallSubcomRecomendationsGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallEndorsementGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallGgmSummariesGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallGgmSummariesItemGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallPayablesGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallPayableItemsGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallPayableItemsAdjustedGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallPayablesAnnualGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallMandatesGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallPaymentConfirmationGrid .hide-checkbox .col-checkbox,
.s-CashCall-CashCallPayableItemsEditor .hide-checkbox .col-checkbox,
.s-CashCall-CashCallPaymentDataEditor .hide-checkbox .col-checkbox,
.s-CashCall-CashCallPaymentDataGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformancesGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformancesAllGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformancesBDGGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformanceSchedulesGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformanceCallScheduleCalendarsGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformanceCallScheduleActivitiesGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformanceCallScheduleActivitiesGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformanceCallCircularsGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformanceCallCircularsAllGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformanceMonthlyGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformanceQuarterlyGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformanceQuarterFourGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformanceFinancialItemsGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformanceNonFinancialItemsGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformanceFinancialMonthItemsGrid .hide-checkbox .col-checkbox,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .hide-checkbox .col-checkbox,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .hide-checkbox .col-checkbox,
.s-Common-DashboardWidgetGrid .hide-checkbox .col-checkbox,
.s-Administration-BcPproExceptionsGrid .hide-checkbox .col-checkbox {
  visibility: hidden !important;
}
.s-Administration-IssueTrackingIssuesGrid .display-checkbox .col-checkbox,
.s-Administration-IssueTrackingFeedbackGrid .display-checkbox .col-checkbox,
.s-Administration-IssueTrackingChangeRequestGrid .display-checkbox .col-checkbox,
.s-Administration-NotificationTemplatesGrid .display-checkbox .col-checkbox,
.s-Administration-BudgetAutoTestGrid .display-checkbox .col-checkbox,
.s-Administration-CashCallAutoTestGrid .display-checkbox .col-checkbox,
.s-Administration-PerformanceMonthAutoTestGrid .display-checkbox .col-checkbox,
.s-Administration-PerformanceQuarterAutoTestGrid .display-checkbox .col-checkbox,
.s-Administration-SiteNotificationsGrid .display-checkbox .col-checkbox,
.s-Budget-AnnualBudgetsGrid .display-checkbox .col-checkbox,
.s-Budget-AnnualBudgetsAllGrid .display-checkbox .col-checkbox,
.s-Budget-BudgetProfilesABGrid .display-checkbox .col-checkbox,
.s-Budget-OperatorProposalsGrid .display-checkbox .col-checkbox,
.s-Budget-MACOMApprovalsGrid .display-checkbox .col-checkbox,
.s-Budget-OPCOMApprovalsGrid .display-checkbox .col-checkbox,
.s-Budget-ApprovedBudgetsGrid .display-checkbox .col-checkbox,
.s-Budget-FiveYearForecastsGrid .display-checkbox .col-checkbox,
.s-Budget-NUIMSPlanningReviewsGrid .display-checkbox .col-checkbox,
.s-Budget-SUBCOMRecommendationsGrid .display-checkbox .col-checkbox,
.s-Budget-SUBCOMRecommendationsAllGrid .display-checkbox .col-checkbox,
.s-Budget-TECOMRecommendationsGrid .display-checkbox .col-checkbox,
.s-Budget-BudgetProfilesGrid .display-checkbox .col-checkbox,
.s-Budget-BudgetProfilesAllGrid .display-checkbox .col-checkbox,
.s-Budget-BudgetsGrid .display-checkbox .col-checkbox,
.s-Budget-CallCircularsGrid .display-checkbox .col-checkbox,
.s-Budget-CallCircularsAllGrid .display-checkbox .col-checkbox,
.s-Budget-CallSchedulesGrid .display-checkbox .col-checkbox,
.s-Budget-CallScheduleCalendarsGrid .display-checkbox .col-checkbox,
.s-Budget-CallScheduleCalendarsAllGrid .display-checkbox .col-checkbox,
.s-Budget-BudgetThresholdsAllGrid .display-checkbox .col-checkbox,
.s-Budget-BudgetThresholdsGrid .display-checkbox .col-checkbox,
.s-Budget-BudgetThresholdBackupGrid .display-checkbox .col-checkbox,
.s-Budget-BTFundingTrancheBackupGrid .display-checkbox .col-checkbox,
.s-Budget-OperatorTemplatesGrid .display-checkbox .col-checkbox,
.s-Budget-TemplateCommitteeGrid .display-checkbox .col-checkbox,
.s-Budget-BudgetHistoricBriefGrid .display-checkbox .col-checkbox,
.s-Budget-BudgetHistoricTemplateGrid .display-checkbox .col-checkbox,
.s-Budget-BTFundingTranchesGrid .display-checkbox .col-checkbox,
.s-Budget-BTFundingTranchesAllGrid .display-checkbox .col-checkbox,
.s-Budget-BTFundingTrancheBreakdownsGrid .display-checkbox .col-checkbox,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .display-checkbox .col-checkbox,
.s-Budget-CallScheduleCalendarsGrid .display-checkbox .col-checkbox,
.s-Budget-CallCircularsAllGrid .display-checkbox .col-checkbox,
.s-Budget-CallCircularsGrid .display-checkbox .col-checkbox,
.s-Budget-CallScheduleActivitiesGrid .display-checkbox .col-checkbox,
.s-Budget-CallSchedulesAllGrid .display-checkbox .col-checkbox,
.s-Budget-CallSchedulesGrid .display-checkbox .col-checkbox,
.s-Budget-SwotsGrid .display-checkbox .col-checkbox,
.s-Budget-BudgetAssumptionsGrid .display-checkbox .col-checkbox,
.s-Budget-SeismicActivitiesGrid .display-checkbox .col-checkbox,
.s-Budget-ReservesGrid .display-checkbox .col-checkbox,
.s-Budget-ProductionGrid .display-checkbox .col-checkbox,
.s-Budget-GasUtilizationGrid .display-checkbox .col-checkbox,
.s-Budget-RigSequencesGrid .display-checkbox .col-checkbox,
.s-Budget-VesselSchedulesGrid .display-checkbox .col-checkbox,
.s-Budget-HrSummariesGrid .display-checkbox .col-checkbox,
.s-Budget-SharedCostsGrid .display-checkbox .col-checkbox,
.s-Budget-SharedCostAllocationsGrid .display-checkbox .col-checkbox,
.s-Budget-GeneralWorkProgrammesGrid .display-checkbox .col-checkbox,
.s-Budget-ExpenditureBreakdownsGrid .display-checkbox .col-checkbox,
.s-Budget-WellCostsNonRigWorkGrid .display-checkbox .col-checkbox,
.s-Budget-NonRigWorkOverCostElementsGrid .display-checkbox .col-checkbox,
.s-Budget-WellCostsGrid .display-checkbox .col-checkbox,
.s-Budget-WellCostElementsGrid .display-checkbox .col-checkbox,
.s-Budget-ProjectSummariesGrid .display-checkbox .col-checkbox,
.s-Budget-PADWorkProgrammesGrid .display-checkbox .col-checkbox,
.s-Budget-RigSequencesGrid .display-checkbox .col-checkbox,
.s-Budget-BlocksGrid .display-checkbox .col-checkbox,
.s-Budget-CashCallEquitySharesGrid .display-checkbox .col-checkbox,
.s-Budget-FieldsGrid .display-checkbox .col-checkbox,
.s-Budget-FieldTerrainsGrid .display-checkbox .col-checkbox,
.s-Budget-FundingTranchesGrid .display-checkbox .col-checkbox,
.s-Budget-FundingTranchesAllGrid .display-checkbox .col-checkbox,
.s-Budget-MajorDriversGrid .display-checkbox .col-checkbox,
.s-Budget-BudgetData_ExcelTemplatesGrid .display-checkbox .col-checkbox,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .display-checkbox .col-checkbox,
.s-Budget-ExcelTemplatesGrid .display-checkbox .col-checkbox,
.s-Budget-OperatorBlocksAllGrid .display-checkbox .col-checkbox,
.s-Budget-OperatorBlocksGrid .display-checkbox .col-checkbox,
.s-Budget-ProductsGrid .display-checkbox .col-checkbox,
.s-Budget-RigsGrid .display-checkbox .col-checkbox,
.s-Budget-SeismicActivityDescriptionsGrid .display-checkbox .col-checkbox,
.s-Budget-UAPCodeAccessPermissionsGrid .display-checkbox .col-checkbox,
.s-Budget-UAPCodesAllGrid .display-checkbox .col-checkbox,
.s-Budget-NUIMS_UAPCodesGrid .display-checkbox .col-checkbox,
.s-Budget-Operator_UAPCodesGrid .display-checkbox .col-checkbox,
.s-Budget-VesselsGrid .display-checkbox .col-checkbox,
.s-Budget-WellCostElementGroupsGrid .display-checkbox .col-checkbox,
.s-Budget-WellCostsElementDetailsGrid .display-checkbox .col-checkbox,
.s-Budget-WellCostsElementDetailsAllGrid .display-checkbox .col-checkbox,
.s-Budget-NonRigActivityTypesGrid .display-checkbox .col-checkbox,
.s-Budget-NonRigElementDetailsGrid .display-checkbox .col-checkbox,
.s-Budget-NonRigElementDetailsAllGrid .display-checkbox .col-checkbox,
.s-Budget-WellsAllGrid .display-checkbox .col-checkbox,
.s-Budget-WellsGrid .display-checkbox .col-checkbox,
.s-Budget-ProjectsGrid .display-checkbox .col-checkbox,
.s-Budget-ResponsiblePartyOperatorsGrid .display-checkbox .col-checkbox,
.s-Budget-ContractApprovingBodiesGrid .display-checkbox .col-checkbox,
.s-Budget-CountryGrid .display-checkbox .col-checkbox,
.s-Budget-FundingTrancheSourcesGrid .display-checkbox .col-checkbox,
.s-Budget-MonthsGrid .display-checkbox .col-checkbox,
.s-Budget-NationalityGrid .display-checkbox .col-checkbox,
.s-Budget-PadClustersGrid .display-checkbox .col-checkbox,
.s-Budget-PadCommunitiesGrid .display-checkbox .col-checkbox,
.s-Budget-SecurityRolesGrid .display-checkbox .col-checkbox,
.s-Budget-TemplatesGrid .display-checkbox .col-checkbox,
.s-Budget-TerrainsGrid .display-checkbox .col-checkbox,
.s-Budget-UAPAccessPermissionsGrid .display-checkbox .col-checkbox,
.s-Budget-UAPCodeLevelsGrid .display-checkbox .col-checkbox,
.s-Budget-UAPCodeGroupsGrid .display-checkbox .col-checkbox,
.s-Budget-UAPCodeGroupTitlesGrid .display-checkbox .col-checkbox,
.s-Budget-UnitsGrid .display-checkbox .col-checkbox,
.s-Budget-UnitsOfMeasureGrid .display-checkbox .col-checkbox,
.s-Budget-UnitsOfMeasureUsageGrid .display-checkbox .col-checkbox,
.s-Budget-VesselActivitiesGrid .display-checkbox .col-checkbox,
.s-Budget-WellClassificationsGrid .display-checkbox .col-checkbox,
.s-Budget-YearsGrid .display-checkbox .col-checkbox,
.s-Budget-AnnualBudgetStatusesGrid .display-checkbox .col-checkbox,
.s-Budget-ApprovedBudgetStatusesGrid .display-checkbox .col-checkbox,
.s-Budget-BudgetPreviewStatusesGrid .display-checkbox .col-checkbox,
.s-Budget-BudgetProfileStatusesGrid .display-checkbox .col-checkbox,
.s-Budget-BudgetStatusesGrid .display-checkbox .col-checkbox,
.s-Budget-BudgetThresholdStatusesGrid .display-checkbox .col-checkbox,
.s-Budget-ButtonStatusesGrid .display-checkbox .col-checkbox,
.s-Budget-CallCircularStatusesGrid .display-checkbox .col-checkbox,
.s-Budget-CashCallStatusesGrid .display-checkbox .col-checkbox,
.s-Budget-ContractStatusesGrid .display-checkbox .col-checkbox,
.s-Budget-FieldStatusesGrid .display-checkbox .col-checkbox,
.s-Budget-FincomStatusesGrid .display-checkbox .col-checkbox,
.s-Budget-MacomReviewStatusesGrid .display-checkbox .col-checkbox,
.s-Budget-NuimsPlanningReviewStatusesGrid .display-checkbox .col-checkbox,
.s-Budget-OpcomReviewStatusesGrid .display-checkbox .col-checkbox,
.s-Budget-OperatorProposalStatusesGrid .display-checkbox .col-checkbox,
.s-Budget-OperatorStatusesGrid .display-checkbox .col-checkbox,
.s-Budget-OwnershipStatusesGrid .display-checkbox .col-checkbox,
.s-Budget-PerformanceStatusesGrid .display-checkbox .col-checkbox,
.s-Budget-ProjectStatusGrid .display-checkbox .col-checkbox,
.s-Budget-RealignedBudgetStatusesGrid .display-checkbox .col-checkbox,
.s-Budget-SubcomRecommendationStatusesGrid .display-checkbox .col-checkbox,
.s-Budget-TecomRecommendationStatusesGrid .display-checkbox .col-checkbox,
.s-Budget-TemplateStatusesGrid .display-checkbox .col-checkbox,
.s-Budget-UAPCodeStatusesGrid .display-checkbox .col-checkbox,
.s-Budget-AgreementTypesGrid .display-checkbox .col-checkbox,
.s-Budget-BriefTypesGrid .display-checkbox .col-checkbox,
.s-Budget-BudgetTypesGrid .display-checkbox .col-checkbox,
.s-Budget-MeetingGrid .display-checkbox .col-checkbox,
.s-Budget-MeetingAgendaGrid .display-checkbox .col-checkbox,
.s-Budget-MeetingAgendaRelevantGrid .display-checkbox .col-checkbox,
.s-Budget-MeetingAgendaTypeGrid .display-checkbox .col-checkbox,
.s-Budget-MeetingDecisionGrid .display-checkbox .col-checkbox,
.s-Budget-MeetingDecisionRelevantGrid .display-checkbox .col-checkbox,
.s-Budget-MeetingLocationGrid .display-checkbox .col-checkbox,
.s-Budget-MeetingTypeGrid .display-checkbox .col-checkbox,
.s-Budget-FinancialDataGrid .display-checkbox .col-checkbox,
.s-Budget-WorkflowButtonSequenceTypesGrid .display-checkbox .col-checkbox,
.s-Budget-CommitteeTypesGrid .display-checkbox .col-checkbox,
.s-Budget-ContractTypesGrid .display-checkbox .col-checkbox,
.s-Budget-EmploymentTypeGrid .display-checkbox .col-checkbox,
.s-Budget-ExpenditureTypesGrid .display-checkbox .col-checkbox,
.s-Budget-FundingTrancheTypesGrid .display-checkbox .col-checkbox,
.s-Budget-GasUtilizationTypesGrid .display-checkbox .col-checkbox,
.s-Budget-PadProgramTypesGrid .display-checkbox .col-checkbox,
.s-Budget-PadTypesGrid .display-checkbox .col-checkbox,
.s-Budget-ProductTypesGrid .display-checkbox .col-checkbox,
.s-Budget-ProjectTypesGrid .display-checkbox .col-checkbox,
.s-Budget-RigTypesGrid .display-checkbox .col-checkbox,
.s-Budget-SharedCostAllocationTypesGrid .display-checkbox .col-checkbox,
.s-Budget-UAPCodeTypesGrid .display-checkbox .col-checkbox,
.s-Budget-VesselTypesGrid .display-checkbox .col-checkbox,
.s-Budget-WellCostElementTypesGrid .display-checkbox .col-checkbox,
.s-Budget-WellTypesGrid .display-checkbox .col-checkbox,
.s-Budget-BudgetPreviewGrid .display-checkbox .col-checkbox,
.s-Budget-FINCOMAppendixIGrid .display-checkbox .col-checkbox,
.s-Budget-FINCOMAppendixIIGrid .display-checkbox .col-checkbox,
.s-Budget-FINCOMCollationGrid .display-checkbox .col-checkbox,
.s-Budget-CallScheduleActionsGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallCalendarsGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallActivitiesGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallScheduleActivitiesGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallCircularsGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallCircularsAllGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallCalendarsGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallCalendarsAllGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallBriefsGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallCashComRecommendationsGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallMandatesGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallMeetingDayAttendancesGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallPayablesGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallsGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallsAllGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallsEPGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallsBDGGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallSchedulesGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallSchedulesAllGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallRequestsGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallRequestsEPGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallRequestItemsGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallUapCodeItemsGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallOperatorRequestsGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallNuimsReviewsGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallManagerJVReviewGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallCashComSubComReviewGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallFincomCollationGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallSubcomRecomendationsGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallEndorsementGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallGgmSummariesGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallGgmSummariesItemGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallPayablesGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallPayableItemsGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallPayableItemsAdjustedGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallPayablesAnnualGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallMandatesGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallPaymentConfirmationGrid .display-checkbox .col-checkbox,
.s-CashCall-CashCallPayableItemsEditor .display-checkbox .col-checkbox,
.s-CashCall-CashCallPaymentDataEditor .display-checkbox .col-checkbox,
.s-CashCall-CashCallPaymentDataGrid .display-checkbox .col-checkbox,
.s-Performance-PerformancesGrid .display-checkbox .col-checkbox,
.s-Performance-PerformancesAllGrid .display-checkbox .col-checkbox,
.s-Performance-PerformancesBDGGrid .display-checkbox .col-checkbox,
.s-Performance-PerformanceSchedulesGrid .display-checkbox .col-checkbox,
.s-Performance-PerformanceCallScheduleCalendarsGrid .display-checkbox .col-checkbox,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .display-checkbox .col-checkbox,
.s-Performance-PerformanceCallScheduleActivitiesGrid .display-checkbox .col-checkbox,
.s-Performance-PerformanceCallScheduleActivitiesGrid .display-checkbox .col-checkbox,
.s-Performance-PerformanceCallCircularsGrid .display-checkbox .col-checkbox,
.s-Performance-PerformanceCallCircularsAllGrid .display-checkbox .col-checkbox,
.s-Performance-PerformanceMonthlyGrid .display-checkbox .col-checkbox,
.s-Performance-PerformanceQuarterlyGrid .display-checkbox .col-checkbox,
.s-Performance-PerformanceQuarterFourGrid .display-checkbox .col-checkbox,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .display-checkbox .col-checkbox,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .display-checkbox .col-checkbox,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .display-checkbox .col-checkbox,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .display-checkbox .col-checkbox,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .display-checkbox .col-checkbox,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .display-checkbox .col-checkbox,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .display-checkbox .col-checkbox,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .display-checkbox .col-checkbox,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .display-checkbox .col-checkbox,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .display-checkbox .col-checkbox,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .display-checkbox .col-checkbox,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .display-checkbox .col-checkbox,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .display-checkbox .col-checkbox,
.s-Performance-PerformanceFinancialItemsGrid .display-checkbox .col-checkbox,
.s-Performance-PerformanceNonFinancialItemsGrid .display-checkbox .col-checkbox,
.s-Performance-PerformanceFinancialMonthItemsGrid .display-checkbox .col-checkbox,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .display-checkbox .col-checkbox,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .display-checkbox .col-checkbox,
.s-Common-DashboardWidgetGrid .display-checkbox .col-checkbox,
.s-Administration-BcPproExceptionsGrid .display-checkbox .col-checkbox {
  visibility: visible !important;
}
.s-Administration-IssueTrackingIssuesGrid .draft .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .draft .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .draft .col-template-status,
.s-Administration-NotificationTemplatesGrid .draft .col-template-status,
.s-Administration-BudgetAutoTestGrid .draft .col-template-status,
.s-Administration-CashCallAutoTestGrid .draft .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .draft .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .draft .col-template-status,
.s-Administration-SiteNotificationsGrid .draft .col-template-status,
.s-Budget-AnnualBudgetsGrid .draft .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .draft .col-template-status,
.s-Budget-BudgetProfilesABGrid .draft .col-template-status,
.s-Budget-OperatorProposalsGrid .draft .col-template-status,
.s-Budget-MACOMApprovalsGrid .draft .col-template-status,
.s-Budget-OPCOMApprovalsGrid .draft .col-template-status,
.s-Budget-ApprovedBudgetsGrid .draft .col-template-status,
.s-Budget-FiveYearForecastsGrid .draft .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .draft .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .draft .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .draft .col-template-status,
.s-Budget-TECOMRecommendationsGrid .draft .col-template-status,
.s-Budget-BudgetProfilesGrid .draft .col-template-status,
.s-Budget-BudgetProfilesAllGrid .draft .col-template-status,
.s-Budget-BudgetsGrid .draft .col-template-status,
.s-Budget-CallCircularsGrid .draft .col-template-status,
.s-Budget-CallCircularsAllGrid .draft .col-template-status,
.s-Budget-CallSchedulesGrid .draft .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .draft .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .draft .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .draft .col-template-status,
.s-Budget-BudgetThresholdsGrid .draft .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .draft .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .draft .col-template-status,
.s-Budget-OperatorTemplatesGrid .draft .col-template-status,
.s-Budget-TemplateCommitteeGrid .draft .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .draft .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .draft .col-template-status,
.s-Budget-BTFundingTranchesGrid .draft .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .draft .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .draft .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .draft .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .draft .col-template-status,
.s-Budget-CallCircularsAllGrid .draft .col-template-status,
.s-Budget-CallCircularsGrid .draft .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .draft .col-template-status,
.s-Budget-CallSchedulesAllGrid .draft .col-template-status,
.s-Budget-CallSchedulesGrid .draft .col-template-status,
.s-Budget-SwotsGrid .draft .col-template-status,
.s-Budget-BudgetAssumptionsGrid .draft .col-template-status,
.s-Budget-SeismicActivitiesGrid .draft .col-template-status,
.s-Budget-ReservesGrid .draft .col-template-status,
.s-Budget-ProductionGrid .draft .col-template-status,
.s-Budget-GasUtilizationGrid .draft .col-template-status,
.s-Budget-RigSequencesGrid .draft .col-template-status,
.s-Budget-VesselSchedulesGrid .draft .col-template-status,
.s-Budget-HrSummariesGrid .draft .col-template-status,
.s-Budget-SharedCostsGrid .draft .col-template-status,
.s-Budget-SharedCostAllocationsGrid .draft .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .draft .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .draft .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .draft .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .draft .col-template-status,
.s-Budget-WellCostsGrid .draft .col-template-status,
.s-Budget-WellCostElementsGrid .draft .col-template-status,
.s-Budget-ProjectSummariesGrid .draft .col-template-status,
.s-Budget-PADWorkProgrammesGrid .draft .col-template-status,
.s-Budget-RigSequencesGrid .draft .col-template-status,
.s-Budget-BlocksGrid .draft .col-template-status,
.s-Budget-CashCallEquitySharesGrid .draft .col-template-status,
.s-Budget-FieldsGrid .draft .col-template-status,
.s-Budget-FieldTerrainsGrid .draft .col-template-status,
.s-Budget-FundingTranchesGrid .draft .col-template-status,
.s-Budget-FundingTranchesAllGrid .draft .col-template-status,
.s-Budget-MajorDriversGrid .draft .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .draft .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .draft .col-template-status,
.s-Budget-ExcelTemplatesGrid .draft .col-template-status,
.s-Budget-OperatorBlocksAllGrid .draft .col-template-status,
.s-Budget-OperatorBlocksGrid .draft .col-template-status,
.s-Budget-ProductsGrid .draft .col-template-status,
.s-Budget-RigsGrid .draft .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .draft .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .draft .col-template-status,
.s-Budget-UAPCodesAllGrid .draft .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .draft .col-template-status,
.s-Budget-Operator_UAPCodesGrid .draft .col-template-status,
.s-Budget-VesselsGrid .draft .col-template-status,
.s-Budget-WellCostElementGroupsGrid .draft .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .draft .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .draft .col-template-status,
.s-Budget-NonRigActivityTypesGrid .draft .col-template-status,
.s-Budget-NonRigElementDetailsGrid .draft .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .draft .col-template-status,
.s-Budget-WellsAllGrid .draft .col-template-status,
.s-Budget-WellsGrid .draft .col-template-status,
.s-Budget-ProjectsGrid .draft .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .draft .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .draft .col-template-status,
.s-Budget-CountryGrid .draft .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .draft .col-template-status,
.s-Budget-MonthsGrid .draft .col-template-status,
.s-Budget-NationalityGrid .draft .col-template-status,
.s-Budget-PadClustersGrid .draft .col-template-status,
.s-Budget-PadCommunitiesGrid .draft .col-template-status,
.s-Budget-SecurityRolesGrid .draft .col-template-status,
.s-Budget-TemplatesGrid .draft .col-template-status,
.s-Budget-TerrainsGrid .draft .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .draft .col-template-status,
.s-Budget-UAPCodeLevelsGrid .draft .col-template-status,
.s-Budget-UAPCodeGroupsGrid .draft .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .draft .col-template-status,
.s-Budget-UnitsGrid .draft .col-template-status,
.s-Budget-UnitsOfMeasureGrid .draft .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .draft .col-template-status,
.s-Budget-VesselActivitiesGrid .draft .col-template-status,
.s-Budget-WellClassificationsGrid .draft .col-template-status,
.s-Budget-YearsGrid .draft .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .draft .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .draft .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .draft .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .draft .col-template-status,
.s-Budget-BudgetStatusesGrid .draft .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .draft .col-template-status,
.s-Budget-ButtonStatusesGrid .draft .col-template-status,
.s-Budget-CallCircularStatusesGrid .draft .col-template-status,
.s-Budget-CashCallStatusesGrid .draft .col-template-status,
.s-Budget-ContractStatusesGrid .draft .col-template-status,
.s-Budget-FieldStatusesGrid .draft .col-template-status,
.s-Budget-FincomStatusesGrid .draft .col-template-status,
.s-Budget-MacomReviewStatusesGrid .draft .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .draft .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .draft .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .draft .col-template-status,
.s-Budget-OperatorStatusesGrid .draft .col-template-status,
.s-Budget-OwnershipStatusesGrid .draft .col-template-status,
.s-Budget-PerformanceStatusesGrid .draft .col-template-status,
.s-Budget-ProjectStatusGrid .draft .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .draft .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .draft .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .draft .col-template-status,
.s-Budget-TemplateStatusesGrid .draft .col-template-status,
.s-Budget-UAPCodeStatusesGrid .draft .col-template-status,
.s-Budget-AgreementTypesGrid .draft .col-template-status,
.s-Budget-BriefTypesGrid .draft .col-template-status,
.s-Budget-BudgetTypesGrid .draft .col-template-status,
.s-Budget-MeetingGrid .draft .col-template-status,
.s-Budget-MeetingAgendaGrid .draft .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .draft .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .draft .col-template-status,
.s-Budget-MeetingDecisionGrid .draft .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .draft .col-template-status,
.s-Budget-MeetingLocationGrid .draft .col-template-status,
.s-Budget-MeetingTypeGrid .draft .col-template-status,
.s-Budget-FinancialDataGrid .draft .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .draft .col-template-status,
.s-Budget-CommitteeTypesGrid .draft .col-template-status,
.s-Budget-ContractTypesGrid .draft .col-template-status,
.s-Budget-EmploymentTypeGrid .draft .col-template-status,
.s-Budget-ExpenditureTypesGrid .draft .col-template-status,
.s-Budget-FundingTrancheTypesGrid .draft .col-template-status,
.s-Budget-GasUtilizationTypesGrid .draft .col-template-status,
.s-Budget-PadProgramTypesGrid .draft .col-template-status,
.s-Budget-PadTypesGrid .draft .col-template-status,
.s-Budget-ProductTypesGrid .draft .col-template-status,
.s-Budget-ProjectTypesGrid .draft .col-template-status,
.s-Budget-RigTypesGrid .draft .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .draft .col-template-status,
.s-Budget-UAPCodeTypesGrid .draft .col-template-status,
.s-Budget-VesselTypesGrid .draft .col-template-status,
.s-Budget-WellCostElementTypesGrid .draft .col-template-status,
.s-Budget-WellTypesGrid .draft .col-template-status,
.s-Budget-BudgetPreviewGrid .draft .col-template-status,
.s-Budget-FINCOMAppendixIGrid .draft .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .draft .col-template-status,
.s-Budget-FINCOMCollationGrid .draft .col-template-status,
.s-Budget-CallScheduleActionsGrid .draft .col-template-status,
.s-CashCall-CashCallCalendarsGrid .draft .col-template-status,
.s-CashCall-CashCallActivitiesGrid .draft .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .draft .col-template-status,
.s-CashCall-CashCallCircularsGrid .draft .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .draft .col-template-status,
.s-CashCall-CashCallCalendarsGrid .draft .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .draft .col-template-status,
.s-CashCall-CashCallBriefsGrid .draft .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .draft .col-template-status,
.s-CashCall-CashCallMandatesGrid .draft .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .draft .col-template-status,
.s-CashCall-CashCallPayablesGrid .draft .col-template-status,
.s-CashCall-CashCallsGrid .draft .col-template-status,
.s-CashCall-CashCallsAllGrid .draft .col-template-status,
.s-CashCall-CashCallsEPGrid .draft .col-template-status,
.s-CashCall-CashCallsBDGGrid .draft .col-template-status,
.s-CashCall-CashCallSchedulesGrid .draft .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .draft .col-template-status,
.s-CashCall-CashCallRequestsGrid .draft .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .draft .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .draft .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .draft .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .draft .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .draft .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .draft .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .draft .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .draft .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .draft .col-template-status,
.s-CashCall-CashCallEndorsementGrid .draft .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .draft .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .draft .col-template-status,
.s-CashCall-CashCallPayablesGrid .draft .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .draft .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .draft .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .draft .col-template-status,
.s-CashCall-CashCallMandatesGrid .draft .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .draft .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .draft .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .draft .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .draft .col-template-status,
.s-Performance-PerformancesGrid .draft .col-template-status,
.s-Performance-PerformancesAllGrid .draft .col-template-status,
.s-Performance-PerformancesBDGGrid .draft .col-template-status,
.s-Performance-PerformanceSchedulesGrid .draft .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .draft .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .draft .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .draft .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .draft .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .draft .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .draft .col-template-status,
.s-Performance-PerformanceMonthlyGrid .draft .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .draft .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .draft .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .draft .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .draft .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .draft .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .draft .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .draft .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .draft .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .draft .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .draft .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .draft .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .draft .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .draft .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .draft .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .draft .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .draft .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .draft .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .draft .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .draft .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .draft .col-template-status,
.s-Common-DashboardWidgetGrid .draft .col-template-status,
.s-Administration-BcPproExceptionsGrid .draft .col-template-status {
  background-color: #000000 !important;
}
.s-Administration-IssueTrackingIssuesGrid .not-started .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .not-started .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .not-started .col-template-status,
.s-Administration-NotificationTemplatesGrid .not-started .col-template-status,
.s-Administration-BudgetAutoTestGrid .not-started .col-template-status,
.s-Administration-CashCallAutoTestGrid .not-started .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .not-started .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .not-started .col-template-status,
.s-Administration-SiteNotificationsGrid .not-started .col-template-status,
.s-Budget-AnnualBudgetsGrid .not-started .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .not-started .col-template-status,
.s-Budget-BudgetProfilesABGrid .not-started .col-template-status,
.s-Budget-OperatorProposalsGrid .not-started .col-template-status,
.s-Budget-MACOMApprovalsGrid .not-started .col-template-status,
.s-Budget-OPCOMApprovalsGrid .not-started .col-template-status,
.s-Budget-ApprovedBudgetsGrid .not-started .col-template-status,
.s-Budget-FiveYearForecastsGrid .not-started .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .not-started .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .not-started .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .not-started .col-template-status,
.s-Budget-TECOMRecommendationsGrid .not-started .col-template-status,
.s-Budget-BudgetProfilesGrid .not-started .col-template-status,
.s-Budget-BudgetProfilesAllGrid .not-started .col-template-status,
.s-Budget-BudgetsGrid .not-started .col-template-status,
.s-Budget-CallCircularsGrid .not-started .col-template-status,
.s-Budget-CallCircularsAllGrid .not-started .col-template-status,
.s-Budget-CallSchedulesGrid .not-started .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .not-started .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .not-started .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .not-started .col-template-status,
.s-Budget-BudgetThresholdsGrid .not-started .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .not-started .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .not-started .col-template-status,
.s-Budget-OperatorTemplatesGrid .not-started .col-template-status,
.s-Budget-TemplateCommitteeGrid .not-started .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .not-started .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .not-started .col-template-status,
.s-Budget-BTFundingTranchesGrid .not-started .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .not-started .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .not-started .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .not-started .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .not-started .col-template-status,
.s-Budget-CallCircularsAllGrid .not-started .col-template-status,
.s-Budget-CallCircularsGrid .not-started .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .not-started .col-template-status,
.s-Budget-CallSchedulesAllGrid .not-started .col-template-status,
.s-Budget-CallSchedulesGrid .not-started .col-template-status,
.s-Budget-SwotsGrid .not-started .col-template-status,
.s-Budget-BudgetAssumptionsGrid .not-started .col-template-status,
.s-Budget-SeismicActivitiesGrid .not-started .col-template-status,
.s-Budget-ReservesGrid .not-started .col-template-status,
.s-Budget-ProductionGrid .not-started .col-template-status,
.s-Budget-GasUtilizationGrid .not-started .col-template-status,
.s-Budget-RigSequencesGrid .not-started .col-template-status,
.s-Budget-VesselSchedulesGrid .not-started .col-template-status,
.s-Budget-HrSummariesGrid .not-started .col-template-status,
.s-Budget-SharedCostsGrid .not-started .col-template-status,
.s-Budget-SharedCostAllocationsGrid .not-started .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .not-started .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .not-started .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .not-started .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .not-started .col-template-status,
.s-Budget-WellCostsGrid .not-started .col-template-status,
.s-Budget-WellCostElementsGrid .not-started .col-template-status,
.s-Budget-ProjectSummariesGrid .not-started .col-template-status,
.s-Budget-PADWorkProgrammesGrid .not-started .col-template-status,
.s-Budget-RigSequencesGrid .not-started .col-template-status,
.s-Budget-BlocksGrid .not-started .col-template-status,
.s-Budget-CashCallEquitySharesGrid .not-started .col-template-status,
.s-Budget-FieldsGrid .not-started .col-template-status,
.s-Budget-FieldTerrainsGrid .not-started .col-template-status,
.s-Budget-FundingTranchesGrid .not-started .col-template-status,
.s-Budget-FundingTranchesAllGrid .not-started .col-template-status,
.s-Budget-MajorDriversGrid .not-started .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .not-started .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .not-started .col-template-status,
.s-Budget-ExcelTemplatesGrid .not-started .col-template-status,
.s-Budget-OperatorBlocksAllGrid .not-started .col-template-status,
.s-Budget-OperatorBlocksGrid .not-started .col-template-status,
.s-Budget-ProductsGrid .not-started .col-template-status,
.s-Budget-RigsGrid .not-started .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .not-started .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .not-started .col-template-status,
.s-Budget-UAPCodesAllGrid .not-started .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .not-started .col-template-status,
.s-Budget-Operator_UAPCodesGrid .not-started .col-template-status,
.s-Budget-VesselsGrid .not-started .col-template-status,
.s-Budget-WellCostElementGroupsGrid .not-started .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .not-started .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .not-started .col-template-status,
.s-Budget-NonRigActivityTypesGrid .not-started .col-template-status,
.s-Budget-NonRigElementDetailsGrid .not-started .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .not-started .col-template-status,
.s-Budget-WellsAllGrid .not-started .col-template-status,
.s-Budget-WellsGrid .not-started .col-template-status,
.s-Budget-ProjectsGrid .not-started .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .not-started .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .not-started .col-template-status,
.s-Budget-CountryGrid .not-started .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .not-started .col-template-status,
.s-Budget-MonthsGrid .not-started .col-template-status,
.s-Budget-NationalityGrid .not-started .col-template-status,
.s-Budget-PadClustersGrid .not-started .col-template-status,
.s-Budget-PadCommunitiesGrid .not-started .col-template-status,
.s-Budget-SecurityRolesGrid .not-started .col-template-status,
.s-Budget-TemplatesGrid .not-started .col-template-status,
.s-Budget-TerrainsGrid .not-started .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .not-started .col-template-status,
.s-Budget-UAPCodeLevelsGrid .not-started .col-template-status,
.s-Budget-UAPCodeGroupsGrid .not-started .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .not-started .col-template-status,
.s-Budget-UnitsGrid .not-started .col-template-status,
.s-Budget-UnitsOfMeasureGrid .not-started .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .not-started .col-template-status,
.s-Budget-VesselActivitiesGrid .not-started .col-template-status,
.s-Budget-WellClassificationsGrid .not-started .col-template-status,
.s-Budget-YearsGrid .not-started .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .not-started .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .not-started .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .not-started .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .not-started .col-template-status,
.s-Budget-BudgetStatusesGrid .not-started .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .not-started .col-template-status,
.s-Budget-ButtonStatusesGrid .not-started .col-template-status,
.s-Budget-CallCircularStatusesGrid .not-started .col-template-status,
.s-Budget-CashCallStatusesGrid .not-started .col-template-status,
.s-Budget-ContractStatusesGrid .not-started .col-template-status,
.s-Budget-FieldStatusesGrid .not-started .col-template-status,
.s-Budget-FincomStatusesGrid .not-started .col-template-status,
.s-Budget-MacomReviewStatusesGrid .not-started .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .not-started .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .not-started .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .not-started .col-template-status,
.s-Budget-OperatorStatusesGrid .not-started .col-template-status,
.s-Budget-OwnershipStatusesGrid .not-started .col-template-status,
.s-Budget-PerformanceStatusesGrid .not-started .col-template-status,
.s-Budget-ProjectStatusGrid .not-started .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .not-started .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .not-started .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .not-started .col-template-status,
.s-Budget-TemplateStatusesGrid .not-started .col-template-status,
.s-Budget-UAPCodeStatusesGrid .not-started .col-template-status,
.s-Budget-AgreementTypesGrid .not-started .col-template-status,
.s-Budget-BriefTypesGrid .not-started .col-template-status,
.s-Budget-BudgetTypesGrid .not-started .col-template-status,
.s-Budget-MeetingGrid .not-started .col-template-status,
.s-Budget-MeetingAgendaGrid .not-started .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .not-started .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .not-started .col-template-status,
.s-Budget-MeetingDecisionGrid .not-started .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .not-started .col-template-status,
.s-Budget-MeetingLocationGrid .not-started .col-template-status,
.s-Budget-MeetingTypeGrid .not-started .col-template-status,
.s-Budget-FinancialDataGrid .not-started .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .not-started .col-template-status,
.s-Budget-CommitteeTypesGrid .not-started .col-template-status,
.s-Budget-ContractTypesGrid .not-started .col-template-status,
.s-Budget-EmploymentTypeGrid .not-started .col-template-status,
.s-Budget-ExpenditureTypesGrid .not-started .col-template-status,
.s-Budget-FundingTrancheTypesGrid .not-started .col-template-status,
.s-Budget-GasUtilizationTypesGrid .not-started .col-template-status,
.s-Budget-PadProgramTypesGrid .not-started .col-template-status,
.s-Budget-PadTypesGrid .not-started .col-template-status,
.s-Budget-ProductTypesGrid .not-started .col-template-status,
.s-Budget-ProjectTypesGrid .not-started .col-template-status,
.s-Budget-RigTypesGrid .not-started .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .not-started .col-template-status,
.s-Budget-UAPCodeTypesGrid .not-started .col-template-status,
.s-Budget-VesselTypesGrid .not-started .col-template-status,
.s-Budget-WellCostElementTypesGrid .not-started .col-template-status,
.s-Budget-WellTypesGrid .not-started .col-template-status,
.s-Budget-BudgetPreviewGrid .not-started .col-template-status,
.s-Budget-FINCOMAppendixIGrid .not-started .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .not-started .col-template-status,
.s-Budget-FINCOMCollationGrid .not-started .col-template-status,
.s-Budget-CallScheduleActionsGrid .not-started .col-template-status,
.s-CashCall-CashCallCalendarsGrid .not-started .col-template-status,
.s-CashCall-CashCallActivitiesGrid .not-started .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .not-started .col-template-status,
.s-CashCall-CashCallCircularsGrid .not-started .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .not-started .col-template-status,
.s-CashCall-CashCallCalendarsGrid .not-started .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .not-started .col-template-status,
.s-CashCall-CashCallBriefsGrid .not-started .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .not-started .col-template-status,
.s-CashCall-CashCallMandatesGrid .not-started .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .not-started .col-template-status,
.s-CashCall-CashCallPayablesGrid .not-started .col-template-status,
.s-CashCall-CashCallsGrid .not-started .col-template-status,
.s-CashCall-CashCallsAllGrid .not-started .col-template-status,
.s-CashCall-CashCallsEPGrid .not-started .col-template-status,
.s-CashCall-CashCallsBDGGrid .not-started .col-template-status,
.s-CashCall-CashCallSchedulesGrid .not-started .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .not-started .col-template-status,
.s-CashCall-CashCallRequestsGrid .not-started .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .not-started .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .not-started .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .not-started .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .not-started .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .not-started .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .not-started .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .not-started .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .not-started .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .not-started .col-template-status,
.s-CashCall-CashCallEndorsementGrid .not-started .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .not-started .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .not-started .col-template-status,
.s-CashCall-CashCallPayablesGrid .not-started .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .not-started .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .not-started .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .not-started .col-template-status,
.s-CashCall-CashCallMandatesGrid .not-started .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .not-started .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .not-started .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .not-started .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .not-started .col-template-status,
.s-Performance-PerformancesGrid .not-started .col-template-status,
.s-Performance-PerformancesAllGrid .not-started .col-template-status,
.s-Performance-PerformancesBDGGrid .not-started .col-template-status,
.s-Performance-PerformanceSchedulesGrid .not-started .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .not-started .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .not-started .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .not-started .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .not-started .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .not-started .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .not-started .col-template-status,
.s-Performance-PerformanceMonthlyGrid .not-started .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .not-started .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .not-started .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .not-started .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .not-started .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .not-started .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .not-started .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .not-started .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .not-started .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .not-started .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .not-started .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .not-started .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .not-started .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .not-started .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .not-started .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .not-started .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .not-started .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .not-started .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .not-started .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .not-started .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .not-started .col-template-status,
.s-Common-DashboardWidgetGrid .not-started .col-template-status,
.s-Administration-BcPproExceptionsGrid .not-started .col-template-status {
  background-color: #000000 !important;
}
.s-Administration-IssueTrackingIssuesGrid .closed .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .closed .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .closed .col-template-status,
.s-Administration-NotificationTemplatesGrid .closed .col-template-status,
.s-Administration-BudgetAutoTestGrid .closed .col-template-status,
.s-Administration-CashCallAutoTestGrid .closed .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .closed .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .closed .col-template-status,
.s-Administration-SiteNotificationsGrid .closed .col-template-status,
.s-Budget-AnnualBudgetsGrid .closed .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .closed .col-template-status,
.s-Budget-BudgetProfilesABGrid .closed .col-template-status,
.s-Budget-OperatorProposalsGrid .closed .col-template-status,
.s-Budget-MACOMApprovalsGrid .closed .col-template-status,
.s-Budget-OPCOMApprovalsGrid .closed .col-template-status,
.s-Budget-ApprovedBudgetsGrid .closed .col-template-status,
.s-Budget-FiveYearForecastsGrid .closed .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .closed .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .closed .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .closed .col-template-status,
.s-Budget-TECOMRecommendationsGrid .closed .col-template-status,
.s-Budget-BudgetProfilesGrid .closed .col-template-status,
.s-Budget-BudgetProfilesAllGrid .closed .col-template-status,
.s-Budget-BudgetsGrid .closed .col-template-status,
.s-Budget-CallCircularsGrid .closed .col-template-status,
.s-Budget-CallCircularsAllGrid .closed .col-template-status,
.s-Budget-CallSchedulesGrid .closed .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .closed .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .closed .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .closed .col-template-status,
.s-Budget-BudgetThresholdsGrid .closed .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .closed .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .closed .col-template-status,
.s-Budget-OperatorTemplatesGrid .closed .col-template-status,
.s-Budget-TemplateCommitteeGrid .closed .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .closed .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .closed .col-template-status,
.s-Budget-BTFundingTranchesGrid .closed .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .closed .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .closed .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .closed .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .closed .col-template-status,
.s-Budget-CallCircularsAllGrid .closed .col-template-status,
.s-Budget-CallCircularsGrid .closed .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .closed .col-template-status,
.s-Budget-CallSchedulesAllGrid .closed .col-template-status,
.s-Budget-CallSchedulesGrid .closed .col-template-status,
.s-Budget-SwotsGrid .closed .col-template-status,
.s-Budget-BudgetAssumptionsGrid .closed .col-template-status,
.s-Budget-SeismicActivitiesGrid .closed .col-template-status,
.s-Budget-ReservesGrid .closed .col-template-status,
.s-Budget-ProductionGrid .closed .col-template-status,
.s-Budget-GasUtilizationGrid .closed .col-template-status,
.s-Budget-RigSequencesGrid .closed .col-template-status,
.s-Budget-VesselSchedulesGrid .closed .col-template-status,
.s-Budget-HrSummariesGrid .closed .col-template-status,
.s-Budget-SharedCostsGrid .closed .col-template-status,
.s-Budget-SharedCostAllocationsGrid .closed .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .closed .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .closed .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .closed .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .closed .col-template-status,
.s-Budget-WellCostsGrid .closed .col-template-status,
.s-Budget-WellCostElementsGrid .closed .col-template-status,
.s-Budget-ProjectSummariesGrid .closed .col-template-status,
.s-Budget-PADWorkProgrammesGrid .closed .col-template-status,
.s-Budget-RigSequencesGrid .closed .col-template-status,
.s-Budget-BlocksGrid .closed .col-template-status,
.s-Budget-CashCallEquitySharesGrid .closed .col-template-status,
.s-Budget-FieldsGrid .closed .col-template-status,
.s-Budget-FieldTerrainsGrid .closed .col-template-status,
.s-Budget-FundingTranchesGrid .closed .col-template-status,
.s-Budget-FundingTranchesAllGrid .closed .col-template-status,
.s-Budget-MajorDriversGrid .closed .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .closed .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .closed .col-template-status,
.s-Budget-ExcelTemplatesGrid .closed .col-template-status,
.s-Budget-OperatorBlocksAllGrid .closed .col-template-status,
.s-Budget-OperatorBlocksGrid .closed .col-template-status,
.s-Budget-ProductsGrid .closed .col-template-status,
.s-Budget-RigsGrid .closed .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .closed .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .closed .col-template-status,
.s-Budget-UAPCodesAllGrid .closed .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .closed .col-template-status,
.s-Budget-Operator_UAPCodesGrid .closed .col-template-status,
.s-Budget-VesselsGrid .closed .col-template-status,
.s-Budget-WellCostElementGroupsGrid .closed .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .closed .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .closed .col-template-status,
.s-Budget-NonRigActivityTypesGrid .closed .col-template-status,
.s-Budget-NonRigElementDetailsGrid .closed .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .closed .col-template-status,
.s-Budget-WellsAllGrid .closed .col-template-status,
.s-Budget-WellsGrid .closed .col-template-status,
.s-Budget-ProjectsGrid .closed .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .closed .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .closed .col-template-status,
.s-Budget-CountryGrid .closed .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .closed .col-template-status,
.s-Budget-MonthsGrid .closed .col-template-status,
.s-Budget-NationalityGrid .closed .col-template-status,
.s-Budget-PadClustersGrid .closed .col-template-status,
.s-Budget-PadCommunitiesGrid .closed .col-template-status,
.s-Budget-SecurityRolesGrid .closed .col-template-status,
.s-Budget-TemplatesGrid .closed .col-template-status,
.s-Budget-TerrainsGrid .closed .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .closed .col-template-status,
.s-Budget-UAPCodeLevelsGrid .closed .col-template-status,
.s-Budget-UAPCodeGroupsGrid .closed .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .closed .col-template-status,
.s-Budget-UnitsGrid .closed .col-template-status,
.s-Budget-UnitsOfMeasureGrid .closed .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .closed .col-template-status,
.s-Budget-VesselActivitiesGrid .closed .col-template-status,
.s-Budget-WellClassificationsGrid .closed .col-template-status,
.s-Budget-YearsGrid .closed .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .closed .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .closed .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .closed .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .closed .col-template-status,
.s-Budget-BudgetStatusesGrid .closed .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .closed .col-template-status,
.s-Budget-ButtonStatusesGrid .closed .col-template-status,
.s-Budget-CallCircularStatusesGrid .closed .col-template-status,
.s-Budget-CashCallStatusesGrid .closed .col-template-status,
.s-Budget-ContractStatusesGrid .closed .col-template-status,
.s-Budget-FieldStatusesGrid .closed .col-template-status,
.s-Budget-FincomStatusesGrid .closed .col-template-status,
.s-Budget-MacomReviewStatusesGrid .closed .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .closed .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .closed .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .closed .col-template-status,
.s-Budget-OperatorStatusesGrid .closed .col-template-status,
.s-Budget-OwnershipStatusesGrid .closed .col-template-status,
.s-Budget-PerformanceStatusesGrid .closed .col-template-status,
.s-Budget-ProjectStatusGrid .closed .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .closed .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .closed .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .closed .col-template-status,
.s-Budget-TemplateStatusesGrid .closed .col-template-status,
.s-Budget-UAPCodeStatusesGrid .closed .col-template-status,
.s-Budget-AgreementTypesGrid .closed .col-template-status,
.s-Budget-BriefTypesGrid .closed .col-template-status,
.s-Budget-BudgetTypesGrid .closed .col-template-status,
.s-Budget-MeetingGrid .closed .col-template-status,
.s-Budget-MeetingAgendaGrid .closed .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .closed .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .closed .col-template-status,
.s-Budget-MeetingDecisionGrid .closed .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .closed .col-template-status,
.s-Budget-MeetingLocationGrid .closed .col-template-status,
.s-Budget-MeetingTypeGrid .closed .col-template-status,
.s-Budget-FinancialDataGrid .closed .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .closed .col-template-status,
.s-Budget-CommitteeTypesGrid .closed .col-template-status,
.s-Budget-ContractTypesGrid .closed .col-template-status,
.s-Budget-EmploymentTypeGrid .closed .col-template-status,
.s-Budget-ExpenditureTypesGrid .closed .col-template-status,
.s-Budget-FundingTrancheTypesGrid .closed .col-template-status,
.s-Budget-GasUtilizationTypesGrid .closed .col-template-status,
.s-Budget-PadProgramTypesGrid .closed .col-template-status,
.s-Budget-PadTypesGrid .closed .col-template-status,
.s-Budget-ProductTypesGrid .closed .col-template-status,
.s-Budget-ProjectTypesGrid .closed .col-template-status,
.s-Budget-RigTypesGrid .closed .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .closed .col-template-status,
.s-Budget-UAPCodeTypesGrid .closed .col-template-status,
.s-Budget-VesselTypesGrid .closed .col-template-status,
.s-Budget-WellCostElementTypesGrid .closed .col-template-status,
.s-Budget-WellTypesGrid .closed .col-template-status,
.s-Budget-BudgetPreviewGrid .closed .col-template-status,
.s-Budget-FINCOMAppendixIGrid .closed .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .closed .col-template-status,
.s-Budget-FINCOMCollationGrid .closed .col-template-status,
.s-Budget-CallScheduleActionsGrid .closed .col-template-status,
.s-CashCall-CashCallCalendarsGrid .closed .col-template-status,
.s-CashCall-CashCallActivitiesGrid .closed .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .closed .col-template-status,
.s-CashCall-CashCallCircularsGrid .closed .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .closed .col-template-status,
.s-CashCall-CashCallCalendarsGrid .closed .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .closed .col-template-status,
.s-CashCall-CashCallBriefsGrid .closed .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .closed .col-template-status,
.s-CashCall-CashCallMandatesGrid .closed .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .closed .col-template-status,
.s-CashCall-CashCallPayablesGrid .closed .col-template-status,
.s-CashCall-CashCallsGrid .closed .col-template-status,
.s-CashCall-CashCallsAllGrid .closed .col-template-status,
.s-CashCall-CashCallsEPGrid .closed .col-template-status,
.s-CashCall-CashCallsBDGGrid .closed .col-template-status,
.s-CashCall-CashCallSchedulesGrid .closed .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .closed .col-template-status,
.s-CashCall-CashCallRequestsGrid .closed .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .closed .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .closed .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .closed .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .closed .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .closed .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .closed .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .closed .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .closed .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .closed .col-template-status,
.s-CashCall-CashCallEndorsementGrid .closed .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .closed .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .closed .col-template-status,
.s-CashCall-CashCallPayablesGrid .closed .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .closed .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .closed .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .closed .col-template-status,
.s-CashCall-CashCallMandatesGrid .closed .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .closed .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .closed .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .closed .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .closed .col-template-status,
.s-Performance-PerformancesGrid .closed .col-template-status,
.s-Performance-PerformancesAllGrid .closed .col-template-status,
.s-Performance-PerformancesBDGGrid .closed .col-template-status,
.s-Performance-PerformanceSchedulesGrid .closed .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .closed .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .closed .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .closed .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .closed .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .closed .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .closed .col-template-status,
.s-Performance-PerformanceMonthlyGrid .closed .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .closed .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .closed .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .closed .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .closed .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .closed .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .closed .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .closed .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .closed .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .closed .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .closed .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .closed .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .closed .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .closed .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .closed .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .closed .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .closed .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .closed .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .closed .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .closed .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .closed .col-template-status,
.s-Common-DashboardWidgetGrid .closed .col-template-status,
.s-Administration-BcPproExceptionsGrid .closed .col-template-status {
  background-color: #FF0000 !important;
}
.s-Administration-IssueTrackingIssuesGrid .completed .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .completed .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .completed .col-template-status,
.s-Administration-NotificationTemplatesGrid .completed .col-template-status,
.s-Administration-BudgetAutoTestGrid .completed .col-template-status,
.s-Administration-CashCallAutoTestGrid .completed .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .completed .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .completed .col-template-status,
.s-Administration-SiteNotificationsGrid .completed .col-template-status,
.s-Budget-AnnualBudgetsGrid .completed .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .completed .col-template-status,
.s-Budget-BudgetProfilesABGrid .completed .col-template-status,
.s-Budget-OperatorProposalsGrid .completed .col-template-status,
.s-Budget-MACOMApprovalsGrid .completed .col-template-status,
.s-Budget-OPCOMApprovalsGrid .completed .col-template-status,
.s-Budget-ApprovedBudgetsGrid .completed .col-template-status,
.s-Budget-FiveYearForecastsGrid .completed .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .completed .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .completed .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .completed .col-template-status,
.s-Budget-TECOMRecommendationsGrid .completed .col-template-status,
.s-Budget-BudgetProfilesGrid .completed .col-template-status,
.s-Budget-BudgetProfilesAllGrid .completed .col-template-status,
.s-Budget-BudgetsGrid .completed .col-template-status,
.s-Budget-CallCircularsGrid .completed .col-template-status,
.s-Budget-CallCircularsAllGrid .completed .col-template-status,
.s-Budget-CallSchedulesGrid .completed .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .completed .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .completed .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .completed .col-template-status,
.s-Budget-BudgetThresholdsGrid .completed .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .completed .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .completed .col-template-status,
.s-Budget-OperatorTemplatesGrid .completed .col-template-status,
.s-Budget-TemplateCommitteeGrid .completed .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .completed .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .completed .col-template-status,
.s-Budget-BTFundingTranchesGrid .completed .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .completed .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .completed .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .completed .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .completed .col-template-status,
.s-Budget-CallCircularsAllGrid .completed .col-template-status,
.s-Budget-CallCircularsGrid .completed .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .completed .col-template-status,
.s-Budget-CallSchedulesAllGrid .completed .col-template-status,
.s-Budget-CallSchedulesGrid .completed .col-template-status,
.s-Budget-SwotsGrid .completed .col-template-status,
.s-Budget-BudgetAssumptionsGrid .completed .col-template-status,
.s-Budget-SeismicActivitiesGrid .completed .col-template-status,
.s-Budget-ReservesGrid .completed .col-template-status,
.s-Budget-ProductionGrid .completed .col-template-status,
.s-Budget-GasUtilizationGrid .completed .col-template-status,
.s-Budget-RigSequencesGrid .completed .col-template-status,
.s-Budget-VesselSchedulesGrid .completed .col-template-status,
.s-Budget-HrSummariesGrid .completed .col-template-status,
.s-Budget-SharedCostsGrid .completed .col-template-status,
.s-Budget-SharedCostAllocationsGrid .completed .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .completed .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .completed .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .completed .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .completed .col-template-status,
.s-Budget-WellCostsGrid .completed .col-template-status,
.s-Budget-WellCostElementsGrid .completed .col-template-status,
.s-Budget-ProjectSummariesGrid .completed .col-template-status,
.s-Budget-PADWorkProgrammesGrid .completed .col-template-status,
.s-Budget-RigSequencesGrid .completed .col-template-status,
.s-Budget-BlocksGrid .completed .col-template-status,
.s-Budget-CashCallEquitySharesGrid .completed .col-template-status,
.s-Budget-FieldsGrid .completed .col-template-status,
.s-Budget-FieldTerrainsGrid .completed .col-template-status,
.s-Budget-FundingTranchesGrid .completed .col-template-status,
.s-Budget-FundingTranchesAllGrid .completed .col-template-status,
.s-Budget-MajorDriversGrid .completed .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .completed .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .completed .col-template-status,
.s-Budget-ExcelTemplatesGrid .completed .col-template-status,
.s-Budget-OperatorBlocksAllGrid .completed .col-template-status,
.s-Budget-OperatorBlocksGrid .completed .col-template-status,
.s-Budget-ProductsGrid .completed .col-template-status,
.s-Budget-RigsGrid .completed .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .completed .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .completed .col-template-status,
.s-Budget-UAPCodesAllGrid .completed .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .completed .col-template-status,
.s-Budget-Operator_UAPCodesGrid .completed .col-template-status,
.s-Budget-VesselsGrid .completed .col-template-status,
.s-Budget-WellCostElementGroupsGrid .completed .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .completed .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .completed .col-template-status,
.s-Budget-NonRigActivityTypesGrid .completed .col-template-status,
.s-Budget-NonRigElementDetailsGrid .completed .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .completed .col-template-status,
.s-Budget-WellsAllGrid .completed .col-template-status,
.s-Budget-WellsGrid .completed .col-template-status,
.s-Budget-ProjectsGrid .completed .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .completed .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .completed .col-template-status,
.s-Budget-CountryGrid .completed .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .completed .col-template-status,
.s-Budget-MonthsGrid .completed .col-template-status,
.s-Budget-NationalityGrid .completed .col-template-status,
.s-Budget-PadClustersGrid .completed .col-template-status,
.s-Budget-PadCommunitiesGrid .completed .col-template-status,
.s-Budget-SecurityRolesGrid .completed .col-template-status,
.s-Budget-TemplatesGrid .completed .col-template-status,
.s-Budget-TerrainsGrid .completed .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .completed .col-template-status,
.s-Budget-UAPCodeLevelsGrid .completed .col-template-status,
.s-Budget-UAPCodeGroupsGrid .completed .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .completed .col-template-status,
.s-Budget-UnitsGrid .completed .col-template-status,
.s-Budget-UnitsOfMeasureGrid .completed .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .completed .col-template-status,
.s-Budget-VesselActivitiesGrid .completed .col-template-status,
.s-Budget-WellClassificationsGrid .completed .col-template-status,
.s-Budget-YearsGrid .completed .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .completed .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .completed .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .completed .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .completed .col-template-status,
.s-Budget-BudgetStatusesGrid .completed .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .completed .col-template-status,
.s-Budget-ButtonStatusesGrid .completed .col-template-status,
.s-Budget-CallCircularStatusesGrid .completed .col-template-status,
.s-Budget-CashCallStatusesGrid .completed .col-template-status,
.s-Budget-ContractStatusesGrid .completed .col-template-status,
.s-Budget-FieldStatusesGrid .completed .col-template-status,
.s-Budget-FincomStatusesGrid .completed .col-template-status,
.s-Budget-MacomReviewStatusesGrid .completed .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .completed .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .completed .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .completed .col-template-status,
.s-Budget-OperatorStatusesGrid .completed .col-template-status,
.s-Budget-OwnershipStatusesGrid .completed .col-template-status,
.s-Budget-PerformanceStatusesGrid .completed .col-template-status,
.s-Budget-ProjectStatusGrid .completed .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .completed .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .completed .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .completed .col-template-status,
.s-Budget-TemplateStatusesGrid .completed .col-template-status,
.s-Budget-UAPCodeStatusesGrid .completed .col-template-status,
.s-Budget-AgreementTypesGrid .completed .col-template-status,
.s-Budget-BriefTypesGrid .completed .col-template-status,
.s-Budget-BudgetTypesGrid .completed .col-template-status,
.s-Budget-MeetingGrid .completed .col-template-status,
.s-Budget-MeetingAgendaGrid .completed .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .completed .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .completed .col-template-status,
.s-Budget-MeetingDecisionGrid .completed .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .completed .col-template-status,
.s-Budget-MeetingLocationGrid .completed .col-template-status,
.s-Budget-MeetingTypeGrid .completed .col-template-status,
.s-Budget-FinancialDataGrid .completed .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .completed .col-template-status,
.s-Budget-CommitteeTypesGrid .completed .col-template-status,
.s-Budget-ContractTypesGrid .completed .col-template-status,
.s-Budget-EmploymentTypeGrid .completed .col-template-status,
.s-Budget-ExpenditureTypesGrid .completed .col-template-status,
.s-Budget-FundingTrancheTypesGrid .completed .col-template-status,
.s-Budget-GasUtilizationTypesGrid .completed .col-template-status,
.s-Budget-PadProgramTypesGrid .completed .col-template-status,
.s-Budget-PadTypesGrid .completed .col-template-status,
.s-Budget-ProductTypesGrid .completed .col-template-status,
.s-Budget-ProjectTypesGrid .completed .col-template-status,
.s-Budget-RigTypesGrid .completed .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .completed .col-template-status,
.s-Budget-UAPCodeTypesGrid .completed .col-template-status,
.s-Budget-VesselTypesGrid .completed .col-template-status,
.s-Budget-WellCostElementTypesGrid .completed .col-template-status,
.s-Budget-WellTypesGrid .completed .col-template-status,
.s-Budget-BudgetPreviewGrid .completed .col-template-status,
.s-Budget-FINCOMAppendixIGrid .completed .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .completed .col-template-status,
.s-Budget-FINCOMCollationGrid .completed .col-template-status,
.s-Budget-CallScheduleActionsGrid .completed .col-template-status,
.s-CashCall-CashCallCalendarsGrid .completed .col-template-status,
.s-CashCall-CashCallActivitiesGrid .completed .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .completed .col-template-status,
.s-CashCall-CashCallCircularsGrid .completed .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .completed .col-template-status,
.s-CashCall-CashCallCalendarsGrid .completed .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .completed .col-template-status,
.s-CashCall-CashCallBriefsGrid .completed .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .completed .col-template-status,
.s-CashCall-CashCallMandatesGrid .completed .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .completed .col-template-status,
.s-CashCall-CashCallPayablesGrid .completed .col-template-status,
.s-CashCall-CashCallsGrid .completed .col-template-status,
.s-CashCall-CashCallsAllGrid .completed .col-template-status,
.s-CashCall-CashCallsEPGrid .completed .col-template-status,
.s-CashCall-CashCallsBDGGrid .completed .col-template-status,
.s-CashCall-CashCallSchedulesGrid .completed .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .completed .col-template-status,
.s-CashCall-CashCallRequestsGrid .completed .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .completed .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .completed .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .completed .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .completed .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .completed .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .completed .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .completed .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .completed .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .completed .col-template-status,
.s-CashCall-CashCallEndorsementGrid .completed .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .completed .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .completed .col-template-status,
.s-CashCall-CashCallPayablesGrid .completed .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .completed .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .completed .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .completed .col-template-status,
.s-CashCall-CashCallMandatesGrid .completed .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .completed .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .completed .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .completed .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .completed .col-template-status,
.s-Performance-PerformancesGrid .completed .col-template-status,
.s-Performance-PerformancesAllGrid .completed .col-template-status,
.s-Performance-PerformancesBDGGrid .completed .col-template-status,
.s-Performance-PerformanceSchedulesGrid .completed .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .completed .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .completed .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .completed .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .completed .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .completed .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .completed .col-template-status,
.s-Performance-PerformanceMonthlyGrid .completed .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .completed .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .completed .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .completed .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .completed .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .completed .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .completed .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .completed .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .completed .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .completed .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .completed .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .completed .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .completed .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .completed .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .completed .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .completed .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .completed .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .completed .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .completed .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .completed .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .completed .col-template-status,
.s-Common-DashboardWidgetGrid .completed .col-template-status,
.s-Administration-BcPproExceptionsGrid .completed .col-template-status {
  background-color: #36D900 !important;
}
.s-Administration-IssueTrackingIssuesGrid .awaiting .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .awaiting .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .awaiting .col-template-status,
.s-Administration-NotificationTemplatesGrid .awaiting .col-template-status,
.s-Administration-BudgetAutoTestGrid .awaiting .col-template-status,
.s-Administration-CashCallAutoTestGrid .awaiting .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .awaiting .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .awaiting .col-template-status,
.s-Administration-SiteNotificationsGrid .awaiting .col-template-status,
.s-Budget-AnnualBudgetsGrid .awaiting .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .awaiting .col-template-status,
.s-Budget-BudgetProfilesABGrid .awaiting .col-template-status,
.s-Budget-OperatorProposalsGrid .awaiting .col-template-status,
.s-Budget-MACOMApprovalsGrid .awaiting .col-template-status,
.s-Budget-OPCOMApprovalsGrid .awaiting .col-template-status,
.s-Budget-ApprovedBudgetsGrid .awaiting .col-template-status,
.s-Budget-FiveYearForecastsGrid .awaiting .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .awaiting .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .awaiting .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .awaiting .col-template-status,
.s-Budget-TECOMRecommendationsGrid .awaiting .col-template-status,
.s-Budget-BudgetProfilesGrid .awaiting .col-template-status,
.s-Budget-BudgetProfilesAllGrid .awaiting .col-template-status,
.s-Budget-BudgetsGrid .awaiting .col-template-status,
.s-Budget-CallCircularsGrid .awaiting .col-template-status,
.s-Budget-CallCircularsAllGrid .awaiting .col-template-status,
.s-Budget-CallSchedulesGrid .awaiting .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .awaiting .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .awaiting .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .awaiting .col-template-status,
.s-Budget-BudgetThresholdsGrid .awaiting .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .awaiting .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .awaiting .col-template-status,
.s-Budget-OperatorTemplatesGrid .awaiting .col-template-status,
.s-Budget-TemplateCommitteeGrid .awaiting .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .awaiting .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .awaiting .col-template-status,
.s-Budget-BTFundingTranchesGrid .awaiting .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .awaiting .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .awaiting .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .awaiting .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .awaiting .col-template-status,
.s-Budget-CallCircularsAllGrid .awaiting .col-template-status,
.s-Budget-CallCircularsGrid .awaiting .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .awaiting .col-template-status,
.s-Budget-CallSchedulesAllGrid .awaiting .col-template-status,
.s-Budget-CallSchedulesGrid .awaiting .col-template-status,
.s-Budget-SwotsGrid .awaiting .col-template-status,
.s-Budget-BudgetAssumptionsGrid .awaiting .col-template-status,
.s-Budget-SeismicActivitiesGrid .awaiting .col-template-status,
.s-Budget-ReservesGrid .awaiting .col-template-status,
.s-Budget-ProductionGrid .awaiting .col-template-status,
.s-Budget-GasUtilizationGrid .awaiting .col-template-status,
.s-Budget-RigSequencesGrid .awaiting .col-template-status,
.s-Budget-VesselSchedulesGrid .awaiting .col-template-status,
.s-Budget-HrSummariesGrid .awaiting .col-template-status,
.s-Budget-SharedCostsGrid .awaiting .col-template-status,
.s-Budget-SharedCostAllocationsGrid .awaiting .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .awaiting .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .awaiting .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .awaiting .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .awaiting .col-template-status,
.s-Budget-WellCostsGrid .awaiting .col-template-status,
.s-Budget-WellCostElementsGrid .awaiting .col-template-status,
.s-Budget-ProjectSummariesGrid .awaiting .col-template-status,
.s-Budget-PADWorkProgrammesGrid .awaiting .col-template-status,
.s-Budget-RigSequencesGrid .awaiting .col-template-status,
.s-Budget-BlocksGrid .awaiting .col-template-status,
.s-Budget-CashCallEquitySharesGrid .awaiting .col-template-status,
.s-Budget-FieldsGrid .awaiting .col-template-status,
.s-Budget-FieldTerrainsGrid .awaiting .col-template-status,
.s-Budget-FundingTranchesGrid .awaiting .col-template-status,
.s-Budget-FundingTranchesAllGrid .awaiting .col-template-status,
.s-Budget-MajorDriversGrid .awaiting .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .awaiting .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .awaiting .col-template-status,
.s-Budget-ExcelTemplatesGrid .awaiting .col-template-status,
.s-Budget-OperatorBlocksAllGrid .awaiting .col-template-status,
.s-Budget-OperatorBlocksGrid .awaiting .col-template-status,
.s-Budget-ProductsGrid .awaiting .col-template-status,
.s-Budget-RigsGrid .awaiting .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .awaiting .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .awaiting .col-template-status,
.s-Budget-UAPCodesAllGrid .awaiting .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .awaiting .col-template-status,
.s-Budget-Operator_UAPCodesGrid .awaiting .col-template-status,
.s-Budget-VesselsGrid .awaiting .col-template-status,
.s-Budget-WellCostElementGroupsGrid .awaiting .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .awaiting .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .awaiting .col-template-status,
.s-Budget-NonRigActivityTypesGrid .awaiting .col-template-status,
.s-Budget-NonRigElementDetailsGrid .awaiting .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .awaiting .col-template-status,
.s-Budget-WellsAllGrid .awaiting .col-template-status,
.s-Budget-WellsGrid .awaiting .col-template-status,
.s-Budget-ProjectsGrid .awaiting .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .awaiting .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .awaiting .col-template-status,
.s-Budget-CountryGrid .awaiting .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .awaiting .col-template-status,
.s-Budget-MonthsGrid .awaiting .col-template-status,
.s-Budget-NationalityGrid .awaiting .col-template-status,
.s-Budget-PadClustersGrid .awaiting .col-template-status,
.s-Budget-PadCommunitiesGrid .awaiting .col-template-status,
.s-Budget-SecurityRolesGrid .awaiting .col-template-status,
.s-Budget-TemplatesGrid .awaiting .col-template-status,
.s-Budget-TerrainsGrid .awaiting .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .awaiting .col-template-status,
.s-Budget-UAPCodeLevelsGrid .awaiting .col-template-status,
.s-Budget-UAPCodeGroupsGrid .awaiting .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .awaiting .col-template-status,
.s-Budget-UnitsGrid .awaiting .col-template-status,
.s-Budget-UnitsOfMeasureGrid .awaiting .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .awaiting .col-template-status,
.s-Budget-VesselActivitiesGrid .awaiting .col-template-status,
.s-Budget-WellClassificationsGrid .awaiting .col-template-status,
.s-Budget-YearsGrid .awaiting .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .awaiting .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .awaiting .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .awaiting .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .awaiting .col-template-status,
.s-Budget-BudgetStatusesGrid .awaiting .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .awaiting .col-template-status,
.s-Budget-ButtonStatusesGrid .awaiting .col-template-status,
.s-Budget-CallCircularStatusesGrid .awaiting .col-template-status,
.s-Budget-CashCallStatusesGrid .awaiting .col-template-status,
.s-Budget-ContractStatusesGrid .awaiting .col-template-status,
.s-Budget-FieldStatusesGrid .awaiting .col-template-status,
.s-Budget-FincomStatusesGrid .awaiting .col-template-status,
.s-Budget-MacomReviewStatusesGrid .awaiting .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .awaiting .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .awaiting .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .awaiting .col-template-status,
.s-Budget-OperatorStatusesGrid .awaiting .col-template-status,
.s-Budget-OwnershipStatusesGrid .awaiting .col-template-status,
.s-Budget-PerformanceStatusesGrid .awaiting .col-template-status,
.s-Budget-ProjectStatusGrid .awaiting .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .awaiting .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .awaiting .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .awaiting .col-template-status,
.s-Budget-TemplateStatusesGrid .awaiting .col-template-status,
.s-Budget-UAPCodeStatusesGrid .awaiting .col-template-status,
.s-Budget-AgreementTypesGrid .awaiting .col-template-status,
.s-Budget-BriefTypesGrid .awaiting .col-template-status,
.s-Budget-BudgetTypesGrid .awaiting .col-template-status,
.s-Budget-MeetingGrid .awaiting .col-template-status,
.s-Budget-MeetingAgendaGrid .awaiting .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .awaiting .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .awaiting .col-template-status,
.s-Budget-MeetingDecisionGrid .awaiting .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .awaiting .col-template-status,
.s-Budget-MeetingLocationGrid .awaiting .col-template-status,
.s-Budget-MeetingTypeGrid .awaiting .col-template-status,
.s-Budget-FinancialDataGrid .awaiting .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .awaiting .col-template-status,
.s-Budget-CommitteeTypesGrid .awaiting .col-template-status,
.s-Budget-ContractTypesGrid .awaiting .col-template-status,
.s-Budget-EmploymentTypeGrid .awaiting .col-template-status,
.s-Budget-ExpenditureTypesGrid .awaiting .col-template-status,
.s-Budget-FundingTrancheTypesGrid .awaiting .col-template-status,
.s-Budget-GasUtilizationTypesGrid .awaiting .col-template-status,
.s-Budget-PadProgramTypesGrid .awaiting .col-template-status,
.s-Budget-PadTypesGrid .awaiting .col-template-status,
.s-Budget-ProductTypesGrid .awaiting .col-template-status,
.s-Budget-ProjectTypesGrid .awaiting .col-template-status,
.s-Budget-RigTypesGrid .awaiting .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .awaiting .col-template-status,
.s-Budget-UAPCodeTypesGrid .awaiting .col-template-status,
.s-Budget-VesselTypesGrid .awaiting .col-template-status,
.s-Budget-WellCostElementTypesGrid .awaiting .col-template-status,
.s-Budget-WellTypesGrid .awaiting .col-template-status,
.s-Budget-BudgetPreviewGrid .awaiting .col-template-status,
.s-Budget-FINCOMAppendixIGrid .awaiting .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .awaiting .col-template-status,
.s-Budget-FINCOMCollationGrid .awaiting .col-template-status,
.s-Budget-CallScheduleActionsGrid .awaiting .col-template-status,
.s-CashCall-CashCallCalendarsGrid .awaiting .col-template-status,
.s-CashCall-CashCallActivitiesGrid .awaiting .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .awaiting .col-template-status,
.s-CashCall-CashCallCircularsGrid .awaiting .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .awaiting .col-template-status,
.s-CashCall-CashCallCalendarsGrid .awaiting .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .awaiting .col-template-status,
.s-CashCall-CashCallBriefsGrid .awaiting .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .awaiting .col-template-status,
.s-CashCall-CashCallMandatesGrid .awaiting .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .awaiting .col-template-status,
.s-CashCall-CashCallPayablesGrid .awaiting .col-template-status,
.s-CashCall-CashCallsGrid .awaiting .col-template-status,
.s-CashCall-CashCallsAllGrid .awaiting .col-template-status,
.s-CashCall-CashCallsEPGrid .awaiting .col-template-status,
.s-CashCall-CashCallsBDGGrid .awaiting .col-template-status,
.s-CashCall-CashCallSchedulesGrid .awaiting .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .awaiting .col-template-status,
.s-CashCall-CashCallRequestsGrid .awaiting .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .awaiting .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .awaiting .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .awaiting .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .awaiting .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .awaiting .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .awaiting .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .awaiting .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .awaiting .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .awaiting .col-template-status,
.s-CashCall-CashCallEndorsementGrid .awaiting .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .awaiting .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .awaiting .col-template-status,
.s-CashCall-CashCallPayablesGrid .awaiting .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .awaiting .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .awaiting .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .awaiting .col-template-status,
.s-CashCall-CashCallMandatesGrid .awaiting .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .awaiting .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .awaiting .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .awaiting .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .awaiting .col-template-status,
.s-Performance-PerformancesGrid .awaiting .col-template-status,
.s-Performance-PerformancesAllGrid .awaiting .col-template-status,
.s-Performance-PerformancesBDGGrid .awaiting .col-template-status,
.s-Performance-PerformanceSchedulesGrid .awaiting .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .awaiting .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .awaiting .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .awaiting .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .awaiting .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .awaiting .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .awaiting .col-template-status,
.s-Performance-PerformanceMonthlyGrid .awaiting .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .awaiting .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .awaiting .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .awaiting .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .awaiting .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .awaiting .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .awaiting .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .awaiting .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .awaiting .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .awaiting .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .awaiting .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .awaiting .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .awaiting .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .awaiting .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .awaiting .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .awaiting .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .awaiting .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .awaiting .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .awaiting .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .awaiting .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .awaiting .col-template-status,
.s-Common-DashboardWidgetGrid .awaiting .col-template-status,
.s-Administration-BcPproExceptionsGrid .awaiting .col-template-status {
  background-color: #FF8000 !important;
}
.s-Administration-IssueTrackingIssuesGrid .frozen .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .frozen .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .frozen .col-template-status,
.s-Administration-NotificationTemplatesGrid .frozen .col-template-status,
.s-Administration-BudgetAutoTestGrid .frozen .col-template-status,
.s-Administration-CashCallAutoTestGrid .frozen .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .frozen .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .frozen .col-template-status,
.s-Administration-SiteNotificationsGrid .frozen .col-template-status,
.s-Budget-AnnualBudgetsGrid .frozen .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .frozen .col-template-status,
.s-Budget-BudgetProfilesABGrid .frozen .col-template-status,
.s-Budget-OperatorProposalsGrid .frozen .col-template-status,
.s-Budget-MACOMApprovalsGrid .frozen .col-template-status,
.s-Budget-OPCOMApprovalsGrid .frozen .col-template-status,
.s-Budget-ApprovedBudgetsGrid .frozen .col-template-status,
.s-Budget-FiveYearForecastsGrid .frozen .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .frozen .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .frozen .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .frozen .col-template-status,
.s-Budget-TECOMRecommendationsGrid .frozen .col-template-status,
.s-Budget-BudgetProfilesGrid .frozen .col-template-status,
.s-Budget-BudgetProfilesAllGrid .frozen .col-template-status,
.s-Budget-BudgetsGrid .frozen .col-template-status,
.s-Budget-CallCircularsGrid .frozen .col-template-status,
.s-Budget-CallCircularsAllGrid .frozen .col-template-status,
.s-Budget-CallSchedulesGrid .frozen .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .frozen .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .frozen .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .frozen .col-template-status,
.s-Budget-BudgetThresholdsGrid .frozen .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .frozen .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .frozen .col-template-status,
.s-Budget-OperatorTemplatesGrid .frozen .col-template-status,
.s-Budget-TemplateCommitteeGrid .frozen .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .frozen .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .frozen .col-template-status,
.s-Budget-BTFundingTranchesGrid .frozen .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .frozen .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .frozen .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .frozen .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .frozen .col-template-status,
.s-Budget-CallCircularsAllGrid .frozen .col-template-status,
.s-Budget-CallCircularsGrid .frozen .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .frozen .col-template-status,
.s-Budget-CallSchedulesAllGrid .frozen .col-template-status,
.s-Budget-CallSchedulesGrid .frozen .col-template-status,
.s-Budget-SwotsGrid .frozen .col-template-status,
.s-Budget-BudgetAssumptionsGrid .frozen .col-template-status,
.s-Budget-SeismicActivitiesGrid .frozen .col-template-status,
.s-Budget-ReservesGrid .frozen .col-template-status,
.s-Budget-ProductionGrid .frozen .col-template-status,
.s-Budget-GasUtilizationGrid .frozen .col-template-status,
.s-Budget-RigSequencesGrid .frozen .col-template-status,
.s-Budget-VesselSchedulesGrid .frozen .col-template-status,
.s-Budget-HrSummariesGrid .frozen .col-template-status,
.s-Budget-SharedCostsGrid .frozen .col-template-status,
.s-Budget-SharedCostAllocationsGrid .frozen .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .frozen .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .frozen .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .frozen .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .frozen .col-template-status,
.s-Budget-WellCostsGrid .frozen .col-template-status,
.s-Budget-WellCostElementsGrid .frozen .col-template-status,
.s-Budget-ProjectSummariesGrid .frozen .col-template-status,
.s-Budget-PADWorkProgrammesGrid .frozen .col-template-status,
.s-Budget-RigSequencesGrid .frozen .col-template-status,
.s-Budget-BlocksGrid .frozen .col-template-status,
.s-Budget-CashCallEquitySharesGrid .frozen .col-template-status,
.s-Budget-FieldsGrid .frozen .col-template-status,
.s-Budget-FieldTerrainsGrid .frozen .col-template-status,
.s-Budget-FundingTranchesGrid .frozen .col-template-status,
.s-Budget-FundingTranchesAllGrid .frozen .col-template-status,
.s-Budget-MajorDriversGrid .frozen .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .frozen .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .frozen .col-template-status,
.s-Budget-ExcelTemplatesGrid .frozen .col-template-status,
.s-Budget-OperatorBlocksAllGrid .frozen .col-template-status,
.s-Budget-OperatorBlocksGrid .frozen .col-template-status,
.s-Budget-ProductsGrid .frozen .col-template-status,
.s-Budget-RigsGrid .frozen .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .frozen .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .frozen .col-template-status,
.s-Budget-UAPCodesAllGrid .frozen .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .frozen .col-template-status,
.s-Budget-Operator_UAPCodesGrid .frozen .col-template-status,
.s-Budget-VesselsGrid .frozen .col-template-status,
.s-Budget-WellCostElementGroupsGrid .frozen .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .frozen .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .frozen .col-template-status,
.s-Budget-NonRigActivityTypesGrid .frozen .col-template-status,
.s-Budget-NonRigElementDetailsGrid .frozen .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .frozen .col-template-status,
.s-Budget-WellsAllGrid .frozen .col-template-status,
.s-Budget-WellsGrid .frozen .col-template-status,
.s-Budget-ProjectsGrid .frozen .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .frozen .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .frozen .col-template-status,
.s-Budget-CountryGrid .frozen .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .frozen .col-template-status,
.s-Budget-MonthsGrid .frozen .col-template-status,
.s-Budget-NationalityGrid .frozen .col-template-status,
.s-Budget-PadClustersGrid .frozen .col-template-status,
.s-Budget-PadCommunitiesGrid .frozen .col-template-status,
.s-Budget-SecurityRolesGrid .frozen .col-template-status,
.s-Budget-TemplatesGrid .frozen .col-template-status,
.s-Budget-TerrainsGrid .frozen .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .frozen .col-template-status,
.s-Budget-UAPCodeLevelsGrid .frozen .col-template-status,
.s-Budget-UAPCodeGroupsGrid .frozen .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .frozen .col-template-status,
.s-Budget-UnitsGrid .frozen .col-template-status,
.s-Budget-UnitsOfMeasureGrid .frozen .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .frozen .col-template-status,
.s-Budget-VesselActivitiesGrid .frozen .col-template-status,
.s-Budget-WellClassificationsGrid .frozen .col-template-status,
.s-Budget-YearsGrid .frozen .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .frozen .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .frozen .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .frozen .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .frozen .col-template-status,
.s-Budget-BudgetStatusesGrid .frozen .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .frozen .col-template-status,
.s-Budget-ButtonStatusesGrid .frozen .col-template-status,
.s-Budget-CallCircularStatusesGrid .frozen .col-template-status,
.s-Budget-CashCallStatusesGrid .frozen .col-template-status,
.s-Budget-ContractStatusesGrid .frozen .col-template-status,
.s-Budget-FieldStatusesGrid .frozen .col-template-status,
.s-Budget-FincomStatusesGrid .frozen .col-template-status,
.s-Budget-MacomReviewStatusesGrid .frozen .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .frozen .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .frozen .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .frozen .col-template-status,
.s-Budget-OperatorStatusesGrid .frozen .col-template-status,
.s-Budget-OwnershipStatusesGrid .frozen .col-template-status,
.s-Budget-PerformanceStatusesGrid .frozen .col-template-status,
.s-Budget-ProjectStatusGrid .frozen .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .frozen .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .frozen .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .frozen .col-template-status,
.s-Budget-TemplateStatusesGrid .frozen .col-template-status,
.s-Budget-UAPCodeStatusesGrid .frozen .col-template-status,
.s-Budget-AgreementTypesGrid .frozen .col-template-status,
.s-Budget-BriefTypesGrid .frozen .col-template-status,
.s-Budget-BudgetTypesGrid .frozen .col-template-status,
.s-Budget-MeetingGrid .frozen .col-template-status,
.s-Budget-MeetingAgendaGrid .frozen .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .frozen .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .frozen .col-template-status,
.s-Budget-MeetingDecisionGrid .frozen .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .frozen .col-template-status,
.s-Budget-MeetingLocationGrid .frozen .col-template-status,
.s-Budget-MeetingTypeGrid .frozen .col-template-status,
.s-Budget-FinancialDataGrid .frozen .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .frozen .col-template-status,
.s-Budget-CommitteeTypesGrid .frozen .col-template-status,
.s-Budget-ContractTypesGrid .frozen .col-template-status,
.s-Budget-EmploymentTypeGrid .frozen .col-template-status,
.s-Budget-ExpenditureTypesGrid .frozen .col-template-status,
.s-Budget-FundingTrancheTypesGrid .frozen .col-template-status,
.s-Budget-GasUtilizationTypesGrid .frozen .col-template-status,
.s-Budget-PadProgramTypesGrid .frozen .col-template-status,
.s-Budget-PadTypesGrid .frozen .col-template-status,
.s-Budget-ProductTypesGrid .frozen .col-template-status,
.s-Budget-ProjectTypesGrid .frozen .col-template-status,
.s-Budget-RigTypesGrid .frozen .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .frozen .col-template-status,
.s-Budget-UAPCodeTypesGrid .frozen .col-template-status,
.s-Budget-VesselTypesGrid .frozen .col-template-status,
.s-Budget-WellCostElementTypesGrid .frozen .col-template-status,
.s-Budget-WellTypesGrid .frozen .col-template-status,
.s-Budget-BudgetPreviewGrid .frozen .col-template-status,
.s-Budget-FINCOMAppendixIGrid .frozen .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .frozen .col-template-status,
.s-Budget-FINCOMCollationGrid .frozen .col-template-status,
.s-Budget-CallScheduleActionsGrid .frozen .col-template-status,
.s-CashCall-CashCallCalendarsGrid .frozen .col-template-status,
.s-CashCall-CashCallActivitiesGrid .frozen .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .frozen .col-template-status,
.s-CashCall-CashCallCircularsGrid .frozen .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .frozen .col-template-status,
.s-CashCall-CashCallCalendarsGrid .frozen .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .frozen .col-template-status,
.s-CashCall-CashCallBriefsGrid .frozen .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .frozen .col-template-status,
.s-CashCall-CashCallMandatesGrid .frozen .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .frozen .col-template-status,
.s-CashCall-CashCallPayablesGrid .frozen .col-template-status,
.s-CashCall-CashCallsGrid .frozen .col-template-status,
.s-CashCall-CashCallsAllGrid .frozen .col-template-status,
.s-CashCall-CashCallsEPGrid .frozen .col-template-status,
.s-CashCall-CashCallsBDGGrid .frozen .col-template-status,
.s-CashCall-CashCallSchedulesGrid .frozen .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .frozen .col-template-status,
.s-CashCall-CashCallRequestsGrid .frozen .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .frozen .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .frozen .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .frozen .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .frozen .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .frozen .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .frozen .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .frozen .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .frozen .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .frozen .col-template-status,
.s-CashCall-CashCallEndorsementGrid .frozen .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .frozen .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .frozen .col-template-status,
.s-CashCall-CashCallPayablesGrid .frozen .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .frozen .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .frozen .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .frozen .col-template-status,
.s-CashCall-CashCallMandatesGrid .frozen .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .frozen .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .frozen .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .frozen .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .frozen .col-template-status,
.s-Performance-PerformancesGrid .frozen .col-template-status,
.s-Performance-PerformancesAllGrid .frozen .col-template-status,
.s-Performance-PerformancesBDGGrid .frozen .col-template-status,
.s-Performance-PerformanceSchedulesGrid .frozen .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .frozen .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .frozen .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .frozen .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .frozen .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .frozen .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .frozen .col-template-status,
.s-Performance-PerformanceMonthlyGrid .frozen .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .frozen .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .frozen .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .frozen .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .frozen .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .frozen .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .frozen .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .frozen .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .frozen .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .frozen .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .frozen .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .frozen .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .frozen .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .frozen .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .frozen .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .frozen .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .frozen .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .frozen .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .frozen .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .frozen .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .frozen .col-template-status,
.s-Common-DashboardWidgetGrid .frozen .col-template-status,
.s-Administration-BcPproExceptionsGrid .frozen .col-template-status {
  background-color: #87ceeb !important;
}
.s-Administration-IssueTrackingIssuesGrid .awaiting-approval .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .awaiting-approval .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .awaiting-approval .col-template-status,
.s-Administration-NotificationTemplatesGrid .awaiting-approval .col-template-status,
.s-Administration-BudgetAutoTestGrid .awaiting-approval .col-template-status,
.s-Administration-CashCallAutoTestGrid .awaiting-approval .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .awaiting-approval .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .awaiting-approval .col-template-status,
.s-Administration-SiteNotificationsGrid .awaiting-approval .col-template-status,
.s-Budget-AnnualBudgetsGrid .awaiting-approval .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .awaiting-approval .col-template-status,
.s-Budget-BudgetProfilesABGrid .awaiting-approval .col-template-status,
.s-Budget-OperatorProposalsGrid .awaiting-approval .col-template-status,
.s-Budget-MACOMApprovalsGrid .awaiting-approval .col-template-status,
.s-Budget-OPCOMApprovalsGrid .awaiting-approval .col-template-status,
.s-Budget-ApprovedBudgetsGrid .awaiting-approval .col-template-status,
.s-Budget-FiveYearForecastsGrid .awaiting-approval .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .awaiting-approval .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .awaiting-approval .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .awaiting-approval .col-template-status,
.s-Budget-TECOMRecommendationsGrid .awaiting-approval .col-template-status,
.s-Budget-BudgetProfilesGrid .awaiting-approval .col-template-status,
.s-Budget-BudgetProfilesAllGrid .awaiting-approval .col-template-status,
.s-Budget-BudgetsGrid .awaiting-approval .col-template-status,
.s-Budget-CallCircularsGrid .awaiting-approval .col-template-status,
.s-Budget-CallCircularsAllGrid .awaiting-approval .col-template-status,
.s-Budget-CallSchedulesGrid .awaiting-approval .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .awaiting-approval .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .awaiting-approval .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .awaiting-approval .col-template-status,
.s-Budget-BudgetThresholdsGrid .awaiting-approval .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .awaiting-approval .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .awaiting-approval .col-template-status,
.s-Budget-OperatorTemplatesGrid .awaiting-approval .col-template-status,
.s-Budget-TemplateCommitteeGrid .awaiting-approval .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .awaiting-approval .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .awaiting-approval .col-template-status,
.s-Budget-BTFundingTranchesGrid .awaiting-approval .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .awaiting-approval .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .awaiting-approval .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .awaiting-approval .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .awaiting-approval .col-template-status,
.s-Budget-CallCircularsAllGrid .awaiting-approval .col-template-status,
.s-Budget-CallCircularsGrid .awaiting-approval .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .awaiting-approval .col-template-status,
.s-Budget-CallSchedulesAllGrid .awaiting-approval .col-template-status,
.s-Budget-CallSchedulesGrid .awaiting-approval .col-template-status,
.s-Budget-SwotsGrid .awaiting-approval .col-template-status,
.s-Budget-BudgetAssumptionsGrid .awaiting-approval .col-template-status,
.s-Budget-SeismicActivitiesGrid .awaiting-approval .col-template-status,
.s-Budget-ReservesGrid .awaiting-approval .col-template-status,
.s-Budget-ProductionGrid .awaiting-approval .col-template-status,
.s-Budget-GasUtilizationGrid .awaiting-approval .col-template-status,
.s-Budget-RigSequencesGrid .awaiting-approval .col-template-status,
.s-Budget-VesselSchedulesGrid .awaiting-approval .col-template-status,
.s-Budget-HrSummariesGrid .awaiting-approval .col-template-status,
.s-Budget-SharedCostsGrid .awaiting-approval .col-template-status,
.s-Budget-SharedCostAllocationsGrid .awaiting-approval .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .awaiting-approval .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .awaiting-approval .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .awaiting-approval .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .awaiting-approval .col-template-status,
.s-Budget-WellCostsGrid .awaiting-approval .col-template-status,
.s-Budget-WellCostElementsGrid .awaiting-approval .col-template-status,
.s-Budget-ProjectSummariesGrid .awaiting-approval .col-template-status,
.s-Budget-PADWorkProgrammesGrid .awaiting-approval .col-template-status,
.s-Budget-RigSequencesGrid .awaiting-approval .col-template-status,
.s-Budget-BlocksGrid .awaiting-approval .col-template-status,
.s-Budget-CashCallEquitySharesGrid .awaiting-approval .col-template-status,
.s-Budget-FieldsGrid .awaiting-approval .col-template-status,
.s-Budget-FieldTerrainsGrid .awaiting-approval .col-template-status,
.s-Budget-FundingTranchesGrid .awaiting-approval .col-template-status,
.s-Budget-FundingTranchesAllGrid .awaiting-approval .col-template-status,
.s-Budget-MajorDriversGrid .awaiting-approval .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .awaiting-approval .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .awaiting-approval .col-template-status,
.s-Budget-ExcelTemplatesGrid .awaiting-approval .col-template-status,
.s-Budget-OperatorBlocksAllGrid .awaiting-approval .col-template-status,
.s-Budget-OperatorBlocksGrid .awaiting-approval .col-template-status,
.s-Budget-ProductsGrid .awaiting-approval .col-template-status,
.s-Budget-RigsGrid .awaiting-approval .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .awaiting-approval .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .awaiting-approval .col-template-status,
.s-Budget-UAPCodesAllGrid .awaiting-approval .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .awaiting-approval .col-template-status,
.s-Budget-Operator_UAPCodesGrid .awaiting-approval .col-template-status,
.s-Budget-VesselsGrid .awaiting-approval .col-template-status,
.s-Budget-WellCostElementGroupsGrid .awaiting-approval .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .awaiting-approval .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .awaiting-approval .col-template-status,
.s-Budget-NonRigActivityTypesGrid .awaiting-approval .col-template-status,
.s-Budget-NonRigElementDetailsGrid .awaiting-approval .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .awaiting-approval .col-template-status,
.s-Budget-WellsAllGrid .awaiting-approval .col-template-status,
.s-Budget-WellsGrid .awaiting-approval .col-template-status,
.s-Budget-ProjectsGrid .awaiting-approval .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .awaiting-approval .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .awaiting-approval .col-template-status,
.s-Budget-CountryGrid .awaiting-approval .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .awaiting-approval .col-template-status,
.s-Budget-MonthsGrid .awaiting-approval .col-template-status,
.s-Budget-NationalityGrid .awaiting-approval .col-template-status,
.s-Budget-PadClustersGrid .awaiting-approval .col-template-status,
.s-Budget-PadCommunitiesGrid .awaiting-approval .col-template-status,
.s-Budget-SecurityRolesGrid .awaiting-approval .col-template-status,
.s-Budget-TemplatesGrid .awaiting-approval .col-template-status,
.s-Budget-TerrainsGrid .awaiting-approval .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .awaiting-approval .col-template-status,
.s-Budget-UAPCodeLevelsGrid .awaiting-approval .col-template-status,
.s-Budget-UAPCodeGroupsGrid .awaiting-approval .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .awaiting-approval .col-template-status,
.s-Budget-UnitsGrid .awaiting-approval .col-template-status,
.s-Budget-UnitsOfMeasureGrid .awaiting-approval .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .awaiting-approval .col-template-status,
.s-Budget-VesselActivitiesGrid .awaiting-approval .col-template-status,
.s-Budget-WellClassificationsGrid .awaiting-approval .col-template-status,
.s-Budget-YearsGrid .awaiting-approval .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .awaiting-approval .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .awaiting-approval .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .awaiting-approval .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .awaiting-approval .col-template-status,
.s-Budget-BudgetStatusesGrid .awaiting-approval .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .awaiting-approval .col-template-status,
.s-Budget-ButtonStatusesGrid .awaiting-approval .col-template-status,
.s-Budget-CallCircularStatusesGrid .awaiting-approval .col-template-status,
.s-Budget-CashCallStatusesGrid .awaiting-approval .col-template-status,
.s-Budget-ContractStatusesGrid .awaiting-approval .col-template-status,
.s-Budget-FieldStatusesGrid .awaiting-approval .col-template-status,
.s-Budget-FincomStatusesGrid .awaiting-approval .col-template-status,
.s-Budget-MacomReviewStatusesGrid .awaiting-approval .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .awaiting-approval .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .awaiting-approval .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .awaiting-approval .col-template-status,
.s-Budget-OperatorStatusesGrid .awaiting-approval .col-template-status,
.s-Budget-OwnershipStatusesGrid .awaiting-approval .col-template-status,
.s-Budget-PerformanceStatusesGrid .awaiting-approval .col-template-status,
.s-Budget-ProjectStatusGrid .awaiting-approval .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .awaiting-approval .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .awaiting-approval .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .awaiting-approval .col-template-status,
.s-Budget-TemplateStatusesGrid .awaiting-approval .col-template-status,
.s-Budget-UAPCodeStatusesGrid .awaiting-approval .col-template-status,
.s-Budget-AgreementTypesGrid .awaiting-approval .col-template-status,
.s-Budget-BriefTypesGrid .awaiting-approval .col-template-status,
.s-Budget-BudgetTypesGrid .awaiting-approval .col-template-status,
.s-Budget-MeetingGrid .awaiting-approval .col-template-status,
.s-Budget-MeetingAgendaGrid .awaiting-approval .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .awaiting-approval .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .awaiting-approval .col-template-status,
.s-Budget-MeetingDecisionGrid .awaiting-approval .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .awaiting-approval .col-template-status,
.s-Budget-MeetingLocationGrid .awaiting-approval .col-template-status,
.s-Budget-MeetingTypeGrid .awaiting-approval .col-template-status,
.s-Budget-FinancialDataGrid .awaiting-approval .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .awaiting-approval .col-template-status,
.s-Budget-CommitteeTypesGrid .awaiting-approval .col-template-status,
.s-Budget-ContractTypesGrid .awaiting-approval .col-template-status,
.s-Budget-EmploymentTypeGrid .awaiting-approval .col-template-status,
.s-Budget-ExpenditureTypesGrid .awaiting-approval .col-template-status,
.s-Budget-FundingTrancheTypesGrid .awaiting-approval .col-template-status,
.s-Budget-GasUtilizationTypesGrid .awaiting-approval .col-template-status,
.s-Budget-PadProgramTypesGrid .awaiting-approval .col-template-status,
.s-Budget-PadTypesGrid .awaiting-approval .col-template-status,
.s-Budget-ProductTypesGrid .awaiting-approval .col-template-status,
.s-Budget-ProjectTypesGrid .awaiting-approval .col-template-status,
.s-Budget-RigTypesGrid .awaiting-approval .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .awaiting-approval .col-template-status,
.s-Budget-UAPCodeTypesGrid .awaiting-approval .col-template-status,
.s-Budget-VesselTypesGrid .awaiting-approval .col-template-status,
.s-Budget-WellCostElementTypesGrid .awaiting-approval .col-template-status,
.s-Budget-WellTypesGrid .awaiting-approval .col-template-status,
.s-Budget-BudgetPreviewGrid .awaiting-approval .col-template-status,
.s-Budget-FINCOMAppendixIGrid .awaiting-approval .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .awaiting-approval .col-template-status,
.s-Budget-FINCOMCollationGrid .awaiting-approval .col-template-status,
.s-Budget-CallScheduleActionsGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallCalendarsGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallActivitiesGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallCircularsGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallCalendarsGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallBriefsGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallMandatesGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallPayablesGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallsGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallsAllGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallsEPGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallsBDGGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallSchedulesGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallRequestsGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallEndorsementGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallPayablesGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallMandatesGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .awaiting-approval .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .awaiting-approval .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .awaiting-approval .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .awaiting-approval .col-template-status,
.s-Performance-PerformancesGrid .awaiting-approval .col-template-status,
.s-Performance-PerformancesAllGrid .awaiting-approval .col-template-status,
.s-Performance-PerformancesBDGGrid .awaiting-approval .col-template-status,
.s-Performance-PerformanceSchedulesGrid .awaiting-approval .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .awaiting-approval .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .awaiting-approval .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .awaiting-approval .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .awaiting-approval .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .awaiting-approval .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .awaiting-approval .col-template-status,
.s-Performance-PerformanceMonthlyGrid .awaiting-approval .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .awaiting-approval .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .awaiting-approval .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .awaiting-approval .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .awaiting-approval .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .awaiting-approval .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .awaiting-approval .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .awaiting-approval .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .awaiting-approval .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .awaiting-approval .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .awaiting-approval .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .awaiting-approval .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .awaiting-approval .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .awaiting-approval .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .awaiting-approval .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .awaiting-approval .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .awaiting-approval .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .awaiting-approval .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .awaiting-approval .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .awaiting-approval .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .awaiting-approval .col-template-status,
.s-Common-DashboardWidgetGrid .awaiting-approval .col-template-status,
.s-Administration-BcPproExceptionsGrid .awaiting-approval .col-template-status {
  background-color: #FF8000 !important;
}
.s-Administration-IssueTrackingIssuesGrid .approved .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .approved .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .approved .col-template-status,
.s-Administration-NotificationTemplatesGrid .approved .col-template-status,
.s-Administration-BudgetAutoTestGrid .approved .col-template-status,
.s-Administration-CashCallAutoTestGrid .approved .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .approved .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .approved .col-template-status,
.s-Administration-SiteNotificationsGrid .approved .col-template-status,
.s-Budget-AnnualBudgetsGrid .approved .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .approved .col-template-status,
.s-Budget-BudgetProfilesABGrid .approved .col-template-status,
.s-Budget-OperatorProposalsGrid .approved .col-template-status,
.s-Budget-MACOMApprovalsGrid .approved .col-template-status,
.s-Budget-OPCOMApprovalsGrid .approved .col-template-status,
.s-Budget-ApprovedBudgetsGrid .approved .col-template-status,
.s-Budget-FiveYearForecastsGrid .approved .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .approved .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .approved .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .approved .col-template-status,
.s-Budget-TECOMRecommendationsGrid .approved .col-template-status,
.s-Budget-BudgetProfilesGrid .approved .col-template-status,
.s-Budget-BudgetProfilesAllGrid .approved .col-template-status,
.s-Budget-BudgetsGrid .approved .col-template-status,
.s-Budget-CallCircularsGrid .approved .col-template-status,
.s-Budget-CallCircularsAllGrid .approved .col-template-status,
.s-Budget-CallSchedulesGrid .approved .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .approved .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .approved .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .approved .col-template-status,
.s-Budget-BudgetThresholdsGrid .approved .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .approved .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .approved .col-template-status,
.s-Budget-OperatorTemplatesGrid .approved .col-template-status,
.s-Budget-TemplateCommitteeGrid .approved .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .approved .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .approved .col-template-status,
.s-Budget-BTFundingTranchesGrid .approved .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .approved .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .approved .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .approved .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .approved .col-template-status,
.s-Budget-CallCircularsAllGrid .approved .col-template-status,
.s-Budget-CallCircularsGrid .approved .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .approved .col-template-status,
.s-Budget-CallSchedulesAllGrid .approved .col-template-status,
.s-Budget-CallSchedulesGrid .approved .col-template-status,
.s-Budget-SwotsGrid .approved .col-template-status,
.s-Budget-BudgetAssumptionsGrid .approved .col-template-status,
.s-Budget-SeismicActivitiesGrid .approved .col-template-status,
.s-Budget-ReservesGrid .approved .col-template-status,
.s-Budget-ProductionGrid .approved .col-template-status,
.s-Budget-GasUtilizationGrid .approved .col-template-status,
.s-Budget-RigSequencesGrid .approved .col-template-status,
.s-Budget-VesselSchedulesGrid .approved .col-template-status,
.s-Budget-HrSummariesGrid .approved .col-template-status,
.s-Budget-SharedCostsGrid .approved .col-template-status,
.s-Budget-SharedCostAllocationsGrid .approved .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .approved .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .approved .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .approved .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .approved .col-template-status,
.s-Budget-WellCostsGrid .approved .col-template-status,
.s-Budget-WellCostElementsGrid .approved .col-template-status,
.s-Budget-ProjectSummariesGrid .approved .col-template-status,
.s-Budget-PADWorkProgrammesGrid .approved .col-template-status,
.s-Budget-RigSequencesGrid .approved .col-template-status,
.s-Budget-BlocksGrid .approved .col-template-status,
.s-Budget-CashCallEquitySharesGrid .approved .col-template-status,
.s-Budget-FieldsGrid .approved .col-template-status,
.s-Budget-FieldTerrainsGrid .approved .col-template-status,
.s-Budget-FundingTranchesGrid .approved .col-template-status,
.s-Budget-FundingTranchesAllGrid .approved .col-template-status,
.s-Budget-MajorDriversGrid .approved .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .approved .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .approved .col-template-status,
.s-Budget-ExcelTemplatesGrid .approved .col-template-status,
.s-Budget-OperatorBlocksAllGrid .approved .col-template-status,
.s-Budget-OperatorBlocksGrid .approved .col-template-status,
.s-Budget-ProductsGrid .approved .col-template-status,
.s-Budget-RigsGrid .approved .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .approved .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .approved .col-template-status,
.s-Budget-UAPCodesAllGrid .approved .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .approved .col-template-status,
.s-Budget-Operator_UAPCodesGrid .approved .col-template-status,
.s-Budget-VesselsGrid .approved .col-template-status,
.s-Budget-WellCostElementGroupsGrid .approved .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .approved .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .approved .col-template-status,
.s-Budget-NonRigActivityTypesGrid .approved .col-template-status,
.s-Budget-NonRigElementDetailsGrid .approved .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .approved .col-template-status,
.s-Budget-WellsAllGrid .approved .col-template-status,
.s-Budget-WellsGrid .approved .col-template-status,
.s-Budget-ProjectsGrid .approved .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .approved .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .approved .col-template-status,
.s-Budget-CountryGrid .approved .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .approved .col-template-status,
.s-Budget-MonthsGrid .approved .col-template-status,
.s-Budget-NationalityGrid .approved .col-template-status,
.s-Budget-PadClustersGrid .approved .col-template-status,
.s-Budget-PadCommunitiesGrid .approved .col-template-status,
.s-Budget-SecurityRolesGrid .approved .col-template-status,
.s-Budget-TemplatesGrid .approved .col-template-status,
.s-Budget-TerrainsGrid .approved .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .approved .col-template-status,
.s-Budget-UAPCodeLevelsGrid .approved .col-template-status,
.s-Budget-UAPCodeGroupsGrid .approved .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .approved .col-template-status,
.s-Budget-UnitsGrid .approved .col-template-status,
.s-Budget-UnitsOfMeasureGrid .approved .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .approved .col-template-status,
.s-Budget-VesselActivitiesGrid .approved .col-template-status,
.s-Budget-WellClassificationsGrid .approved .col-template-status,
.s-Budget-YearsGrid .approved .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .approved .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .approved .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .approved .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .approved .col-template-status,
.s-Budget-BudgetStatusesGrid .approved .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .approved .col-template-status,
.s-Budget-ButtonStatusesGrid .approved .col-template-status,
.s-Budget-CallCircularStatusesGrid .approved .col-template-status,
.s-Budget-CashCallStatusesGrid .approved .col-template-status,
.s-Budget-ContractStatusesGrid .approved .col-template-status,
.s-Budget-FieldStatusesGrid .approved .col-template-status,
.s-Budget-FincomStatusesGrid .approved .col-template-status,
.s-Budget-MacomReviewStatusesGrid .approved .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .approved .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .approved .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .approved .col-template-status,
.s-Budget-OperatorStatusesGrid .approved .col-template-status,
.s-Budget-OwnershipStatusesGrid .approved .col-template-status,
.s-Budget-PerformanceStatusesGrid .approved .col-template-status,
.s-Budget-ProjectStatusGrid .approved .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .approved .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .approved .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .approved .col-template-status,
.s-Budget-TemplateStatusesGrid .approved .col-template-status,
.s-Budget-UAPCodeStatusesGrid .approved .col-template-status,
.s-Budget-AgreementTypesGrid .approved .col-template-status,
.s-Budget-BriefTypesGrid .approved .col-template-status,
.s-Budget-BudgetTypesGrid .approved .col-template-status,
.s-Budget-MeetingGrid .approved .col-template-status,
.s-Budget-MeetingAgendaGrid .approved .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .approved .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .approved .col-template-status,
.s-Budget-MeetingDecisionGrid .approved .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .approved .col-template-status,
.s-Budget-MeetingLocationGrid .approved .col-template-status,
.s-Budget-MeetingTypeGrid .approved .col-template-status,
.s-Budget-FinancialDataGrid .approved .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .approved .col-template-status,
.s-Budget-CommitteeTypesGrid .approved .col-template-status,
.s-Budget-ContractTypesGrid .approved .col-template-status,
.s-Budget-EmploymentTypeGrid .approved .col-template-status,
.s-Budget-ExpenditureTypesGrid .approved .col-template-status,
.s-Budget-FundingTrancheTypesGrid .approved .col-template-status,
.s-Budget-GasUtilizationTypesGrid .approved .col-template-status,
.s-Budget-PadProgramTypesGrid .approved .col-template-status,
.s-Budget-PadTypesGrid .approved .col-template-status,
.s-Budget-ProductTypesGrid .approved .col-template-status,
.s-Budget-ProjectTypesGrid .approved .col-template-status,
.s-Budget-RigTypesGrid .approved .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .approved .col-template-status,
.s-Budget-UAPCodeTypesGrid .approved .col-template-status,
.s-Budget-VesselTypesGrid .approved .col-template-status,
.s-Budget-WellCostElementTypesGrid .approved .col-template-status,
.s-Budget-WellTypesGrid .approved .col-template-status,
.s-Budget-BudgetPreviewGrid .approved .col-template-status,
.s-Budget-FINCOMAppendixIGrid .approved .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .approved .col-template-status,
.s-Budget-FINCOMCollationGrid .approved .col-template-status,
.s-Budget-CallScheduleActionsGrid .approved .col-template-status,
.s-CashCall-CashCallCalendarsGrid .approved .col-template-status,
.s-CashCall-CashCallActivitiesGrid .approved .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .approved .col-template-status,
.s-CashCall-CashCallCircularsGrid .approved .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .approved .col-template-status,
.s-CashCall-CashCallCalendarsGrid .approved .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .approved .col-template-status,
.s-CashCall-CashCallBriefsGrid .approved .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .approved .col-template-status,
.s-CashCall-CashCallMandatesGrid .approved .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .approved .col-template-status,
.s-CashCall-CashCallPayablesGrid .approved .col-template-status,
.s-CashCall-CashCallsGrid .approved .col-template-status,
.s-CashCall-CashCallsAllGrid .approved .col-template-status,
.s-CashCall-CashCallsEPGrid .approved .col-template-status,
.s-CashCall-CashCallsBDGGrid .approved .col-template-status,
.s-CashCall-CashCallSchedulesGrid .approved .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .approved .col-template-status,
.s-CashCall-CashCallRequestsGrid .approved .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .approved .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .approved .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .approved .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .approved .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .approved .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .approved .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .approved .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .approved .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .approved .col-template-status,
.s-CashCall-CashCallEndorsementGrid .approved .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .approved .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .approved .col-template-status,
.s-CashCall-CashCallPayablesGrid .approved .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .approved .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .approved .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .approved .col-template-status,
.s-CashCall-CashCallMandatesGrid .approved .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .approved .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .approved .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .approved .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .approved .col-template-status,
.s-Performance-PerformancesGrid .approved .col-template-status,
.s-Performance-PerformancesAllGrid .approved .col-template-status,
.s-Performance-PerformancesBDGGrid .approved .col-template-status,
.s-Performance-PerformanceSchedulesGrid .approved .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .approved .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .approved .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .approved .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .approved .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .approved .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .approved .col-template-status,
.s-Performance-PerformanceMonthlyGrid .approved .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .approved .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .approved .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .approved .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .approved .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .approved .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .approved .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .approved .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .approved .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .approved .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .approved .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .approved .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .approved .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .approved .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .approved .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .approved .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .approved .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .approved .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .approved .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .approved .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .approved .col-template-status,
.s-Common-DashboardWidgetGrid .approved .col-template-status,
.s-Administration-BcPproExceptionsGrid .approved .col-template-status {
  background-color: #36D900 !important;
}
.s-Administration-IssueTrackingIssuesGrid .template-in-progress .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .template-in-progress .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .template-in-progress .col-template-status,
.s-Administration-NotificationTemplatesGrid .template-in-progress .col-template-status,
.s-Administration-BudgetAutoTestGrid .template-in-progress .col-template-status,
.s-Administration-CashCallAutoTestGrid .template-in-progress .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .template-in-progress .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .template-in-progress .col-template-status,
.s-Administration-SiteNotificationsGrid .template-in-progress .col-template-status,
.s-Budget-AnnualBudgetsGrid .template-in-progress .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .template-in-progress .col-template-status,
.s-Budget-BudgetProfilesABGrid .template-in-progress .col-template-status,
.s-Budget-OperatorProposalsGrid .template-in-progress .col-template-status,
.s-Budget-MACOMApprovalsGrid .template-in-progress .col-template-status,
.s-Budget-OPCOMApprovalsGrid .template-in-progress .col-template-status,
.s-Budget-ApprovedBudgetsGrid .template-in-progress .col-template-status,
.s-Budget-FiveYearForecastsGrid .template-in-progress .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .template-in-progress .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .template-in-progress .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .template-in-progress .col-template-status,
.s-Budget-TECOMRecommendationsGrid .template-in-progress .col-template-status,
.s-Budget-BudgetProfilesGrid .template-in-progress .col-template-status,
.s-Budget-BudgetProfilesAllGrid .template-in-progress .col-template-status,
.s-Budget-BudgetsGrid .template-in-progress .col-template-status,
.s-Budget-CallCircularsGrid .template-in-progress .col-template-status,
.s-Budget-CallCircularsAllGrid .template-in-progress .col-template-status,
.s-Budget-CallSchedulesGrid .template-in-progress .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .template-in-progress .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .template-in-progress .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .template-in-progress .col-template-status,
.s-Budget-BudgetThresholdsGrid .template-in-progress .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .template-in-progress .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .template-in-progress .col-template-status,
.s-Budget-OperatorTemplatesGrid .template-in-progress .col-template-status,
.s-Budget-TemplateCommitteeGrid .template-in-progress .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .template-in-progress .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .template-in-progress .col-template-status,
.s-Budget-BTFundingTranchesGrid .template-in-progress .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .template-in-progress .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .template-in-progress .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .template-in-progress .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .template-in-progress .col-template-status,
.s-Budget-CallCircularsAllGrid .template-in-progress .col-template-status,
.s-Budget-CallCircularsGrid .template-in-progress .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .template-in-progress .col-template-status,
.s-Budget-CallSchedulesAllGrid .template-in-progress .col-template-status,
.s-Budget-CallSchedulesGrid .template-in-progress .col-template-status,
.s-Budget-SwotsGrid .template-in-progress .col-template-status,
.s-Budget-BudgetAssumptionsGrid .template-in-progress .col-template-status,
.s-Budget-SeismicActivitiesGrid .template-in-progress .col-template-status,
.s-Budget-ReservesGrid .template-in-progress .col-template-status,
.s-Budget-ProductionGrid .template-in-progress .col-template-status,
.s-Budget-GasUtilizationGrid .template-in-progress .col-template-status,
.s-Budget-RigSequencesGrid .template-in-progress .col-template-status,
.s-Budget-VesselSchedulesGrid .template-in-progress .col-template-status,
.s-Budget-HrSummariesGrid .template-in-progress .col-template-status,
.s-Budget-SharedCostsGrid .template-in-progress .col-template-status,
.s-Budget-SharedCostAllocationsGrid .template-in-progress .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .template-in-progress .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .template-in-progress .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .template-in-progress .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .template-in-progress .col-template-status,
.s-Budget-WellCostsGrid .template-in-progress .col-template-status,
.s-Budget-WellCostElementsGrid .template-in-progress .col-template-status,
.s-Budget-ProjectSummariesGrid .template-in-progress .col-template-status,
.s-Budget-PADWorkProgrammesGrid .template-in-progress .col-template-status,
.s-Budget-RigSequencesGrid .template-in-progress .col-template-status,
.s-Budget-BlocksGrid .template-in-progress .col-template-status,
.s-Budget-CashCallEquitySharesGrid .template-in-progress .col-template-status,
.s-Budget-FieldsGrid .template-in-progress .col-template-status,
.s-Budget-FieldTerrainsGrid .template-in-progress .col-template-status,
.s-Budget-FundingTranchesGrid .template-in-progress .col-template-status,
.s-Budget-FundingTranchesAllGrid .template-in-progress .col-template-status,
.s-Budget-MajorDriversGrid .template-in-progress .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .template-in-progress .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .template-in-progress .col-template-status,
.s-Budget-ExcelTemplatesGrid .template-in-progress .col-template-status,
.s-Budget-OperatorBlocksAllGrid .template-in-progress .col-template-status,
.s-Budget-OperatorBlocksGrid .template-in-progress .col-template-status,
.s-Budget-ProductsGrid .template-in-progress .col-template-status,
.s-Budget-RigsGrid .template-in-progress .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .template-in-progress .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .template-in-progress .col-template-status,
.s-Budget-UAPCodesAllGrid .template-in-progress .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .template-in-progress .col-template-status,
.s-Budget-Operator_UAPCodesGrid .template-in-progress .col-template-status,
.s-Budget-VesselsGrid .template-in-progress .col-template-status,
.s-Budget-WellCostElementGroupsGrid .template-in-progress .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .template-in-progress .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .template-in-progress .col-template-status,
.s-Budget-NonRigActivityTypesGrid .template-in-progress .col-template-status,
.s-Budget-NonRigElementDetailsGrid .template-in-progress .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .template-in-progress .col-template-status,
.s-Budget-WellsAllGrid .template-in-progress .col-template-status,
.s-Budget-WellsGrid .template-in-progress .col-template-status,
.s-Budget-ProjectsGrid .template-in-progress .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .template-in-progress .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .template-in-progress .col-template-status,
.s-Budget-CountryGrid .template-in-progress .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .template-in-progress .col-template-status,
.s-Budget-MonthsGrid .template-in-progress .col-template-status,
.s-Budget-NationalityGrid .template-in-progress .col-template-status,
.s-Budget-PadClustersGrid .template-in-progress .col-template-status,
.s-Budget-PadCommunitiesGrid .template-in-progress .col-template-status,
.s-Budget-SecurityRolesGrid .template-in-progress .col-template-status,
.s-Budget-TemplatesGrid .template-in-progress .col-template-status,
.s-Budget-TerrainsGrid .template-in-progress .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .template-in-progress .col-template-status,
.s-Budget-UAPCodeLevelsGrid .template-in-progress .col-template-status,
.s-Budget-UAPCodeGroupsGrid .template-in-progress .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .template-in-progress .col-template-status,
.s-Budget-UnitsGrid .template-in-progress .col-template-status,
.s-Budget-UnitsOfMeasureGrid .template-in-progress .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .template-in-progress .col-template-status,
.s-Budget-VesselActivitiesGrid .template-in-progress .col-template-status,
.s-Budget-WellClassificationsGrid .template-in-progress .col-template-status,
.s-Budget-YearsGrid .template-in-progress .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .template-in-progress .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .template-in-progress .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .template-in-progress .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .template-in-progress .col-template-status,
.s-Budget-BudgetStatusesGrid .template-in-progress .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .template-in-progress .col-template-status,
.s-Budget-ButtonStatusesGrid .template-in-progress .col-template-status,
.s-Budget-CallCircularStatusesGrid .template-in-progress .col-template-status,
.s-Budget-CashCallStatusesGrid .template-in-progress .col-template-status,
.s-Budget-ContractStatusesGrid .template-in-progress .col-template-status,
.s-Budget-FieldStatusesGrid .template-in-progress .col-template-status,
.s-Budget-FincomStatusesGrid .template-in-progress .col-template-status,
.s-Budget-MacomReviewStatusesGrid .template-in-progress .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .template-in-progress .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .template-in-progress .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .template-in-progress .col-template-status,
.s-Budget-OperatorStatusesGrid .template-in-progress .col-template-status,
.s-Budget-OwnershipStatusesGrid .template-in-progress .col-template-status,
.s-Budget-PerformanceStatusesGrid .template-in-progress .col-template-status,
.s-Budget-ProjectStatusGrid .template-in-progress .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .template-in-progress .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .template-in-progress .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .template-in-progress .col-template-status,
.s-Budget-TemplateStatusesGrid .template-in-progress .col-template-status,
.s-Budget-UAPCodeStatusesGrid .template-in-progress .col-template-status,
.s-Budget-AgreementTypesGrid .template-in-progress .col-template-status,
.s-Budget-BriefTypesGrid .template-in-progress .col-template-status,
.s-Budget-BudgetTypesGrid .template-in-progress .col-template-status,
.s-Budget-MeetingGrid .template-in-progress .col-template-status,
.s-Budget-MeetingAgendaGrid .template-in-progress .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .template-in-progress .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .template-in-progress .col-template-status,
.s-Budget-MeetingDecisionGrid .template-in-progress .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .template-in-progress .col-template-status,
.s-Budget-MeetingLocationGrid .template-in-progress .col-template-status,
.s-Budget-MeetingTypeGrid .template-in-progress .col-template-status,
.s-Budget-FinancialDataGrid .template-in-progress .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .template-in-progress .col-template-status,
.s-Budget-CommitteeTypesGrid .template-in-progress .col-template-status,
.s-Budget-ContractTypesGrid .template-in-progress .col-template-status,
.s-Budget-EmploymentTypeGrid .template-in-progress .col-template-status,
.s-Budget-ExpenditureTypesGrid .template-in-progress .col-template-status,
.s-Budget-FundingTrancheTypesGrid .template-in-progress .col-template-status,
.s-Budget-GasUtilizationTypesGrid .template-in-progress .col-template-status,
.s-Budget-PadProgramTypesGrid .template-in-progress .col-template-status,
.s-Budget-PadTypesGrid .template-in-progress .col-template-status,
.s-Budget-ProductTypesGrid .template-in-progress .col-template-status,
.s-Budget-ProjectTypesGrid .template-in-progress .col-template-status,
.s-Budget-RigTypesGrid .template-in-progress .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .template-in-progress .col-template-status,
.s-Budget-UAPCodeTypesGrid .template-in-progress .col-template-status,
.s-Budget-VesselTypesGrid .template-in-progress .col-template-status,
.s-Budget-WellCostElementTypesGrid .template-in-progress .col-template-status,
.s-Budget-WellTypesGrid .template-in-progress .col-template-status,
.s-Budget-BudgetPreviewGrid .template-in-progress .col-template-status,
.s-Budget-FINCOMAppendixIGrid .template-in-progress .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .template-in-progress .col-template-status,
.s-Budget-FINCOMCollationGrid .template-in-progress .col-template-status,
.s-Budget-CallScheduleActionsGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallCalendarsGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallActivitiesGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallCircularsGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallCalendarsGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallBriefsGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallMandatesGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallPayablesGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallsGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallsAllGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallsEPGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallsBDGGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallSchedulesGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallRequestsGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallEndorsementGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallPayablesGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallMandatesGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .template-in-progress .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .template-in-progress .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .template-in-progress .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .template-in-progress .col-template-status,
.s-Performance-PerformancesGrid .template-in-progress .col-template-status,
.s-Performance-PerformancesAllGrid .template-in-progress .col-template-status,
.s-Performance-PerformancesBDGGrid .template-in-progress .col-template-status,
.s-Performance-PerformanceSchedulesGrid .template-in-progress .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .template-in-progress .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .template-in-progress .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .template-in-progress .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .template-in-progress .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .template-in-progress .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .template-in-progress .col-template-status,
.s-Performance-PerformanceMonthlyGrid .template-in-progress .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .template-in-progress .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .template-in-progress .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .template-in-progress .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .template-in-progress .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .template-in-progress .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .template-in-progress .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .template-in-progress .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .template-in-progress .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .template-in-progress .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .template-in-progress .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .template-in-progress .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .template-in-progress .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .template-in-progress .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .template-in-progress .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .template-in-progress .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .template-in-progress .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .template-in-progress .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .template-in-progress .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .template-in-progress .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .template-in-progress .col-template-status,
.s-Common-DashboardWidgetGrid .template-in-progress .col-template-status,
.s-Administration-BcPproExceptionsGrid .template-in-progress .col-template-status {
  background-color: #FF8000 !important;
}
.s-Administration-IssueTrackingIssuesGrid .brief-not-started .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .brief-not-started .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .brief-not-started .col-template-status,
.s-Administration-NotificationTemplatesGrid .brief-not-started .col-template-status,
.s-Administration-BudgetAutoTestGrid .brief-not-started .col-template-status,
.s-Administration-CashCallAutoTestGrid .brief-not-started .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .brief-not-started .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .brief-not-started .col-template-status,
.s-Administration-SiteNotificationsGrid .brief-not-started .col-template-status,
.s-Budget-AnnualBudgetsGrid .brief-not-started .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .brief-not-started .col-template-status,
.s-Budget-BudgetProfilesABGrid .brief-not-started .col-template-status,
.s-Budget-OperatorProposalsGrid .brief-not-started .col-template-status,
.s-Budget-MACOMApprovalsGrid .brief-not-started .col-template-status,
.s-Budget-OPCOMApprovalsGrid .brief-not-started .col-template-status,
.s-Budget-ApprovedBudgetsGrid .brief-not-started .col-template-status,
.s-Budget-FiveYearForecastsGrid .brief-not-started .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .brief-not-started .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .brief-not-started .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .brief-not-started .col-template-status,
.s-Budget-TECOMRecommendationsGrid .brief-not-started .col-template-status,
.s-Budget-BudgetProfilesGrid .brief-not-started .col-template-status,
.s-Budget-BudgetProfilesAllGrid .brief-not-started .col-template-status,
.s-Budget-BudgetsGrid .brief-not-started .col-template-status,
.s-Budget-CallCircularsGrid .brief-not-started .col-template-status,
.s-Budget-CallCircularsAllGrid .brief-not-started .col-template-status,
.s-Budget-CallSchedulesGrid .brief-not-started .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .brief-not-started .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .brief-not-started .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .brief-not-started .col-template-status,
.s-Budget-BudgetThresholdsGrid .brief-not-started .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .brief-not-started .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .brief-not-started .col-template-status,
.s-Budget-OperatorTemplatesGrid .brief-not-started .col-template-status,
.s-Budget-TemplateCommitteeGrid .brief-not-started .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .brief-not-started .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .brief-not-started .col-template-status,
.s-Budget-BTFundingTranchesGrid .brief-not-started .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .brief-not-started .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .brief-not-started .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .brief-not-started .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .brief-not-started .col-template-status,
.s-Budget-CallCircularsAllGrid .brief-not-started .col-template-status,
.s-Budget-CallCircularsGrid .brief-not-started .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .brief-not-started .col-template-status,
.s-Budget-CallSchedulesAllGrid .brief-not-started .col-template-status,
.s-Budget-CallSchedulesGrid .brief-not-started .col-template-status,
.s-Budget-SwotsGrid .brief-not-started .col-template-status,
.s-Budget-BudgetAssumptionsGrid .brief-not-started .col-template-status,
.s-Budget-SeismicActivitiesGrid .brief-not-started .col-template-status,
.s-Budget-ReservesGrid .brief-not-started .col-template-status,
.s-Budget-ProductionGrid .brief-not-started .col-template-status,
.s-Budget-GasUtilizationGrid .brief-not-started .col-template-status,
.s-Budget-RigSequencesGrid .brief-not-started .col-template-status,
.s-Budget-VesselSchedulesGrid .brief-not-started .col-template-status,
.s-Budget-HrSummariesGrid .brief-not-started .col-template-status,
.s-Budget-SharedCostsGrid .brief-not-started .col-template-status,
.s-Budget-SharedCostAllocationsGrid .brief-not-started .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .brief-not-started .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .brief-not-started .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .brief-not-started .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .brief-not-started .col-template-status,
.s-Budget-WellCostsGrid .brief-not-started .col-template-status,
.s-Budget-WellCostElementsGrid .brief-not-started .col-template-status,
.s-Budget-ProjectSummariesGrid .brief-not-started .col-template-status,
.s-Budget-PADWorkProgrammesGrid .brief-not-started .col-template-status,
.s-Budget-RigSequencesGrid .brief-not-started .col-template-status,
.s-Budget-BlocksGrid .brief-not-started .col-template-status,
.s-Budget-CashCallEquitySharesGrid .brief-not-started .col-template-status,
.s-Budget-FieldsGrid .brief-not-started .col-template-status,
.s-Budget-FieldTerrainsGrid .brief-not-started .col-template-status,
.s-Budget-FundingTranchesGrid .brief-not-started .col-template-status,
.s-Budget-FundingTranchesAllGrid .brief-not-started .col-template-status,
.s-Budget-MajorDriversGrid .brief-not-started .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .brief-not-started .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .brief-not-started .col-template-status,
.s-Budget-ExcelTemplatesGrid .brief-not-started .col-template-status,
.s-Budget-OperatorBlocksAllGrid .brief-not-started .col-template-status,
.s-Budget-OperatorBlocksGrid .brief-not-started .col-template-status,
.s-Budget-ProductsGrid .brief-not-started .col-template-status,
.s-Budget-RigsGrid .brief-not-started .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .brief-not-started .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .brief-not-started .col-template-status,
.s-Budget-UAPCodesAllGrid .brief-not-started .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .brief-not-started .col-template-status,
.s-Budget-Operator_UAPCodesGrid .brief-not-started .col-template-status,
.s-Budget-VesselsGrid .brief-not-started .col-template-status,
.s-Budget-WellCostElementGroupsGrid .brief-not-started .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .brief-not-started .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .brief-not-started .col-template-status,
.s-Budget-NonRigActivityTypesGrid .brief-not-started .col-template-status,
.s-Budget-NonRigElementDetailsGrid .brief-not-started .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .brief-not-started .col-template-status,
.s-Budget-WellsAllGrid .brief-not-started .col-template-status,
.s-Budget-WellsGrid .brief-not-started .col-template-status,
.s-Budget-ProjectsGrid .brief-not-started .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .brief-not-started .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .brief-not-started .col-template-status,
.s-Budget-CountryGrid .brief-not-started .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .brief-not-started .col-template-status,
.s-Budget-MonthsGrid .brief-not-started .col-template-status,
.s-Budget-NationalityGrid .brief-not-started .col-template-status,
.s-Budget-PadClustersGrid .brief-not-started .col-template-status,
.s-Budget-PadCommunitiesGrid .brief-not-started .col-template-status,
.s-Budget-SecurityRolesGrid .brief-not-started .col-template-status,
.s-Budget-TemplatesGrid .brief-not-started .col-template-status,
.s-Budget-TerrainsGrid .brief-not-started .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .brief-not-started .col-template-status,
.s-Budget-UAPCodeLevelsGrid .brief-not-started .col-template-status,
.s-Budget-UAPCodeGroupsGrid .brief-not-started .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .brief-not-started .col-template-status,
.s-Budget-UnitsGrid .brief-not-started .col-template-status,
.s-Budget-UnitsOfMeasureGrid .brief-not-started .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .brief-not-started .col-template-status,
.s-Budget-VesselActivitiesGrid .brief-not-started .col-template-status,
.s-Budget-WellClassificationsGrid .brief-not-started .col-template-status,
.s-Budget-YearsGrid .brief-not-started .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .brief-not-started .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .brief-not-started .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .brief-not-started .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .brief-not-started .col-template-status,
.s-Budget-BudgetStatusesGrid .brief-not-started .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .brief-not-started .col-template-status,
.s-Budget-ButtonStatusesGrid .brief-not-started .col-template-status,
.s-Budget-CallCircularStatusesGrid .brief-not-started .col-template-status,
.s-Budget-CashCallStatusesGrid .brief-not-started .col-template-status,
.s-Budget-ContractStatusesGrid .brief-not-started .col-template-status,
.s-Budget-FieldStatusesGrid .brief-not-started .col-template-status,
.s-Budget-FincomStatusesGrid .brief-not-started .col-template-status,
.s-Budget-MacomReviewStatusesGrid .brief-not-started .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .brief-not-started .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .brief-not-started .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .brief-not-started .col-template-status,
.s-Budget-OperatorStatusesGrid .brief-not-started .col-template-status,
.s-Budget-OwnershipStatusesGrid .brief-not-started .col-template-status,
.s-Budget-PerformanceStatusesGrid .brief-not-started .col-template-status,
.s-Budget-ProjectStatusGrid .brief-not-started .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .brief-not-started .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .brief-not-started .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .brief-not-started .col-template-status,
.s-Budget-TemplateStatusesGrid .brief-not-started .col-template-status,
.s-Budget-UAPCodeStatusesGrid .brief-not-started .col-template-status,
.s-Budget-AgreementTypesGrid .brief-not-started .col-template-status,
.s-Budget-BriefTypesGrid .brief-not-started .col-template-status,
.s-Budget-BudgetTypesGrid .brief-not-started .col-template-status,
.s-Budget-MeetingGrid .brief-not-started .col-template-status,
.s-Budget-MeetingAgendaGrid .brief-not-started .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .brief-not-started .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .brief-not-started .col-template-status,
.s-Budget-MeetingDecisionGrid .brief-not-started .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .brief-not-started .col-template-status,
.s-Budget-MeetingLocationGrid .brief-not-started .col-template-status,
.s-Budget-MeetingTypeGrid .brief-not-started .col-template-status,
.s-Budget-FinancialDataGrid .brief-not-started .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .brief-not-started .col-template-status,
.s-Budget-CommitteeTypesGrid .brief-not-started .col-template-status,
.s-Budget-ContractTypesGrid .brief-not-started .col-template-status,
.s-Budget-EmploymentTypeGrid .brief-not-started .col-template-status,
.s-Budget-ExpenditureTypesGrid .brief-not-started .col-template-status,
.s-Budget-FundingTrancheTypesGrid .brief-not-started .col-template-status,
.s-Budget-GasUtilizationTypesGrid .brief-not-started .col-template-status,
.s-Budget-PadProgramTypesGrid .brief-not-started .col-template-status,
.s-Budget-PadTypesGrid .brief-not-started .col-template-status,
.s-Budget-ProductTypesGrid .brief-not-started .col-template-status,
.s-Budget-ProjectTypesGrid .brief-not-started .col-template-status,
.s-Budget-RigTypesGrid .brief-not-started .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .brief-not-started .col-template-status,
.s-Budget-UAPCodeTypesGrid .brief-not-started .col-template-status,
.s-Budget-VesselTypesGrid .brief-not-started .col-template-status,
.s-Budget-WellCostElementTypesGrid .brief-not-started .col-template-status,
.s-Budget-WellTypesGrid .brief-not-started .col-template-status,
.s-Budget-BudgetPreviewGrid .brief-not-started .col-template-status,
.s-Budget-FINCOMAppendixIGrid .brief-not-started .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .brief-not-started .col-template-status,
.s-Budget-FINCOMCollationGrid .brief-not-started .col-template-status,
.s-Budget-CallScheduleActionsGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallCalendarsGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallActivitiesGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallCircularsGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallCalendarsGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallBriefsGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallMandatesGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallPayablesGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallsGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallsAllGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallsEPGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallsBDGGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallSchedulesGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallRequestsGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallEndorsementGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallPayablesGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallMandatesGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .brief-not-started .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .brief-not-started .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .brief-not-started .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .brief-not-started .col-template-status,
.s-Performance-PerformancesGrid .brief-not-started .col-template-status,
.s-Performance-PerformancesAllGrid .brief-not-started .col-template-status,
.s-Performance-PerformancesBDGGrid .brief-not-started .col-template-status,
.s-Performance-PerformanceSchedulesGrid .brief-not-started .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .brief-not-started .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .brief-not-started .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .brief-not-started .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .brief-not-started .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .brief-not-started .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .brief-not-started .col-template-status,
.s-Performance-PerformanceMonthlyGrid .brief-not-started .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .brief-not-started .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .brief-not-started .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .brief-not-started .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .brief-not-started .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .brief-not-started .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .brief-not-started .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .brief-not-started .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .brief-not-started .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .brief-not-started .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .brief-not-started .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .brief-not-started .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .brief-not-started .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .brief-not-started .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .brief-not-started .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .brief-not-started .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .brief-not-started .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .brief-not-started .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .brief-not-started .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .brief-not-started .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .brief-not-started .col-template-status,
.s-Common-DashboardWidgetGrid .brief-not-started .col-template-status,
.s-Administration-BcPproExceptionsGrid .brief-not-started .col-template-status {
  background-color: #000 !important;
}
.s-Administration-IssueTrackingIssuesGrid .brief-in-progress .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .brief-in-progress .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .brief-in-progress .col-template-status,
.s-Administration-NotificationTemplatesGrid .brief-in-progress .col-template-status,
.s-Administration-BudgetAutoTestGrid .brief-in-progress .col-template-status,
.s-Administration-CashCallAutoTestGrid .brief-in-progress .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .brief-in-progress .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .brief-in-progress .col-template-status,
.s-Administration-SiteNotificationsGrid .brief-in-progress .col-template-status,
.s-Budget-AnnualBudgetsGrid .brief-in-progress .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .brief-in-progress .col-template-status,
.s-Budget-BudgetProfilesABGrid .brief-in-progress .col-template-status,
.s-Budget-OperatorProposalsGrid .brief-in-progress .col-template-status,
.s-Budget-MACOMApprovalsGrid .brief-in-progress .col-template-status,
.s-Budget-OPCOMApprovalsGrid .brief-in-progress .col-template-status,
.s-Budget-ApprovedBudgetsGrid .brief-in-progress .col-template-status,
.s-Budget-FiveYearForecastsGrid .brief-in-progress .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .brief-in-progress .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .brief-in-progress .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .brief-in-progress .col-template-status,
.s-Budget-TECOMRecommendationsGrid .brief-in-progress .col-template-status,
.s-Budget-BudgetProfilesGrid .brief-in-progress .col-template-status,
.s-Budget-BudgetProfilesAllGrid .brief-in-progress .col-template-status,
.s-Budget-BudgetsGrid .brief-in-progress .col-template-status,
.s-Budget-CallCircularsGrid .brief-in-progress .col-template-status,
.s-Budget-CallCircularsAllGrid .brief-in-progress .col-template-status,
.s-Budget-CallSchedulesGrid .brief-in-progress .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .brief-in-progress .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .brief-in-progress .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .brief-in-progress .col-template-status,
.s-Budget-BudgetThresholdsGrid .brief-in-progress .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .brief-in-progress .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .brief-in-progress .col-template-status,
.s-Budget-OperatorTemplatesGrid .brief-in-progress .col-template-status,
.s-Budget-TemplateCommitteeGrid .brief-in-progress .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .brief-in-progress .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .brief-in-progress .col-template-status,
.s-Budget-BTFundingTranchesGrid .brief-in-progress .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .brief-in-progress .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .brief-in-progress .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .brief-in-progress .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .brief-in-progress .col-template-status,
.s-Budget-CallCircularsAllGrid .brief-in-progress .col-template-status,
.s-Budget-CallCircularsGrid .brief-in-progress .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .brief-in-progress .col-template-status,
.s-Budget-CallSchedulesAllGrid .brief-in-progress .col-template-status,
.s-Budget-CallSchedulesGrid .brief-in-progress .col-template-status,
.s-Budget-SwotsGrid .brief-in-progress .col-template-status,
.s-Budget-BudgetAssumptionsGrid .brief-in-progress .col-template-status,
.s-Budget-SeismicActivitiesGrid .brief-in-progress .col-template-status,
.s-Budget-ReservesGrid .brief-in-progress .col-template-status,
.s-Budget-ProductionGrid .brief-in-progress .col-template-status,
.s-Budget-GasUtilizationGrid .brief-in-progress .col-template-status,
.s-Budget-RigSequencesGrid .brief-in-progress .col-template-status,
.s-Budget-VesselSchedulesGrid .brief-in-progress .col-template-status,
.s-Budget-HrSummariesGrid .brief-in-progress .col-template-status,
.s-Budget-SharedCostsGrid .brief-in-progress .col-template-status,
.s-Budget-SharedCostAllocationsGrid .brief-in-progress .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .brief-in-progress .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .brief-in-progress .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .brief-in-progress .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .brief-in-progress .col-template-status,
.s-Budget-WellCostsGrid .brief-in-progress .col-template-status,
.s-Budget-WellCostElementsGrid .brief-in-progress .col-template-status,
.s-Budget-ProjectSummariesGrid .brief-in-progress .col-template-status,
.s-Budget-PADWorkProgrammesGrid .brief-in-progress .col-template-status,
.s-Budget-RigSequencesGrid .brief-in-progress .col-template-status,
.s-Budget-BlocksGrid .brief-in-progress .col-template-status,
.s-Budget-CashCallEquitySharesGrid .brief-in-progress .col-template-status,
.s-Budget-FieldsGrid .brief-in-progress .col-template-status,
.s-Budget-FieldTerrainsGrid .brief-in-progress .col-template-status,
.s-Budget-FundingTranchesGrid .brief-in-progress .col-template-status,
.s-Budget-FundingTranchesAllGrid .brief-in-progress .col-template-status,
.s-Budget-MajorDriversGrid .brief-in-progress .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .brief-in-progress .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .brief-in-progress .col-template-status,
.s-Budget-ExcelTemplatesGrid .brief-in-progress .col-template-status,
.s-Budget-OperatorBlocksAllGrid .brief-in-progress .col-template-status,
.s-Budget-OperatorBlocksGrid .brief-in-progress .col-template-status,
.s-Budget-ProductsGrid .brief-in-progress .col-template-status,
.s-Budget-RigsGrid .brief-in-progress .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .brief-in-progress .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .brief-in-progress .col-template-status,
.s-Budget-UAPCodesAllGrid .brief-in-progress .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .brief-in-progress .col-template-status,
.s-Budget-Operator_UAPCodesGrid .brief-in-progress .col-template-status,
.s-Budget-VesselsGrid .brief-in-progress .col-template-status,
.s-Budget-WellCostElementGroupsGrid .brief-in-progress .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .brief-in-progress .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .brief-in-progress .col-template-status,
.s-Budget-NonRigActivityTypesGrid .brief-in-progress .col-template-status,
.s-Budget-NonRigElementDetailsGrid .brief-in-progress .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .brief-in-progress .col-template-status,
.s-Budget-WellsAllGrid .brief-in-progress .col-template-status,
.s-Budget-WellsGrid .brief-in-progress .col-template-status,
.s-Budget-ProjectsGrid .brief-in-progress .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .brief-in-progress .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .brief-in-progress .col-template-status,
.s-Budget-CountryGrid .brief-in-progress .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .brief-in-progress .col-template-status,
.s-Budget-MonthsGrid .brief-in-progress .col-template-status,
.s-Budget-NationalityGrid .brief-in-progress .col-template-status,
.s-Budget-PadClustersGrid .brief-in-progress .col-template-status,
.s-Budget-PadCommunitiesGrid .brief-in-progress .col-template-status,
.s-Budget-SecurityRolesGrid .brief-in-progress .col-template-status,
.s-Budget-TemplatesGrid .brief-in-progress .col-template-status,
.s-Budget-TerrainsGrid .brief-in-progress .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .brief-in-progress .col-template-status,
.s-Budget-UAPCodeLevelsGrid .brief-in-progress .col-template-status,
.s-Budget-UAPCodeGroupsGrid .brief-in-progress .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .brief-in-progress .col-template-status,
.s-Budget-UnitsGrid .brief-in-progress .col-template-status,
.s-Budget-UnitsOfMeasureGrid .brief-in-progress .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .brief-in-progress .col-template-status,
.s-Budget-VesselActivitiesGrid .brief-in-progress .col-template-status,
.s-Budget-WellClassificationsGrid .brief-in-progress .col-template-status,
.s-Budget-YearsGrid .brief-in-progress .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .brief-in-progress .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .brief-in-progress .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .brief-in-progress .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .brief-in-progress .col-template-status,
.s-Budget-BudgetStatusesGrid .brief-in-progress .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .brief-in-progress .col-template-status,
.s-Budget-ButtonStatusesGrid .brief-in-progress .col-template-status,
.s-Budget-CallCircularStatusesGrid .brief-in-progress .col-template-status,
.s-Budget-CashCallStatusesGrid .brief-in-progress .col-template-status,
.s-Budget-ContractStatusesGrid .brief-in-progress .col-template-status,
.s-Budget-FieldStatusesGrid .brief-in-progress .col-template-status,
.s-Budget-FincomStatusesGrid .brief-in-progress .col-template-status,
.s-Budget-MacomReviewStatusesGrid .brief-in-progress .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .brief-in-progress .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .brief-in-progress .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .brief-in-progress .col-template-status,
.s-Budget-OperatorStatusesGrid .brief-in-progress .col-template-status,
.s-Budget-OwnershipStatusesGrid .brief-in-progress .col-template-status,
.s-Budget-PerformanceStatusesGrid .brief-in-progress .col-template-status,
.s-Budget-ProjectStatusGrid .brief-in-progress .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .brief-in-progress .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .brief-in-progress .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .brief-in-progress .col-template-status,
.s-Budget-TemplateStatusesGrid .brief-in-progress .col-template-status,
.s-Budget-UAPCodeStatusesGrid .brief-in-progress .col-template-status,
.s-Budget-AgreementTypesGrid .brief-in-progress .col-template-status,
.s-Budget-BriefTypesGrid .brief-in-progress .col-template-status,
.s-Budget-BudgetTypesGrid .brief-in-progress .col-template-status,
.s-Budget-MeetingGrid .brief-in-progress .col-template-status,
.s-Budget-MeetingAgendaGrid .brief-in-progress .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .brief-in-progress .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .brief-in-progress .col-template-status,
.s-Budget-MeetingDecisionGrid .brief-in-progress .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .brief-in-progress .col-template-status,
.s-Budget-MeetingLocationGrid .brief-in-progress .col-template-status,
.s-Budget-MeetingTypeGrid .brief-in-progress .col-template-status,
.s-Budget-FinancialDataGrid .brief-in-progress .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .brief-in-progress .col-template-status,
.s-Budget-CommitteeTypesGrid .brief-in-progress .col-template-status,
.s-Budget-ContractTypesGrid .brief-in-progress .col-template-status,
.s-Budget-EmploymentTypeGrid .brief-in-progress .col-template-status,
.s-Budget-ExpenditureTypesGrid .brief-in-progress .col-template-status,
.s-Budget-FundingTrancheTypesGrid .brief-in-progress .col-template-status,
.s-Budget-GasUtilizationTypesGrid .brief-in-progress .col-template-status,
.s-Budget-PadProgramTypesGrid .brief-in-progress .col-template-status,
.s-Budget-PadTypesGrid .brief-in-progress .col-template-status,
.s-Budget-ProductTypesGrid .brief-in-progress .col-template-status,
.s-Budget-ProjectTypesGrid .brief-in-progress .col-template-status,
.s-Budget-RigTypesGrid .brief-in-progress .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .brief-in-progress .col-template-status,
.s-Budget-UAPCodeTypesGrid .brief-in-progress .col-template-status,
.s-Budget-VesselTypesGrid .brief-in-progress .col-template-status,
.s-Budget-WellCostElementTypesGrid .brief-in-progress .col-template-status,
.s-Budget-WellTypesGrid .brief-in-progress .col-template-status,
.s-Budget-BudgetPreviewGrid .brief-in-progress .col-template-status,
.s-Budget-FINCOMAppendixIGrid .brief-in-progress .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .brief-in-progress .col-template-status,
.s-Budget-FINCOMCollationGrid .brief-in-progress .col-template-status,
.s-Budget-CallScheduleActionsGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallCalendarsGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallActivitiesGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallCircularsGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallCalendarsGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallBriefsGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallMandatesGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallPayablesGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallsGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallsAllGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallsEPGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallsBDGGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallSchedulesGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallRequestsGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallEndorsementGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallPayablesGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallMandatesGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .brief-in-progress .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .brief-in-progress .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .brief-in-progress .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .brief-in-progress .col-template-status,
.s-Performance-PerformancesGrid .brief-in-progress .col-template-status,
.s-Performance-PerformancesAllGrid .brief-in-progress .col-template-status,
.s-Performance-PerformancesBDGGrid .brief-in-progress .col-template-status,
.s-Performance-PerformanceSchedulesGrid .brief-in-progress .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .brief-in-progress .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .brief-in-progress .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .brief-in-progress .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .brief-in-progress .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .brief-in-progress .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .brief-in-progress .col-template-status,
.s-Performance-PerformanceMonthlyGrid .brief-in-progress .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .brief-in-progress .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .brief-in-progress .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .brief-in-progress .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .brief-in-progress .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .brief-in-progress .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .brief-in-progress .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .brief-in-progress .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .brief-in-progress .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .brief-in-progress .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .brief-in-progress .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .brief-in-progress .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .brief-in-progress .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .brief-in-progress .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .brief-in-progress .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .brief-in-progress .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .brief-in-progress .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .brief-in-progress .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .brief-in-progress .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .brief-in-progress .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .brief-in-progress .col-template-status,
.s-Common-DashboardWidgetGrid .brief-in-progress .col-template-status,
.s-Administration-BcPproExceptionsGrid .brief-in-progress .col-template-status {
  background-color: #FF8000 !important;
}
.s-Administration-IssueTrackingIssuesGrid .brief-completed .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .brief-completed .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .brief-completed .col-template-status,
.s-Administration-NotificationTemplatesGrid .brief-completed .col-template-status,
.s-Administration-BudgetAutoTestGrid .brief-completed .col-template-status,
.s-Administration-CashCallAutoTestGrid .brief-completed .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .brief-completed .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .brief-completed .col-template-status,
.s-Administration-SiteNotificationsGrid .brief-completed .col-template-status,
.s-Budget-AnnualBudgetsGrid .brief-completed .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .brief-completed .col-template-status,
.s-Budget-BudgetProfilesABGrid .brief-completed .col-template-status,
.s-Budget-OperatorProposalsGrid .brief-completed .col-template-status,
.s-Budget-MACOMApprovalsGrid .brief-completed .col-template-status,
.s-Budget-OPCOMApprovalsGrid .brief-completed .col-template-status,
.s-Budget-ApprovedBudgetsGrid .brief-completed .col-template-status,
.s-Budget-FiveYearForecastsGrid .brief-completed .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .brief-completed .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .brief-completed .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .brief-completed .col-template-status,
.s-Budget-TECOMRecommendationsGrid .brief-completed .col-template-status,
.s-Budget-BudgetProfilesGrid .brief-completed .col-template-status,
.s-Budget-BudgetProfilesAllGrid .brief-completed .col-template-status,
.s-Budget-BudgetsGrid .brief-completed .col-template-status,
.s-Budget-CallCircularsGrid .brief-completed .col-template-status,
.s-Budget-CallCircularsAllGrid .brief-completed .col-template-status,
.s-Budget-CallSchedulesGrid .brief-completed .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .brief-completed .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .brief-completed .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .brief-completed .col-template-status,
.s-Budget-BudgetThresholdsGrid .brief-completed .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .brief-completed .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .brief-completed .col-template-status,
.s-Budget-OperatorTemplatesGrid .brief-completed .col-template-status,
.s-Budget-TemplateCommitteeGrid .brief-completed .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .brief-completed .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .brief-completed .col-template-status,
.s-Budget-BTFundingTranchesGrid .brief-completed .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .brief-completed .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .brief-completed .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .brief-completed .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .brief-completed .col-template-status,
.s-Budget-CallCircularsAllGrid .brief-completed .col-template-status,
.s-Budget-CallCircularsGrid .brief-completed .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .brief-completed .col-template-status,
.s-Budget-CallSchedulesAllGrid .brief-completed .col-template-status,
.s-Budget-CallSchedulesGrid .brief-completed .col-template-status,
.s-Budget-SwotsGrid .brief-completed .col-template-status,
.s-Budget-BudgetAssumptionsGrid .brief-completed .col-template-status,
.s-Budget-SeismicActivitiesGrid .brief-completed .col-template-status,
.s-Budget-ReservesGrid .brief-completed .col-template-status,
.s-Budget-ProductionGrid .brief-completed .col-template-status,
.s-Budget-GasUtilizationGrid .brief-completed .col-template-status,
.s-Budget-RigSequencesGrid .brief-completed .col-template-status,
.s-Budget-VesselSchedulesGrid .brief-completed .col-template-status,
.s-Budget-HrSummariesGrid .brief-completed .col-template-status,
.s-Budget-SharedCostsGrid .brief-completed .col-template-status,
.s-Budget-SharedCostAllocationsGrid .brief-completed .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .brief-completed .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .brief-completed .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .brief-completed .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .brief-completed .col-template-status,
.s-Budget-WellCostsGrid .brief-completed .col-template-status,
.s-Budget-WellCostElementsGrid .brief-completed .col-template-status,
.s-Budget-ProjectSummariesGrid .brief-completed .col-template-status,
.s-Budget-PADWorkProgrammesGrid .brief-completed .col-template-status,
.s-Budget-RigSequencesGrid .brief-completed .col-template-status,
.s-Budget-BlocksGrid .brief-completed .col-template-status,
.s-Budget-CashCallEquitySharesGrid .brief-completed .col-template-status,
.s-Budget-FieldsGrid .brief-completed .col-template-status,
.s-Budget-FieldTerrainsGrid .brief-completed .col-template-status,
.s-Budget-FundingTranchesGrid .brief-completed .col-template-status,
.s-Budget-FundingTranchesAllGrid .brief-completed .col-template-status,
.s-Budget-MajorDriversGrid .brief-completed .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .brief-completed .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .brief-completed .col-template-status,
.s-Budget-ExcelTemplatesGrid .brief-completed .col-template-status,
.s-Budget-OperatorBlocksAllGrid .brief-completed .col-template-status,
.s-Budget-OperatorBlocksGrid .brief-completed .col-template-status,
.s-Budget-ProductsGrid .brief-completed .col-template-status,
.s-Budget-RigsGrid .brief-completed .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .brief-completed .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .brief-completed .col-template-status,
.s-Budget-UAPCodesAllGrid .brief-completed .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .brief-completed .col-template-status,
.s-Budget-Operator_UAPCodesGrid .brief-completed .col-template-status,
.s-Budget-VesselsGrid .brief-completed .col-template-status,
.s-Budget-WellCostElementGroupsGrid .brief-completed .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .brief-completed .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .brief-completed .col-template-status,
.s-Budget-NonRigActivityTypesGrid .brief-completed .col-template-status,
.s-Budget-NonRigElementDetailsGrid .brief-completed .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .brief-completed .col-template-status,
.s-Budget-WellsAllGrid .brief-completed .col-template-status,
.s-Budget-WellsGrid .brief-completed .col-template-status,
.s-Budget-ProjectsGrid .brief-completed .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .brief-completed .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .brief-completed .col-template-status,
.s-Budget-CountryGrid .brief-completed .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .brief-completed .col-template-status,
.s-Budget-MonthsGrid .brief-completed .col-template-status,
.s-Budget-NationalityGrid .brief-completed .col-template-status,
.s-Budget-PadClustersGrid .brief-completed .col-template-status,
.s-Budget-PadCommunitiesGrid .brief-completed .col-template-status,
.s-Budget-SecurityRolesGrid .brief-completed .col-template-status,
.s-Budget-TemplatesGrid .brief-completed .col-template-status,
.s-Budget-TerrainsGrid .brief-completed .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .brief-completed .col-template-status,
.s-Budget-UAPCodeLevelsGrid .brief-completed .col-template-status,
.s-Budget-UAPCodeGroupsGrid .brief-completed .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .brief-completed .col-template-status,
.s-Budget-UnitsGrid .brief-completed .col-template-status,
.s-Budget-UnitsOfMeasureGrid .brief-completed .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .brief-completed .col-template-status,
.s-Budget-VesselActivitiesGrid .brief-completed .col-template-status,
.s-Budget-WellClassificationsGrid .brief-completed .col-template-status,
.s-Budget-YearsGrid .brief-completed .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .brief-completed .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .brief-completed .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .brief-completed .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .brief-completed .col-template-status,
.s-Budget-BudgetStatusesGrid .brief-completed .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .brief-completed .col-template-status,
.s-Budget-ButtonStatusesGrid .brief-completed .col-template-status,
.s-Budget-CallCircularStatusesGrid .brief-completed .col-template-status,
.s-Budget-CashCallStatusesGrid .brief-completed .col-template-status,
.s-Budget-ContractStatusesGrid .brief-completed .col-template-status,
.s-Budget-FieldStatusesGrid .brief-completed .col-template-status,
.s-Budget-FincomStatusesGrid .brief-completed .col-template-status,
.s-Budget-MacomReviewStatusesGrid .brief-completed .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .brief-completed .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .brief-completed .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .brief-completed .col-template-status,
.s-Budget-OperatorStatusesGrid .brief-completed .col-template-status,
.s-Budget-OwnershipStatusesGrid .brief-completed .col-template-status,
.s-Budget-PerformanceStatusesGrid .brief-completed .col-template-status,
.s-Budget-ProjectStatusGrid .brief-completed .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .brief-completed .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .brief-completed .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .brief-completed .col-template-status,
.s-Budget-TemplateStatusesGrid .brief-completed .col-template-status,
.s-Budget-UAPCodeStatusesGrid .brief-completed .col-template-status,
.s-Budget-AgreementTypesGrid .brief-completed .col-template-status,
.s-Budget-BriefTypesGrid .brief-completed .col-template-status,
.s-Budget-BudgetTypesGrid .brief-completed .col-template-status,
.s-Budget-MeetingGrid .brief-completed .col-template-status,
.s-Budget-MeetingAgendaGrid .brief-completed .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .brief-completed .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .brief-completed .col-template-status,
.s-Budget-MeetingDecisionGrid .brief-completed .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .brief-completed .col-template-status,
.s-Budget-MeetingLocationGrid .brief-completed .col-template-status,
.s-Budget-MeetingTypeGrid .brief-completed .col-template-status,
.s-Budget-FinancialDataGrid .brief-completed .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .brief-completed .col-template-status,
.s-Budget-CommitteeTypesGrid .brief-completed .col-template-status,
.s-Budget-ContractTypesGrid .brief-completed .col-template-status,
.s-Budget-EmploymentTypeGrid .brief-completed .col-template-status,
.s-Budget-ExpenditureTypesGrid .brief-completed .col-template-status,
.s-Budget-FundingTrancheTypesGrid .brief-completed .col-template-status,
.s-Budget-GasUtilizationTypesGrid .brief-completed .col-template-status,
.s-Budget-PadProgramTypesGrid .brief-completed .col-template-status,
.s-Budget-PadTypesGrid .brief-completed .col-template-status,
.s-Budget-ProductTypesGrid .brief-completed .col-template-status,
.s-Budget-ProjectTypesGrid .brief-completed .col-template-status,
.s-Budget-RigTypesGrid .brief-completed .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .brief-completed .col-template-status,
.s-Budget-UAPCodeTypesGrid .brief-completed .col-template-status,
.s-Budget-VesselTypesGrid .brief-completed .col-template-status,
.s-Budget-WellCostElementTypesGrid .brief-completed .col-template-status,
.s-Budget-WellTypesGrid .brief-completed .col-template-status,
.s-Budget-BudgetPreviewGrid .brief-completed .col-template-status,
.s-Budget-FINCOMAppendixIGrid .brief-completed .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .brief-completed .col-template-status,
.s-Budget-FINCOMCollationGrid .brief-completed .col-template-status,
.s-Budget-CallScheduleActionsGrid .brief-completed .col-template-status,
.s-CashCall-CashCallCalendarsGrid .brief-completed .col-template-status,
.s-CashCall-CashCallActivitiesGrid .brief-completed .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .brief-completed .col-template-status,
.s-CashCall-CashCallCircularsGrid .brief-completed .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .brief-completed .col-template-status,
.s-CashCall-CashCallCalendarsGrid .brief-completed .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .brief-completed .col-template-status,
.s-CashCall-CashCallBriefsGrid .brief-completed .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .brief-completed .col-template-status,
.s-CashCall-CashCallMandatesGrid .brief-completed .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .brief-completed .col-template-status,
.s-CashCall-CashCallPayablesGrid .brief-completed .col-template-status,
.s-CashCall-CashCallsGrid .brief-completed .col-template-status,
.s-CashCall-CashCallsAllGrid .brief-completed .col-template-status,
.s-CashCall-CashCallsEPGrid .brief-completed .col-template-status,
.s-CashCall-CashCallsBDGGrid .brief-completed .col-template-status,
.s-CashCall-CashCallSchedulesGrid .brief-completed .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .brief-completed .col-template-status,
.s-CashCall-CashCallRequestsGrid .brief-completed .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .brief-completed .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .brief-completed .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .brief-completed .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .brief-completed .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .brief-completed .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .brief-completed .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .brief-completed .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .brief-completed .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .brief-completed .col-template-status,
.s-CashCall-CashCallEndorsementGrid .brief-completed .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .brief-completed .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .brief-completed .col-template-status,
.s-CashCall-CashCallPayablesGrid .brief-completed .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .brief-completed .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .brief-completed .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .brief-completed .col-template-status,
.s-CashCall-CashCallMandatesGrid .brief-completed .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .brief-completed .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .brief-completed .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .brief-completed .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .brief-completed .col-template-status,
.s-Performance-PerformancesGrid .brief-completed .col-template-status,
.s-Performance-PerformancesAllGrid .brief-completed .col-template-status,
.s-Performance-PerformancesBDGGrid .brief-completed .col-template-status,
.s-Performance-PerformanceSchedulesGrid .brief-completed .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .brief-completed .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .brief-completed .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .brief-completed .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .brief-completed .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .brief-completed .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .brief-completed .col-template-status,
.s-Performance-PerformanceMonthlyGrid .brief-completed .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .brief-completed .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .brief-completed .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .brief-completed .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .brief-completed .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .brief-completed .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .brief-completed .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .brief-completed .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .brief-completed .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .brief-completed .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .brief-completed .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .brief-completed .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .brief-completed .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .brief-completed .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .brief-completed .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .brief-completed .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .brief-completed .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .brief-completed .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .brief-completed .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .brief-completed .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .brief-completed .col-template-status,
.s-Common-DashboardWidgetGrid .brief-completed .col-template-status,
.s-Administration-BcPproExceptionsGrid .brief-completed .col-template-status {
  background-color: #36D900 !important;
}
.s-Administration-IssueTrackingIssuesGrid .brief-realigned .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .brief-realigned .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .brief-realigned .col-template-status,
.s-Administration-NotificationTemplatesGrid .brief-realigned .col-template-status,
.s-Administration-BudgetAutoTestGrid .brief-realigned .col-template-status,
.s-Administration-CashCallAutoTestGrid .brief-realigned .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .brief-realigned .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .brief-realigned .col-template-status,
.s-Administration-SiteNotificationsGrid .brief-realigned .col-template-status,
.s-Budget-AnnualBudgetsGrid .brief-realigned .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .brief-realigned .col-template-status,
.s-Budget-BudgetProfilesABGrid .brief-realigned .col-template-status,
.s-Budget-OperatorProposalsGrid .brief-realigned .col-template-status,
.s-Budget-MACOMApprovalsGrid .brief-realigned .col-template-status,
.s-Budget-OPCOMApprovalsGrid .brief-realigned .col-template-status,
.s-Budget-ApprovedBudgetsGrid .brief-realigned .col-template-status,
.s-Budget-FiveYearForecastsGrid .brief-realigned .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .brief-realigned .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .brief-realigned .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .brief-realigned .col-template-status,
.s-Budget-TECOMRecommendationsGrid .brief-realigned .col-template-status,
.s-Budget-BudgetProfilesGrid .brief-realigned .col-template-status,
.s-Budget-BudgetProfilesAllGrid .brief-realigned .col-template-status,
.s-Budget-BudgetsGrid .brief-realigned .col-template-status,
.s-Budget-CallCircularsGrid .brief-realigned .col-template-status,
.s-Budget-CallCircularsAllGrid .brief-realigned .col-template-status,
.s-Budget-CallSchedulesGrid .brief-realigned .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .brief-realigned .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .brief-realigned .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .brief-realigned .col-template-status,
.s-Budget-BudgetThresholdsGrid .brief-realigned .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .brief-realigned .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .brief-realigned .col-template-status,
.s-Budget-OperatorTemplatesGrid .brief-realigned .col-template-status,
.s-Budget-TemplateCommitteeGrid .brief-realigned .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .brief-realigned .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .brief-realigned .col-template-status,
.s-Budget-BTFundingTranchesGrid .brief-realigned .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .brief-realigned .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .brief-realigned .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .brief-realigned .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .brief-realigned .col-template-status,
.s-Budget-CallCircularsAllGrid .brief-realigned .col-template-status,
.s-Budget-CallCircularsGrid .brief-realigned .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .brief-realigned .col-template-status,
.s-Budget-CallSchedulesAllGrid .brief-realigned .col-template-status,
.s-Budget-CallSchedulesGrid .brief-realigned .col-template-status,
.s-Budget-SwotsGrid .brief-realigned .col-template-status,
.s-Budget-BudgetAssumptionsGrid .brief-realigned .col-template-status,
.s-Budget-SeismicActivitiesGrid .brief-realigned .col-template-status,
.s-Budget-ReservesGrid .brief-realigned .col-template-status,
.s-Budget-ProductionGrid .brief-realigned .col-template-status,
.s-Budget-GasUtilizationGrid .brief-realigned .col-template-status,
.s-Budget-RigSequencesGrid .brief-realigned .col-template-status,
.s-Budget-VesselSchedulesGrid .brief-realigned .col-template-status,
.s-Budget-HrSummariesGrid .brief-realigned .col-template-status,
.s-Budget-SharedCostsGrid .brief-realigned .col-template-status,
.s-Budget-SharedCostAllocationsGrid .brief-realigned .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .brief-realigned .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .brief-realigned .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .brief-realigned .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .brief-realigned .col-template-status,
.s-Budget-WellCostsGrid .brief-realigned .col-template-status,
.s-Budget-WellCostElementsGrid .brief-realigned .col-template-status,
.s-Budget-ProjectSummariesGrid .brief-realigned .col-template-status,
.s-Budget-PADWorkProgrammesGrid .brief-realigned .col-template-status,
.s-Budget-RigSequencesGrid .brief-realigned .col-template-status,
.s-Budget-BlocksGrid .brief-realigned .col-template-status,
.s-Budget-CashCallEquitySharesGrid .brief-realigned .col-template-status,
.s-Budget-FieldsGrid .brief-realigned .col-template-status,
.s-Budget-FieldTerrainsGrid .brief-realigned .col-template-status,
.s-Budget-FundingTranchesGrid .brief-realigned .col-template-status,
.s-Budget-FundingTranchesAllGrid .brief-realigned .col-template-status,
.s-Budget-MajorDriversGrid .brief-realigned .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .brief-realigned .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .brief-realigned .col-template-status,
.s-Budget-ExcelTemplatesGrid .brief-realigned .col-template-status,
.s-Budget-OperatorBlocksAllGrid .brief-realigned .col-template-status,
.s-Budget-OperatorBlocksGrid .brief-realigned .col-template-status,
.s-Budget-ProductsGrid .brief-realigned .col-template-status,
.s-Budget-RigsGrid .brief-realigned .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .brief-realigned .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .brief-realigned .col-template-status,
.s-Budget-UAPCodesAllGrid .brief-realigned .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .brief-realigned .col-template-status,
.s-Budget-Operator_UAPCodesGrid .brief-realigned .col-template-status,
.s-Budget-VesselsGrid .brief-realigned .col-template-status,
.s-Budget-WellCostElementGroupsGrid .brief-realigned .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .brief-realigned .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .brief-realigned .col-template-status,
.s-Budget-NonRigActivityTypesGrid .brief-realigned .col-template-status,
.s-Budget-NonRigElementDetailsGrid .brief-realigned .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .brief-realigned .col-template-status,
.s-Budget-WellsAllGrid .brief-realigned .col-template-status,
.s-Budget-WellsGrid .brief-realigned .col-template-status,
.s-Budget-ProjectsGrid .brief-realigned .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .brief-realigned .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .brief-realigned .col-template-status,
.s-Budget-CountryGrid .brief-realigned .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .brief-realigned .col-template-status,
.s-Budget-MonthsGrid .brief-realigned .col-template-status,
.s-Budget-NationalityGrid .brief-realigned .col-template-status,
.s-Budget-PadClustersGrid .brief-realigned .col-template-status,
.s-Budget-PadCommunitiesGrid .brief-realigned .col-template-status,
.s-Budget-SecurityRolesGrid .brief-realigned .col-template-status,
.s-Budget-TemplatesGrid .brief-realigned .col-template-status,
.s-Budget-TerrainsGrid .brief-realigned .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .brief-realigned .col-template-status,
.s-Budget-UAPCodeLevelsGrid .brief-realigned .col-template-status,
.s-Budget-UAPCodeGroupsGrid .brief-realigned .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .brief-realigned .col-template-status,
.s-Budget-UnitsGrid .brief-realigned .col-template-status,
.s-Budget-UnitsOfMeasureGrid .brief-realigned .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .brief-realigned .col-template-status,
.s-Budget-VesselActivitiesGrid .brief-realigned .col-template-status,
.s-Budget-WellClassificationsGrid .brief-realigned .col-template-status,
.s-Budget-YearsGrid .brief-realigned .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .brief-realigned .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .brief-realigned .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .brief-realigned .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .brief-realigned .col-template-status,
.s-Budget-BudgetStatusesGrid .brief-realigned .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .brief-realigned .col-template-status,
.s-Budget-ButtonStatusesGrid .brief-realigned .col-template-status,
.s-Budget-CallCircularStatusesGrid .brief-realigned .col-template-status,
.s-Budget-CashCallStatusesGrid .brief-realigned .col-template-status,
.s-Budget-ContractStatusesGrid .brief-realigned .col-template-status,
.s-Budget-FieldStatusesGrid .brief-realigned .col-template-status,
.s-Budget-FincomStatusesGrid .brief-realigned .col-template-status,
.s-Budget-MacomReviewStatusesGrid .brief-realigned .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .brief-realigned .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .brief-realigned .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .brief-realigned .col-template-status,
.s-Budget-OperatorStatusesGrid .brief-realigned .col-template-status,
.s-Budget-OwnershipStatusesGrid .brief-realigned .col-template-status,
.s-Budget-PerformanceStatusesGrid .brief-realigned .col-template-status,
.s-Budget-ProjectStatusGrid .brief-realigned .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .brief-realigned .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .brief-realigned .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .brief-realigned .col-template-status,
.s-Budget-TemplateStatusesGrid .brief-realigned .col-template-status,
.s-Budget-UAPCodeStatusesGrid .brief-realigned .col-template-status,
.s-Budget-AgreementTypesGrid .brief-realigned .col-template-status,
.s-Budget-BriefTypesGrid .brief-realigned .col-template-status,
.s-Budget-BudgetTypesGrid .brief-realigned .col-template-status,
.s-Budget-MeetingGrid .brief-realigned .col-template-status,
.s-Budget-MeetingAgendaGrid .brief-realigned .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .brief-realigned .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .brief-realigned .col-template-status,
.s-Budget-MeetingDecisionGrid .brief-realigned .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .brief-realigned .col-template-status,
.s-Budget-MeetingLocationGrid .brief-realigned .col-template-status,
.s-Budget-MeetingTypeGrid .brief-realigned .col-template-status,
.s-Budget-FinancialDataGrid .brief-realigned .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .brief-realigned .col-template-status,
.s-Budget-CommitteeTypesGrid .brief-realigned .col-template-status,
.s-Budget-ContractTypesGrid .brief-realigned .col-template-status,
.s-Budget-EmploymentTypeGrid .brief-realigned .col-template-status,
.s-Budget-ExpenditureTypesGrid .brief-realigned .col-template-status,
.s-Budget-FundingTrancheTypesGrid .brief-realigned .col-template-status,
.s-Budget-GasUtilizationTypesGrid .brief-realigned .col-template-status,
.s-Budget-PadProgramTypesGrid .brief-realigned .col-template-status,
.s-Budget-PadTypesGrid .brief-realigned .col-template-status,
.s-Budget-ProductTypesGrid .brief-realigned .col-template-status,
.s-Budget-ProjectTypesGrid .brief-realigned .col-template-status,
.s-Budget-RigTypesGrid .brief-realigned .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .brief-realigned .col-template-status,
.s-Budget-UAPCodeTypesGrid .brief-realigned .col-template-status,
.s-Budget-VesselTypesGrid .brief-realigned .col-template-status,
.s-Budget-WellCostElementTypesGrid .brief-realigned .col-template-status,
.s-Budget-WellTypesGrid .brief-realigned .col-template-status,
.s-Budget-BudgetPreviewGrid .brief-realigned .col-template-status,
.s-Budget-FINCOMAppendixIGrid .brief-realigned .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .brief-realigned .col-template-status,
.s-Budget-FINCOMCollationGrid .brief-realigned .col-template-status,
.s-Budget-CallScheduleActionsGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallCalendarsGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallActivitiesGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallCircularsGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallCalendarsGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallBriefsGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallMandatesGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallPayablesGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallsGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallsAllGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallsEPGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallsBDGGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallSchedulesGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallRequestsGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallEndorsementGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallPayablesGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallMandatesGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .brief-realigned .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .brief-realigned .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .brief-realigned .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .brief-realigned .col-template-status,
.s-Performance-PerformancesGrid .brief-realigned .col-template-status,
.s-Performance-PerformancesAllGrid .brief-realigned .col-template-status,
.s-Performance-PerformancesBDGGrid .brief-realigned .col-template-status,
.s-Performance-PerformanceSchedulesGrid .brief-realigned .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .brief-realigned .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .brief-realigned .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .brief-realigned .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .brief-realigned .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .brief-realigned .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .brief-realigned .col-template-status,
.s-Performance-PerformanceMonthlyGrid .brief-realigned .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .brief-realigned .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .brief-realigned .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .brief-realigned .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .brief-realigned .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .brief-realigned .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .brief-realigned .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .brief-realigned .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .brief-realigned .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .brief-realigned .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .brief-realigned .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .brief-realigned .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .brief-realigned .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .brief-realigned .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .brief-realigned .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .brief-realigned .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .brief-realigned .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .brief-realigned .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .brief-realigned .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .brief-realigned .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .brief-realigned .col-template-status,
.s-Common-DashboardWidgetGrid .brief-realigned .col-template-status,
.s-Administration-BcPproExceptionsGrid .brief-realigned .col-template-status {
  background-color: #FF0000 !important;
}
.s-Administration-IssueTrackingIssuesGrid .brief-deactivated .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .brief-deactivated .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .brief-deactivated .col-template-status,
.s-Administration-NotificationTemplatesGrid .brief-deactivated .col-template-status,
.s-Administration-BudgetAutoTestGrid .brief-deactivated .col-template-status,
.s-Administration-CashCallAutoTestGrid .brief-deactivated .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .brief-deactivated .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .brief-deactivated .col-template-status,
.s-Administration-SiteNotificationsGrid .brief-deactivated .col-template-status,
.s-Budget-AnnualBudgetsGrid .brief-deactivated .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .brief-deactivated .col-template-status,
.s-Budget-BudgetProfilesABGrid .brief-deactivated .col-template-status,
.s-Budget-OperatorProposalsGrid .brief-deactivated .col-template-status,
.s-Budget-MACOMApprovalsGrid .brief-deactivated .col-template-status,
.s-Budget-OPCOMApprovalsGrid .brief-deactivated .col-template-status,
.s-Budget-ApprovedBudgetsGrid .brief-deactivated .col-template-status,
.s-Budget-FiveYearForecastsGrid .brief-deactivated .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .brief-deactivated .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .brief-deactivated .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .brief-deactivated .col-template-status,
.s-Budget-TECOMRecommendationsGrid .brief-deactivated .col-template-status,
.s-Budget-BudgetProfilesGrid .brief-deactivated .col-template-status,
.s-Budget-BudgetProfilesAllGrid .brief-deactivated .col-template-status,
.s-Budget-BudgetsGrid .brief-deactivated .col-template-status,
.s-Budget-CallCircularsGrid .brief-deactivated .col-template-status,
.s-Budget-CallCircularsAllGrid .brief-deactivated .col-template-status,
.s-Budget-CallSchedulesGrid .brief-deactivated .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .brief-deactivated .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .brief-deactivated .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .brief-deactivated .col-template-status,
.s-Budget-BudgetThresholdsGrid .brief-deactivated .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .brief-deactivated .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .brief-deactivated .col-template-status,
.s-Budget-OperatorTemplatesGrid .brief-deactivated .col-template-status,
.s-Budget-TemplateCommitteeGrid .brief-deactivated .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .brief-deactivated .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .brief-deactivated .col-template-status,
.s-Budget-BTFundingTranchesGrid .brief-deactivated .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .brief-deactivated .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .brief-deactivated .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .brief-deactivated .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .brief-deactivated .col-template-status,
.s-Budget-CallCircularsAllGrid .brief-deactivated .col-template-status,
.s-Budget-CallCircularsGrid .brief-deactivated .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .brief-deactivated .col-template-status,
.s-Budget-CallSchedulesAllGrid .brief-deactivated .col-template-status,
.s-Budget-CallSchedulesGrid .brief-deactivated .col-template-status,
.s-Budget-SwotsGrid .brief-deactivated .col-template-status,
.s-Budget-BudgetAssumptionsGrid .brief-deactivated .col-template-status,
.s-Budget-SeismicActivitiesGrid .brief-deactivated .col-template-status,
.s-Budget-ReservesGrid .brief-deactivated .col-template-status,
.s-Budget-ProductionGrid .brief-deactivated .col-template-status,
.s-Budget-GasUtilizationGrid .brief-deactivated .col-template-status,
.s-Budget-RigSequencesGrid .brief-deactivated .col-template-status,
.s-Budget-VesselSchedulesGrid .brief-deactivated .col-template-status,
.s-Budget-HrSummariesGrid .brief-deactivated .col-template-status,
.s-Budget-SharedCostsGrid .brief-deactivated .col-template-status,
.s-Budget-SharedCostAllocationsGrid .brief-deactivated .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .brief-deactivated .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .brief-deactivated .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .brief-deactivated .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .brief-deactivated .col-template-status,
.s-Budget-WellCostsGrid .brief-deactivated .col-template-status,
.s-Budget-WellCostElementsGrid .brief-deactivated .col-template-status,
.s-Budget-ProjectSummariesGrid .brief-deactivated .col-template-status,
.s-Budget-PADWorkProgrammesGrid .brief-deactivated .col-template-status,
.s-Budget-RigSequencesGrid .brief-deactivated .col-template-status,
.s-Budget-BlocksGrid .brief-deactivated .col-template-status,
.s-Budget-CashCallEquitySharesGrid .brief-deactivated .col-template-status,
.s-Budget-FieldsGrid .brief-deactivated .col-template-status,
.s-Budget-FieldTerrainsGrid .brief-deactivated .col-template-status,
.s-Budget-FundingTranchesGrid .brief-deactivated .col-template-status,
.s-Budget-FundingTranchesAllGrid .brief-deactivated .col-template-status,
.s-Budget-MajorDriversGrid .brief-deactivated .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .brief-deactivated .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .brief-deactivated .col-template-status,
.s-Budget-ExcelTemplatesGrid .brief-deactivated .col-template-status,
.s-Budget-OperatorBlocksAllGrid .brief-deactivated .col-template-status,
.s-Budget-OperatorBlocksGrid .brief-deactivated .col-template-status,
.s-Budget-ProductsGrid .brief-deactivated .col-template-status,
.s-Budget-RigsGrid .brief-deactivated .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .brief-deactivated .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .brief-deactivated .col-template-status,
.s-Budget-UAPCodesAllGrid .brief-deactivated .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .brief-deactivated .col-template-status,
.s-Budget-Operator_UAPCodesGrid .brief-deactivated .col-template-status,
.s-Budget-VesselsGrid .brief-deactivated .col-template-status,
.s-Budget-WellCostElementGroupsGrid .brief-deactivated .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .brief-deactivated .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .brief-deactivated .col-template-status,
.s-Budget-NonRigActivityTypesGrid .brief-deactivated .col-template-status,
.s-Budget-NonRigElementDetailsGrid .brief-deactivated .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .brief-deactivated .col-template-status,
.s-Budget-WellsAllGrid .brief-deactivated .col-template-status,
.s-Budget-WellsGrid .brief-deactivated .col-template-status,
.s-Budget-ProjectsGrid .brief-deactivated .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .brief-deactivated .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .brief-deactivated .col-template-status,
.s-Budget-CountryGrid .brief-deactivated .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .brief-deactivated .col-template-status,
.s-Budget-MonthsGrid .brief-deactivated .col-template-status,
.s-Budget-NationalityGrid .brief-deactivated .col-template-status,
.s-Budget-PadClustersGrid .brief-deactivated .col-template-status,
.s-Budget-PadCommunitiesGrid .brief-deactivated .col-template-status,
.s-Budget-SecurityRolesGrid .brief-deactivated .col-template-status,
.s-Budget-TemplatesGrid .brief-deactivated .col-template-status,
.s-Budget-TerrainsGrid .brief-deactivated .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .brief-deactivated .col-template-status,
.s-Budget-UAPCodeLevelsGrid .brief-deactivated .col-template-status,
.s-Budget-UAPCodeGroupsGrid .brief-deactivated .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .brief-deactivated .col-template-status,
.s-Budget-UnitsGrid .brief-deactivated .col-template-status,
.s-Budget-UnitsOfMeasureGrid .brief-deactivated .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .brief-deactivated .col-template-status,
.s-Budget-VesselActivitiesGrid .brief-deactivated .col-template-status,
.s-Budget-WellClassificationsGrid .brief-deactivated .col-template-status,
.s-Budget-YearsGrid .brief-deactivated .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .brief-deactivated .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .brief-deactivated .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .brief-deactivated .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .brief-deactivated .col-template-status,
.s-Budget-BudgetStatusesGrid .brief-deactivated .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .brief-deactivated .col-template-status,
.s-Budget-ButtonStatusesGrid .brief-deactivated .col-template-status,
.s-Budget-CallCircularStatusesGrid .brief-deactivated .col-template-status,
.s-Budget-CashCallStatusesGrid .brief-deactivated .col-template-status,
.s-Budget-ContractStatusesGrid .brief-deactivated .col-template-status,
.s-Budget-FieldStatusesGrid .brief-deactivated .col-template-status,
.s-Budget-FincomStatusesGrid .brief-deactivated .col-template-status,
.s-Budget-MacomReviewStatusesGrid .brief-deactivated .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .brief-deactivated .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .brief-deactivated .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .brief-deactivated .col-template-status,
.s-Budget-OperatorStatusesGrid .brief-deactivated .col-template-status,
.s-Budget-OwnershipStatusesGrid .brief-deactivated .col-template-status,
.s-Budget-PerformanceStatusesGrid .brief-deactivated .col-template-status,
.s-Budget-ProjectStatusGrid .brief-deactivated .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .brief-deactivated .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .brief-deactivated .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .brief-deactivated .col-template-status,
.s-Budget-TemplateStatusesGrid .brief-deactivated .col-template-status,
.s-Budget-UAPCodeStatusesGrid .brief-deactivated .col-template-status,
.s-Budget-AgreementTypesGrid .brief-deactivated .col-template-status,
.s-Budget-BriefTypesGrid .brief-deactivated .col-template-status,
.s-Budget-BudgetTypesGrid .brief-deactivated .col-template-status,
.s-Budget-MeetingGrid .brief-deactivated .col-template-status,
.s-Budget-MeetingAgendaGrid .brief-deactivated .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .brief-deactivated .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .brief-deactivated .col-template-status,
.s-Budget-MeetingDecisionGrid .brief-deactivated .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .brief-deactivated .col-template-status,
.s-Budget-MeetingLocationGrid .brief-deactivated .col-template-status,
.s-Budget-MeetingTypeGrid .brief-deactivated .col-template-status,
.s-Budget-FinancialDataGrid .brief-deactivated .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .brief-deactivated .col-template-status,
.s-Budget-CommitteeTypesGrid .brief-deactivated .col-template-status,
.s-Budget-ContractTypesGrid .brief-deactivated .col-template-status,
.s-Budget-EmploymentTypeGrid .brief-deactivated .col-template-status,
.s-Budget-ExpenditureTypesGrid .brief-deactivated .col-template-status,
.s-Budget-FundingTrancheTypesGrid .brief-deactivated .col-template-status,
.s-Budget-GasUtilizationTypesGrid .brief-deactivated .col-template-status,
.s-Budget-PadProgramTypesGrid .brief-deactivated .col-template-status,
.s-Budget-PadTypesGrid .brief-deactivated .col-template-status,
.s-Budget-ProductTypesGrid .brief-deactivated .col-template-status,
.s-Budget-ProjectTypesGrid .brief-deactivated .col-template-status,
.s-Budget-RigTypesGrid .brief-deactivated .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .brief-deactivated .col-template-status,
.s-Budget-UAPCodeTypesGrid .brief-deactivated .col-template-status,
.s-Budget-VesselTypesGrid .brief-deactivated .col-template-status,
.s-Budget-WellCostElementTypesGrid .brief-deactivated .col-template-status,
.s-Budget-WellTypesGrid .brief-deactivated .col-template-status,
.s-Budget-BudgetPreviewGrid .brief-deactivated .col-template-status,
.s-Budget-FINCOMAppendixIGrid .brief-deactivated .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .brief-deactivated .col-template-status,
.s-Budget-FINCOMCollationGrid .brief-deactivated .col-template-status,
.s-Budget-CallScheduleActionsGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallCalendarsGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallActivitiesGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallCircularsGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallCalendarsGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallBriefsGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallMandatesGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallPayablesGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallsGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallsAllGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallsEPGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallsBDGGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallSchedulesGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallRequestsGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallEndorsementGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallPayablesGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallMandatesGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .brief-deactivated .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .brief-deactivated .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .brief-deactivated .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .brief-deactivated .col-template-status,
.s-Performance-PerformancesGrid .brief-deactivated .col-template-status,
.s-Performance-PerformancesAllGrid .brief-deactivated .col-template-status,
.s-Performance-PerformancesBDGGrid .brief-deactivated .col-template-status,
.s-Performance-PerformanceSchedulesGrid .brief-deactivated .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .brief-deactivated .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .brief-deactivated .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .brief-deactivated .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .brief-deactivated .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .brief-deactivated .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .brief-deactivated .col-template-status,
.s-Performance-PerformanceMonthlyGrid .brief-deactivated .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .brief-deactivated .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .brief-deactivated .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .brief-deactivated .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .brief-deactivated .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .brief-deactivated .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .brief-deactivated .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .brief-deactivated .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .brief-deactivated .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .brief-deactivated .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .brief-deactivated .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .brief-deactivated .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .brief-deactivated .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .brief-deactivated .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .brief-deactivated .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .brief-deactivated .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .brief-deactivated .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .brief-deactivated .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .brief-deactivated .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .brief-deactivated .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .brief-deactivated .col-template-status,
.s-Common-DashboardWidgetGrid .brief-deactivated .col-template-status,
.s-Administration-BcPproExceptionsGrid .brief-deactivated .col-template-status {
  background-color: #FF0000 !important;
}
.s-Administration-IssueTrackingIssuesGrid .in-progress .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .in-progress .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .in-progress .col-template-status,
.s-Administration-NotificationTemplatesGrid .in-progress .col-template-status,
.s-Administration-BudgetAutoTestGrid .in-progress .col-template-status,
.s-Administration-CashCallAutoTestGrid .in-progress .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .in-progress .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .in-progress .col-template-status,
.s-Administration-SiteNotificationsGrid .in-progress .col-template-status,
.s-Budget-AnnualBudgetsGrid .in-progress .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .in-progress .col-template-status,
.s-Budget-BudgetProfilesABGrid .in-progress .col-template-status,
.s-Budget-OperatorProposalsGrid .in-progress .col-template-status,
.s-Budget-MACOMApprovalsGrid .in-progress .col-template-status,
.s-Budget-OPCOMApprovalsGrid .in-progress .col-template-status,
.s-Budget-ApprovedBudgetsGrid .in-progress .col-template-status,
.s-Budget-FiveYearForecastsGrid .in-progress .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .in-progress .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .in-progress .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .in-progress .col-template-status,
.s-Budget-TECOMRecommendationsGrid .in-progress .col-template-status,
.s-Budget-BudgetProfilesGrid .in-progress .col-template-status,
.s-Budget-BudgetProfilesAllGrid .in-progress .col-template-status,
.s-Budget-BudgetsGrid .in-progress .col-template-status,
.s-Budget-CallCircularsGrid .in-progress .col-template-status,
.s-Budget-CallCircularsAllGrid .in-progress .col-template-status,
.s-Budget-CallSchedulesGrid .in-progress .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .in-progress .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .in-progress .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .in-progress .col-template-status,
.s-Budget-BudgetThresholdsGrid .in-progress .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .in-progress .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .in-progress .col-template-status,
.s-Budget-OperatorTemplatesGrid .in-progress .col-template-status,
.s-Budget-TemplateCommitteeGrid .in-progress .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .in-progress .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .in-progress .col-template-status,
.s-Budget-BTFundingTranchesGrid .in-progress .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .in-progress .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .in-progress .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .in-progress .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .in-progress .col-template-status,
.s-Budget-CallCircularsAllGrid .in-progress .col-template-status,
.s-Budget-CallCircularsGrid .in-progress .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .in-progress .col-template-status,
.s-Budget-CallSchedulesAllGrid .in-progress .col-template-status,
.s-Budget-CallSchedulesGrid .in-progress .col-template-status,
.s-Budget-SwotsGrid .in-progress .col-template-status,
.s-Budget-BudgetAssumptionsGrid .in-progress .col-template-status,
.s-Budget-SeismicActivitiesGrid .in-progress .col-template-status,
.s-Budget-ReservesGrid .in-progress .col-template-status,
.s-Budget-ProductionGrid .in-progress .col-template-status,
.s-Budget-GasUtilizationGrid .in-progress .col-template-status,
.s-Budget-RigSequencesGrid .in-progress .col-template-status,
.s-Budget-VesselSchedulesGrid .in-progress .col-template-status,
.s-Budget-HrSummariesGrid .in-progress .col-template-status,
.s-Budget-SharedCostsGrid .in-progress .col-template-status,
.s-Budget-SharedCostAllocationsGrid .in-progress .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .in-progress .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .in-progress .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .in-progress .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .in-progress .col-template-status,
.s-Budget-WellCostsGrid .in-progress .col-template-status,
.s-Budget-WellCostElementsGrid .in-progress .col-template-status,
.s-Budget-ProjectSummariesGrid .in-progress .col-template-status,
.s-Budget-PADWorkProgrammesGrid .in-progress .col-template-status,
.s-Budget-RigSequencesGrid .in-progress .col-template-status,
.s-Budget-BlocksGrid .in-progress .col-template-status,
.s-Budget-CashCallEquitySharesGrid .in-progress .col-template-status,
.s-Budget-FieldsGrid .in-progress .col-template-status,
.s-Budget-FieldTerrainsGrid .in-progress .col-template-status,
.s-Budget-FundingTranchesGrid .in-progress .col-template-status,
.s-Budget-FundingTranchesAllGrid .in-progress .col-template-status,
.s-Budget-MajorDriversGrid .in-progress .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .in-progress .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .in-progress .col-template-status,
.s-Budget-ExcelTemplatesGrid .in-progress .col-template-status,
.s-Budget-OperatorBlocksAllGrid .in-progress .col-template-status,
.s-Budget-OperatorBlocksGrid .in-progress .col-template-status,
.s-Budget-ProductsGrid .in-progress .col-template-status,
.s-Budget-RigsGrid .in-progress .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .in-progress .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .in-progress .col-template-status,
.s-Budget-UAPCodesAllGrid .in-progress .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .in-progress .col-template-status,
.s-Budget-Operator_UAPCodesGrid .in-progress .col-template-status,
.s-Budget-VesselsGrid .in-progress .col-template-status,
.s-Budget-WellCostElementGroupsGrid .in-progress .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .in-progress .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .in-progress .col-template-status,
.s-Budget-NonRigActivityTypesGrid .in-progress .col-template-status,
.s-Budget-NonRigElementDetailsGrid .in-progress .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .in-progress .col-template-status,
.s-Budget-WellsAllGrid .in-progress .col-template-status,
.s-Budget-WellsGrid .in-progress .col-template-status,
.s-Budget-ProjectsGrid .in-progress .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .in-progress .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .in-progress .col-template-status,
.s-Budget-CountryGrid .in-progress .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .in-progress .col-template-status,
.s-Budget-MonthsGrid .in-progress .col-template-status,
.s-Budget-NationalityGrid .in-progress .col-template-status,
.s-Budget-PadClustersGrid .in-progress .col-template-status,
.s-Budget-PadCommunitiesGrid .in-progress .col-template-status,
.s-Budget-SecurityRolesGrid .in-progress .col-template-status,
.s-Budget-TemplatesGrid .in-progress .col-template-status,
.s-Budget-TerrainsGrid .in-progress .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .in-progress .col-template-status,
.s-Budget-UAPCodeLevelsGrid .in-progress .col-template-status,
.s-Budget-UAPCodeGroupsGrid .in-progress .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .in-progress .col-template-status,
.s-Budget-UnitsGrid .in-progress .col-template-status,
.s-Budget-UnitsOfMeasureGrid .in-progress .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .in-progress .col-template-status,
.s-Budget-VesselActivitiesGrid .in-progress .col-template-status,
.s-Budget-WellClassificationsGrid .in-progress .col-template-status,
.s-Budget-YearsGrid .in-progress .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .in-progress .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .in-progress .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .in-progress .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .in-progress .col-template-status,
.s-Budget-BudgetStatusesGrid .in-progress .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .in-progress .col-template-status,
.s-Budget-ButtonStatusesGrid .in-progress .col-template-status,
.s-Budget-CallCircularStatusesGrid .in-progress .col-template-status,
.s-Budget-CashCallStatusesGrid .in-progress .col-template-status,
.s-Budget-ContractStatusesGrid .in-progress .col-template-status,
.s-Budget-FieldStatusesGrid .in-progress .col-template-status,
.s-Budget-FincomStatusesGrid .in-progress .col-template-status,
.s-Budget-MacomReviewStatusesGrid .in-progress .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .in-progress .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .in-progress .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .in-progress .col-template-status,
.s-Budget-OperatorStatusesGrid .in-progress .col-template-status,
.s-Budget-OwnershipStatusesGrid .in-progress .col-template-status,
.s-Budget-PerformanceStatusesGrid .in-progress .col-template-status,
.s-Budget-ProjectStatusGrid .in-progress .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .in-progress .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .in-progress .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .in-progress .col-template-status,
.s-Budget-TemplateStatusesGrid .in-progress .col-template-status,
.s-Budget-UAPCodeStatusesGrid .in-progress .col-template-status,
.s-Budget-AgreementTypesGrid .in-progress .col-template-status,
.s-Budget-BriefTypesGrid .in-progress .col-template-status,
.s-Budget-BudgetTypesGrid .in-progress .col-template-status,
.s-Budget-MeetingGrid .in-progress .col-template-status,
.s-Budget-MeetingAgendaGrid .in-progress .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .in-progress .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .in-progress .col-template-status,
.s-Budget-MeetingDecisionGrid .in-progress .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .in-progress .col-template-status,
.s-Budget-MeetingLocationGrid .in-progress .col-template-status,
.s-Budget-MeetingTypeGrid .in-progress .col-template-status,
.s-Budget-FinancialDataGrid .in-progress .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .in-progress .col-template-status,
.s-Budget-CommitteeTypesGrid .in-progress .col-template-status,
.s-Budget-ContractTypesGrid .in-progress .col-template-status,
.s-Budget-EmploymentTypeGrid .in-progress .col-template-status,
.s-Budget-ExpenditureTypesGrid .in-progress .col-template-status,
.s-Budget-FundingTrancheTypesGrid .in-progress .col-template-status,
.s-Budget-GasUtilizationTypesGrid .in-progress .col-template-status,
.s-Budget-PadProgramTypesGrid .in-progress .col-template-status,
.s-Budget-PadTypesGrid .in-progress .col-template-status,
.s-Budget-ProductTypesGrid .in-progress .col-template-status,
.s-Budget-ProjectTypesGrid .in-progress .col-template-status,
.s-Budget-RigTypesGrid .in-progress .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .in-progress .col-template-status,
.s-Budget-UAPCodeTypesGrid .in-progress .col-template-status,
.s-Budget-VesselTypesGrid .in-progress .col-template-status,
.s-Budget-WellCostElementTypesGrid .in-progress .col-template-status,
.s-Budget-WellTypesGrid .in-progress .col-template-status,
.s-Budget-BudgetPreviewGrid .in-progress .col-template-status,
.s-Budget-FINCOMAppendixIGrid .in-progress .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .in-progress .col-template-status,
.s-Budget-FINCOMCollationGrid .in-progress .col-template-status,
.s-Budget-CallScheduleActionsGrid .in-progress .col-template-status,
.s-CashCall-CashCallCalendarsGrid .in-progress .col-template-status,
.s-CashCall-CashCallActivitiesGrid .in-progress .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .in-progress .col-template-status,
.s-CashCall-CashCallCircularsGrid .in-progress .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .in-progress .col-template-status,
.s-CashCall-CashCallCalendarsGrid .in-progress .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .in-progress .col-template-status,
.s-CashCall-CashCallBriefsGrid .in-progress .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .in-progress .col-template-status,
.s-CashCall-CashCallMandatesGrid .in-progress .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .in-progress .col-template-status,
.s-CashCall-CashCallPayablesGrid .in-progress .col-template-status,
.s-CashCall-CashCallsGrid .in-progress .col-template-status,
.s-CashCall-CashCallsAllGrid .in-progress .col-template-status,
.s-CashCall-CashCallsEPGrid .in-progress .col-template-status,
.s-CashCall-CashCallsBDGGrid .in-progress .col-template-status,
.s-CashCall-CashCallSchedulesGrid .in-progress .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .in-progress .col-template-status,
.s-CashCall-CashCallRequestsGrid .in-progress .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .in-progress .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .in-progress .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .in-progress .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .in-progress .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .in-progress .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .in-progress .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .in-progress .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .in-progress .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .in-progress .col-template-status,
.s-CashCall-CashCallEndorsementGrid .in-progress .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .in-progress .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .in-progress .col-template-status,
.s-CashCall-CashCallPayablesGrid .in-progress .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .in-progress .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .in-progress .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .in-progress .col-template-status,
.s-CashCall-CashCallMandatesGrid .in-progress .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .in-progress .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .in-progress .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .in-progress .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .in-progress .col-template-status,
.s-Performance-PerformancesGrid .in-progress .col-template-status,
.s-Performance-PerformancesAllGrid .in-progress .col-template-status,
.s-Performance-PerformancesBDGGrid .in-progress .col-template-status,
.s-Performance-PerformanceSchedulesGrid .in-progress .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .in-progress .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .in-progress .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .in-progress .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .in-progress .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .in-progress .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .in-progress .col-template-status,
.s-Performance-PerformanceMonthlyGrid .in-progress .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .in-progress .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .in-progress .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .in-progress .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .in-progress .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .in-progress .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .in-progress .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .in-progress .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .in-progress .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .in-progress .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .in-progress .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .in-progress .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .in-progress .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .in-progress .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .in-progress .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .in-progress .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .in-progress .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .in-progress .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .in-progress .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .in-progress .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .in-progress .col-template-status,
.s-Common-DashboardWidgetGrid .in-progress .col-template-status,
.s-Administration-BcPproExceptionsGrid .in-progress .col-template-status {
  background-color: #36D900 !important;
}
.s-Administration-IssueTrackingIssuesGrid .completed .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .completed .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .completed .col-template-status,
.s-Administration-NotificationTemplatesGrid .completed .col-template-status,
.s-Administration-BudgetAutoTestGrid .completed .col-template-status,
.s-Administration-CashCallAutoTestGrid .completed .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .completed .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .completed .col-template-status,
.s-Administration-SiteNotificationsGrid .completed .col-template-status,
.s-Budget-AnnualBudgetsGrid .completed .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .completed .col-template-status,
.s-Budget-BudgetProfilesABGrid .completed .col-template-status,
.s-Budget-OperatorProposalsGrid .completed .col-template-status,
.s-Budget-MACOMApprovalsGrid .completed .col-template-status,
.s-Budget-OPCOMApprovalsGrid .completed .col-template-status,
.s-Budget-ApprovedBudgetsGrid .completed .col-template-status,
.s-Budget-FiveYearForecastsGrid .completed .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .completed .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .completed .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .completed .col-template-status,
.s-Budget-TECOMRecommendationsGrid .completed .col-template-status,
.s-Budget-BudgetProfilesGrid .completed .col-template-status,
.s-Budget-BudgetProfilesAllGrid .completed .col-template-status,
.s-Budget-BudgetsGrid .completed .col-template-status,
.s-Budget-CallCircularsGrid .completed .col-template-status,
.s-Budget-CallCircularsAllGrid .completed .col-template-status,
.s-Budget-CallSchedulesGrid .completed .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .completed .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .completed .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .completed .col-template-status,
.s-Budget-BudgetThresholdsGrid .completed .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .completed .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .completed .col-template-status,
.s-Budget-OperatorTemplatesGrid .completed .col-template-status,
.s-Budget-TemplateCommitteeGrid .completed .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .completed .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .completed .col-template-status,
.s-Budget-BTFundingTranchesGrid .completed .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .completed .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .completed .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .completed .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .completed .col-template-status,
.s-Budget-CallCircularsAllGrid .completed .col-template-status,
.s-Budget-CallCircularsGrid .completed .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .completed .col-template-status,
.s-Budget-CallSchedulesAllGrid .completed .col-template-status,
.s-Budget-CallSchedulesGrid .completed .col-template-status,
.s-Budget-SwotsGrid .completed .col-template-status,
.s-Budget-BudgetAssumptionsGrid .completed .col-template-status,
.s-Budget-SeismicActivitiesGrid .completed .col-template-status,
.s-Budget-ReservesGrid .completed .col-template-status,
.s-Budget-ProductionGrid .completed .col-template-status,
.s-Budget-GasUtilizationGrid .completed .col-template-status,
.s-Budget-RigSequencesGrid .completed .col-template-status,
.s-Budget-VesselSchedulesGrid .completed .col-template-status,
.s-Budget-HrSummariesGrid .completed .col-template-status,
.s-Budget-SharedCostsGrid .completed .col-template-status,
.s-Budget-SharedCostAllocationsGrid .completed .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .completed .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .completed .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .completed .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .completed .col-template-status,
.s-Budget-WellCostsGrid .completed .col-template-status,
.s-Budget-WellCostElementsGrid .completed .col-template-status,
.s-Budget-ProjectSummariesGrid .completed .col-template-status,
.s-Budget-PADWorkProgrammesGrid .completed .col-template-status,
.s-Budget-RigSequencesGrid .completed .col-template-status,
.s-Budget-BlocksGrid .completed .col-template-status,
.s-Budget-CashCallEquitySharesGrid .completed .col-template-status,
.s-Budget-FieldsGrid .completed .col-template-status,
.s-Budget-FieldTerrainsGrid .completed .col-template-status,
.s-Budget-FundingTranchesGrid .completed .col-template-status,
.s-Budget-FundingTranchesAllGrid .completed .col-template-status,
.s-Budget-MajorDriversGrid .completed .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .completed .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .completed .col-template-status,
.s-Budget-ExcelTemplatesGrid .completed .col-template-status,
.s-Budget-OperatorBlocksAllGrid .completed .col-template-status,
.s-Budget-OperatorBlocksGrid .completed .col-template-status,
.s-Budget-ProductsGrid .completed .col-template-status,
.s-Budget-RigsGrid .completed .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .completed .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .completed .col-template-status,
.s-Budget-UAPCodesAllGrid .completed .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .completed .col-template-status,
.s-Budget-Operator_UAPCodesGrid .completed .col-template-status,
.s-Budget-VesselsGrid .completed .col-template-status,
.s-Budget-WellCostElementGroupsGrid .completed .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .completed .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .completed .col-template-status,
.s-Budget-NonRigActivityTypesGrid .completed .col-template-status,
.s-Budget-NonRigElementDetailsGrid .completed .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .completed .col-template-status,
.s-Budget-WellsAllGrid .completed .col-template-status,
.s-Budget-WellsGrid .completed .col-template-status,
.s-Budget-ProjectsGrid .completed .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .completed .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .completed .col-template-status,
.s-Budget-CountryGrid .completed .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .completed .col-template-status,
.s-Budget-MonthsGrid .completed .col-template-status,
.s-Budget-NationalityGrid .completed .col-template-status,
.s-Budget-PadClustersGrid .completed .col-template-status,
.s-Budget-PadCommunitiesGrid .completed .col-template-status,
.s-Budget-SecurityRolesGrid .completed .col-template-status,
.s-Budget-TemplatesGrid .completed .col-template-status,
.s-Budget-TerrainsGrid .completed .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .completed .col-template-status,
.s-Budget-UAPCodeLevelsGrid .completed .col-template-status,
.s-Budget-UAPCodeGroupsGrid .completed .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .completed .col-template-status,
.s-Budget-UnitsGrid .completed .col-template-status,
.s-Budget-UnitsOfMeasureGrid .completed .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .completed .col-template-status,
.s-Budget-VesselActivitiesGrid .completed .col-template-status,
.s-Budget-WellClassificationsGrid .completed .col-template-status,
.s-Budget-YearsGrid .completed .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .completed .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .completed .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .completed .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .completed .col-template-status,
.s-Budget-BudgetStatusesGrid .completed .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .completed .col-template-status,
.s-Budget-ButtonStatusesGrid .completed .col-template-status,
.s-Budget-CallCircularStatusesGrid .completed .col-template-status,
.s-Budget-CashCallStatusesGrid .completed .col-template-status,
.s-Budget-ContractStatusesGrid .completed .col-template-status,
.s-Budget-FieldStatusesGrid .completed .col-template-status,
.s-Budget-FincomStatusesGrid .completed .col-template-status,
.s-Budget-MacomReviewStatusesGrid .completed .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .completed .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .completed .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .completed .col-template-status,
.s-Budget-OperatorStatusesGrid .completed .col-template-status,
.s-Budget-OwnershipStatusesGrid .completed .col-template-status,
.s-Budget-PerformanceStatusesGrid .completed .col-template-status,
.s-Budget-ProjectStatusGrid .completed .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .completed .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .completed .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .completed .col-template-status,
.s-Budget-TemplateStatusesGrid .completed .col-template-status,
.s-Budget-UAPCodeStatusesGrid .completed .col-template-status,
.s-Budget-AgreementTypesGrid .completed .col-template-status,
.s-Budget-BriefTypesGrid .completed .col-template-status,
.s-Budget-BudgetTypesGrid .completed .col-template-status,
.s-Budget-MeetingGrid .completed .col-template-status,
.s-Budget-MeetingAgendaGrid .completed .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .completed .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .completed .col-template-status,
.s-Budget-MeetingDecisionGrid .completed .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .completed .col-template-status,
.s-Budget-MeetingLocationGrid .completed .col-template-status,
.s-Budget-MeetingTypeGrid .completed .col-template-status,
.s-Budget-FinancialDataGrid .completed .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .completed .col-template-status,
.s-Budget-CommitteeTypesGrid .completed .col-template-status,
.s-Budget-ContractTypesGrid .completed .col-template-status,
.s-Budget-EmploymentTypeGrid .completed .col-template-status,
.s-Budget-ExpenditureTypesGrid .completed .col-template-status,
.s-Budget-FundingTrancheTypesGrid .completed .col-template-status,
.s-Budget-GasUtilizationTypesGrid .completed .col-template-status,
.s-Budget-PadProgramTypesGrid .completed .col-template-status,
.s-Budget-PadTypesGrid .completed .col-template-status,
.s-Budget-ProductTypesGrid .completed .col-template-status,
.s-Budget-ProjectTypesGrid .completed .col-template-status,
.s-Budget-RigTypesGrid .completed .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .completed .col-template-status,
.s-Budget-UAPCodeTypesGrid .completed .col-template-status,
.s-Budget-VesselTypesGrid .completed .col-template-status,
.s-Budget-WellCostElementTypesGrid .completed .col-template-status,
.s-Budget-WellTypesGrid .completed .col-template-status,
.s-Budget-BudgetPreviewGrid .completed .col-template-status,
.s-Budget-FINCOMAppendixIGrid .completed .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .completed .col-template-status,
.s-Budget-FINCOMCollationGrid .completed .col-template-status,
.s-Budget-CallScheduleActionsGrid .completed .col-template-status,
.s-CashCall-CashCallCalendarsGrid .completed .col-template-status,
.s-CashCall-CashCallActivitiesGrid .completed .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .completed .col-template-status,
.s-CashCall-CashCallCircularsGrid .completed .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .completed .col-template-status,
.s-CashCall-CashCallCalendarsGrid .completed .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .completed .col-template-status,
.s-CashCall-CashCallBriefsGrid .completed .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .completed .col-template-status,
.s-CashCall-CashCallMandatesGrid .completed .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .completed .col-template-status,
.s-CashCall-CashCallPayablesGrid .completed .col-template-status,
.s-CashCall-CashCallsGrid .completed .col-template-status,
.s-CashCall-CashCallsAllGrid .completed .col-template-status,
.s-CashCall-CashCallsEPGrid .completed .col-template-status,
.s-CashCall-CashCallsBDGGrid .completed .col-template-status,
.s-CashCall-CashCallSchedulesGrid .completed .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .completed .col-template-status,
.s-CashCall-CashCallRequestsGrid .completed .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .completed .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .completed .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .completed .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .completed .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .completed .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .completed .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .completed .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .completed .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .completed .col-template-status,
.s-CashCall-CashCallEndorsementGrid .completed .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .completed .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .completed .col-template-status,
.s-CashCall-CashCallPayablesGrid .completed .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .completed .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .completed .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .completed .col-template-status,
.s-CashCall-CashCallMandatesGrid .completed .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .completed .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .completed .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .completed .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .completed .col-template-status,
.s-Performance-PerformancesGrid .completed .col-template-status,
.s-Performance-PerformancesAllGrid .completed .col-template-status,
.s-Performance-PerformancesBDGGrid .completed .col-template-status,
.s-Performance-PerformanceSchedulesGrid .completed .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .completed .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .completed .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .completed .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .completed .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .completed .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .completed .col-template-status,
.s-Performance-PerformanceMonthlyGrid .completed .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .completed .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .completed .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .completed .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .completed .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .completed .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .completed .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .completed .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .completed .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .completed .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .completed .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .completed .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .completed .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .completed .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .completed .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .completed .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .completed .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .completed .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .completed .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .completed .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .completed .col-template-status,
.s-Common-DashboardWidgetGrid .completed .col-template-status,
.s-Administration-BcPproExceptionsGrid .completed .col-template-status {
  background-color: #36D900 !important;
}
.s-Administration-IssueTrackingIssuesGrid .active .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .active .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .active .col-template-status,
.s-Administration-NotificationTemplatesGrid .active .col-template-status,
.s-Administration-BudgetAutoTestGrid .active .col-template-status,
.s-Administration-CashCallAutoTestGrid .active .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .active .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .active .col-template-status,
.s-Administration-SiteNotificationsGrid .active .col-template-status,
.s-Budget-AnnualBudgetsGrid .active .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .active .col-template-status,
.s-Budget-BudgetProfilesABGrid .active .col-template-status,
.s-Budget-OperatorProposalsGrid .active .col-template-status,
.s-Budget-MACOMApprovalsGrid .active .col-template-status,
.s-Budget-OPCOMApprovalsGrid .active .col-template-status,
.s-Budget-ApprovedBudgetsGrid .active .col-template-status,
.s-Budget-FiveYearForecastsGrid .active .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .active .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .active .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .active .col-template-status,
.s-Budget-TECOMRecommendationsGrid .active .col-template-status,
.s-Budget-BudgetProfilesGrid .active .col-template-status,
.s-Budget-BudgetProfilesAllGrid .active .col-template-status,
.s-Budget-BudgetsGrid .active .col-template-status,
.s-Budget-CallCircularsGrid .active .col-template-status,
.s-Budget-CallCircularsAllGrid .active .col-template-status,
.s-Budget-CallSchedulesGrid .active .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .active .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .active .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .active .col-template-status,
.s-Budget-BudgetThresholdsGrid .active .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .active .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .active .col-template-status,
.s-Budget-OperatorTemplatesGrid .active .col-template-status,
.s-Budget-TemplateCommitteeGrid .active .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .active .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .active .col-template-status,
.s-Budget-BTFundingTranchesGrid .active .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .active .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .active .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .active .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .active .col-template-status,
.s-Budget-CallCircularsAllGrid .active .col-template-status,
.s-Budget-CallCircularsGrid .active .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .active .col-template-status,
.s-Budget-CallSchedulesAllGrid .active .col-template-status,
.s-Budget-CallSchedulesGrid .active .col-template-status,
.s-Budget-SwotsGrid .active .col-template-status,
.s-Budget-BudgetAssumptionsGrid .active .col-template-status,
.s-Budget-SeismicActivitiesGrid .active .col-template-status,
.s-Budget-ReservesGrid .active .col-template-status,
.s-Budget-ProductionGrid .active .col-template-status,
.s-Budget-GasUtilizationGrid .active .col-template-status,
.s-Budget-RigSequencesGrid .active .col-template-status,
.s-Budget-VesselSchedulesGrid .active .col-template-status,
.s-Budget-HrSummariesGrid .active .col-template-status,
.s-Budget-SharedCostsGrid .active .col-template-status,
.s-Budget-SharedCostAllocationsGrid .active .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .active .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .active .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .active .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .active .col-template-status,
.s-Budget-WellCostsGrid .active .col-template-status,
.s-Budget-WellCostElementsGrid .active .col-template-status,
.s-Budget-ProjectSummariesGrid .active .col-template-status,
.s-Budget-PADWorkProgrammesGrid .active .col-template-status,
.s-Budget-RigSequencesGrid .active .col-template-status,
.s-Budget-BlocksGrid .active .col-template-status,
.s-Budget-CashCallEquitySharesGrid .active .col-template-status,
.s-Budget-FieldsGrid .active .col-template-status,
.s-Budget-FieldTerrainsGrid .active .col-template-status,
.s-Budget-FundingTranchesGrid .active .col-template-status,
.s-Budget-FundingTranchesAllGrid .active .col-template-status,
.s-Budget-MajorDriversGrid .active .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .active .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .active .col-template-status,
.s-Budget-ExcelTemplatesGrid .active .col-template-status,
.s-Budget-OperatorBlocksAllGrid .active .col-template-status,
.s-Budget-OperatorBlocksGrid .active .col-template-status,
.s-Budget-ProductsGrid .active .col-template-status,
.s-Budget-RigsGrid .active .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .active .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .active .col-template-status,
.s-Budget-UAPCodesAllGrid .active .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .active .col-template-status,
.s-Budget-Operator_UAPCodesGrid .active .col-template-status,
.s-Budget-VesselsGrid .active .col-template-status,
.s-Budget-WellCostElementGroupsGrid .active .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .active .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .active .col-template-status,
.s-Budget-NonRigActivityTypesGrid .active .col-template-status,
.s-Budget-NonRigElementDetailsGrid .active .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .active .col-template-status,
.s-Budget-WellsAllGrid .active .col-template-status,
.s-Budget-WellsGrid .active .col-template-status,
.s-Budget-ProjectsGrid .active .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .active .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .active .col-template-status,
.s-Budget-CountryGrid .active .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .active .col-template-status,
.s-Budget-MonthsGrid .active .col-template-status,
.s-Budget-NationalityGrid .active .col-template-status,
.s-Budget-PadClustersGrid .active .col-template-status,
.s-Budget-PadCommunitiesGrid .active .col-template-status,
.s-Budget-SecurityRolesGrid .active .col-template-status,
.s-Budget-TemplatesGrid .active .col-template-status,
.s-Budget-TerrainsGrid .active .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .active .col-template-status,
.s-Budget-UAPCodeLevelsGrid .active .col-template-status,
.s-Budget-UAPCodeGroupsGrid .active .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .active .col-template-status,
.s-Budget-UnitsGrid .active .col-template-status,
.s-Budget-UnitsOfMeasureGrid .active .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .active .col-template-status,
.s-Budget-VesselActivitiesGrid .active .col-template-status,
.s-Budget-WellClassificationsGrid .active .col-template-status,
.s-Budget-YearsGrid .active .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .active .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .active .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .active .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .active .col-template-status,
.s-Budget-BudgetStatusesGrid .active .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .active .col-template-status,
.s-Budget-ButtonStatusesGrid .active .col-template-status,
.s-Budget-CallCircularStatusesGrid .active .col-template-status,
.s-Budget-CashCallStatusesGrid .active .col-template-status,
.s-Budget-ContractStatusesGrid .active .col-template-status,
.s-Budget-FieldStatusesGrid .active .col-template-status,
.s-Budget-FincomStatusesGrid .active .col-template-status,
.s-Budget-MacomReviewStatusesGrid .active .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .active .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .active .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .active .col-template-status,
.s-Budget-OperatorStatusesGrid .active .col-template-status,
.s-Budget-OwnershipStatusesGrid .active .col-template-status,
.s-Budget-PerformanceStatusesGrid .active .col-template-status,
.s-Budget-ProjectStatusGrid .active .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .active .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .active .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .active .col-template-status,
.s-Budget-TemplateStatusesGrid .active .col-template-status,
.s-Budget-UAPCodeStatusesGrid .active .col-template-status,
.s-Budget-AgreementTypesGrid .active .col-template-status,
.s-Budget-BriefTypesGrid .active .col-template-status,
.s-Budget-BudgetTypesGrid .active .col-template-status,
.s-Budget-MeetingGrid .active .col-template-status,
.s-Budget-MeetingAgendaGrid .active .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .active .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .active .col-template-status,
.s-Budget-MeetingDecisionGrid .active .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .active .col-template-status,
.s-Budget-MeetingLocationGrid .active .col-template-status,
.s-Budget-MeetingTypeGrid .active .col-template-status,
.s-Budget-FinancialDataGrid .active .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .active .col-template-status,
.s-Budget-CommitteeTypesGrid .active .col-template-status,
.s-Budget-ContractTypesGrid .active .col-template-status,
.s-Budget-EmploymentTypeGrid .active .col-template-status,
.s-Budget-ExpenditureTypesGrid .active .col-template-status,
.s-Budget-FundingTrancheTypesGrid .active .col-template-status,
.s-Budget-GasUtilizationTypesGrid .active .col-template-status,
.s-Budget-PadProgramTypesGrid .active .col-template-status,
.s-Budget-PadTypesGrid .active .col-template-status,
.s-Budget-ProductTypesGrid .active .col-template-status,
.s-Budget-ProjectTypesGrid .active .col-template-status,
.s-Budget-RigTypesGrid .active .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .active .col-template-status,
.s-Budget-UAPCodeTypesGrid .active .col-template-status,
.s-Budget-VesselTypesGrid .active .col-template-status,
.s-Budget-WellCostElementTypesGrid .active .col-template-status,
.s-Budget-WellTypesGrid .active .col-template-status,
.s-Budget-BudgetPreviewGrid .active .col-template-status,
.s-Budget-FINCOMAppendixIGrid .active .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .active .col-template-status,
.s-Budget-FINCOMCollationGrid .active .col-template-status,
.s-Budget-CallScheduleActionsGrid .active .col-template-status,
.s-CashCall-CashCallCalendarsGrid .active .col-template-status,
.s-CashCall-CashCallActivitiesGrid .active .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .active .col-template-status,
.s-CashCall-CashCallCircularsGrid .active .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .active .col-template-status,
.s-CashCall-CashCallCalendarsGrid .active .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .active .col-template-status,
.s-CashCall-CashCallBriefsGrid .active .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .active .col-template-status,
.s-CashCall-CashCallMandatesGrid .active .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .active .col-template-status,
.s-CashCall-CashCallPayablesGrid .active .col-template-status,
.s-CashCall-CashCallsGrid .active .col-template-status,
.s-CashCall-CashCallsAllGrid .active .col-template-status,
.s-CashCall-CashCallsEPGrid .active .col-template-status,
.s-CashCall-CashCallsBDGGrid .active .col-template-status,
.s-CashCall-CashCallSchedulesGrid .active .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .active .col-template-status,
.s-CashCall-CashCallRequestsGrid .active .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .active .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .active .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .active .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .active .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .active .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .active .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .active .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .active .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .active .col-template-status,
.s-CashCall-CashCallEndorsementGrid .active .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .active .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .active .col-template-status,
.s-CashCall-CashCallPayablesGrid .active .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .active .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .active .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .active .col-template-status,
.s-CashCall-CashCallMandatesGrid .active .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .active .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .active .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .active .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .active .col-template-status,
.s-Performance-PerformancesGrid .active .col-template-status,
.s-Performance-PerformancesAllGrid .active .col-template-status,
.s-Performance-PerformancesBDGGrid .active .col-template-status,
.s-Performance-PerformanceSchedulesGrid .active .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .active .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .active .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .active .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .active .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .active .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .active .col-template-status,
.s-Performance-PerformanceMonthlyGrid .active .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .active .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .active .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .active .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .active .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .active .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .active .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .active .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .active .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .active .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .active .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .active .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .active .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .active .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .active .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .active .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .active .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .active .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .active .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .active .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .active .col-template-status,
.s-Common-DashboardWidgetGrid .active .col-template-status,
.s-Administration-BcPproExceptionsGrid .active .col-template-status {
  background-color: #36D900 !important;
}
.s-Administration-IssueTrackingIssuesGrid .deactivated .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .deactivated .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .deactivated .col-template-status,
.s-Administration-NotificationTemplatesGrid .deactivated .col-template-status,
.s-Administration-BudgetAutoTestGrid .deactivated .col-template-status,
.s-Administration-CashCallAutoTestGrid .deactivated .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .deactivated .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .deactivated .col-template-status,
.s-Administration-SiteNotificationsGrid .deactivated .col-template-status,
.s-Budget-AnnualBudgetsGrid .deactivated .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .deactivated .col-template-status,
.s-Budget-BudgetProfilesABGrid .deactivated .col-template-status,
.s-Budget-OperatorProposalsGrid .deactivated .col-template-status,
.s-Budget-MACOMApprovalsGrid .deactivated .col-template-status,
.s-Budget-OPCOMApprovalsGrid .deactivated .col-template-status,
.s-Budget-ApprovedBudgetsGrid .deactivated .col-template-status,
.s-Budget-FiveYearForecastsGrid .deactivated .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .deactivated .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .deactivated .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .deactivated .col-template-status,
.s-Budget-TECOMRecommendationsGrid .deactivated .col-template-status,
.s-Budget-BudgetProfilesGrid .deactivated .col-template-status,
.s-Budget-BudgetProfilesAllGrid .deactivated .col-template-status,
.s-Budget-BudgetsGrid .deactivated .col-template-status,
.s-Budget-CallCircularsGrid .deactivated .col-template-status,
.s-Budget-CallCircularsAllGrid .deactivated .col-template-status,
.s-Budget-CallSchedulesGrid .deactivated .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .deactivated .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .deactivated .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .deactivated .col-template-status,
.s-Budget-BudgetThresholdsGrid .deactivated .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .deactivated .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .deactivated .col-template-status,
.s-Budget-OperatorTemplatesGrid .deactivated .col-template-status,
.s-Budget-TemplateCommitteeGrid .deactivated .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .deactivated .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .deactivated .col-template-status,
.s-Budget-BTFundingTranchesGrid .deactivated .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .deactivated .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .deactivated .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .deactivated .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .deactivated .col-template-status,
.s-Budget-CallCircularsAllGrid .deactivated .col-template-status,
.s-Budget-CallCircularsGrid .deactivated .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .deactivated .col-template-status,
.s-Budget-CallSchedulesAllGrid .deactivated .col-template-status,
.s-Budget-CallSchedulesGrid .deactivated .col-template-status,
.s-Budget-SwotsGrid .deactivated .col-template-status,
.s-Budget-BudgetAssumptionsGrid .deactivated .col-template-status,
.s-Budget-SeismicActivitiesGrid .deactivated .col-template-status,
.s-Budget-ReservesGrid .deactivated .col-template-status,
.s-Budget-ProductionGrid .deactivated .col-template-status,
.s-Budget-GasUtilizationGrid .deactivated .col-template-status,
.s-Budget-RigSequencesGrid .deactivated .col-template-status,
.s-Budget-VesselSchedulesGrid .deactivated .col-template-status,
.s-Budget-HrSummariesGrid .deactivated .col-template-status,
.s-Budget-SharedCostsGrid .deactivated .col-template-status,
.s-Budget-SharedCostAllocationsGrid .deactivated .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .deactivated .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .deactivated .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .deactivated .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .deactivated .col-template-status,
.s-Budget-WellCostsGrid .deactivated .col-template-status,
.s-Budget-WellCostElementsGrid .deactivated .col-template-status,
.s-Budget-ProjectSummariesGrid .deactivated .col-template-status,
.s-Budget-PADWorkProgrammesGrid .deactivated .col-template-status,
.s-Budget-RigSequencesGrid .deactivated .col-template-status,
.s-Budget-BlocksGrid .deactivated .col-template-status,
.s-Budget-CashCallEquitySharesGrid .deactivated .col-template-status,
.s-Budget-FieldsGrid .deactivated .col-template-status,
.s-Budget-FieldTerrainsGrid .deactivated .col-template-status,
.s-Budget-FundingTranchesGrid .deactivated .col-template-status,
.s-Budget-FundingTranchesAllGrid .deactivated .col-template-status,
.s-Budget-MajorDriversGrid .deactivated .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .deactivated .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .deactivated .col-template-status,
.s-Budget-ExcelTemplatesGrid .deactivated .col-template-status,
.s-Budget-OperatorBlocksAllGrid .deactivated .col-template-status,
.s-Budget-OperatorBlocksGrid .deactivated .col-template-status,
.s-Budget-ProductsGrid .deactivated .col-template-status,
.s-Budget-RigsGrid .deactivated .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .deactivated .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .deactivated .col-template-status,
.s-Budget-UAPCodesAllGrid .deactivated .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .deactivated .col-template-status,
.s-Budget-Operator_UAPCodesGrid .deactivated .col-template-status,
.s-Budget-VesselsGrid .deactivated .col-template-status,
.s-Budget-WellCostElementGroupsGrid .deactivated .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .deactivated .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .deactivated .col-template-status,
.s-Budget-NonRigActivityTypesGrid .deactivated .col-template-status,
.s-Budget-NonRigElementDetailsGrid .deactivated .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .deactivated .col-template-status,
.s-Budget-WellsAllGrid .deactivated .col-template-status,
.s-Budget-WellsGrid .deactivated .col-template-status,
.s-Budget-ProjectsGrid .deactivated .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .deactivated .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .deactivated .col-template-status,
.s-Budget-CountryGrid .deactivated .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .deactivated .col-template-status,
.s-Budget-MonthsGrid .deactivated .col-template-status,
.s-Budget-NationalityGrid .deactivated .col-template-status,
.s-Budget-PadClustersGrid .deactivated .col-template-status,
.s-Budget-PadCommunitiesGrid .deactivated .col-template-status,
.s-Budget-SecurityRolesGrid .deactivated .col-template-status,
.s-Budget-TemplatesGrid .deactivated .col-template-status,
.s-Budget-TerrainsGrid .deactivated .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .deactivated .col-template-status,
.s-Budget-UAPCodeLevelsGrid .deactivated .col-template-status,
.s-Budget-UAPCodeGroupsGrid .deactivated .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .deactivated .col-template-status,
.s-Budget-UnitsGrid .deactivated .col-template-status,
.s-Budget-UnitsOfMeasureGrid .deactivated .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .deactivated .col-template-status,
.s-Budget-VesselActivitiesGrid .deactivated .col-template-status,
.s-Budget-WellClassificationsGrid .deactivated .col-template-status,
.s-Budget-YearsGrid .deactivated .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .deactivated .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .deactivated .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .deactivated .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .deactivated .col-template-status,
.s-Budget-BudgetStatusesGrid .deactivated .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .deactivated .col-template-status,
.s-Budget-ButtonStatusesGrid .deactivated .col-template-status,
.s-Budget-CallCircularStatusesGrid .deactivated .col-template-status,
.s-Budget-CashCallStatusesGrid .deactivated .col-template-status,
.s-Budget-ContractStatusesGrid .deactivated .col-template-status,
.s-Budget-FieldStatusesGrid .deactivated .col-template-status,
.s-Budget-FincomStatusesGrid .deactivated .col-template-status,
.s-Budget-MacomReviewStatusesGrid .deactivated .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .deactivated .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .deactivated .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .deactivated .col-template-status,
.s-Budget-OperatorStatusesGrid .deactivated .col-template-status,
.s-Budget-OwnershipStatusesGrid .deactivated .col-template-status,
.s-Budget-PerformanceStatusesGrid .deactivated .col-template-status,
.s-Budget-ProjectStatusGrid .deactivated .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .deactivated .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .deactivated .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .deactivated .col-template-status,
.s-Budget-TemplateStatusesGrid .deactivated .col-template-status,
.s-Budget-UAPCodeStatusesGrid .deactivated .col-template-status,
.s-Budget-AgreementTypesGrid .deactivated .col-template-status,
.s-Budget-BriefTypesGrid .deactivated .col-template-status,
.s-Budget-BudgetTypesGrid .deactivated .col-template-status,
.s-Budget-MeetingGrid .deactivated .col-template-status,
.s-Budget-MeetingAgendaGrid .deactivated .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .deactivated .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .deactivated .col-template-status,
.s-Budget-MeetingDecisionGrid .deactivated .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .deactivated .col-template-status,
.s-Budget-MeetingLocationGrid .deactivated .col-template-status,
.s-Budget-MeetingTypeGrid .deactivated .col-template-status,
.s-Budget-FinancialDataGrid .deactivated .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .deactivated .col-template-status,
.s-Budget-CommitteeTypesGrid .deactivated .col-template-status,
.s-Budget-ContractTypesGrid .deactivated .col-template-status,
.s-Budget-EmploymentTypeGrid .deactivated .col-template-status,
.s-Budget-ExpenditureTypesGrid .deactivated .col-template-status,
.s-Budget-FundingTrancheTypesGrid .deactivated .col-template-status,
.s-Budget-GasUtilizationTypesGrid .deactivated .col-template-status,
.s-Budget-PadProgramTypesGrid .deactivated .col-template-status,
.s-Budget-PadTypesGrid .deactivated .col-template-status,
.s-Budget-ProductTypesGrid .deactivated .col-template-status,
.s-Budget-ProjectTypesGrid .deactivated .col-template-status,
.s-Budget-RigTypesGrid .deactivated .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .deactivated .col-template-status,
.s-Budget-UAPCodeTypesGrid .deactivated .col-template-status,
.s-Budget-VesselTypesGrid .deactivated .col-template-status,
.s-Budget-WellCostElementTypesGrid .deactivated .col-template-status,
.s-Budget-WellTypesGrid .deactivated .col-template-status,
.s-Budget-BudgetPreviewGrid .deactivated .col-template-status,
.s-Budget-FINCOMAppendixIGrid .deactivated .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .deactivated .col-template-status,
.s-Budget-FINCOMCollationGrid .deactivated .col-template-status,
.s-Budget-CallScheduleActionsGrid .deactivated .col-template-status,
.s-CashCall-CashCallCalendarsGrid .deactivated .col-template-status,
.s-CashCall-CashCallActivitiesGrid .deactivated .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .deactivated .col-template-status,
.s-CashCall-CashCallCircularsGrid .deactivated .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .deactivated .col-template-status,
.s-CashCall-CashCallCalendarsGrid .deactivated .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .deactivated .col-template-status,
.s-CashCall-CashCallBriefsGrid .deactivated .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .deactivated .col-template-status,
.s-CashCall-CashCallMandatesGrid .deactivated .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .deactivated .col-template-status,
.s-CashCall-CashCallPayablesGrid .deactivated .col-template-status,
.s-CashCall-CashCallsGrid .deactivated .col-template-status,
.s-CashCall-CashCallsAllGrid .deactivated .col-template-status,
.s-CashCall-CashCallsEPGrid .deactivated .col-template-status,
.s-CashCall-CashCallsBDGGrid .deactivated .col-template-status,
.s-CashCall-CashCallSchedulesGrid .deactivated .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .deactivated .col-template-status,
.s-CashCall-CashCallRequestsGrid .deactivated .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .deactivated .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .deactivated .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .deactivated .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .deactivated .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .deactivated .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .deactivated .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .deactivated .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .deactivated .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .deactivated .col-template-status,
.s-CashCall-CashCallEndorsementGrid .deactivated .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .deactivated .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .deactivated .col-template-status,
.s-CashCall-CashCallPayablesGrid .deactivated .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .deactivated .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .deactivated .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .deactivated .col-template-status,
.s-CashCall-CashCallMandatesGrid .deactivated .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .deactivated .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .deactivated .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .deactivated .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .deactivated .col-template-status,
.s-Performance-PerformancesGrid .deactivated .col-template-status,
.s-Performance-PerformancesAllGrid .deactivated .col-template-status,
.s-Performance-PerformancesBDGGrid .deactivated .col-template-status,
.s-Performance-PerformanceSchedulesGrid .deactivated .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .deactivated .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .deactivated .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .deactivated .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .deactivated .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .deactivated .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .deactivated .col-template-status,
.s-Performance-PerformanceMonthlyGrid .deactivated .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .deactivated .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .deactivated .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .deactivated .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .deactivated .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .deactivated .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .deactivated .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .deactivated .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .deactivated .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .deactivated .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .deactivated .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .deactivated .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .deactivated .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .deactivated .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .deactivated .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .deactivated .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .deactivated .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .deactivated .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .deactivated .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .deactivated .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .deactivated .col-template-status,
.s-Common-DashboardWidgetGrid .deactivated .col-template-status,
.s-Administration-BcPproExceptionsGrid .deactivated .col-template-status {
  background-color: #FF0000 !important;
}
.s-Administration-IssueTrackingIssuesGrid .realigned .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .realigned .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .realigned .col-template-status,
.s-Administration-NotificationTemplatesGrid .realigned .col-template-status,
.s-Administration-BudgetAutoTestGrid .realigned .col-template-status,
.s-Administration-CashCallAutoTestGrid .realigned .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .realigned .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .realigned .col-template-status,
.s-Administration-SiteNotificationsGrid .realigned .col-template-status,
.s-Budget-AnnualBudgetsGrid .realigned .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .realigned .col-template-status,
.s-Budget-BudgetProfilesABGrid .realigned .col-template-status,
.s-Budget-OperatorProposalsGrid .realigned .col-template-status,
.s-Budget-MACOMApprovalsGrid .realigned .col-template-status,
.s-Budget-OPCOMApprovalsGrid .realigned .col-template-status,
.s-Budget-ApprovedBudgetsGrid .realigned .col-template-status,
.s-Budget-FiveYearForecastsGrid .realigned .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .realigned .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .realigned .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .realigned .col-template-status,
.s-Budget-TECOMRecommendationsGrid .realigned .col-template-status,
.s-Budget-BudgetProfilesGrid .realigned .col-template-status,
.s-Budget-BudgetProfilesAllGrid .realigned .col-template-status,
.s-Budget-BudgetsGrid .realigned .col-template-status,
.s-Budget-CallCircularsGrid .realigned .col-template-status,
.s-Budget-CallCircularsAllGrid .realigned .col-template-status,
.s-Budget-CallSchedulesGrid .realigned .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .realigned .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .realigned .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .realigned .col-template-status,
.s-Budget-BudgetThresholdsGrid .realigned .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .realigned .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .realigned .col-template-status,
.s-Budget-OperatorTemplatesGrid .realigned .col-template-status,
.s-Budget-TemplateCommitteeGrid .realigned .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .realigned .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .realigned .col-template-status,
.s-Budget-BTFundingTranchesGrid .realigned .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .realigned .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .realigned .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .realigned .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .realigned .col-template-status,
.s-Budget-CallCircularsAllGrid .realigned .col-template-status,
.s-Budget-CallCircularsGrid .realigned .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .realigned .col-template-status,
.s-Budget-CallSchedulesAllGrid .realigned .col-template-status,
.s-Budget-CallSchedulesGrid .realigned .col-template-status,
.s-Budget-SwotsGrid .realigned .col-template-status,
.s-Budget-BudgetAssumptionsGrid .realigned .col-template-status,
.s-Budget-SeismicActivitiesGrid .realigned .col-template-status,
.s-Budget-ReservesGrid .realigned .col-template-status,
.s-Budget-ProductionGrid .realigned .col-template-status,
.s-Budget-GasUtilizationGrid .realigned .col-template-status,
.s-Budget-RigSequencesGrid .realigned .col-template-status,
.s-Budget-VesselSchedulesGrid .realigned .col-template-status,
.s-Budget-HrSummariesGrid .realigned .col-template-status,
.s-Budget-SharedCostsGrid .realigned .col-template-status,
.s-Budget-SharedCostAllocationsGrid .realigned .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .realigned .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .realigned .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .realigned .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .realigned .col-template-status,
.s-Budget-WellCostsGrid .realigned .col-template-status,
.s-Budget-WellCostElementsGrid .realigned .col-template-status,
.s-Budget-ProjectSummariesGrid .realigned .col-template-status,
.s-Budget-PADWorkProgrammesGrid .realigned .col-template-status,
.s-Budget-RigSequencesGrid .realigned .col-template-status,
.s-Budget-BlocksGrid .realigned .col-template-status,
.s-Budget-CashCallEquitySharesGrid .realigned .col-template-status,
.s-Budget-FieldsGrid .realigned .col-template-status,
.s-Budget-FieldTerrainsGrid .realigned .col-template-status,
.s-Budget-FundingTranchesGrid .realigned .col-template-status,
.s-Budget-FundingTranchesAllGrid .realigned .col-template-status,
.s-Budget-MajorDriversGrid .realigned .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .realigned .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .realigned .col-template-status,
.s-Budget-ExcelTemplatesGrid .realigned .col-template-status,
.s-Budget-OperatorBlocksAllGrid .realigned .col-template-status,
.s-Budget-OperatorBlocksGrid .realigned .col-template-status,
.s-Budget-ProductsGrid .realigned .col-template-status,
.s-Budget-RigsGrid .realigned .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .realigned .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .realigned .col-template-status,
.s-Budget-UAPCodesAllGrid .realigned .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .realigned .col-template-status,
.s-Budget-Operator_UAPCodesGrid .realigned .col-template-status,
.s-Budget-VesselsGrid .realigned .col-template-status,
.s-Budget-WellCostElementGroupsGrid .realigned .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .realigned .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .realigned .col-template-status,
.s-Budget-NonRigActivityTypesGrid .realigned .col-template-status,
.s-Budget-NonRigElementDetailsGrid .realigned .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .realigned .col-template-status,
.s-Budget-WellsAllGrid .realigned .col-template-status,
.s-Budget-WellsGrid .realigned .col-template-status,
.s-Budget-ProjectsGrid .realigned .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .realigned .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .realigned .col-template-status,
.s-Budget-CountryGrid .realigned .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .realigned .col-template-status,
.s-Budget-MonthsGrid .realigned .col-template-status,
.s-Budget-NationalityGrid .realigned .col-template-status,
.s-Budget-PadClustersGrid .realigned .col-template-status,
.s-Budget-PadCommunitiesGrid .realigned .col-template-status,
.s-Budget-SecurityRolesGrid .realigned .col-template-status,
.s-Budget-TemplatesGrid .realigned .col-template-status,
.s-Budget-TerrainsGrid .realigned .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .realigned .col-template-status,
.s-Budget-UAPCodeLevelsGrid .realigned .col-template-status,
.s-Budget-UAPCodeGroupsGrid .realigned .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .realigned .col-template-status,
.s-Budget-UnitsGrid .realigned .col-template-status,
.s-Budget-UnitsOfMeasureGrid .realigned .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .realigned .col-template-status,
.s-Budget-VesselActivitiesGrid .realigned .col-template-status,
.s-Budget-WellClassificationsGrid .realigned .col-template-status,
.s-Budget-YearsGrid .realigned .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .realigned .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .realigned .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .realigned .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .realigned .col-template-status,
.s-Budget-BudgetStatusesGrid .realigned .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .realigned .col-template-status,
.s-Budget-ButtonStatusesGrid .realigned .col-template-status,
.s-Budget-CallCircularStatusesGrid .realigned .col-template-status,
.s-Budget-CashCallStatusesGrid .realigned .col-template-status,
.s-Budget-ContractStatusesGrid .realigned .col-template-status,
.s-Budget-FieldStatusesGrid .realigned .col-template-status,
.s-Budget-FincomStatusesGrid .realigned .col-template-status,
.s-Budget-MacomReviewStatusesGrid .realigned .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .realigned .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .realigned .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .realigned .col-template-status,
.s-Budget-OperatorStatusesGrid .realigned .col-template-status,
.s-Budget-OwnershipStatusesGrid .realigned .col-template-status,
.s-Budget-PerformanceStatusesGrid .realigned .col-template-status,
.s-Budget-ProjectStatusGrid .realigned .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .realigned .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .realigned .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .realigned .col-template-status,
.s-Budget-TemplateStatusesGrid .realigned .col-template-status,
.s-Budget-UAPCodeStatusesGrid .realigned .col-template-status,
.s-Budget-AgreementTypesGrid .realigned .col-template-status,
.s-Budget-BriefTypesGrid .realigned .col-template-status,
.s-Budget-BudgetTypesGrid .realigned .col-template-status,
.s-Budget-MeetingGrid .realigned .col-template-status,
.s-Budget-MeetingAgendaGrid .realigned .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .realigned .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .realigned .col-template-status,
.s-Budget-MeetingDecisionGrid .realigned .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .realigned .col-template-status,
.s-Budget-MeetingLocationGrid .realigned .col-template-status,
.s-Budget-MeetingTypeGrid .realigned .col-template-status,
.s-Budget-FinancialDataGrid .realigned .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .realigned .col-template-status,
.s-Budget-CommitteeTypesGrid .realigned .col-template-status,
.s-Budget-ContractTypesGrid .realigned .col-template-status,
.s-Budget-EmploymentTypeGrid .realigned .col-template-status,
.s-Budget-ExpenditureTypesGrid .realigned .col-template-status,
.s-Budget-FundingTrancheTypesGrid .realigned .col-template-status,
.s-Budget-GasUtilizationTypesGrid .realigned .col-template-status,
.s-Budget-PadProgramTypesGrid .realigned .col-template-status,
.s-Budget-PadTypesGrid .realigned .col-template-status,
.s-Budget-ProductTypesGrid .realigned .col-template-status,
.s-Budget-ProjectTypesGrid .realigned .col-template-status,
.s-Budget-RigTypesGrid .realigned .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .realigned .col-template-status,
.s-Budget-UAPCodeTypesGrid .realigned .col-template-status,
.s-Budget-VesselTypesGrid .realigned .col-template-status,
.s-Budget-WellCostElementTypesGrid .realigned .col-template-status,
.s-Budget-WellTypesGrid .realigned .col-template-status,
.s-Budget-BudgetPreviewGrid .realigned .col-template-status,
.s-Budget-FINCOMAppendixIGrid .realigned .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .realigned .col-template-status,
.s-Budget-FINCOMCollationGrid .realigned .col-template-status,
.s-Budget-CallScheduleActionsGrid .realigned .col-template-status,
.s-CashCall-CashCallCalendarsGrid .realigned .col-template-status,
.s-CashCall-CashCallActivitiesGrid .realigned .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .realigned .col-template-status,
.s-CashCall-CashCallCircularsGrid .realigned .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .realigned .col-template-status,
.s-CashCall-CashCallCalendarsGrid .realigned .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .realigned .col-template-status,
.s-CashCall-CashCallBriefsGrid .realigned .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .realigned .col-template-status,
.s-CashCall-CashCallMandatesGrid .realigned .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .realigned .col-template-status,
.s-CashCall-CashCallPayablesGrid .realigned .col-template-status,
.s-CashCall-CashCallsGrid .realigned .col-template-status,
.s-CashCall-CashCallsAllGrid .realigned .col-template-status,
.s-CashCall-CashCallsEPGrid .realigned .col-template-status,
.s-CashCall-CashCallsBDGGrid .realigned .col-template-status,
.s-CashCall-CashCallSchedulesGrid .realigned .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .realigned .col-template-status,
.s-CashCall-CashCallRequestsGrid .realigned .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .realigned .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .realigned .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .realigned .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .realigned .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .realigned .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .realigned .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .realigned .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .realigned .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .realigned .col-template-status,
.s-CashCall-CashCallEndorsementGrid .realigned .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .realigned .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .realigned .col-template-status,
.s-CashCall-CashCallPayablesGrid .realigned .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .realigned .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .realigned .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .realigned .col-template-status,
.s-CashCall-CashCallMandatesGrid .realigned .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .realigned .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .realigned .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .realigned .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .realigned .col-template-status,
.s-Performance-PerformancesGrid .realigned .col-template-status,
.s-Performance-PerformancesAllGrid .realigned .col-template-status,
.s-Performance-PerformancesBDGGrid .realigned .col-template-status,
.s-Performance-PerformanceSchedulesGrid .realigned .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .realigned .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .realigned .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .realigned .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .realigned .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .realigned .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .realigned .col-template-status,
.s-Performance-PerformanceMonthlyGrid .realigned .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .realigned .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .realigned .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .realigned .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .realigned .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .realigned .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .realigned .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .realigned .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .realigned .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .realigned .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .realigned .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .realigned .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .realigned .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .realigned .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .realigned .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .realigned .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .realigned .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .realigned .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .realigned .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .realigned .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .realigned .col-template-status,
.s-Common-DashboardWidgetGrid .realigned .col-template-status,
.s-Administration-BcPproExceptionsGrid .realigned .col-template-status {
  background-color: #25a86c !important;
}
.s-Administration-IssueTrackingIssuesGrid .awaitingupload .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .awaitingupload .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .awaitingupload .col-template-status,
.s-Administration-NotificationTemplatesGrid .awaitingupload .col-template-status,
.s-Administration-BudgetAutoTestGrid .awaitingupload .col-template-status,
.s-Administration-CashCallAutoTestGrid .awaitingupload .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .awaitingupload .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .awaitingupload .col-template-status,
.s-Administration-SiteNotificationsGrid .awaitingupload .col-template-status,
.s-Budget-AnnualBudgetsGrid .awaitingupload .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .awaitingupload .col-template-status,
.s-Budget-BudgetProfilesABGrid .awaitingupload .col-template-status,
.s-Budget-OperatorProposalsGrid .awaitingupload .col-template-status,
.s-Budget-MACOMApprovalsGrid .awaitingupload .col-template-status,
.s-Budget-OPCOMApprovalsGrid .awaitingupload .col-template-status,
.s-Budget-ApprovedBudgetsGrid .awaitingupload .col-template-status,
.s-Budget-FiveYearForecastsGrid .awaitingupload .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .awaitingupload .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .awaitingupload .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .awaitingupload .col-template-status,
.s-Budget-TECOMRecommendationsGrid .awaitingupload .col-template-status,
.s-Budget-BudgetProfilesGrid .awaitingupload .col-template-status,
.s-Budget-BudgetProfilesAllGrid .awaitingupload .col-template-status,
.s-Budget-BudgetsGrid .awaitingupload .col-template-status,
.s-Budget-CallCircularsGrid .awaitingupload .col-template-status,
.s-Budget-CallCircularsAllGrid .awaitingupload .col-template-status,
.s-Budget-CallSchedulesGrid .awaitingupload .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .awaitingupload .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .awaitingupload .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .awaitingupload .col-template-status,
.s-Budget-BudgetThresholdsGrid .awaitingupload .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .awaitingupload .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .awaitingupload .col-template-status,
.s-Budget-OperatorTemplatesGrid .awaitingupload .col-template-status,
.s-Budget-TemplateCommitteeGrid .awaitingupload .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .awaitingupload .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .awaitingupload .col-template-status,
.s-Budget-BTFundingTranchesGrid .awaitingupload .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .awaitingupload .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .awaitingupload .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .awaitingupload .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .awaitingupload .col-template-status,
.s-Budget-CallCircularsAllGrid .awaitingupload .col-template-status,
.s-Budget-CallCircularsGrid .awaitingupload .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .awaitingupload .col-template-status,
.s-Budget-CallSchedulesAllGrid .awaitingupload .col-template-status,
.s-Budget-CallSchedulesGrid .awaitingupload .col-template-status,
.s-Budget-SwotsGrid .awaitingupload .col-template-status,
.s-Budget-BudgetAssumptionsGrid .awaitingupload .col-template-status,
.s-Budget-SeismicActivitiesGrid .awaitingupload .col-template-status,
.s-Budget-ReservesGrid .awaitingupload .col-template-status,
.s-Budget-ProductionGrid .awaitingupload .col-template-status,
.s-Budget-GasUtilizationGrid .awaitingupload .col-template-status,
.s-Budget-RigSequencesGrid .awaitingupload .col-template-status,
.s-Budget-VesselSchedulesGrid .awaitingupload .col-template-status,
.s-Budget-HrSummariesGrid .awaitingupload .col-template-status,
.s-Budget-SharedCostsGrid .awaitingupload .col-template-status,
.s-Budget-SharedCostAllocationsGrid .awaitingupload .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .awaitingupload .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .awaitingupload .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .awaitingupload .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .awaitingupload .col-template-status,
.s-Budget-WellCostsGrid .awaitingupload .col-template-status,
.s-Budget-WellCostElementsGrid .awaitingupload .col-template-status,
.s-Budget-ProjectSummariesGrid .awaitingupload .col-template-status,
.s-Budget-PADWorkProgrammesGrid .awaitingupload .col-template-status,
.s-Budget-RigSequencesGrid .awaitingupload .col-template-status,
.s-Budget-BlocksGrid .awaitingupload .col-template-status,
.s-Budget-CashCallEquitySharesGrid .awaitingupload .col-template-status,
.s-Budget-FieldsGrid .awaitingupload .col-template-status,
.s-Budget-FieldTerrainsGrid .awaitingupload .col-template-status,
.s-Budget-FundingTranchesGrid .awaitingupload .col-template-status,
.s-Budget-FundingTranchesAllGrid .awaitingupload .col-template-status,
.s-Budget-MajorDriversGrid .awaitingupload .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .awaitingupload .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .awaitingupload .col-template-status,
.s-Budget-ExcelTemplatesGrid .awaitingupload .col-template-status,
.s-Budget-OperatorBlocksAllGrid .awaitingupload .col-template-status,
.s-Budget-OperatorBlocksGrid .awaitingupload .col-template-status,
.s-Budget-ProductsGrid .awaitingupload .col-template-status,
.s-Budget-RigsGrid .awaitingupload .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .awaitingupload .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .awaitingupload .col-template-status,
.s-Budget-UAPCodesAllGrid .awaitingupload .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .awaitingupload .col-template-status,
.s-Budget-Operator_UAPCodesGrid .awaitingupload .col-template-status,
.s-Budget-VesselsGrid .awaitingupload .col-template-status,
.s-Budget-WellCostElementGroupsGrid .awaitingupload .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .awaitingupload .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .awaitingupload .col-template-status,
.s-Budget-NonRigActivityTypesGrid .awaitingupload .col-template-status,
.s-Budget-NonRigElementDetailsGrid .awaitingupload .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .awaitingupload .col-template-status,
.s-Budget-WellsAllGrid .awaitingupload .col-template-status,
.s-Budget-WellsGrid .awaitingupload .col-template-status,
.s-Budget-ProjectsGrid .awaitingupload .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .awaitingupload .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .awaitingupload .col-template-status,
.s-Budget-CountryGrid .awaitingupload .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .awaitingupload .col-template-status,
.s-Budget-MonthsGrid .awaitingupload .col-template-status,
.s-Budget-NationalityGrid .awaitingupload .col-template-status,
.s-Budget-PadClustersGrid .awaitingupload .col-template-status,
.s-Budget-PadCommunitiesGrid .awaitingupload .col-template-status,
.s-Budget-SecurityRolesGrid .awaitingupload .col-template-status,
.s-Budget-TemplatesGrid .awaitingupload .col-template-status,
.s-Budget-TerrainsGrid .awaitingupload .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .awaitingupload .col-template-status,
.s-Budget-UAPCodeLevelsGrid .awaitingupload .col-template-status,
.s-Budget-UAPCodeGroupsGrid .awaitingupload .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .awaitingupload .col-template-status,
.s-Budget-UnitsGrid .awaitingupload .col-template-status,
.s-Budget-UnitsOfMeasureGrid .awaitingupload .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .awaitingupload .col-template-status,
.s-Budget-VesselActivitiesGrid .awaitingupload .col-template-status,
.s-Budget-WellClassificationsGrid .awaitingupload .col-template-status,
.s-Budget-YearsGrid .awaitingupload .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .awaitingupload .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .awaitingupload .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .awaitingupload .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .awaitingupload .col-template-status,
.s-Budget-BudgetStatusesGrid .awaitingupload .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .awaitingupload .col-template-status,
.s-Budget-ButtonStatusesGrid .awaitingupload .col-template-status,
.s-Budget-CallCircularStatusesGrid .awaitingupload .col-template-status,
.s-Budget-CashCallStatusesGrid .awaitingupload .col-template-status,
.s-Budget-ContractStatusesGrid .awaitingupload .col-template-status,
.s-Budget-FieldStatusesGrid .awaitingupload .col-template-status,
.s-Budget-FincomStatusesGrid .awaitingupload .col-template-status,
.s-Budget-MacomReviewStatusesGrid .awaitingupload .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .awaitingupload .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .awaitingupload .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .awaitingupload .col-template-status,
.s-Budget-OperatorStatusesGrid .awaitingupload .col-template-status,
.s-Budget-OwnershipStatusesGrid .awaitingupload .col-template-status,
.s-Budget-PerformanceStatusesGrid .awaitingupload .col-template-status,
.s-Budget-ProjectStatusGrid .awaitingupload .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .awaitingupload .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .awaitingupload .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .awaitingupload .col-template-status,
.s-Budget-TemplateStatusesGrid .awaitingupload .col-template-status,
.s-Budget-UAPCodeStatusesGrid .awaitingupload .col-template-status,
.s-Budget-AgreementTypesGrid .awaitingupload .col-template-status,
.s-Budget-BriefTypesGrid .awaitingupload .col-template-status,
.s-Budget-BudgetTypesGrid .awaitingupload .col-template-status,
.s-Budget-MeetingGrid .awaitingupload .col-template-status,
.s-Budget-MeetingAgendaGrid .awaitingupload .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .awaitingupload .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .awaitingupload .col-template-status,
.s-Budget-MeetingDecisionGrid .awaitingupload .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .awaitingupload .col-template-status,
.s-Budget-MeetingLocationGrid .awaitingupload .col-template-status,
.s-Budget-MeetingTypeGrid .awaitingupload .col-template-status,
.s-Budget-FinancialDataGrid .awaitingupload .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .awaitingupload .col-template-status,
.s-Budget-CommitteeTypesGrid .awaitingupload .col-template-status,
.s-Budget-ContractTypesGrid .awaitingupload .col-template-status,
.s-Budget-EmploymentTypeGrid .awaitingupload .col-template-status,
.s-Budget-ExpenditureTypesGrid .awaitingupload .col-template-status,
.s-Budget-FundingTrancheTypesGrid .awaitingupload .col-template-status,
.s-Budget-GasUtilizationTypesGrid .awaitingupload .col-template-status,
.s-Budget-PadProgramTypesGrid .awaitingupload .col-template-status,
.s-Budget-PadTypesGrid .awaitingupload .col-template-status,
.s-Budget-ProductTypesGrid .awaitingupload .col-template-status,
.s-Budget-ProjectTypesGrid .awaitingupload .col-template-status,
.s-Budget-RigTypesGrid .awaitingupload .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .awaitingupload .col-template-status,
.s-Budget-UAPCodeTypesGrid .awaitingupload .col-template-status,
.s-Budget-VesselTypesGrid .awaitingupload .col-template-status,
.s-Budget-WellCostElementTypesGrid .awaitingupload .col-template-status,
.s-Budget-WellTypesGrid .awaitingupload .col-template-status,
.s-Budget-BudgetPreviewGrid .awaitingupload .col-template-status,
.s-Budget-FINCOMAppendixIGrid .awaitingupload .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .awaitingupload .col-template-status,
.s-Budget-FINCOMCollationGrid .awaitingupload .col-template-status,
.s-Budget-CallScheduleActionsGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallCalendarsGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallActivitiesGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallCircularsGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallCalendarsGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallBriefsGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallMandatesGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallPayablesGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallsGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallsAllGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallsEPGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallsBDGGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallSchedulesGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallRequestsGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallEndorsementGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallPayablesGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallMandatesGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .awaitingupload .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .awaitingupload .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .awaitingupload .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .awaitingupload .col-template-status,
.s-Performance-PerformancesGrid .awaitingupload .col-template-status,
.s-Performance-PerformancesAllGrid .awaitingupload .col-template-status,
.s-Performance-PerformancesBDGGrid .awaitingupload .col-template-status,
.s-Performance-PerformanceSchedulesGrid .awaitingupload .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .awaitingupload .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .awaitingupload .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .awaitingupload .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .awaitingupload .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .awaitingupload .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .awaitingupload .col-template-status,
.s-Performance-PerformanceMonthlyGrid .awaitingupload .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .awaitingupload .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .awaitingupload .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .awaitingupload .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .awaitingupload .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .awaitingupload .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .awaitingupload .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .awaitingupload .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .awaitingupload .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .awaitingupload .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .awaitingupload .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .awaitingupload .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .awaitingupload .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .awaitingupload .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .awaitingupload .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .awaitingupload .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .awaitingupload .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .awaitingupload .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .awaitingupload .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .awaitingupload .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .awaitingupload .col-template-status,
.s-Common-DashboardWidgetGrid .awaitingupload .col-template-status,
.s-Administration-BcPproExceptionsGrid .awaitingupload .col-template-status {
  background-color: #000000 !important;
}
.s-Administration-IssueTrackingIssuesGrid .awaitingsubmitforreview .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .awaitingsubmitforreview .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .awaitingsubmitforreview .col-template-status,
.s-Administration-NotificationTemplatesGrid .awaitingsubmitforreview .col-template-status,
.s-Administration-BudgetAutoTestGrid .awaitingsubmitforreview .col-template-status,
.s-Administration-CashCallAutoTestGrid .awaitingsubmitforreview .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .awaitingsubmitforreview .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .awaitingsubmitforreview .col-template-status,
.s-Administration-SiteNotificationsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-AnnualBudgetsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-BudgetProfilesABGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-OperatorProposalsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-MACOMApprovalsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-OPCOMApprovalsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-ApprovedBudgetsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-FiveYearForecastsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-TECOMRecommendationsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-BudgetProfilesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-BudgetProfilesAllGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-BudgetsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-CallCircularsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-CallCircularsAllGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-CallSchedulesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-BudgetThresholdsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-OperatorTemplatesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-TemplateCommitteeGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-BTFundingTranchesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-CallCircularsAllGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-CallCircularsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-CallSchedulesAllGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-CallSchedulesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-SwotsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-BudgetAssumptionsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-SeismicActivitiesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-ReservesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-ProductionGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-GasUtilizationGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-RigSequencesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-VesselSchedulesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-HrSummariesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-SharedCostsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-SharedCostAllocationsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-WellCostsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-WellCostElementsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-ProjectSummariesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-PADWorkProgrammesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-RigSequencesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-BlocksGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-CashCallEquitySharesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-FieldsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-FieldTerrainsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-FundingTranchesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-FundingTranchesAllGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-MajorDriversGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-ExcelTemplatesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-OperatorBlocksAllGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-OperatorBlocksGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-ProductsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-RigsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-UAPCodesAllGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-Operator_UAPCodesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-VesselsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-WellCostElementGroupsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-NonRigActivityTypesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-NonRigElementDetailsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-WellsAllGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-WellsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-ProjectsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-CountryGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-MonthsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-NationalityGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-PadClustersGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-PadCommunitiesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-SecurityRolesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-TemplatesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-TerrainsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-UAPCodeLevelsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-UAPCodeGroupsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-UnitsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-UnitsOfMeasureGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-VesselActivitiesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-WellClassificationsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-YearsGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-BudgetStatusesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-ButtonStatusesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-CallCircularStatusesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-CashCallStatusesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-ContractStatusesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-FieldStatusesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-FincomStatusesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-MacomReviewStatusesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-OperatorStatusesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-OwnershipStatusesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-PerformanceStatusesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-ProjectStatusGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-TemplateStatusesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-UAPCodeStatusesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-AgreementTypesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-BriefTypesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-BudgetTypesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-MeetingGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-MeetingAgendaGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-MeetingDecisionGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-MeetingLocationGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-MeetingTypeGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-FinancialDataGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-CommitteeTypesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-ContractTypesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-EmploymentTypeGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-ExpenditureTypesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-FundingTrancheTypesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-GasUtilizationTypesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-PadProgramTypesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-PadTypesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-ProductTypesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-ProjectTypesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-RigTypesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-UAPCodeTypesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-VesselTypesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-WellCostElementTypesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-WellTypesGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-BudgetPreviewGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-FINCOMAppendixIGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-FINCOMCollationGrid .awaitingsubmitforreview .col-template-status,
.s-Budget-CallScheduleActionsGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallCalendarsGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallActivitiesGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallCircularsGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallCalendarsGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallBriefsGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallMandatesGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallPayablesGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallsGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallsAllGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallsEPGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallsBDGGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallSchedulesGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallRequestsGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallEndorsementGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallPayablesGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallMandatesGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .awaitingsubmitforreview .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformancesGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformancesAllGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformancesBDGGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformanceSchedulesGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformanceMonthlyGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .awaitingsubmitforreview .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .awaitingsubmitforreview .col-template-status,
.s-Common-DashboardWidgetGrid .awaitingsubmitforreview .col-template-status,
.s-Administration-BcPproExceptionsGrid .awaitingsubmitforreview .col-template-status {
  background-color: #FF8000 !important;
}
.s-Administration-IssueTrackingIssuesGrid .submitforreview .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .submitforreview .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .submitforreview .col-template-status,
.s-Administration-NotificationTemplatesGrid .submitforreview .col-template-status,
.s-Administration-BudgetAutoTestGrid .submitforreview .col-template-status,
.s-Administration-CashCallAutoTestGrid .submitforreview .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .submitforreview .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .submitforreview .col-template-status,
.s-Administration-SiteNotificationsGrid .submitforreview .col-template-status,
.s-Budget-AnnualBudgetsGrid .submitforreview .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .submitforreview .col-template-status,
.s-Budget-BudgetProfilesABGrid .submitforreview .col-template-status,
.s-Budget-OperatorProposalsGrid .submitforreview .col-template-status,
.s-Budget-MACOMApprovalsGrid .submitforreview .col-template-status,
.s-Budget-OPCOMApprovalsGrid .submitforreview .col-template-status,
.s-Budget-ApprovedBudgetsGrid .submitforreview .col-template-status,
.s-Budget-FiveYearForecastsGrid .submitforreview .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .submitforreview .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .submitforreview .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .submitforreview .col-template-status,
.s-Budget-TECOMRecommendationsGrid .submitforreview .col-template-status,
.s-Budget-BudgetProfilesGrid .submitforreview .col-template-status,
.s-Budget-BudgetProfilesAllGrid .submitforreview .col-template-status,
.s-Budget-BudgetsGrid .submitforreview .col-template-status,
.s-Budget-CallCircularsGrid .submitforreview .col-template-status,
.s-Budget-CallCircularsAllGrid .submitforreview .col-template-status,
.s-Budget-CallSchedulesGrid .submitforreview .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .submitforreview .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .submitforreview .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .submitforreview .col-template-status,
.s-Budget-BudgetThresholdsGrid .submitforreview .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .submitforreview .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .submitforreview .col-template-status,
.s-Budget-OperatorTemplatesGrid .submitforreview .col-template-status,
.s-Budget-TemplateCommitteeGrid .submitforreview .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .submitforreview .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .submitforreview .col-template-status,
.s-Budget-BTFundingTranchesGrid .submitforreview .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .submitforreview .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .submitforreview .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .submitforreview .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .submitforreview .col-template-status,
.s-Budget-CallCircularsAllGrid .submitforreview .col-template-status,
.s-Budget-CallCircularsGrid .submitforreview .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .submitforreview .col-template-status,
.s-Budget-CallSchedulesAllGrid .submitforreview .col-template-status,
.s-Budget-CallSchedulesGrid .submitforreview .col-template-status,
.s-Budget-SwotsGrid .submitforreview .col-template-status,
.s-Budget-BudgetAssumptionsGrid .submitforreview .col-template-status,
.s-Budget-SeismicActivitiesGrid .submitforreview .col-template-status,
.s-Budget-ReservesGrid .submitforreview .col-template-status,
.s-Budget-ProductionGrid .submitforreview .col-template-status,
.s-Budget-GasUtilizationGrid .submitforreview .col-template-status,
.s-Budget-RigSequencesGrid .submitforreview .col-template-status,
.s-Budget-VesselSchedulesGrid .submitforreview .col-template-status,
.s-Budget-HrSummariesGrid .submitforreview .col-template-status,
.s-Budget-SharedCostsGrid .submitforreview .col-template-status,
.s-Budget-SharedCostAllocationsGrid .submitforreview .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .submitforreview .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .submitforreview .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .submitforreview .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .submitforreview .col-template-status,
.s-Budget-WellCostsGrid .submitforreview .col-template-status,
.s-Budget-WellCostElementsGrid .submitforreview .col-template-status,
.s-Budget-ProjectSummariesGrid .submitforreview .col-template-status,
.s-Budget-PADWorkProgrammesGrid .submitforreview .col-template-status,
.s-Budget-RigSequencesGrid .submitforreview .col-template-status,
.s-Budget-BlocksGrid .submitforreview .col-template-status,
.s-Budget-CashCallEquitySharesGrid .submitforreview .col-template-status,
.s-Budget-FieldsGrid .submitforreview .col-template-status,
.s-Budget-FieldTerrainsGrid .submitforreview .col-template-status,
.s-Budget-FundingTranchesGrid .submitforreview .col-template-status,
.s-Budget-FundingTranchesAllGrid .submitforreview .col-template-status,
.s-Budget-MajorDriversGrid .submitforreview .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .submitforreview .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .submitforreview .col-template-status,
.s-Budget-ExcelTemplatesGrid .submitforreview .col-template-status,
.s-Budget-OperatorBlocksAllGrid .submitforreview .col-template-status,
.s-Budget-OperatorBlocksGrid .submitforreview .col-template-status,
.s-Budget-ProductsGrid .submitforreview .col-template-status,
.s-Budget-RigsGrid .submitforreview .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .submitforreview .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .submitforreview .col-template-status,
.s-Budget-UAPCodesAllGrid .submitforreview .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .submitforreview .col-template-status,
.s-Budget-Operator_UAPCodesGrid .submitforreview .col-template-status,
.s-Budget-VesselsGrid .submitforreview .col-template-status,
.s-Budget-WellCostElementGroupsGrid .submitforreview .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .submitforreview .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .submitforreview .col-template-status,
.s-Budget-NonRigActivityTypesGrid .submitforreview .col-template-status,
.s-Budget-NonRigElementDetailsGrid .submitforreview .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .submitforreview .col-template-status,
.s-Budget-WellsAllGrid .submitforreview .col-template-status,
.s-Budget-WellsGrid .submitforreview .col-template-status,
.s-Budget-ProjectsGrid .submitforreview .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .submitforreview .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .submitforreview .col-template-status,
.s-Budget-CountryGrid .submitforreview .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .submitforreview .col-template-status,
.s-Budget-MonthsGrid .submitforreview .col-template-status,
.s-Budget-NationalityGrid .submitforreview .col-template-status,
.s-Budget-PadClustersGrid .submitforreview .col-template-status,
.s-Budget-PadCommunitiesGrid .submitforreview .col-template-status,
.s-Budget-SecurityRolesGrid .submitforreview .col-template-status,
.s-Budget-TemplatesGrid .submitforreview .col-template-status,
.s-Budget-TerrainsGrid .submitforreview .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .submitforreview .col-template-status,
.s-Budget-UAPCodeLevelsGrid .submitforreview .col-template-status,
.s-Budget-UAPCodeGroupsGrid .submitforreview .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .submitforreview .col-template-status,
.s-Budget-UnitsGrid .submitforreview .col-template-status,
.s-Budget-UnitsOfMeasureGrid .submitforreview .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .submitforreview .col-template-status,
.s-Budget-VesselActivitiesGrid .submitforreview .col-template-status,
.s-Budget-WellClassificationsGrid .submitforreview .col-template-status,
.s-Budget-YearsGrid .submitforreview .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .submitforreview .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .submitforreview .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .submitforreview .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .submitforreview .col-template-status,
.s-Budget-BudgetStatusesGrid .submitforreview .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .submitforreview .col-template-status,
.s-Budget-ButtonStatusesGrid .submitforreview .col-template-status,
.s-Budget-CallCircularStatusesGrid .submitforreview .col-template-status,
.s-Budget-CashCallStatusesGrid .submitforreview .col-template-status,
.s-Budget-ContractStatusesGrid .submitforreview .col-template-status,
.s-Budget-FieldStatusesGrid .submitforreview .col-template-status,
.s-Budget-FincomStatusesGrid .submitforreview .col-template-status,
.s-Budget-MacomReviewStatusesGrid .submitforreview .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .submitforreview .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .submitforreview .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .submitforreview .col-template-status,
.s-Budget-OperatorStatusesGrid .submitforreview .col-template-status,
.s-Budget-OwnershipStatusesGrid .submitforreview .col-template-status,
.s-Budget-PerformanceStatusesGrid .submitforreview .col-template-status,
.s-Budget-ProjectStatusGrid .submitforreview .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .submitforreview .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .submitforreview .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .submitforreview .col-template-status,
.s-Budget-TemplateStatusesGrid .submitforreview .col-template-status,
.s-Budget-UAPCodeStatusesGrid .submitforreview .col-template-status,
.s-Budget-AgreementTypesGrid .submitforreview .col-template-status,
.s-Budget-BriefTypesGrid .submitforreview .col-template-status,
.s-Budget-BudgetTypesGrid .submitforreview .col-template-status,
.s-Budget-MeetingGrid .submitforreview .col-template-status,
.s-Budget-MeetingAgendaGrid .submitforreview .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .submitforreview .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .submitforreview .col-template-status,
.s-Budget-MeetingDecisionGrid .submitforreview .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .submitforreview .col-template-status,
.s-Budget-MeetingLocationGrid .submitforreview .col-template-status,
.s-Budget-MeetingTypeGrid .submitforreview .col-template-status,
.s-Budget-FinancialDataGrid .submitforreview .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .submitforreview .col-template-status,
.s-Budget-CommitteeTypesGrid .submitforreview .col-template-status,
.s-Budget-ContractTypesGrid .submitforreview .col-template-status,
.s-Budget-EmploymentTypeGrid .submitforreview .col-template-status,
.s-Budget-ExpenditureTypesGrid .submitforreview .col-template-status,
.s-Budget-FundingTrancheTypesGrid .submitforreview .col-template-status,
.s-Budget-GasUtilizationTypesGrid .submitforreview .col-template-status,
.s-Budget-PadProgramTypesGrid .submitforreview .col-template-status,
.s-Budget-PadTypesGrid .submitforreview .col-template-status,
.s-Budget-ProductTypesGrid .submitforreview .col-template-status,
.s-Budget-ProjectTypesGrid .submitforreview .col-template-status,
.s-Budget-RigTypesGrid .submitforreview .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .submitforreview .col-template-status,
.s-Budget-UAPCodeTypesGrid .submitforreview .col-template-status,
.s-Budget-VesselTypesGrid .submitforreview .col-template-status,
.s-Budget-WellCostElementTypesGrid .submitforreview .col-template-status,
.s-Budget-WellTypesGrid .submitforreview .col-template-status,
.s-Budget-BudgetPreviewGrid .submitforreview .col-template-status,
.s-Budget-FINCOMAppendixIGrid .submitforreview .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .submitforreview .col-template-status,
.s-Budget-FINCOMCollationGrid .submitforreview .col-template-status,
.s-Budget-CallScheduleActionsGrid .submitforreview .col-template-status,
.s-CashCall-CashCallCalendarsGrid .submitforreview .col-template-status,
.s-CashCall-CashCallActivitiesGrid .submitforreview .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .submitforreview .col-template-status,
.s-CashCall-CashCallCircularsGrid .submitforreview .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .submitforreview .col-template-status,
.s-CashCall-CashCallCalendarsGrid .submitforreview .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .submitforreview .col-template-status,
.s-CashCall-CashCallBriefsGrid .submitforreview .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .submitforreview .col-template-status,
.s-CashCall-CashCallMandatesGrid .submitforreview .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .submitforreview .col-template-status,
.s-CashCall-CashCallPayablesGrid .submitforreview .col-template-status,
.s-CashCall-CashCallsGrid .submitforreview .col-template-status,
.s-CashCall-CashCallsAllGrid .submitforreview .col-template-status,
.s-CashCall-CashCallsEPGrid .submitforreview .col-template-status,
.s-CashCall-CashCallsBDGGrid .submitforreview .col-template-status,
.s-CashCall-CashCallSchedulesGrid .submitforreview .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .submitforreview .col-template-status,
.s-CashCall-CashCallRequestsGrid .submitforreview .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .submitforreview .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .submitforreview .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .submitforreview .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .submitforreview .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .submitforreview .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .submitforreview .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .submitforreview .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .submitforreview .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .submitforreview .col-template-status,
.s-CashCall-CashCallEndorsementGrid .submitforreview .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .submitforreview .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .submitforreview .col-template-status,
.s-CashCall-CashCallPayablesGrid .submitforreview .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .submitforreview .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .submitforreview .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .submitforreview .col-template-status,
.s-CashCall-CashCallMandatesGrid .submitforreview .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .submitforreview .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .submitforreview .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .submitforreview .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .submitforreview .col-template-status,
.s-Performance-PerformancesGrid .submitforreview .col-template-status,
.s-Performance-PerformancesAllGrid .submitforreview .col-template-status,
.s-Performance-PerformancesBDGGrid .submitforreview .col-template-status,
.s-Performance-PerformanceSchedulesGrid .submitforreview .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .submitforreview .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .submitforreview .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .submitforreview .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .submitforreview .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .submitforreview .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .submitforreview .col-template-status,
.s-Performance-PerformanceMonthlyGrid .submitforreview .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .submitforreview .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .submitforreview .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .submitforreview .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .submitforreview .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .submitforreview .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .submitforreview .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .submitforreview .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .submitforreview .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .submitforreview .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .submitforreview .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .submitforreview .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .submitforreview .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .submitforreview .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .submitforreview .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .submitforreview .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .submitforreview .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .submitforreview .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .submitforreview .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .submitforreview .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .submitforreview .col-template-status,
.s-Common-DashboardWidgetGrid .submitforreview .col-template-status,
.s-Administration-BcPproExceptionsGrid .submitforreview .col-template-status {
  background-color: #FF8000 !important;
}
.s-Administration-IssueTrackingIssuesGrid .referback .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .referback .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .referback .col-template-status,
.s-Administration-NotificationTemplatesGrid .referback .col-template-status,
.s-Administration-BudgetAutoTestGrid .referback .col-template-status,
.s-Administration-CashCallAutoTestGrid .referback .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .referback .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .referback .col-template-status,
.s-Administration-SiteNotificationsGrid .referback .col-template-status,
.s-Budget-AnnualBudgetsGrid .referback .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .referback .col-template-status,
.s-Budget-BudgetProfilesABGrid .referback .col-template-status,
.s-Budget-OperatorProposalsGrid .referback .col-template-status,
.s-Budget-MACOMApprovalsGrid .referback .col-template-status,
.s-Budget-OPCOMApprovalsGrid .referback .col-template-status,
.s-Budget-ApprovedBudgetsGrid .referback .col-template-status,
.s-Budget-FiveYearForecastsGrid .referback .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .referback .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .referback .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .referback .col-template-status,
.s-Budget-TECOMRecommendationsGrid .referback .col-template-status,
.s-Budget-BudgetProfilesGrid .referback .col-template-status,
.s-Budget-BudgetProfilesAllGrid .referback .col-template-status,
.s-Budget-BudgetsGrid .referback .col-template-status,
.s-Budget-CallCircularsGrid .referback .col-template-status,
.s-Budget-CallCircularsAllGrid .referback .col-template-status,
.s-Budget-CallSchedulesGrid .referback .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .referback .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .referback .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .referback .col-template-status,
.s-Budget-BudgetThresholdsGrid .referback .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .referback .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .referback .col-template-status,
.s-Budget-OperatorTemplatesGrid .referback .col-template-status,
.s-Budget-TemplateCommitteeGrid .referback .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .referback .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .referback .col-template-status,
.s-Budget-BTFundingTranchesGrid .referback .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .referback .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .referback .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .referback .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .referback .col-template-status,
.s-Budget-CallCircularsAllGrid .referback .col-template-status,
.s-Budget-CallCircularsGrid .referback .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .referback .col-template-status,
.s-Budget-CallSchedulesAllGrid .referback .col-template-status,
.s-Budget-CallSchedulesGrid .referback .col-template-status,
.s-Budget-SwotsGrid .referback .col-template-status,
.s-Budget-BudgetAssumptionsGrid .referback .col-template-status,
.s-Budget-SeismicActivitiesGrid .referback .col-template-status,
.s-Budget-ReservesGrid .referback .col-template-status,
.s-Budget-ProductionGrid .referback .col-template-status,
.s-Budget-GasUtilizationGrid .referback .col-template-status,
.s-Budget-RigSequencesGrid .referback .col-template-status,
.s-Budget-VesselSchedulesGrid .referback .col-template-status,
.s-Budget-HrSummariesGrid .referback .col-template-status,
.s-Budget-SharedCostsGrid .referback .col-template-status,
.s-Budget-SharedCostAllocationsGrid .referback .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .referback .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .referback .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .referback .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .referback .col-template-status,
.s-Budget-WellCostsGrid .referback .col-template-status,
.s-Budget-WellCostElementsGrid .referback .col-template-status,
.s-Budget-ProjectSummariesGrid .referback .col-template-status,
.s-Budget-PADWorkProgrammesGrid .referback .col-template-status,
.s-Budget-RigSequencesGrid .referback .col-template-status,
.s-Budget-BlocksGrid .referback .col-template-status,
.s-Budget-CashCallEquitySharesGrid .referback .col-template-status,
.s-Budget-FieldsGrid .referback .col-template-status,
.s-Budget-FieldTerrainsGrid .referback .col-template-status,
.s-Budget-FundingTranchesGrid .referback .col-template-status,
.s-Budget-FundingTranchesAllGrid .referback .col-template-status,
.s-Budget-MajorDriversGrid .referback .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .referback .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .referback .col-template-status,
.s-Budget-ExcelTemplatesGrid .referback .col-template-status,
.s-Budget-OperatorBlocksAllGrid .referback .col-template-status,
.s-Budget-OperatorBlocksGrid .referback .col-template-status,
.s-Budget-ProductsGrid .referback .col-template-status,
.s-Budget-RigsGrid .referback .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .referback .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .referback .col-template-status,
.s-Budget-UAPCodesAllGrid .referback .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .referback .col-template-status,
.s-Budget-Operator_UAPCodesGrid .referback .col-template-status,
.s-Budget-VesselsGrid .referback .col-template-status,
.s-Budget-WellCostElementGroupsGrid .referback .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .referback .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .referback .col-template-status,
.s-Budget-NonRigActivityTypesGrid .referback .col-template-status,
.s-Budget-NonRigElementDetailsGrid .referback .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .referback .col-template-status,
.s-Budget-WellsAllGrid .referback .col-template-status,
.s-Budget-WellsGrid .referback .col-template-status,
.s-Budget-ProjectsGrid .referback .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .referback .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .referback .col-template-status,
.s-Budget-CountryGrid .referback .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .referback .col-template-status,
.s-Budget-MonthsGrid .referback .col-template-status,
.s-Budget-NationalityGrid .referback .col-template-status,
.s-Budget-PadClustersGrid .referback .col-template-status,
.s-Budget-PadCommunitiesGrid .referback .col-template-status,
.s-Budget-SecurityRolesGrid .referback .col-template-status,
.s-Budget-TemplatesGrid .referback .col-template-status,
.s-Budget-TerrainsGrid .referback .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .referback .col-template-status,
.s-Budget-UAPCodeLevelsGrid .referback .col-template-status,
.s-Budget-UAPCodeGroupsGrid .referback .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .referback .col-template-status,
.s-Budget-UnitsGrid .referback .col-template-status,
.s-Budget-UnitsOfMeasureGrid .referback .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .referback .col-template-status,
.s-Budget-VesselActivitiesGrid .referback .col-template-status,
.s-Budget-WellClassificationsGrid .referback .col-template-status,
.s-Budget-YearsGrid .referback .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .referback .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .referback .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .referback .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .referback .col-template-status,
.s-Budget-BudgetStatusesGrid .referback .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .referback .col-template-status,
.s-Budget-ButtonStatusesGrid .referback .col-template-status,
.s-Budget-CallCircularStatusesGrid .referback .col-template-status,
.s-Budget-CashCallStatusesGrid .referback .col-template-status,
.s-Budget-ContractStatusesGrid .referback .col-template-status,
.s-Budget-FieldStatusesGrid .referback .col-template-status,
.s-Budget-FincomStatusesGrid .referback .col-template-status,
.s-Budget-MacomReviewStatusesGrid .referback .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .referback .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .referback .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .referback .col-template-status,
.s-Budget-OperatorStatusesGrid .referback .col-template-status,
.s-Budget-OwnershipStatusesGrid .referback .col-template-status,
.s-Budget-PerformanceStatusesGrid .referback .col-template-status,
.s-Budget-ProjectStatusGrid .referback .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .referback .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .referback .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .referback .col-template-status,
.s-Budget-TemplateStatusesGrid .referback .col-template-status,
.s-Budget-UAPCodeStatusesGrid .referback .col-template-status,
.s-Budget-AgreementTypesGrid .referback .col-template-status,
.s-Budget-BriefTypesGrid .referback .col-template-status,
.s-Budget-BudgetTypesGrid .referback .col-template-status,
.s-Budget-MeetingGrid .referback .col-template-status,
.s-Budget-MeetingAgendaGrid .referback .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .referback .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .referback .col-template-status,
.s-Budget-MeetingDecisionGrid .referback .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .referback .col-template-status,
.s-Budget-MeetingLocationGrid .referback .col-template-status,
.s-Budget-MeetingTypeGrid .referback .col-template-status,
.s-Budget-FinancialDataGrid .referback .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .referback .col-template-status,
.s-Budget-CommitteeTypesGrid .referback .col-template-status,
.s-Budget-ContractTypesGrid .referback .col-template-status,
.s-Budget-EmploymentTypeGrid .referback .col-template-status,
.s-Budget-ExpenditureTypesGrid .referback .col-template-status,
.s-Budget-FundingTrancheTypesGrid .referback .col-template-status,
.s-Budget-GasUtilizationTypesGrid .referback .col-template-status,
.s-Budget-PadProgramTypesGrid .referback .col-template-status,
.s-Budget-PadTypesGrid .referback .col-template-status,
.s-Budget-ProductTypesGrid .referback .col-template-status,
.s-Budget-ProjectTypesGrid .referback .col-template-status,
.s-Budget-RigTypesGrid .referback .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .referback .col-template-status,
.s-Budget-UAPCodeTypesGrid .referback .col-template-status,
.s-Budget-VesselTypesGrid .referback .col-template-status,
.s-Budget-WellCostElementTypesGrid .referback .col-template-status,
.s-Budget-WellTypesGrid .referback .col-template-status,
.s-Budget-BudgetPreviewGrid .referback .col-template-status,
.s-Budget-FINCOMAppendixIGrid .referback .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .referback .col-template-status,
.s-Budget-FINCOMCollationGrid .referback .col-template-status,
.s-Budget-CallScheduleActionsGrid .referback .col-template-status,
.s-CashCall-CashCallCalendarsGrid .referback .col-template-status,
.s-CashCall-CashCallActivitiesGrid .referback .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .referback .col-template-status,
.s-CashCall-CashCallCircularsGrid .referback .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .referback .col-template-status,
.s-CashCall-CashCallCalendarsGrid .referback .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .referback .col-template-status,
.s-CashCall-CashCallBriefsGrid .referback .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .referback .col-template-status,
.s-CashCall-CashCallMandatesGrid .referback .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .referback .col-template-status,
.s-CashCall-CashCallPayablesGrid .referback .col-template-status,
.s-CashCall-CashCallsGrid .referback .col-template-status,
.s-CashCall-CashCallsAllGrid .referback .col-template-status,
.s-CashCall-CashCallsEPGrid .referback .col-template-status,
.s-CashCall-CashCallsBDGGrid .referback .col-template-status,
.s-CashCall-CashCallSchedulesGrid .referback .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .referback .col-template-status,
.s-CashCall-CashCallRequestsGrid .referback .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .referback .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .referback .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .referback .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .referback .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .referback .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .referback .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .referback .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .referback .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .referback .col-template-status,
.s-CashCall-CashCallEndorsementGrid .referback .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .referback .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .referback .col-template-status,
.s-CashCall-CashCallPayablesGrid .referback .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .referback .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .referback .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .referback .col-template-status,
.s-CashCall-CashCallMandatesGrid .referback .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .referback .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .referback .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .referback .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .referback .col-template-status,
.s-Performance-PerformancesGrid .referback .col-template-status,
.s-Performance-PerformancesAllGrid .referback .col-template-status,
.s-Performance-PerformancesBDGGrid .referback .col-template-status,
.s-Performance-PerformanceSchedulesGrid .referback .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .referback .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .referback .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .referback .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .referback .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .referback .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .referback .col-template-status,
.s-Performance-PerformanceMonthlyGrid .referback .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .referback .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .referback .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .referback .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .referback .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .referback .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .referback .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .referback .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .referback .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .referback .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .referback .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .referback .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .referback .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .referback .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .referback .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .referback .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .referback .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .referback .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .referback .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .referback .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .referback .col-template-status,
.s-Common-DashboardWidgetGrid .referback .col-template-status,
.s-Administration-BcPproExceptionsGrid .referback .col-template-status {
  background-color: #FF8000 !important;
}
.s-Administration-IssueTrackingIssuesGrid .issuedtooperator .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .issuedtooperator .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .issuedtooperator .col-template-status,
.s-Administration-NotificationTemplatesGrid .issuedtooperator .col-template-status,
.s-Administration-BudgetAutoTestGrid .issuedtooperator .col-template-status,
.s-Administration-CashCallAutoTestGrid .issuedtooperator .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .issuedtooperator .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .issuedtooperator .col-template-status,
.s-Administration-SiteNotificationsGrid .issuedtooperator .col-template-status,
.s-Budget-AnnualBudgetsGrid .issuedtooperator .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .issuedtooperator .col-template-status,
.s-Budget-BudgetProfilesABGrid .issuedtooperator .col-template-status,
.s-Budget-OperatorProposalsGrid .issuedtooperator .col-template-status,
.s-Budget-MACOMApprovalsGrid .issuedtooperator .col-template-status,
.s-Budget-OPCOMApprovalsGrid .issuedtooperator .col-template-status,
.s-Budget-ApprovedBudgetsGrid .issuedtooperator .col-template-status,
.s-Budget-FiveYearForecastsGrid .issuedtooperator .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .issuedtooperator .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .issuedtooperator .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .issuedtooperator .col-template-status,
.s-Budget-TECOMRecommendationsGrid .issuedtooperator .col-template-status,
.s-Budget-BudgetProfilesGrid .issuedtooperator .col-template-status,
.s-Budget-BudgetProfilesAllGrid .issuedtooperator .col-template-status,
.s-Budget-BudgetsGrid .issuedtooperator .col-template-status,
.s-Budget-CallCircularsGrid .issuedtooperator .col-template-status,
.s-Budget-CallCircularsAllGrid .issuedtooperator .col-template-status,
.s-Budget-CallSchedulesGrid .issuedtooperator .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .issuedtooperator .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .issuedtooperator .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .issuedtooperator .col-template-status,
.s-Budget-BudgetThresholdsGrid .issuedtooperator .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .issuedtooperator .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .issuedtooperator .col-template-status,
.s-Budget-OperatorTemplatesGrid .issuedtooperator .col-template-status,
.s-Budget-TemplateCommitteeGrid .issuedtooperator .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .issuedtooperator .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .issuedtooperator .col-template-status,
.s-Budget-BTFundingTranchesGrid .issuedtooperator .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .issuedtooperator .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .issuedtooperator .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .issuedtooperator .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .issuedtooperator .col-template-status,
.s-Budget-CallCircularsAllGrid .issuedtooperator .col-template-status,
.s-Budget-CallCircularsGrid .issuedtooperator .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .issuedtooperator .col-template-status,
.s-Budget-CallSchedulesAllGrid .issuedtooperator .col-template-status,
.s-Budget-CallSchedulesGrid .issuedtooperator .col-template-status,
.s-Budget-SwotsGrid .issuedtooperator .col-template-status,
.s-Budget-BudgetAssumptionsGrid .issuedtooperator .col-template-status,
.s-Budget-SeismicActivitiesGrid .issuedtooperator .col-template-status,
.s-Budget-ReservesGrid .issuedtooperator .col-template-status,
.s-Budget-ProductionGrid .issuedtooperator .col-template-status,
.s-Budget-GasUtilizationGrid .issuedtooperator .col-template-status,
.s-Budget-RigSequencesGrid .issuedtooperator .col-template-status,
.s-Budget-VesselSchedulesGrid .issuedtooperator .col-template-status,
.s-Budget-HrSummariesGrid .issuedtooperator .col-template-status,
.s-Budget-SharedCostsGrid .issuedtooperator .col-template-status,
.s-Budget-SharedCostAllocationsGrid .issuedtooperator .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .issuedtooperator .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .issuedtooperator .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .issuedtooperator .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .issuedtooperator .col-template-status,
.s-Budget-WellCostsGrid .issuedtooperator .col-template-status,
.s-Budget-WellCostElementsGrid .issuedtooperator .col-template-status,
.s-Budget-ProjectSummariesGrid .issuedtooperator .col-template-status,
.s-Budget-PADWorkProgrammesGrid .issuedtooperator .col-template-status,
.s-Budget-RigSequencesGrid .issuedtooperator .col-template-status,
.s-Budget-BlocksGrid .issuedtooperator .col-template-status,
.s-Budget-CashCallEquitySharesGrid .issuedtooperator .col-template-status,
.s-Budget-FieldsGrid .issuedtooperator .col-template-status,
.s-Budget-FieldTerrainsGrid .issuedtooperator .col-template-status,
.s-Budget-FundingTranchesGrid .issuedtooperator .col-template-status,
.s-Budget-FundingTranchesAllGrid .issuedtooperator .col-template-status,
.s-Budget-MajorDriversGrid .issuedtooperator .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .issuedtooperator .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .issuedtooperator .col-template-status,
.s-Budget-ExcelTemplatesGrid .issuedtooperator .col-template-status,
.s-Budget-OperatorBlocksAllGrid .issuedtooperator .col-template-status,
.s-Budget-OperatorBlocksGrid .issuedtooperator .col-template-status,
.s-Budget-ProductsGrid .issuedtooperator .col-template-status,
.s-Budget-RigsGrid .issuedtooperator .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .issuedtooperator .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .issuedtooperator .col-template-status,
.s-Budget-UAPCodesAllGrid .issuedtooperator .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .issuedtooperator .col-template-status,
.s-Budget-Operator_UAPCodesGrid .issuedtooperator .col-template-status,
.s-Budget-VesselsGrid .issuedtooperator .col-template-status,
.s-Budget-WellCostElementGroupsGrid .issuedtooperator .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .issuedtooperator .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .issuedtooperator .col-template-status,
.s-Budget-NonRigActivityTypesGrid .issuedtooperator .col-template-status,
.s-Budget-NonRigElementDetailsGrid .issuedtooperator .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .issuedtooperator .col-template-status,
.s-Budget-WellsAllGrid .issuedtooperator .col-template-status,
.s-Budget-WellsGrid .issuedtooperator .col-template-status,
.s-Budget-ProjectsGrid .issuedtooperator .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .issuedtooperator .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .issuedtooperator .col-template-status,
.s-Budget-CountryGrid .issuedtooperator .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .issuedtooperator .col-template-status,
.s-Budget-MonthsGrid .issuedtooperator .col-template-status,
.s-Budget-NationalityGrid .issuedtooperator .col-template-status,
.s-Budget-PadClustersGrid .issuedtooperator .col-template-status,
.s-Budget-PadCommunitiesGrid .issuedtooperator .col-template-status,
.s-Budget-SecurityRolesGrid .issuedtooperator .col-template-status,
.s-Budget-TemplatesGrid .issuedtooperator .col-template-status,
.s-Budget-TerrainsGrid .issuedtooperator .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .issuedtooperator .col-template-status,
.s-Budget-UAPCodeLevelsGrid .issuedtooperator .col-template-status,
.s-Budget-UAPCodeGroupsGrid .issuedtooperator .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .issuedtooperator .col-template-status,
.s-Budget-UnitsGrid .issuedtooperator .col-template-status,
.s-Budget-UnitsOfMeasureGrid .issuedtooperator .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .issuedtooperator .col-template-status,
.s-Budget-VesselActivitiesGrid .issuedtooperator .col-template-status,
.s-Budget-WellClassificationsGrid .issuedtooperator .col-template-status,
.s-Budget-YearsGrid .issuedtooperator .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .issuedtooperator .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .issuedtooperator .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .issuedtooperator .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .issuedtooperator .col-template-status,
.s-Budget-BudgetStatusesGrid .issuedtooperator .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .issuedtooperator .col-template-status,
.s-Budget-ButtonStatusesGrid .issuedtooperator .col-template-status,
.s-Budget-CallCircularStatusesGrid .issuedtooperator .col-template-status,
.s-Budget-CashCallStatusesGrid .issuedtooperator .col-template-status,
.s-Budget-ContractStatusesGrid .issuedtooperator .col-template-status,
.s-Budget-FieldStatusesGrid .issuedtooperator .col-template-status,
.s-Budget-FincomStatusesGrid .issuedtooperator .col-template-status,
.s-Budget-MacomReviewStatusesGrid .issuedtooperator .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .issuedtooperator .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .issuedtooperator .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .issuedtooperator .col-template-status,
.s-Budget-OperatorStatusesGrid .issuedtooperator .col-template-status,
.s-Budget-OwnershipStatusesGrid .issuedtooperator .col-template-status,
.s-Budget-PerformanceStatusesGrid .issuedtooperator .col-template-status,
.s-Budget-ProjectStatusGrid .issuedtooperator .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .issuedtooperator .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .issuedtooperator .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .issuedtooperator .col-template-status,
.s-Budget-TemplateStatusesGrid .issuedtooperator .col-template-status,
.s-Budget-UAPCodeStatusesGrid .issuedtooperator .col-template-status,
.s-Budget-AgreementTypesGrid .issuedtooperator .col-template-status,
.s-Budget-BriefTypesGrid .issuedtooperator .col-template-status,
.s-Budget-BudgetTypesGrid .issuedtooperator .col-template-status,
.s-Budget-MeetingGrid .issuedtooperator .col-template-status,
.s-Budget-MeetingAgendaGrid .issuedtooperator .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .issuedtooperator .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .issuedtooperator .col-template-status,
.s-Budget-MeetingDecisionGrid .issuedtooperator .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .issuedtooperator .col-template-status,
.s-Budget-MeetingLocationGrid .issuedtooperator .col-template-status,
.s-Budget-MeetingTypeGrid .issuedtooperator .col-template-status,
.s-Budget-FinancialDataGrid .issuedtooperator .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .issuedtooperator .col-template-status,
.s-Budget-CommitteeTypesGrid .issuedtooperator .col-template-status,
.s-Budget-ContractTypesGrid .issuedtooperator .col-template-status,
.s-Budget-EmploymentTypeGrid .issuedtooperator .col-template-status,
.s-Budget-ExpenditureTypesGrid .issuedtooperator .col-template-status,
.s-Budget-FundingTrancheTypesGrid .issuedtooperator .col-template-status,
.s-Budget-GasUtilizationTypesGrid .issuedtooperator .col-template-status,
.s-Budget-PadProgramTypesGrid .issuedtooperator .col-template-status,
.s-Budget-PadTypesGrid .issuedtooperator .col-template-status,
.s-Budget-ProductTypesGrid .issuedtooperator .col-template-status,
.s-Budget-ProjectTypesGrid .issuedtooperator .col-template-status,
.s-Budget-RigTypesGrid .issuedtooperator .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .issuedtooperator .col-template-status,
.s-Budget-UAPCodeTypesGrid .issuedtooperator .col-template-status,
.s-Budget-VesselTypesGrid .issuedtooperator .col-template-status,
.s-Budget-WellCostElementTypesGrid .issuedtooperator .col-template-status,
.s-Budget-WellTypesGrid .issuedtooperator .col-template-status,
.s-Budget-BudgetPreviewGrid .issuedtooperator .col-template-status,
.s-Budget-FINCOMAppendixIGrid .issuedtooperator .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .issuedtooperator .col-template-status,
.s-Budget-FINCOMCollationGrid .issuedtooperator .col-template-status,
.s-Budget-CallScheduleActionsGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallCalendarsGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallActivitiesGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallCircularsGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallCalendarsGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallBriefsGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallMandatesGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallPayablesGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallsGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallsAllGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallsEPGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallsBDGGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallSchedulesGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallRequestsGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallEndorsementGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallPayablesGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallMandatesGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .issuedtooperator .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .issuedtooperator .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .issuedtooperator .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .issuedtooperator .col-template-status,
.s-Performance-PerformancesGrid .issuedtooperator .col-template-status,
.s-Performance-PerformancesAllGrid .issuedtooperator .col-template-status,
.s-Performance-PerformancesBDGGrid .issuedtooperator .col-template-status,
.s-Performance-PerformanceSchedulesGrid .issuedtooperator .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .issuedtooperator .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .issuedtooperator .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .issuedtooperator .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .issuedtooperator .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .issuedtooperator .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .issuedtooperator .col-template-status,
.s-Performance-PerformanceMonthlyGrid .issuedtooperator .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .issuedtooperator .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .issuedtooperator .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .issuedtooperator .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .issuedtooperator .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .issuedtooperator .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .issuedtooperator .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .issuedtooperator .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .issuedtooperator .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .issuedtooperator .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .issuedtooperator .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .issuedtooperator .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .issuedtooperator .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .issuedtooperator .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .issuedtooperator .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .issuedtooperator .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .issuedtooperator .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .issuedtooperator .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .issuedtooperator .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .issuedtooperator .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .issuedtooperator .col-template-status,
.s-Common-DashboardWidgetGrid .issuedtooperator .col-template-status,
.s-Administration-BcPproExceptionsGrid .issuedtooperator .col-template-status {
  background-color: #36D900 !important;
}
.s-Administration-IssueTrackingIssuesGrid .brief-stage-1 .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .brief-stage-1 .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .brief-stage-1 .col-template-status,
.s-Administration-NotificationTemplatesGrid .brief-stage-1 .col-template-status,
.s-Administration-BudgetAutoTestGrid .brief-stage-1 .col-template-status,
.s-Administration-CashCallAutoTestGrid .brief-stage-1 .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .brief-stage-1 .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .brief-stage-1 .col-template-status,
.s-Administration-SiteNotificationsGrid .brief-stage-1 .col-template-status,
.s-Budget-AnnualBudgetsGrid .brief-stage-1 .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .brief-stage-1 .col-template-status,
.s-Budget-BudgetProfilesABGrid .brief-stage-1 .col-template-status,
.s-Budget-OperatorProposalsGrid .brief-stage-1 .col-template-status,
.s-Budget-MACOMApprovalsGrid .brief-stage-1 .col-template-status,
.s-Budget-OPCOMApprovalsGrid .brief-stage-1 .col-template-status,
.s-Budget-ApprovedBudgetsGrid .brief-stage-1 .col-template-status,
.s-Budget-FiveYearForecastsGrid .brief-stage-1 .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .brief-stage-1 .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .brief-stage-1 .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .brief-stage-1 .col-template-status,
.s-Budget-TECOMRecommendationsGrid .brief-stage-1 .col-template-status,
.s-Budget-BudgetProfilesGrid .brief-stage-1 .col-template-status,
.s-Budget-BudgetProfilesAllGrid .brief-stage-1 .col-template-status,
.s-Budget-BudgetsGrid .brief-stage-1 .col-template-status,
.s-Budget-CallCircularsGrid .brief-stage-1 .col-template-status,
.s-Budget-CallCircularsAllGrid .brief-stage-1 .col-template-status,
.s-Budget-CallSchedulesGrid .brief-stage-1 .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .brief-stage-1 .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .brief-stage-1 .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .brief-stage-1 .col-template-status,
.s-Budget-BudgetThresholdsGrid .brief-stage-1 .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .brief-stage-1 .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .brief-stage-1 .col-template-status,
.s-Budget-OperatorTemplatesGrid .brief-stage-1 .col-template-status,
.s-Budget-TemplateCommitteeGrid .brief-stage-1 .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .brief-stage-1 .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .brief-stage-1 .col-template-status,
.s-Budget-BTFundingTranchesGrid .brief-stage-1 .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .brief-stage-1 .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .brief-stage-1 .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .brief-stage-1 .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .brief-stage-1 .col-template-status,
.s-Budget-CallCircularsAllGrid .brief-stage-1 .col-template-status,
.s-Budget-CallCircularsGrid .brief-stage-1 .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .brief-stage-1 .col-template-status,
.s-Budget-CallSchedulesAllGrid .brief-stage-1 .col-template-status,
.s-Budget-CallSchedulesGrid .brief-stage-1 .col-template-status,
.s-Budget-SwotsGrid .brief-stage-1 .col-template-status,
.s-Budget-BudgetAssumptionsGrid .brief-stage-1 .col-template-status,
.s-Budget-SeismicActivitiesGrid .brief-stage-1 .col-template-status,
.s-Budget-ReservesGrid .brief-stage-1 .col-template-status,
.s-Budget-ProductionGrid .brief-stage-1 .col-template-status,
.s-Budget-GasUtilizationGrid .brief-stage-1 .col-template-status,
.s-Budget-RigSequencesGrid .brief-stage-1 .col-template-status,
.s-Budget-VesselSchedulesGrid .brief-stage-1 .col-template-status,
.s-Budget-HrSummariesGrid .brief-stage-1 .col-template-status,
.s-Budget-SharedCostsGrid .brief-stage-1 .col-template-status,
.s-Budget-SharedCostAllocationsGrid .brief-stage-1 .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .brief-stage-1 .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .brief-stage-1 .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .brief-stage-1 .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .brief-stage-1 .col-template-status,
.s-Budget-WellCostsGrid .brief-stage-1 .col-template-status,
.s-Budget-WellCostElementsGrid .brief-stage-1 .col-template-status,
.s-Budget-ProjectSummariesGrid .brief-stage-1 .col-template-status,
.s-Budget-PADWorkProgrammesGrid .brief-stage-1 .col-template-status,
.s-Budget-RigSequencesGrid .brief-stage-1 .col-template-status,
.s-Budget-BlocksGrid .brief-stage-1 .col-template-status,
.s-Budget-CashCallEquitySharesGrid .brief-stage-1 .col-template-status,
.s-Budget-FieldsGrid .brief-stage-1 .col-template-status,
.s-Budget-FieldTerrainsGrid .brief-stage-1 .col-template-status,
.s-Budget-FundingTranchesGrid .brief-stage-1 .col-template-status,
.s-Budget-FundingTranchesAllGrid .brief-stage-1 .col-template-status,
.s-Budget-MajorDriversGrid .brief-stage-1 .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .brief-stage-1 .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .brief-stage-1 .col-template-status,
.s-Budget-ExcelTemplatesGrid .brief-stage-1 .col-template-status,
.s-Budget-OperatorBlocksAllGrid .brief-stage-1 .col-template-status,
.s-Budget-OperatorBlocksGrid .brief-stage-1 .col-template-status,
.s-Budget-ProductsGrid .brief-stage-1 .col-template-status,
.s-Budget-RigsGrid .brief-stage-1 .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .brief-stage-1 .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .brief-stage-1 .col-template-status,
.s-Budget-UAPCodesAllGrid .brief-stage-1 .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .brief-stage-1 .col-template-status,
.s-Budget-Operator_UAPCodesGrid .brief-stage-1 .col-template-status,
.s-Budget-VesselsGrid .brief-stage-1 .col-template-status,
.s-Budget-WellCostElementGroupsGrid .brief-stage-1 .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .brief-stage-1 .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .brief-stage-1 .col-template-status,
.s-Budget-NonRigActivityTypesGrid .brief-stage-1 .col-template-status,
.s-Budget-NonRigElementDetailsGrid .brief-stage-1 .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .brief-stage-1 .col-template-status,
.s-Budget-WellsAllGrid .brief-stage-1 .col-template-status,
.s-Budget-WellsGrid .brief-stage-1 .col-template-status,
.s-Budget-ProjectsGrid .brief-stage-1 .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .brief-stage-1 .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .brief-stage-1 .col-template-status,
.s-Budget-CountryGrid .brief-stage-1 .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .brief-stage-1 .col-template-status,
.s-Budget-MonthsGrid .brief-stage-1 .col-template-status,
.s-Budget-NationalityGrid .brief-stage-1 .col-template-status,
.s-Budget-PadClustersGrid .brief-stage-1 .col-template-status,
.s-Budget-PadCommunitiesGrid .brief-stage-1 .col-template-status,
.s-Budget-SecurityRolesGrid .brief-stage-1 .col-template-status,
.s-Budget-TemplatesGrid .brief-stage-1 .col-template-status,
.s-Budget-TerrainsGrid .brief-stage-1 .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .brief-stage-1 .col-template-status,
.s-Budget-UAPCodeLevelsGrid .brief-stage-1 .col-template-status,
.s-Budget-UAPCodeGroupsGrid .brief-stage-1 .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .brief-stage-1 .col-template-status,
.s-Budget-UnitsGrid .brief-stage-1 .col-template-status,
.s-Budget-UnitsOfMeasureGrid .brief-stage-1 .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .brief-stage-1 .col-template-status,
.s-Budget-VesselActivitiesGrid .brief-stage-1 .col-template-status,
.s-Budget-WellClassificationsGrid .brief-stage-1 .col-template-status,
.s-Budget-YearsGrid .brief-stage-1 .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .brief-stage-1 .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .brief-stage-1 .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .brief-stage-1 .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .brief-stage-1 .col-template-status,
.s-Budget-BudgetStatusesGrid .brief-stage-1 .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .brief-stage-1 .col-template-status,
.s-Budget-ButtonStatusesGrid .brief-stage-1 .col-template-status,
.s-Budget-CallCircularStatusesGrid .brief-stage-1 .col-template-status,
.s-Budget-CashCallStatusesGrid .brief-stage-1 .col-template-status,
.s-Budget-ContractStatusesGrid .brief-stage-1 .col-template-status,
.s-Budget-FieldStatusesGrid .brief-stage-1 .col-template-status,
.s-Budget-FincomStatusesGrid .brief-stage-1 .col-template-status,
.s-Budget-MacomReviewStatusesGrid .brief-stage-1 .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .brief-stage-1 .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .brief-stage-1 .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .brief-stage-1 .col-template-status,
.s-Budget-OperatorStatusesGrid .brief-stage-1 .col-template-status,
.s-Budget-OwnershipStatusesGrid .brief-stage-1 .col-template-status,
.s-Budget-PerformanceStatusesGrid .brief-stage-1 .col-template-status,
.s-Budget-ProjectStatusGrid .brief-stage-1 .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .brief-stage-1 .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .brief-stage-1 .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .brief-stage-1 .col-template-status,
.s-Budget-TemplateStatusesGrid .brief-stage-1 .col-template-status,
.s-Budget-UAPCodeStatusesGrid .brief-stage-1 .col-template-status,
.s-Budget-AgreementTypesGrid .brief-stage-1 .col-template-status,
.s-Budget-BriefTypesGrid .brief-stage-1 .col-template-status,
.s-Budget-BudgetTypesGrid .brief-stage-1 .col-template-status,
.s-Budget-MeetingGrid .brief-stage-1 .col-template-status,
.s-Budget-MeetingAgendaGrid .brief-stage-1 .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .brief-stage-1 .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .brief-stage-1 .col-template-status,
.s-Budget-MeetingDecisionGrid .brief-stage-1 .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .brief-stage-1 .col-template-status,
.s-Budget-MeetingLocationGrid .brief-stage-1 .col-template-status,
.s-Budget-MeetingTypeGrid .brief-stage-1 .col-template-status,
.s-Budget-FinancialDataGrid .brief-stage-1 .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .brief-stage-1 .col-template-status,
.s-Budget-CommitteeTypesGrid .brief-stage-1 .col-template-status,
.s-Budget-ContractTypesGrid .brief-stage-1 .col-template-status,
.s-Budget-EmploymentTypeGrid .brief-stage-1 .col-template-status,
.s-Budget-ExpenditureTypesGrid .brief-stage-1 .col-template-status,
.s-Budget-FundingTrancheTypesGrid .brief-stage-1 .col-template-status,
.s-Budget-GasUtilizationTypesGrid .brief-stage-1 .col-template-status,
.s-Budget-PadProgramTypesGrid .brief-stage-1 .col-template-status,
.s-Budget-PadTypesGrid .brief-stage-1 .col-template-status,
.s-Budget-ProductTypesGrid .brief-stage-1 .col-template-status,
.s-Budget-ProjectTypesGrid .brief-stage-1 .col-template-status,
.s-Budget-RigTypesGrid .brief-stage-1 .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .brief-stage-1 .col-template-status,
.s-Budget-UAPCodeTypesGrid .brief-stage-1 .col-template-status,
.s-Budget-VesselTypesGrid .brief-stage-1 .col-template-status,
.s-Budget-WellCostElementTypesGrid .brief-stage-1 .col-template-status,
.s-Budget-WellTypesGrid .brief-stage-1 .col-template-status,
.s-Budget-BudgetPreviewGrid .brief-stage-1 .col-template-status,
.s-Budget-FINCOMAppendixIGrid .brief-stage-1 .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .brief-stage-1 .col-template-status,
.s-Budget-FINCOMCollationGrid .brief-stage-1 .col-template-status,
.s-Budget-CallScheduleActionsGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallCalendarsGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallActivitiesGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallCircularsGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallCalendarsGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallBriefsGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallMandatesGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallPayablesGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallsGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallsAllGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallsEPGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallsBDGGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallSchedulesGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallRequestsGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallEndorsementGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallPayablesGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallMandatesGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .brief-stage-1 .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .brief-stage-1 .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .brief-stage-1 .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformancesGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformancesAllGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformancesBDGGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformanceSchedulesGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformanceMonthlyGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .brief-stage-1 .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .brief-stage-1 .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .brief-stage-1 .col-template-status,
.s-Common-DashboardWidgetGrid .brief-stage-1 .col-template-status,
.s-Administration-BcPproExceptionsGrid .brief-stage-1 .col-template-status {
  background-color: #000000 !important;
}
.s-Administration-IssueTrackingIssuesGrid .brief-stage-2 .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .brief-stage-2 .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .brief-stage-2 .col-template-status,
.s-Administration-NotificationTemplatesGrid .brief-stage-2 .col-template-status,
.s-Administration-BudgetAutoTestGrid .brief-stage-2 .col-template-status,
.s-Administration-CashCallAutoTestGrid .brief-stage-2 .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .brief-stage-2 .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .brief-stage-2 .col-template-status,
.s-Administration-SiteNotificationsGrid .brief-stage-2 .col-template-status,
.s-Budget-AnnualBudgetsGrid .brief-stage-2 .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .brief-stage-2 .col-template-status,
.s-Budget-BudgetProfilesABGrid .brief-stage-2 .col-template-status,
.s-Budget-OperatorProposalsGrid .brief-stage-2 .col-template-status,
.s-Budget-MACOMApprovalsGrid .brief-stage-2 .col-template-status,
.s-Budget-OPCOMApprovalsGrid .brief-stage-2 .col-template-status,
.s-Budget-ApprovedBudgetsGrid .brief-stage-2 .col-template-status,
.s-Budget-FiveYearForecastsGrid .brief-stage-2 .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .brief-stage-2 .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .brief-stage-2 .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .brief-stage-2 .col-template-status,
.s-Budget-TECOMRecommendationsGrid .brief-stage-2 .col-template-status,
.s-Budget-BudgetProfilesGrid .brief-stage-2 .col-template-status,
.s-Budget-BudgetProfilesAllGrid .brief-stage-2 .col-template-status,
.s-Budget-BudgetsGrid .brief-stage-2 .col-template-status,
.s-Budget-CallCircularsGrid .brief-stage-2 .col-template-status,
.s-Budget-CallCircularsAllGrid .brief-stage-2 .col-template-status,
.s-Budget-CallSchedulesGrid .brief-stage-2 .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .brief-stage-2 .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .brief-stage-2 .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .brief-stage-2 .col-template-status,
.s-Budget-BudgetThresholdsGrid .brief-stage-2 .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .brief-stage-2 .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .brief-stage-2 .col-template-status,
.s-Budget-OperatorTemplatesGrid .brief-stage-2 .col-template-status,
.s-Budget-TemplateCommitteeGrid .brief-stage-2 .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .brief-stage-2 .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .brief-stage-2 .col-template-status,
.s-Budget-BTFundingTranchesGrid .brief-stage-2 .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .brief-stage-2 .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .brief-stage-2 .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .brief-stage-2 .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .brief-stage-2 .col-template-status,
.s-Budget-CallCircularsAllGrid .brief-stage-2 .col-template-status,
.s-Budget-CallCircularsGrid .brief-stage-2 .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .brief-stage-2 .col-template-status,
.s-Budget-CallSchedulesAllGrid .brief-stage-2 .col-template-status,
.s-Budget-CallSchedulesGrid .brief-stage-2 .col-template-status,
.s-Budget-SwotsGrid .brief-stage-2 .col-template-status,
.s-Budget-BudgetAssumptionsGrid .brief-stage-2 .col-template-status,
.s-Budget-SeismicActivitiesGrid .brief-stage-2 .col-template-status,
.s-Budget-ReservesGrid .brief-stage-2 .col-template-status,
.s-Budget-ProductionGrid .brief-stage-2 .col-template-status,
.s-Budget-GasUtilizationGrid .brief-stage-2 .col-template-status,
.s-Budget-RigSequencesGrid .brief-stage-2 .col-template-status,
.s-Budget-VesselSchedulesGrid .brief-stage-2 .col-template-status,
.s-Budget-HrSummariesGrid .brief-stage-2 .col-template-status,
.s-Budget-SharedCostsGrid .brief-stage-2 .col-template-status,
.s-Budget-SharedCostAllocationsGrid .brief-stage-2 .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .brief-stage-2 .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .brief-stage-2 .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .brief-stage-2 .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .brief-stage-2 .col-template-status,
.s-Budget-WellCostsGrid .brief-stage-2 .col-template-status,
.s-Budget-WellCostElementsGrid .brief-stage-2 .col-template-status,
.s-Budget-ProjectSummariesGrid .brief-stage-2 .col-template-status,
.s-Budget-PADWorkProgrammesGrid .brief-stage-2 .col-template-status,
.s-Budget-RigSequencesGrid .brief-stage-2 .col-template-status,
.s-Budget-BlocksGrid .brief-stage-2 .col-template-status,
.s-Budget-CashCallEquitySharesGrid .brief-stage-2 .col-template-status,
.s-Budget-FieldsGrid .brief-stage-2 .col-template-status,
.s-Budget-FieldTerrainsGrid .brief-stage-2 .col-template-status,
.s-Budget-FundingTranchesGrid .brief-stage-2 .col-template-status,
.s-Budget-FundingTranchesAllGrid .brief-stage-2 .col-template-status,
.s-Budget-MajorDriversGrid .brief-stage-2 .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .brief-stage-2 .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .brief-stage-2 .col-template-status,
.s-Budget-ExcelTemplatesGrid .brief-stage-2 .col-template-status,
.s-Budget-OperatorBlocksAllGrid .brief-stage-2 .col-template-status,
.s-Budget-OperatorBlocksGrid .brief-stage-2 .col-template-status,
.s-Budget-ProductsGrid .brief-stage-2 .col-template-status,
.s-Budget-RigsGrid .brief-stage-2 .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .brief-stage-2 .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .brief-stage-2 .col-template-status,
.s-Budget-UAPCodesAllGrid .brief-stage-2 .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .brief-stage-2 .col-template-status,
.s-Budget-Operator_UAPCodesGrid .brief-stage-2 .col-template-status,
.s-Budget-VesselsGrid .brief-stage-2 .col-template-status,
.s-Budget-WellCostElementGroupsGrid .brief-stage-2 .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .brief-stage-2 .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .brief-stage-2 .col-template-status,
.s-Budget-NonRigActivityTypesGrid .brief-stage-2 .col-template-status,
.s-Budget-NonRigElementDetailsGrid .brief-stage-2 .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .brief-stage-2 .col-template-status,
.s-Budget-WellsAllGrid .brief-stage-2 .col-template-status,
.s-Budget-WellsGrid .brief-stage-2 .col-template-status,
.s-Budget-ProjectsGrid .brief-stage-2 .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .brief-stage-2 .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .brief-stage-2 .col-template-status,
.s-Budget-CountryGrid .brief-stage-2 .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .brief-stage-2 .col-template-status,
.s-Budget-MonthsGrid .brief-stage-2 .col-template-status,
.s-Budget-NationalityGrid .brief-stage-2 .col-template-status,
.s-Budget-PadClustersGrid .brief-stage-2 .col-template-status,
.s-Budget-PadCommunitiesGrid .brief-stage-2 .col-template-status,
.s-Budget-SecurityRolesGrid .brief-stage-2 .col-template-status,
.s-Budget-TemplatesGrid .brief-stage-2 .col-template-status,
.s-Budget-TerrainsGrid .brief-stage-2 .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .brief-stage-2 .col-template-status,
.s-Budget-UAPCodeLevelsGrid .brief-stage-2 .col-template-status,
.s-Budget-UAPCodeGroupsGrid .brief-stage-2 .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .brief-stage-2 .col-template-status,
.s-Budget-UnitsGrid .brief-stage-2 .col-template-status,
.s-Budget-UnitsOfMeasureGrid .brief-stage-2 .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .brief-stage-2 .col-template-status,
.s-Budget-VesselActivitiesGrid .brief-stage-2 .col-template-status,
.s-Budget-WellClassificationsGrid .brief-stage-2 .col-template-status,
.s-Budget-YearsGrid .brief-stage-2 .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .brief-stage-2 .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .brief-stage-2 .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .brief-stage-2 .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .brief-stage-2 .col-template-status,
.s-Budget-BudgetStatusesGrid .brief-stage-2 .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .brief-stage-2 .col-template-status,
.s-Budget-ButtonStatusesGrid .brief-stage-2 .col-template-status,
.s-Budget-CallCircularStatusesGrid .brief-stage-2 .col-template-status,
.s-Budget-CashCallStatusesGrid .brief-stage-2 .col-template-status,
.s-Budget-ContractStatusesGrid .brief-stage-2 .col-template-status,
.s-Budget-FieldStatusesGrid .brief-stage-2 .col-template-status,
.s-Budget-FincomStatusesGrid .brief-stage-2 .col-template-status,
.s-Budget-MacomReviewStatusesGrid .brief-stage-2 .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .brief-stage-2 .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .brief-stage-2 .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .brief-stage-2 .col-template-status,
.s-Budget-OperatorStatusesGrid .brief-stage-2 .col-template-status,
.s-Budget-OwnershipStatusesGrid .brief-stage-2 .col-template-status,
.s-Budget-PerformanceStatusesGrid .brief-stage-2 .col-template-status,
.s-Budget-ProjectStatusGrid .brief-stage-2 .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .brief-stage-2 .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .brief-stage-2 .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .brief-stage-2 .col-template-status,
.s-Budget-TemplateStatusesGrid .brief-stage-2 .col-template-status,
.s-Budget-UAPCodeStatusesGrid .brief-stage-2 .col-template-status,
.s-Budget-AgreementTypesGrid .brief-stage-2 .col-template-status,
.s-Budget-BriefTypesGrid .brief-stage-2 .col-template-status,
.s-Budget-BudgetTypesGrid .brief-stage-2 .col-template-status,
.s-Budget-MeetingGrid .brief-stage-2 .col-template-status,
.s-Budget-MeetingAgendaGrid .brief-stage-2 .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .brief-stage-2 .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .brief-stage-2 .col-template-status,
.s-Budget-MeetingDecisionGrid .brief-stage-2 .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .brief-stage-2 .col-template-status,
.s-Budget-MeetingLocationGrid .brief-stage-2 .col-template-status,
.s-Budget-MeetingTypeGrid .brief-stage-2 .col-template-status,
.s-Budget-FinancialDataGrid .brief-stage-2 .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .brief-stage-2 .col-template-status,
.s-Budget-CommitteeTypesGrid .brief-stage-2 .col-template-status,
.s-Budget-ContractTypesGrid .brief-stage-2 .col-template-status,
.s-Budget-EmploymentTypeGrid .brief-stage-2 .col-template-status,
.s-Budget-ExpenditureTypesGrid .brief-stage-2 .col-template-status,
.s-Budget-FundingTrancheTypesGrid .brief-stage-2 .col-template-status,
.s-Budget-GasUtilizationTypesGrid .brief-stage-2 .col-template-status,
.s-Budget-PadProgramTypesGrid .brief-stage-2 .col-template-status,
.s-Budget-PadTypesGrid .brief-stage-2 .col-template-status,
.s-Budget-ProductTypesGrid .brief-stage-2 .col-template-status,
.s-Budget-ProjectTypesGrid .brief-stage-2 .col-template-status,
.s-Budget-RigTypesGrid .brief-stage-2 .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .brief-stage-2 .col-template-status,
.s-Budget-UAPCodeTypesGrid .brief-stage-2 .col-template-status,
.s-Budget-VesselTypesGrid .brief-stage-2 .col-template-status,
.s-Budget-WellCostElementTypesGrid .brief-stage-2 .col-template-status,
.s-Budget-WellTypesGrid .brief-stage-2 .col-template-status,
.s-Budget-BudgetPreviewGrid .brief-stage-2 .col-template-status,
.s-Budget-FINCOMAppendixIGrid .brief-stage-2 .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .brief-stage-2 .col-template-status,
.s-Budget-FINCOMCollationGrid .brief-stage-2 .col-template-status,
.s-Budget-CallScheduleActionsGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallCalendarsGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallActivitiesGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallCircularsGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallCalendarsGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallBriefsGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallMandatesGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallPayablesGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallsGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallsAllGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallsEPGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallsBDGGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallSchedulesGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallRequestsGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallEndorsementGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallPayablesGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallMandatesGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .brief-stage-2 .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .brief-stage-2 .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .brief-stage-2 .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformancesGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformancesAllGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformancesBDGGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformanceSchedulesGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformanceMonthlyGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .brief-stage-2 .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .brief-stage-2 .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .brief-stage-2 .col-template-status,
.s-Common-DashboardWidgetGrid .brief-stage-2 .col-template-status,
.s-Administration-BcPproExceptionsGrid .brief-stage-2 .col-template-status {
  background-color: #FF8000 !important;
}
.s-Administration-IssueTrackingIssuesGrid .brief-stage-3 .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .brief-stage-3 .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .brief-stage-3 .col-template-status,
.s-Administration-NotificationTemplatesGrid .brief-stage-3 .col-template-status,
.s-Administration-BudgetAutoTestGrid .brief-stage-3 .col-template-status,
.s-Administration-CashCallAutoTestGrid .brief-stage-3 .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .brief-stage-3 .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .brief-stage-3 .col-template-status,
.s-Administration-SiteNotificationsGrid .brief-stage-3 .col-template-status,
.s-Budget-AnnualBudgetsGrid .brief-stage-3 .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .brief-stage-3 .col-template-status,
.s-Budget-BudgetProfilesABGrid .brief-stage-3 .col-template-status,
.s-Budget-OperatorProposalsGrid .brief-stage-3 .col-template-status,
.s-Budget-MACOMApprovalsGrid .brief-stage-3 .col-template-status,
.s-Budget-OPCOMApprovalsGrid .brief-stage-3 .col-template-status,
.s-Budget-ApprovedBudgetsGrid .brief-stage-3 .col-template-status,
.s-Budget-FiveYearForecastsGrid .brief-stage-3 .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .brief-stage-3 .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .brief-stage-3 .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .brief-stage-3 .col-template-status,
.s-Budget-TECOMRecommendationsGrid .brief-stage-3 .col-template-status,
.s-Budget-BudgetProfilesGrid .brief-stage-3 .col-template-status,
.s-Budget-BudgetProfilesAllGrid .brief-stage-3 .col-template-status,
.s-Budget-BudgetsGrid .brief-stage-3 .col-template-status,
.s-Budget-CallCircularsGrid .brief-stage-3 .col-template-status,
.s-Budget-CallCircularsAllGrid .brief-stage-3 .col-template-status,
.s-Budget-CallSchedulesGrid .brief-stage-3 .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .brief-stage-3 .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .brief-stage-3 .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .brief-stage-3 .col-template-status,
.s-Budget-BudgetThresholdsGrid .brief-stage-3 .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .brief-stage-3 .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .brief-stage-3 .col-template-status,
.s-Budget-OperatorTemplatesGrid .brief-stage-3 .col-template-status,
.s-Budget-TemplateCommitteeGrid .brief-stage-3 .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .brief-stage-3 .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .brief-stage-3 .col-template-status,
.s-Budget-BTFundingTranchesGrid .brief-stage-3 .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .brief-stage-3 .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .brief-stage-3 .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .brief-stage-3 .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .brief-stage-3 .col-template-status,
.s-Budget-CallCircularsAllGrid .brief-stage-3 .col-template-status,
.s-Budget-CallCircularsGrid .brief-stage-3 .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .brief-stage-3 .col-template-status,
.s-Budget-CallSchedulesAllGrid .brief-stage-3 .col-template-status,
.s-Budget-CallSchedulesGrid .brief-stage-3 .col-template-status,
.s-Budget-SwotsGrid .brief-stage-3 .col-template-status,
.s-Budget-BudgetAssumptionsGrid .brief-stage-3 .col-template-status,
.s-Budget-SeismicActivitiesGrid .brief-stage-3 .col-template-status,
.s-Budget-ReservesGrid .brief-stage-3 .col-template-status,
.s-Budget-ProductionGrid .brief-stage-3 .col-template-status,
.s-Budget-GasUtilizationGrid .brief-stage-3 .col-template-status,
.s-Budget-RigSequencesGrid .brief-stage-3 .col-template-status,
.s-Budget-VesselSchedulesGrid .brief-stage-3 .col-template-status,
.s-Budget-HrSummariesGrid .brief-stage-3 .col-template-status,
.s-Budget-SharedCostsGrid .brief-stage-3 .col-template-status,
.s-Budget-SharedCostAllocationsGrid .brief-stage-3 .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .brief-stage-3 .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .brief-stage-3 .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .brief-stage-3 .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .brief-stage-3 .col-template-status,
.s-Budget-WellCostsGrid .brief-stage-3 .col-template-status,
.s-Budget-WellCostElementsGrid .brief-stage-3 .col-template-status,
.s-Budget-ProjectSummariesGrid .brief-stage-3 .col-template-status,
.s-Budget-PADWorkProgrammesGrid .brief-stage-3 .col-template-status,
.s-Budget-RigSequencesGrid .brief-stage-3 .col-template-status,
.s-Budget-BlocksGrid .brief-stage-3 .col-template-status,
.s-Budget-CashCallEquitySharesGrid .brief-stage-3 .col-template-status,
.s-Budget-FieldsGrid .brief-stage-3 .col-template-status,
.s-Budget-FieldTerrainsGrid .brief-stage-3 .col-template-status,
.s-Budget-FundingTranchesGrid .brief-stage-3 .col-template-status,
.s-Budget-FundingTranchesAllGrid .brief-stage-3 .col-template-status,
.s-Budget-MajorDriversGrid .brief-stage-3 .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .brief-stage-3 .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .brief-stage-3 .col-template-status,
.s-Budget-ExcelTemplatesGrid .brief-stage-3 .col-template-status,
.s-Budget-OperatorBlocksAllGrid .brief-stage-3 .col-template-status,
.s-Budget-OperatorBlocksGrid .brief-stage-3 .col-template-status,
.s-Budget-ProductsGrid .brief-stage-3 .col-template-status,
.s-Budget-RigsGrid .brief-stage-3 .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .brief-stage-3 .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .brief-stage-3 .col-template-status,
.s-Budget-UAPCodesAllGrid .brief-stage-3 .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .brief-stage-3 .col-template-status,
.s-Budget-Operator_UAPCodesGrid .brief-stage-3 .col-template-status,
.s-Budget-VesselsGrid .brief-stage-3 .col-template-status,
.s-Budget-WellCostElementGroupsGrid .brief-stage-3 .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .brief-stage-3 .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .brief-stage-3 .col-template-status,
.s-Budget-NonRigActivityTypesGrid .brief-stage-3 .col-template-status,
.s-Budget-NonRigElementDetailsGrid .brief-stage-3 .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .brief-stage-3 .col-template-status,
.s-Budget-WellsAllGrid .brief-stage-3 .col-template-status,
.s-Budget-WellsGrid .brief-stage-3 .col-template-status,
.s-Budget-ProjectsGrid .brief-stage-3 .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .brief-stage-3 .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .brief-stage-3 .col-template-status,
.s-Budget-CountryGrid .brief-stage-3 .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .brief-stage-3 .col-template-status,
.s-Budget-MonthsGrid .brief-stage-3 .col-template-status,
.s-Budget-NationalityGrid .brief-stage-3 .col-template-status,
.s-Budget-PadClustersGrid .brief-stage-3 .col-template-status,
.s-Budget-PadCommunitiesGrid .brief-stage-3 .col-template-status,
.s-Budget-SecurityRolesGrid .brief-stage-3 .col-template-status,
.s-Budget-TemplatesGrid .brief-stage-3 .col-template-status,
.s-Budget-TerrainsGrid .brief-stage-3 .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .brief-stage-3 .col-template-status,
.s-Budget-UAPCodeLevelsGrid .brief-stage-3 .col-template-status,
.s-Budget-UAPCodeGroupsGrid .brief-stage-3 .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .brief-stage-3 .col-template-status,
.s-Budget-UnitsGrid .brief-stage-3 .col-template-status,
.s-Budget-UnitsOfMeasureGrid .brief-stage-3 .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .brief-stage-3 .col-template-status,
.s-Budget-VesselActivitiesGrid .brief-stage-3 .col-template-status,
.s-Budget-WellClassificationsGrid .brief-stage-3 .col-template-status,
.s-Budget-YearsGrid .brief-stage-3 .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .brief-stage-3 .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .brief-stage-3 .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .brief-stage-3 .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .brief-stage-3 .col-template-status,
.s-Budget-BudgetStatusesGrid .brief-stage-3 .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .brief-stage-3 .col-template-status,
.s-Budget-ButtonStatusesGrid .brief-stage-3 .col-template-status,
.s-Budget-CallCircularStatusesGrid .brief-stage-3 .col-template-status,
.s-Budget-CashCallStatusesGrid .brief-stage-3 .col-template-status,
.s-Budget-ContractStatusesGrid .brief-stage-3 .col-template-status,
.s-Budget-FieldStatusesGrid .brief-stage-3 .col-template-status,
.s-Budget-FincomStatusesGrid .brief-stage-3 .col-template-status,
.s-Budget-MacomReviewStatusesGrid .brief-stage-3 .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .brief-stage-3 .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .brief-stage-3 .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .brief-stage-3 .col-template-status,
.s-Budget-OperatorStatusesGrid .brief-stage-3 .col-template-status,
.s-Budget-OwnershipStatusesGrid .brief-stage-3 .col-template-status,
.s-Budget-PerformanceStatusesGrid .brief-stage-3 .col-template-status,
.s-Budget-ProjectStatusGrid .brief-stage-3 .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .brief-stage-3 .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .brief-stage-3 .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .brief-stage-3 .col-template-status,
.s-Budget-TemplateStatusesGrid .brief-stage-3 .col-template-status,
.s-Budget-UAPCodeStatusesGrid .brief-stage-3 .col-template-status,
.s-Budget-AgreementTypesGrid .brief-stage-3 .col-template-status,
.s-Budget-BriefTypesGrid .brief-stage-3 .col-template-status,
.s-Budget-BudgetTypesGrid .brief-stage-3 .col-template-status,
.s-Budget-MeetingGrid .brief-stage-3 .col-template-status,
.s-Budget-MeetingAgendaGrid .brief-stage-3 .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .brief-stage-3 .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .brief-stage-3 .col-template-status,
.s-Budget-MeetingDecisionGrid .brief-stage-3 .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .brief-stage-3 .col-template-status,
.s-Budget-MeetingLocationGrid .brief-stage-3 .col-template-status,
.s-Budget-MeetingTypeGrid .brief-stage-3 .col-template-status,
.s-Budget-FinancialDataGrid .brief-stage-3 .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .brief-stage-3 .col-template-status,
.s-Budget-CommitteeTypesGrid .brief-stage-3 .col-template-status,
.s-Budget-ContractTypesGrid .brief-stage-3 .col-template-status,
.s-Budget-EmploymentTypeGrid .brief-stage-3 .col-template-status,
.s-Budget-ExpenditureTypesGrid .brief-stage-3 .col-template-status,
.s-Budget-FundingTrancheTypesGrid .brief-stage-3 .col-template-status,
.s-Budget-GasUtilizationTypesGrid .brief-stage-3 .col-template-status,
.s-Budget-PadProgramTypesGrid .brief-stage-3 .col-template-status,
.s-Budget-PadTypesGrid .brief-stage-3 .col-template-status,
.s-Budget-ProductTypesGrid .brief-stage-3 .col-template-status,
.s-Budget-ProjectTypesGrid .brief-stage-3 .col-template-status,
.s-Budget-RigTypesGrid .brief-stage-3 .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .brief-stage-3 .col-template-status,
.s-Budget-UAPCodeTypesGrid .brief-stage-3 .col-template-status,
.s-Budget-VesselTypesGrid .brief-stage-3 .col-template-status,
.s-Budget-WellCostElementTypesGrid .brief-stage-3 .col-template-status,
.s-Budget-WellTypesGrid .brief-stage-3 .col-template-status,
.s-Budget-BudgetPreviewGrid .brief-stage-3 .col-template-status,
.s-Budget-FINCOMAppendixIGrid .brief-stage-3 .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .brief-stage-3 .col-template-status,
.s-Budget-FINCOMCollationGrid .brief-stage-3 .col-template-status,
.s-Budget-CallScheduleActionsGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallCalendarsGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallActivitiesGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallCircularsGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallCalendarsGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallBriefsGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallMandatesGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallPayablesGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallsGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallsAllGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallsEPGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallsBDGGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallSchedulesGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallRequestsGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallEndorsementGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallPayablesGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallMandatesGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .brief-stage-3 .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .brief-stage-3 .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .brief-stage-3 .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformancesGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformancesAllGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformancesBDGGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformanceSchedulesGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformanceMonthlyGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .brief-stage-3 .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .brief-stage-3 .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .brief-stage-3 .col-template-status,
.s-Common-DashboardWidgetGrid .brief-stage-3 .col-template-status,
.s-Administration-BcPproExceptionsGrid .brief-stage-3 .col-template-status {
  background-color: #EE8500 !important;
}
.s-Administration-IssueTrackingIssuesGrid .brief-stage-4 .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .brief-stage-4 .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .brief-stage-4 .col-template-status,
.s-Administration-NotificationTemplatesGrid .brief-stage-4 .col-template-status,
.s-Administration-BudgetAutoTestGrid .brief-stage-4 .col-template-status,
.s-Administration-CashCallAutoTestGrid .brief-stage-4 .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .brief-stage-4 .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .brief-stage-4 .col-template-status,
.s-Administration-SiteNotificationsGrid .brief-stage-4 .col-template-status,
.s-Budget-AnnualBudgetsGrid .brief-stage-4 .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .brief-stage-4 .col-template-status,
.s-Budget-BudgetProfilesABGrid .brief-stage-4 .col-template-status,
.s-Budget-OperatorProposalsGrid .brief-stage-4 .col-template-status,
.s-Budget-MACOMApprovalsGrid .brief-stage-4 .col-template-status,
.s-Budget-OPCOMApprovalsGrid .brief-stage-4 .col-template-status,
.s-Budget-ApprovedBudgetsGrid .brief-stage-4 .col-template-status,
.s-Budget-FiveYearForecastsGrid .brief-stage-4 .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .brief-stage-4 .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .brief-stage-4 .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .brief-stage-4 .col-template-status,
.s-Budget-TECOMRecommendationsGrid .brief-stage-4 .col-template-status,
.s-Budget-BudgetProfilesGrid .brief-stage-4 .col-template-status,
.s-Budget-BudgetProfilesAllGrid .brief-stage-4 .col-template-status,
.s-Budget-BudgetsGrid .brief-stage-4 .col-template-status,
.s-Budget-CallCircularsGrid .brief-stage-4 .col-template-status,
.s-Budget-CallCircularsAllGrid .brief-stage-4 .col-template-status,
.s-Budget-CallSchedulesGrid .brief-stage-4 .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .brief-stage-4 .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .brief-stage-4 .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .brief-stage-4 .col-template-status,
.s-Budget-BudgetThresholdsGrid .brief-stage-4 .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .brief-stage-4 .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .brief-stage-4 .col-template-status,
.s-Budget-OperatorTemplatesGrid .brief-stage-4 .col-template-status,
.s-Budget-TemplateCommitteeGrid .brief-stage-4 .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .brief-stage-4 .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .brief-stage-4 .col-template-status,
.s-Budget-BTFundingTranchesGrid .brief-stage-4 .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .brief-stage-4 .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .brief-stage-4 .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .brief-stage-4 .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .brief-stage-4 .col-template-status,
.s-Budget-CallCircularsAllGrid .brief-stage-4 .col-template-status,
.s-Budget-CallCircularsGrid .brief-stage-4 .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .brief-stage-4 .col-template-status,
.s-Budget-CallSchedulesAllGrid .brief-stage-4 .col-template-status,
.s-Budget-CallSchedulesGrid .brief-stage-4 .col-template-status,
.s-Budget-SwotsGrid .brief-stage-4 .col-template-status,
.s-Budget-BudgetAssumptionsGrid .brief-stage-4 .col-template-status,
.s-Budget-SeismicActivitiesGrid .brief-stage-4 .col-template-status,
.s-Budget-ReservesGrid .brief-stage-4 .col-template-status,
.s-Budget-ProductionGrid .brief-stage-4 .col-template-status,
.s-Budget-GasUtilizationGrid .brief-stage-4 .col-template-status,
.s-Budget-RigSequencesGrid .brief-stage-4 .col-template-status,
.s-Budget-VesselSchedulesGrid .brief-stage-4 .col-template-status,
.s-Budget-HrSummariesGrid .brief-stage-4 .col-template-status,
.s-Budget-SharedCostsGrid .brief-stage-4 .col-template-status,
.s-Budget-SharedCostAllocationsGrid .brief-stage-4 .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .brief-stage-4 .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .brief-stage-4 .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .brief-stage-4 .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .brief-stage-4 .col-template-status,
.s-Budget-WellCostsGrid .brief-stage-4 .col-template-status,
.s-Budget-WellCostElementsGrid .brief-stage-4 .col-template-status,
.s-Budget-ProjectSummariesGrid .brief-stage-4 .col-template-status,
.s-Budget-PADWorkProgrammesGrid .brief-stage-4 .col-template-status,
.s-Budget-RigSequencesGrid .brief-stage-4 .col-template-status,
.s-Budget-BlocksGrid .brief-stage-4 .col-template-status,
.s-Budget-CashCallEquitySharesGrid .brief-stage-4 .col-template-status,
.s-Budget-FieldsGrid .brief-stage-4 .col-template-status,
.s-Budget-FieldTerrainsGrid .brief-stage-4 .col-template-status,
.s-Budget-FundingTranchesGrid .brief-stage-4 .col-template-status,
.s-Budget-FundingTranchesAllGrid .brief-stage-4 .col-template-status,
.s-Budget-MajorDriversGrid .brief-stage-4 .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .brief-stage-4 .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .brief-stage-4 .col-template-status,
.s-Budget-ExcelTemplatesGrid .brief-stage-4 .col-template-status,
.s-Budget-OperatorBlocksAllGrid .brief-stage-4 .col-template-status,
.s-Budget-OperatorBlocksGrid .brief-stage-4 .col-template-status,
.s-Budget-ProductsGrid .brief-stage-4 .col-template-status,
.s-Budget-RigsGrid .brief-stage-4 .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .brief-stage-4 .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .brief-stage-4 .col-template-status,
.s-Budget-UAPCodesAllGrid .brief-stage-4 .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .brief-stage-4 .col-template-status,
.s-Budget-Operator_UAPCodesGrid .brief-stage-4 .col-template-status,
.s-Budget-VesselsGrid .brief-stage-4 .col-template-status,
.s-Budget-WellCostElementGroupsGrid .brief-stage-4 .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .brief-stage-4 .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .brief-stage-4 .col-template-status,
.s-Budget-NonRigActivityTypesGrid .brief-stage-4 .col-template-status,
.s-Budget-NonRigElementDetailsGrid .brief-stage-4 .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .brief-stage-4 .col-template-status,
.s-Budget-WellsAllGrid .brief-stage-4 .col-template-status,
.s-Budget-WellsGrid .brief-stage-4 .col-template-status,
.s-Budget-ProjectsGrid .brief-stage-4 .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .brief-stage-4 .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .brief-stage-4 .col-template-status,
.s-Budget-CountryGrid .brief-stage-4 .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .brief-stage-4 .col-template-status,
.s-Budget-MonthsGrid .brief-stage-4 .col-template-status,
.s-Budget-NationalityGrid .brief-stage-4 .col-template-status,
.s-Budget-PadClustersGrid .brief-stage-4 .col-template-status,
.s-Budget-PadCommunitiesGrid .brief-stage-4 .col-template-status,
.s-Budget-SecurityRolesGrid .brief-stage-4 .col-template-status,
.s-Budget-TemplatesGrid .brief-stage-4 .col-template-status,
.s-Budget-TerrainsGrid .brief-stage-4 .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .brief-stage-4 .col-template-status,
.s-Budget-UAPCodeLevelsGrid .brief-stage-4 .col-template-status,
.s-Budget-UAPCodeGroupsGrid .brief-stage-4 .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .brief-stage-4 .col-template-status,
.s-Budget-UnitsGrid .brief-stage-4 .col-template-status,
.s-Budget-UnitsOfMeasureGrid .brief-stage-4 .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .brief-stage-4 .col-template-status,
.s-Budget-VesselActivitiesGrid .brief-stage-4 .col-template-status,
.s-Budget-WellClassificationsGrid .brief-stage-4 .col-template-status,
.s-Budget-YearsGrid .brief-stage-4 .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .brief-stage-4 .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .brief-stage-4 .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .brief-stage-4 .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .brief-stage-4 .col-template-status,
.s-Budget-BudgetStatusesGrid .brief-stage-4 .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .brief-stage-4 .col-template-status,
.s-Budget-ButtonStatusesGrid .brief-stage-4 .col-template-status,
.s-Budget-CallCircularStatusesGrid .brief-stage-4 .col-template-status,
.s-Budget-CashCallStatusesGrid .brief-stage-4 .col-template-status,
.s-Budget-ContractStatusesGrid .brief-stage-4 .col-template-status,
.s-Budget-FieldStatusesGrid .brief-stage-4 .col-template-status,
.s-Budget-FincomStatusesGrid .brief-stage-4 .col-template-status,
.s-Budget-MacomReviewStatusesGrid .brief-stage-4 .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .brief-stage-4 .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .brief-stage-4 .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .brief-stage-4 .col-template-status,
.s-Budget-OperatorStatusesGrid .brief-stage-4 .col-template-status,
.s-Budget-OwnershipStatusesGrid .brief-stage-4 .col-template-status,
.s-Budget-PerformanceStatusesGrid .brief-stage-4 .col-template-status,
.s-Budget-ProjectStatusGrid .brief-stage-4 .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .brief-stage-4 .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .brief-stage-4 .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .brief-stage-4 .col-template-status,
.s-Budget-TemplateStatusesGrid .brief-stage-4 .col-template-status,
.s-Budget-UAPCodeStatusesGrid .brief-stage-4 .col-template-status,
.s-Budget-AgreementTypesGrid .brief-stage-4 .col-template-status,
.s-Budget-BriefTypesGrid .brief-stage-4 .col-template-status,
.s-Budget-BudgetTypesGrid .brief-stage-4 .col-template-status,
.s-Budget-MeetingGrid .brief-stage-4 .col-template-status,
.s-Budget-MeetingAgendaGrid .brief-stage-4 .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .brief-stage-4 .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .brief-stage-4 .col-template-status,
.s-Budget-MeetingDecisionGrid .brief-stage-4 .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .brief-stage-4 .col-template-status,
.s-Budget-MeetingLocationGrid .brief-stage-4 .col-template-status,
.s-Budget-MeetingTypeGrid .brief-stage-4 .col-template-status,
.s-Budget-FinancialDataGrid .brief-stage-4 .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .brief-stage-4 .col-template-status,
.s-Budget-CommitteeTypesGrid .brief-stage-4 .col-template-status,
.s-Budget-ContractTypesGrid .brief-stage-4 .col-template-status,
.s-Budget-EmploymentTypeGrid .brief-stage-4 .col-template-status,
.s-Budget-ExpenditureTypesGrid .brief-stage-4 .col-template-status,
.s-Budget-FundingTrancheTypesGrid .brief-stage-4 .col-template-status,
.s-Budget-GasUtilizationTypesGrid .brief-stage-4 .col-template-status,
.s-Budget-PadProgramTypesGrid .brief-stage-4 .col-template-status,
.s-Budget-PadTypesGrid .brief-stage-4 .col-template-status,
.s-Budget-ProductTypesGrid .brief-stage-4 .col-template-status,
.s-Budget-ProjectTypesGrid .brief-stage-4 .col-template-status,
.s-Budget-RigTypesGrid .brief-stage-4 .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .brief-stage-4 .col-template-status,
.s-Budget-UAPCodeTypesGrid .brief-stage-4 .col-template-status,
.s-Budget-VesselTypesGrid .brief-stage-4 .col-template-status,
.s-Budget-WellCostElementTypesGrid .brief-stage-4 .col-template-status,
.s-Budget-WellTypesGrid .brief-stage-4 .col-template-status,
.s-Budget-BudgetPreviewGrid .brief-stage-4 .col-template-status,
.s-Budget-FINCOMAppendixIGrid .brief-stage-4 .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .brief-stage-4 .col-template-status,
.s-Budget-FINCOMCollationGrid .brief-stage-4 .col-template-status,
.s-Budget-CallScheduleActionsGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallCalendarsGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallActivitiesGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallCircularsGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallCalendarsGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallBriefsGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallMandatesGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallPayablesGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallsGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallsAllGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallsEPGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallsBDGGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallSchedulesGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallRequestsGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallEndorsementGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallPayablesGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallMandatesGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .brief-stage-4 .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .brief-stage-4 .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .brief-stage-4 .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformancesGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformancesAllGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformancesBDGGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformanceSchedulesGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformanceMonthlyGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .brief-stage-4 .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .brief-stage-4 .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .brief-stage-4 .col-template-status,
.s-Common-DashboardWidgetGrid .brief-stage-4 .col-template-status,
.s-Administration-BcPproExceptionsGrid .brief-stage-4 .col-template-status {
  background-color: #DD9000 !important;
}
.s-Administration-IssueTrackingIssuesGrid .brief-stage-5 .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .brief-stage-5 .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .brief-stage-5 .col-template-status,
.s-Administration-NotificationTemplatesGrid .brief-stage-5 .col-template-status,
.s-Administration-BudgetAutoTestGrid .brief-stage-5 .col-template-status,
.s-Administration-CashCallAutoTestGrid .brief-stage-5 .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .brief-stage-5 .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .brief-stage-5 .col-template-status,
.s-Administration-SiteNotificationsGrid .brief-stage-5 .col-template-status,
.s-Budget-AnnualBudgetsGrid .brief-stage-5 .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .brief-stage-5 .col-template-status,
.s-Budget-BudgetProfilesABGrid .brief-stage-5 .col-template-status,
.s-Budget-OperatorProposalsGrid .brief-stage-5 .col-template-status,
.s-Budget-MACOMApprovalsGrid .brief-stage-5 .col-template-status,
.s-Budget-OPCOMApprovalsGrid .brief-stage-5 .col-template-status,
.s-Budget-ApprovedBudgetsGrid .brief-stage-5 .col-template-status,
.s-Budget-FiveYearForecastsGrid .brief-stage-5 .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .brief-stage-5 .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .brief-stage-5 .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .brief-stage-5 .col-template-status,
.s-Budget-TECOMRecommendationsGrid .brief-stage-5 .col-template-status,
.s-Budget-BudgetProfilesGrid .brief-stage-5 .col-template-status,
.s-Budget-BudgetProfilesAllGrid .brief-stage-5 .col-template-status,
.s-Budget-BudgetsGrid .brief-stage-5 .col-template-status,
.s-Budget-CallCircularsGrid .brief-stage-5 .col-template-status,
.s-Budget-CallCircularsAllGrid .brief-stage-5 .col-template-status,
.s-Budget-CallSchedulesGrid .brief-stage-5 .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .brief-stage-5 .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .brief-stage-5 .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .brief-stage-5 .col-template-status,
.s-Budget-BudgetThresholdsGrid .brief-stage-5 .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .brief-stage-5 .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .brief-stage-5 .col-template-status,
.s-Budget-OperatorTemplatesGrid .brief-stage-5 .col-template-status,
.s-Budget-TemplateCommitteeGrid .brief-stage-5 .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .brief-stage-5 .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .brief-stage-5 .col-template-status,
.s-Budget-BTFundingTranchesGrid .brief-stage-5 .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .brief-stage-5 .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .brief-stage-5 .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .brief-stage-5 .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .brief-stage-5 .col-template-status,
.s-Budget-CallCircularsAllGrid .brief-stage-5 .col-template-status,
.s-Budget-CallCircularsGrid .brief-stage-5 .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .brief-stage-5 .col-template-status,
.s-Budget-CallSchedulesAllGrid .brief-stage-5 .col-template-status,
.s-Budget-CallSchedulesGrid .brief-stage-5 .col-template-status,
.s-Budget-SwotsGrid .brief-stage-5 .col-template-status,
.s-Budget-BudgetAssumptionsGrid .brief-stage-5 .col-template-status,
.s-Budget-SeismicActivitiesGrid .brief-stage-5 .col-template-status,
.s-Budget-ReservesGrid .brief-stage-5 .col-template-status,
.s-Budget-ProductionGrid .brief-stage-5 .col-template-status,
.s-Budget-GasUtilizationGrid .brief-stage-5 .col-template-status,
.s-Budget-RigSequencesGrid .brief-stage-5 .col-template-status,
.s-Budget-VesselSchedulesGrid .brief-stage-5 .col-template-status,
.s-Budget-HrSummariesGrid .brief-stage-5 .col-template-status,
.s-Budget-SharedCostsGrid .brief-stage-5 .col-template-status,
.s-Budget-SharedCostAllocationsGrid .brief-stage-5 .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .brief-stage-5 .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .brief-stage-5 .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .brief-stage-5 .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .brief-stage-5 .col-template-status,
.s-Budget-WellCostsGrid .brief-stage-5 .col-template-status,
.s-Budget-WellCostElementsGrid .brief-stage-5 .col-template-status,
.s-Budget-ProjectSummariesGrid .brief-stage-5 .col-template-status,
.s-Budget-PADWorkProgrammesGrid .brief-stage-5 .col-template-status,
.s-Budget-RigSequencesGrid .brief-stage-5 .col-template-status,
.s-Budget-BlocksGrid .brief-stage-5 .col-template-status,
.s-Budget-CashCallEquitySharesGrid .brief-stage-5 .col-template-status,
.s-Budget-FieldsGrid .brief-stage-5 .col-template-status,
.s-Budget-FieldTerrainsGrid .brief-stage-5 .col-template-status,
.s-Budget-FundingTranchesGrid .brief-stage-5 .col-template-status,
.s-Budget-FundingTranchesAllGrid .brief-stage-5 .col-template-status,
.s-Budget-MajorDriversGrid .brief-stage-5 .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .brief-stage-5 .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .brief-stage-5 .col-template-status,
.s-Budget-ExcelTemplatesGrid .brief-stage-5 .col-template-status,
.s-Budget-OperatorBlocksAllGrid .brief-stage-5 .col-template-status,
.s-Budget-OperatorBlocksGrid .brief-stage-5 .col-template-status,
.s-Budget-ProductsGrid .brief-stage-5 .col-template-status,
.s-Budget-RigsGrid .brief-stage-5 .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .brief-stage-5 .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .brief-stage-5 .col-template-status,
.s-Budget-UAPCodesAllGrid .brief-stage-5 .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .brief-stage-5 .col-template-status,
.s-Budget-Operator_UAPCodesGrid .brief-stage-5 .col-template-status,
.s-Budget-VesselsGrid .brief-stage-5 .col-template-status,
.s-Budget-WellCostElementGroupsGrid .brief-stage-5 .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .brief-stage-5 .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .brief-stage-5 .col-template-status,
.s-Budget-NonRigActivityTypesGrid .brief-stage-5 .col-template-status,
.s-Budget-NonRigElementDetailsGrid .brief-stage-5 .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .brief-stage-5 .col-template-status,
.s-Budget-WellsAllGrid .brief-stage-5 .col-template-status,
.s-Budget-WellsGrid .brief-stage-5 .col-template-status,
.s-Budget-ProjectsGrid .brief-stage-5 .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .brief-stage-5 .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .brief-stage-5 .col-template-status,
.s-Budget-CountryGrid .brief-stage-5 .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .brief-stage-5 .col-template-status,
.s-Budget-MonthsGrid .brief-stage-5 .col-template-status,
.s-Budget-NationalityGrid .brief-stage-5 .col-template-status,
.s-Budget-PadClustersGrid .brief-stage-5 .col-template-status,
.s-Budget-PadCommunitiesGrid .brief-stage-5 .col-template-status,
.s-Budget-SecurityRolesGrid .brief-stage-5 .col-template-status,
.s-Budget-TemplatesGrid .brief-stage-5 .col-template-status,
.s-Budget-TerrainsGrid .brief-stage-5 .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .brief-stage-5 .col-template-status,
.s-Budget-UAPCodeLevelsGrid .brief-stage-5 .col-template-status,
.s-Budget-UAPCodeGroupsGrid .brief-stage-5 .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .brief-stage-5 .col-template-status,
.s-Budget-UnitsGrid .brief-stage-5 .col-template-status,
.s-Budget-UnitsOfMeasureGrid .brief-stage-5 .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .brief-stage-5 .col-template-status,
.s-Budget-VesselActivitiesGrid .brief-stage-5 .col-template-status,
.s-Budget-WellClassificationsGrid .brief-stage-5 .col-template-status,
.s-Budget-YearsGrid .brief-stage-5 .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .brief-stage-5 .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .brief-stage-5 .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .brief-stage-5 .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .brief-stage-5 .col-template-status,
.s-Budget-BudgetStatusesGrid .brief-stage-5 .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .brief-stage-5 .col-template-status,
.s-Budget-ButtonStatusesGrid .brief-stage-5 .col-template-status,
.s-Budget-CallCircularStatusesGrid .brief-stage-5 .col-template-status,
.s-Budget-CashCallStatusesGrid .brief-stage-5 .col-template-status,
.s-Budget-ContractStatusesGrid .brief-stage-5 .col-template-status,
.s-Budget-FieldStatusesGrid .brief-stage-5 .col-template-status,
.s-Budget-FincomStatusesGrid .brief-stage-5 .col-template-status,
.s-Budget-MacomReviewStatusesGrid .brief-stage-5 .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .brief-stage-5 .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .brief-stage-5 .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .brief-stage-5 .col-template-status,
.s-Budget-OperatorStatusesGrid .brief-stage-5 .col-template-status,
.s-Budget-OwnershipStatusesGrid .brief-stage-5 .col-template-status,
.s-Budget-PerformanceStatusesGrid .brief-stage-5 .col-template-status,
.s-Budget-ProjectStatusGrid .brief-stage-5 .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .brief-stage-5 .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .brief-stage-5 .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .brief-stage-5 .col-template-status,
.s-Budget-TemplateStatusesGrid .brief-stage-5 .col-template-status,
.s-Budget-UAPCodeStatusesGrid .brief-stage-5 .col-template-status,
.s-Budget-AgreementTypesGrid .brief-stage-5 .col-template-status,
.s-Budget-BriefTypesGrid .brief-stage-5 .col-template-status,
.s-Budget-BudgetTypesGrid .brief-stage-5 .col-template-status,
.s-Budget-MeetingGrid .brief-stage-5 .col-template-status,
.s-Budget-MeetingAgendaGrid .brief-stage-5 .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .brief-stage-5 .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .brief-stage-5 .col-template-status,
.s-Budget-MeetingDecisionGrid .brief-stage-5 .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .brief-stage-5 .col-template-status,
.s-Budget-MeetingLocationGrid .brief-stage-5 .col-template-status,
.s-Budget-MeetingTypeGrid .brief-stage-5 .col-template-status,
.s-Budget-FinancialDataGrid .brief-stage-5 .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .brief-stage-5 .col-template-status,
.s-Budget-CommitteeTypesGrid .brief-stage-5 .col-template-status,
.s-Budget-ContractTypesGrid .brief-stage-5 .col-template-status,
.s-Budget-EmploymentTypeGrid .brief-stage-5 .col-template-status,
.s-Budget-ExpenditureTypesGrid .brief-stage-5 .col-template-status,
.s-Budget-FundingTrancheTypesGrid .brief-stage-5 .col-template-status,
.s-Budget-GasUtilizationTypesGrid .brief-stage-5 .col-template-status,
.s-Budget-PadProgramTypesGrid .brief-stage-5 .col-template-status,
.s-Budget-PadTypesGrid .brief-stage-5 .col-template-status,
.s-Budget-ProductTypesGrid .brief-stage-5 .col-template-status,
.s-Budget-ProjectTypesGrid .brief-stage-5 .col-template-status,
.s-Budget-RigTypesGrid .brief-stage-5 .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .brief-stage-5 .col-template-status,
.s-Budget-UAPCodeTypesGrid .brief-stage-5 .col-template-status,
.s-Budget-VesselTypesGrid .brief-stage-5 .col-template-status,
.s-Budget-WellCostElementTypesGrid .brief-stage-5 .col-template-status,
.s-Budget-WellTypesGrid .brief-stage-5 .col-template-status,
.s-Budget-BudgetPreviewGrid .brief-stage-5 .col-template-status,
.s-Budget-FINCOMAppendixIGrid .brief-stage-5 .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .brief-stage-5 .col-template-status,
.s-Budget-FINCOMCollationGrid .brief-stage-5 .col-template-status,
.s-Budget-CallScheduleActionsGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallCalendarsGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallActivitiesGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallCircularsGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallCalendarsGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallBriefsGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallMandatesGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallPayablesGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallsGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallsAllGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallsEPGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallsBDGGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallSchedulesGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallRequestsGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallEndorsementGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallPayablesGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallMandatesGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .brief-stage-5 .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .brief-stage-5 .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .brief-stage-5 .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformancesGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformancesAllGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformancesBDGGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformanceSchedulesGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformanceMonthlyGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .brief-stage-5 .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .brief-stage-5 .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .brief-stage-5 .col-template-status,
.s-Common-DashboardWidgetGrid .brief-stage-5 .col-template-status,
.s-Administration-BcPproExceptionsGrid .brief-stage-5 .col-template-status {
  background-color: #CC9500 !important;
}
.s-Administration-IssueTrackingIssuesGrid .brief-stage-6 .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .brief-stage-6 .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .brief-stage-6 .col-template-status,
.s-Administration-NotificationTemplatesGrid .brief-stage-6 .col-template-status,
.s-Administration-BudgetAutoTestGrid .brief-stage-6 .col-template-status,
.s-Administration-CashCallAutoTestGrid .brief-stage-6 .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .brief-stage-6 .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .brief-stage-6 .col-template-status,
.s-Administration-SiteNotificationsGrid .brief-stage-6 .col-template-status,
.s-Budget-AnnualBudgetsGrid .brief-stage-6 .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .brief-stage-6 .col-template-status,
.s-Budget-BudgetProfilesABGrid .brief-stage-6 .col-template-status,
.s-Budget-OperatorProposalsGrid .brief-stage-6 .col-template-status,
.s-Budget-MACOMApprovalsGrid .brief-stage-6 .col-template-status,
.s-Budget-OPCOMApprovalsGrid .brief-stage-6 .col-template-status,
.s-Budget-ApprovedBudgetsGrid .brief-stage-6 .col-template-status,
.s-Budget-FiveYearForecastsGrid .brief-stage-6 .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .brief-stage-6 .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .brief-stage-6 .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .brief-stage-6 .col-template-status,
.s-Budget-TECOMRecommendationsGrid .brief-stage-6 .col-template-status,
.s-Budget-BudgetProfilesGrid .brief-stage-6 .col-template-status,
.s-Budget-BudgetProfilesAllGrid .brief-stage-6 .col-template-status,
.s-Budget-BudgetsGrid .brief-stage-6 .col-template-status,
.s-Budget-CallCircularsGrid .brief-stage-6 .col-template-status,
.s-Budget-CallCircularsAllGrid .brief-stage-6 .col-template-status,
.s-Budget-CallSchedulesGrid .brief-stage-6 .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .brief-stage-6 .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .brief-stage-6 .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .brief-stage-6 .col-template-status,
.s-Budget-BudgetThresholdsGrid .brief-stage-6 .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .brief-stage-6 .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .brief-stage-6 .col-template-status,
.s-Budget-OperatorTemplatesGrid .brief-stage-6 .col-template-status,
.s-Budget-TemplateCommitteeGrid .brief-stage-6 .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .brief-stage-6 .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .brief-stage-6 .col-template-status,
.s-Budget-BTFundingTranchesGrid .brief-stage-6 .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .brief-stage-6 .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .brief-stage-6 .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .brief-stage-6 .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .brief-stage-6 .col-template-status,
.s-Budget-CallCircularsAllGrid .brief-stage-6 .col-template-status,
.s-Budget-CallCircularsGrid .brief-stage-6 .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .brief-stage-6 .col-template-status,
.s-Budget-CallSchedulesAllGrid .brief-stage-6 .col-template-status,
.s-Budget-CallSchedulesGrid .brief-stage-6 .col-template-status,
.s-Budget-SwotsGrid .brief-stage-6 .col-template-status,
.s-Budget-BudgetAssumptionsGrid .brief-stage-6 .col-template-status,
.s-Budget-SeismicActivitiesGrid .brief-stage-6 .col-template-status,
.s-Budget-ReservesGrid .brief-stage-6 .col-template-status,
.s-Budget-ProductionGrid .brief-stage-6 .col-template-status,
.s-Budget-GasUtilizationGrid .brief-stage-6 .col-template-status,
.s-Budget-RigSequencesGrid .brief-stage-6 .col-template-status,
.s-Budget-VesselSchedulesGrid .brief-stage-6 .col-template-status,
.s-Budget-HrSummariesGrid .brief-stage-6 .col-template-status,
.s-Budget-SharedCostsGrid .brief-stage-6 .col-template-status,
.s-Budget-SharedCostAllocationsGrid .brief-stage-6 .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .brief-stage-6 .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .brief-stage-6 .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .brief-stage-6 .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .brief-stage-6 .col-template-status,
.s-Budget-WellCostsGrid .brief-stage-6 .col-template-status,
.s-Budget-WellCostElementsGrid .brief-stage-6 .col-template-status,
.s-Budget-ProjectSummariesGrid .brief-stage-6 .col-template-status,
.s-Budget-PADWorkProgrammesGrid .brief-stage-6 .col-template-status,
.s-Budget-RigSequencesGrid .brief-stage-6 .col-template-status,
.s-Budget-BlocksGrid .brief-stage-6 .col-template-status,
.s-Budget-CashCallEquitySharesGrid .brief-stage-6 .col-template-status,
.s-Budget-FieldsGrid .brief-stage-6 .col-template-status,
.s-Budget-FieldTerrainsGrid .brief-stage-6 .col-template-status,
.s-Budget-FundingTranchesGrid .brief-stage-6 .col-template-status,
.s-Budget-FundingTranchesAllGrid .brief-stage-6 .col-template-status,
.s-Budget-MajorDriversGrid .brief-stage-6 .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .brief-stage-6 .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .brief-stage-6 .col-template-status,
.s-Budget-ExcelTemplatesGrid .brief-stage-6 .col-template-status,
.s-Budget-OperatorBlocksAllGrid .brief-stage-6 .col-template-status,
.s-Budget-OperatorBlocksGrid .brief-stage-6 .col-template-status,
.s-Budget-ProductsGrid .brief-stage-6 .col-template-status,
.s-Budget-RigsGrid .brief-stage-6 .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .brief-stage-6 .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .brief-stage-6 .col-template-status,
.s-Budget-UAPCodesAllGrid .brief-stage-6 .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .brief-stage-6 .col-template-status,
.s-Budget-Operator_UAPCodesGrid .brief-stage-6 .col-template-status,
.s-Budget-VesselsGrid .brief-stage-6 .col-template-status,
.s-Budget-WellCostElementGroupsGrid .brief-stage-6 .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .brief-stage-6 .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .brief-stage-6 .col-template-status,
.s-Budget-NonRigActivityTypesGrid .brief-stage-6 .col-template-status,
.s-Budget-NonRigElementDetailsGrid .brief-stage-6 .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .brief-stage-6 .col-template-status,
.s-Budget-WellsAllGrid .brief-stage-6 .col-template-status,
.s-Budget-WellsGrid .brief-stage-6 .col-template-status,
.s-Budget-ProjectsGrid .brief-stage-6 .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .brief-stage-6 .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .brief-stage-6 .col-template-status,
.s-Budget-CountryGrid .brief-stage-6 .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .brief-stage-6 .col-template-status,
.s-Budget-MonthsGrid .brief-stage-6 .col-template-status,
.s-Budget-NationalityGrid .brief-stage-6 .col-template-status,
.s-Budget-PadClustersGrid .brief-stage-6 .col-template-status,
.s-Budget-PadCommunitiesGrid .brief-stage-6 .col-template-status,
.s-Budget-SecurityRolesGrid .brief-stage-6 .col-template-status,
.s-Budget-TemplatesGrid .brief-stage-6 .col-template-status,
.s-Budget-TerrainsGrid .brief-stage-6 .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .brief-stage-6 .col-template-status,
.s-Budget-UAPCodeLevelsGrid .brief-stage-6 .col-template-status,
.s-Budget-UAPCodeGroupsGrid .brief-stage-6 .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .brief-stage-6 .col-template-status,
.s-Budget-UnitsGrid .brief-stage-6 .col-template-status,
.s-Budget-UnitsOfMeasureGrid .brief-stage-6 .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .brief-stage-6 .col-template-status,
.s-Budget-VesselActivitiesGrid .brief-stage-6 .col-template-status,
.s-Budget-WellClassificationsGrid .brief-stage-6 .col-template-status,
.s-Budget-YearsGrid .brief-stage-6 .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .brief-stage-6 .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .brief-stage-6 .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .brief-stage-6 .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .brief-stage-6 .col-template-status,
.s-Budget-BudgetStatusesGrid .brief-stage-6 .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .brief-stage-6 .col-template-status,
.s-Budget-ButtonStatusesGrid .brief-stage-6 .col-template-status,
.s-Budget-CallCircularStatusesGrid .brief-stage-6 .col-template-status,
.s-Budget-CashCallStatusesGrid .brief-stage-6 .col-template-status,
.s-Budget-ContractStatusesGrid .brief-stage-6 .col-template-status,
.s-Budget-FieldStatusesGrid .brief-stage-6 .col-template-status,
.s-Budget-FincomStatusesGrid .brief-stage-6 .col-template-status,
.s-Budget-MacomReviewStatusesGrid .brief-stage-6 .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .brief-stage-6 .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .brief-stage-6 .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .brief-stage-6 .col-template-status,
.s-Budget-OperatorStatusesGrid .brief-stage-6 .col-template-status,
.s-Budget-OwnershipStatusesGrid .brief-stage-6 .col-template-status,
.s-Budget-PerformanceStatusesGrid .brief-stage-6 .col-template-status,
.s-Budget-ProjectStatusGrid .brief-stage-6 .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .brief-stage-6 .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .brief-stage-6 .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .brief-stage-6 .col-template-status,
.s-Budget-TemplateStatusesGrid .brief-stage-6 .col-template-status,
.s-Budget-UAPCodeStatusesGrid .brief-stage-6 .col-template-status,
.s-Budget-AgreementTypesGrid .brief-stage-6 .col-template-status,
.s-Budget-BriefTypesGrid .brief-stage-6 .col-template-status,
.s-Budget-BudgetTypesGrid .brief-stage-6 .col-template-status,
.s-Budget-MeetingGrid .brief-stage-6 .col-template-status,
.s-Budget-MeetingAgendaGrid .brief-stage-6 .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .brief-stage-6 .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .brief-stage-6 .col-template-status,
.s-Budget-MeetingDecisionGrid .brief-stage-6 .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .brief-stage-6 .col-template-status,
.s-Budget-MeetingLocationGrid .brief-stage-6 .col-template-status,
.s-Budget-MeetingTypeGrid .brief-stage-6 .col-template-status,
.s-Budget-FinancialDataGrid .brief-stage-6 .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .brief-stage-6 .col-template-status,
.s-Budget-CommitteeTypesGrid .brief-stage-6 .col-template-status,
.s-Budget-ContractTypesGrid .brief-stage-6 .col-template-status,
.s-Budget-EmploymentTypeGrid .brief-stage-6 .col-template-status,
.s-Budget-ExpenditureTypesGrid .brief-stage-6 .col-template-status,
.s-Budget-FundingTrancheTypesGrid .brief-stage-6 .col-template-status,
.s-Budget-GasUtilizationTypesGrid .brief-stage-6 .col-template-status,
.s-Budget-PadProgramTypesGrid .brief-stage-6 .col-template-status,
.s-Budget-PadTypesGrid .brief-stage-6 .col-template-status,
.s-Budget-ProductTypesGrid .brief-stage-6 .col-template-status,
.s-Budget-ProjectTypesGrid .brief-stage-6 .col-template-status,
.s-Budget-RigTypesGrid .brief-stage-6 .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .brief-stage-6 .col-template-status,
.s-Budget-UAPCodeTypesGrid .brief-stage-6 .col-template-status,
.s-Budget-VesselTypesGrid .brief-stage-6 .col-template-status,
.s-Budget-WellCostElementTypesGrid .brief-stage-6 .col-template-status,
.s-Budget-WellTypesGrid .brief-stage-6 .col-template-status,
.s-Budget-BudgetPreviewGrid .brief-stage-6 .col-template-status,
.s-Budget-FINCOMAppendixIGrid .brief-stage-6 .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .brief-stage-6 .col-template-status,
.s-Budget-FINCOMCollationGrid .brief-stage-6 .col-template-status,
.s-Budget-CallScheduleActionsGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallCalendarsGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallActivitiesGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallCircularsGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallCalendarsGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallBriefsGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallMandatesGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallPayablesGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallsGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallsAllGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallsEPGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallsBDGGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallSchedulesGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallRequestsGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallEndorsementGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallPayablesGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallMandatesGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .brief-stage-6 .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .brief-stage-6 .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .brief-stage-6 .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformancesGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformancesAllGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformancesBDGGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformanceSchedulesGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformanceMonthlyGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .brief-stage-6 .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .brief-stage-6 .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .brief-stage-6 .col-template-status,
.s-Common-DashboardWidgetGrid .brief-stage-6 .col-template-status,
.s-Administration-BcPproExceptionsGrid .brief-stage-6 .col-template-status {
  background-color: #BBA000 !important;
}
.s-Administration-IssueTrackingIssuesGrid .brief-stage-7 .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .brief-stage-7 .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .brief-stage-7 .col-template-status,
.s-Administration-NotificationTemplatesGrid .brief-stage-7 .col-template-status,
.s-Administration-BudgetAutoTestGrid .brief-stage-7 .col-template-status,
.s-Administration-CashCallAutoTestGrid .brief-stage-7 .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .brief-stage-7 .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .brief-stage-7 .col-template-status,
.s-Administration-SiteNotificationsGrid .brief-stage-7 .col-template-status,
.s-Budget-AnnualBudgetsGrid .brief-stage-7 .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .brief-stage-7 .col-template-status,
.s-Budget-BudgetProfilesABGrid .brief-stage-7 .col-template-status,
.s-Budget-OperatorProposalsGrid .brief-stage-7 .col-template-status,
.s-Budget-MACOMApprovalsGrid .brief-stage-7 .col-template-status,
.s-Budget-OPCOMApprovalsGrid .brief-stage-7 .col-template-status,
.s-Budget-ApprovedBudgetsGrid .brief-stage-7 .col-template-status,
.s-Budget-FiveYearForecastsGrid .brief-stage-7 .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .brief-stage-7 .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .brief-stage-7 .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .brief-stage-7 .col-template-status,
.s-Budget-TECOMRecommendationsGrid .brief-stage-7 .col-template-status,
.s-Budget-BudgetProfilesGrid .brief-stage-7 .col-template-status,
.s-Budget-BudgetProfilesAllGrid .brief-stage-7 .col-template-status,
.s-Budget-BudgetsGrid .brief-stage-7 .col-template-status,
.s-Budget-CallCircularsGrid .brief-stage-7 .col-template-status,
.s-Budget-CallCircularsAllGrid .brief-stage-7 .col-template-status,
.s-Budget-CallSchedulesGrid .brief-stage-7 .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .brief-stage-7 .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .brief-stage-7 .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .brief-stage-7 .col-template-status,
.s-Budget-BudgetThresholdsGrid .brief-stage-7 .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .brief-stage-7 .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .brief-stage-7 .col-template-status,
.s-Budget-OperatorTemplatesGrid .brief-stage-7 .col-template-status,
.s-Budget-TemplateCommitteeGrid .brief-stage-7 .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .brief-stage-7 .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .brief-stage-7 .col-template-status,
.s-Budget-BTFundingTranchesGrid .brief-stage-7 .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .brief-stage-7 .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .brief-stage-7 .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .brief-stage-7 .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .brief-stage-7 .col-template-status,
.s-Budget-CallCircularsAllGrid .brief-stage-7 .col-template-status,
.s-Budget-CallCircularsGrid .brief-stage-7 .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .brief-stage-7 .col-template-status,
.s-Budget-CallSchedulesAllGrid .brief-stage-7 .col-template-status,
.s-Budget-CallSchedulesGrid .brief-stage-7 .col-template-status,
.s-Budget-SwotsGrid .brief-stage-7 .col-template-status,
.s-Budget-BudgetAssumptionsGrid .brief-stage-7 .col-template-status,
.s-Budget-SeismicActivitiesGrid .brief-stage-7 .col-template-status,
.s-Budget-ReservesGrid .brief-stage-7 .col-template-status,
.s-Budget-ProductionGrid .brief-stage-7 .col-template-status,
.s-Budget-GasUtilizationGrid .brief-stage-7 .col-template-status,
.s-Budget-RigSequencesGrid .brief-stage-7 .col-template-status,
.s-Budget-VesselSchedulesGrid .brief-stage-7 .col-template-status,
.s-Budget-HrSummariesGrid .brief-stage-7 .col-template-status,
.s-Budget-SharedCostsGrid .brief-stage-7 .col-template-status,
.s-Budget-SharedCostAllocationsGrid .brief-stage-7 .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .brief-stage-7 .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .brief-stage-7 .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .brief-stage-7 .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .brief-stage-7 .col-template-status,
.s-Budget-WellCostsGrid .brief-stage-7 .col-template-status,
.s-Budget-WellCostElementsGrid .brief-stage-7 .col-template-status,
.s-Budget-ProjectSummariesGrid .brief-stage-7 .col-template-status,
.s-Budget-PADWorkProgrammesGrid .brief-stage-7 .col-template-status,
.s-Budget-RigSequencesGrid .brief-stage-7 .col-template-status,
.s-Budget-BlocksGrid .brief-stage-7 .col-template-status,
.s-Budget-CashCallEquitySharesGrid .brief-stage-7 .col-template-status,
.s-Budget-FieldsGrid .brief-stage-7 .col-template-status,
.s-Budget-FieldTerrainsGrid .brief-stage-7 .col-template-status,
.s-Budget-FundingTranchesGrid .brief-stage-7 .col-template-status,
.s-Budget-FundingTranchesAllGrid .brief-stage-7 .col-template-status,
.s-Budget-MajorDriversGrid .brief-stage-7 .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .brief-stage-7 .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .brief-stage-7 .col-template-status,
.s-Budget-ExcelTemplatesGrid .brief-stage-7 .col-template-status,
.s-Budget-OperatorBlocksAllGrid .brief-stage-7 .col-template-status,
.s-Budget-OperatorBlocksGrid .brief-stage-7 .col-template-status,
.s-Budget-ProductsGrid .brief-stage-7 .col-template-status,
.s-Budget-RigsGrid .brief-stage-7 .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .brief-stage-7 .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .brief-stage-7 .col-template-status,
.s-Budget-UAPCodesAllGrid .brief-stage-7 .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .brief-stage-7 .col-template-status,
.s-Budget-Operator_UAPCodesGrid .brief-stage-7 .col-template-status,
.s-Budget-VesselsGrid .brief-stage-7 .col-template-status,
.s-Budget-WellCostElementGroupsGrid .brief-stage-7 .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .brief-stage-7 .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .brief-stage-7 .col-template-status,
.s-Budget-NonRigActivityTypesGrid .brief-stage-7 .col-template-status,
.s-Budget-NonRigElementDetailsGrid .brief-stage-7 .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .brief-stage-7 .col-template-status,
.s-Budget-WellsAllGrid .brief-stage-7 .col-template-status,
.s-Budget-WellsGrid .brief-stage-7 .col-template-status,
.s-Budget-ProjectsGrid .brief-stage-7 .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .brief-stage-7 .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .brief-stage-7 .col-template-status,
.s-Budget-CountryGrid .brief-stage-7 .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .brief-stage-7 .col-template-status,
.s-Budget-MonthsGrid .brief-stage-7 .col-template-status,
.s-Budget-NationalityGrid .brief-stage-7 .col-template-status,
.s-Budget-PadClustersGrid .brief-stage-7 .col-template-status,
.s-Budget-PadCommunitiesGrid .brief-stage-7 .col-template-status,
.s-Budget-SecurityRolesGrid .brief-stage-7 .col-template-status,
.s-Budget-TemplatesGrid .brief-stage-7 .col-template-status,
.s-Budget-TerrainsGrid .brief-stage-7 .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .brief-stage-7 .col-template-status,
.s-Budget-UAPCodeLevelsGrid .brief-stage-7 .col-template-status,
.s-Budget-UAPCodeGroupsGrid .brief-stage-7 .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .brief-stage-7 .col-template-status,
.s-Budget-UnitsGrid .brief-stage-7 .col-template-status,
.s-Budget-UnitsOfMeasureGrid .brief-stage-7 .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .brief-stage-7 .col-template-status,
.s-Budget-VesselActivitiesGrid .brief-stage-7 .col-template-status,
.s-Budget-WellClassificationsGrid .brief-stage-7 .col-template-status,
.s-Budget-YearsGrid .brief-stage-7 .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .brief-stage-7 .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .brief-stage-7 .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .brief-stage-7 .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .brief-stage-7 .col-template-status,
.s-Budget-BudgetStatusesGrid .brief-stage-7 .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .brief-stage-7 .col-template-status,
.s-Budget-ButtonStatusesGrid .brief-stage-7 .col-template-status,
.s-Budget-CallCircularStatusesGrid .brief-stage-7 .col-template-status,
.s-Budget-CashCallStatusesGrid .brief-stage-7 .col-template-status,
.s-Budget-ContractStatusesGrid .brief-stage-7 .col-template-status,
.s-Budget-FieldStatusesGrid .brief-stage-7 .col-template-status,
.s-Budget-FincomStatusesGrid .brief-stage-7 .col-template-status,
.s-Budget-MacomReviewStatusesGrid .brief-stage-7 .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .brief-stage-7 .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .brief-stage-7 .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .brief-stage-7 .col-template-status,
.s-Budget-OperatorStatusesGrid .brief-stage-7 .col-template-status,
.s-Budget-OwnershipStatusesGrid .brief-stage-7 .col-template-status,
.s-Budget-PerformanceStatusesGrid .brief-stage-7 .col-template-status,
.s-Budget-ProjectStatusGrid .brief-stage-7 .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .brief-stage-7 .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .brief-stage-7 .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .brief-stage-7 .col-template-status,
.s-Budget-TemplateStatusesGrid .brief-stage-7 .col-template-status,
.s-Budget-UAPCodeStatusesGrid .brief-stage-7 .col-template-status,
.s-Budget-AgreementTypesGrid .brief-stage-7 .col-template-status,
.s-Budget-BriefTypesGrid .brief-stage-7 .col-template-status,
.s-Budget-BudgetTypesGrid .brief-stage-7 .col-template-status,
.s-Budget-MeetingGrid .brief-stage-7 .col-template-status,
.s-Budget-MeetingAgendaGrid .brief-stage-7 .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .brief-stage-7 .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .brief-stage-7 .col-template-status,
.s-Budget-MeetingDecisionGrid .brief-stage-7 .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .brief-stage-7 .col-template-status,
.s-Budget-MeetingLocationGrid .brief-stage-7 .col-template-status,
.s-Budget-MeetingTypeGrid .brief-stage-7 .col-template-status,
.s-Budget-FinancialDataGrid .brief-stage-7 .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .brief-stage-7 .col-template-status,
.s-Budget-CommitteeTypesGrid .brief-stage-7 .col-template-status,
.s-Budget-ContractTypesGrid .brief-stage-7 .col-template-status,
.s-Budget-EmploymentTypeGrid .brief-stage-7 .col-template-status,
.s-Budget-ExpenditureTypesGrid .brief-stage-7 .col-template-status,
.s-Budget-FundingTrancheTypesGrid .brief-stage-7 .col-template-status,
.s-Budget-GasUtilizationTypesGrid .brief-stage-7 .col-template-status,
.s-Budget-PadProgramTypesGrid .brief-stage-7 .col-template-status,
.s-Budget-PadTypesGrid .brief-stage-7 .col-template-status,
.s-Budget-ProductTypesGrid .brief-stage-7 .col-template-status,
.s-Budget-ProjectTypesGrid .brief-stage-7 .col-template-status,
.s-Budget-RigTypesGrid .brief-stage-7 .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .brief-stage-7 .col-template-status,
.s-Budget-UAPCodeTypesGrid .brief-stage-7 .col-template-status,
.s-Budget-VesselTypesGrid .brief-stage-7 .col-template-status,
.s-Budget-WellCostElementTypesGrid .brief-stage-7 .col-template-status,
.s-Budget-WellTypesGrid .brief-stage-7 .col-template-status,
.s-Budget-BudgetPreviewGrid .brief-stage-7 .col-template-status,
.s-Budget-FINCOMAppendixIGrid .brief-stage-7 .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .brief-stage-7 .col-template-status,
.s-Budget-FINCOMCollationGrid .brief-stage-7 .col-template-status,
.s-Budget-CallScheduleActionsGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallCalendarsGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallActivitiesGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallCircularsGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallCalendarsGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallBriefsGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallMandatesGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallPayablesGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallsGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallsAllGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallsEPGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallsBDGGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallSchedulesGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallRequestsGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallEndorsementGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallPayablesGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallMandatesGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .brief-stage-7 .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .brief-stage-7 .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .brief-stage-7 .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformancesGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformancesAllGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformancesBDGGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformanceSchedulesGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformanceMonthlyGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .brief-stage-7 .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .brief-stage-7 .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .brief-stage-7 .col-template-status,
.s-Common-DashboardWidgetGrid .brief-stage-7 .col-template-status,
.s-Administration-BcPproExceptionsGrid .brief-stage-7 .col-template-status {
  background-color: #AAA500 !important;
}
.s-Administration-IssueTrackingIssuesGrid .brief-stage-8 .col-template-status,
.s-Administration-IssueTrackingFeedbackGrid .brief-stage-8 .col-template-status,
.s-Administration-IssueTrackingChangeRequestGrid .brief-stage-8 .col-template-status,
.s-Administration-NotificationTemplatesGrid .brief-stage-8 .col-template-status,
.s-Administration-BudgetAutoTestGrid .brief-stage-8 .col-template-status,
.s-Administration-CashCallAutoTestGrid .brief-stage-8 .col-template-status,
.s-Administration-PerformanceMonthAutoTestGrid .brief-stage-8 .col-template-status,
.s-Administration-PerformanceQuarterAutoTestGrid .brief-stage-8 .col-template-status,
.s-Administration-SiteNotificationsGrid .brief-stage-8 .col-template-status,
.s-Budget-AnnualBudgetsGrid .brief-stage-8 .col-template-status,
.s-Budget-AnnualBudgetsAllGrid .brief-stage-8 .col-template-status,
.s-Budget-BudgetProfilesABGrid .brief-stage-8 .col-template-status,
.s-Budget-OperatorProposalsGrid .brief-stage-8 .col-template-status,
.s-Budget-MACOMApprovalsGrid .brief-stage-8 .col-template-status,
.s-Budget-OPCOMApprovalsGrid .brief-stage-8 .col-template-status,
.s-Budget-ApprovedBudgetsGrid .brief-stage-8 .col-template-status,
.s-Budget-FiveYearForecastsGrid .brief-stage-8 .col-template-status,
.s-Budget-NUIMSPlanningReviewsGrid .brief-stage-8 .col-template-status,
.s-Budget-SUBCOMRecommendationsGrid .brief-stage-8 .col-template-status,
.s-Budget-SUBCOMRecommendationsAllGrid .brief-stage-8 .col-template-status,
.s-Budget-TECOMRecommendationsGrid .brief-stage-8 .col-template-status,
.s-Budget-BudgetProfilesGrid .brief-stage-8 .col-template-status,
.s-Budget-BudgetProfilesAllGrid .brief-stage-8 .col-template-status,
.s-Budget-BudgetsGrid .brief-stage-8 .col-template-status,
.s-Budget-CallCircularsGrid .brief-stage-8 .col-template-status,
.s-Budget-CallCircularsAllGrid .brief-stage-8 .col-template-status,
.s-Budget-CallSchedulesGrid .brief-stage-8 .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .brief-stage-8 .col-template-status,
.s-Budget-CallScheduleCalendarsAllGrid .brief-stage-8 .col-template-status,
.s-Budget-BudgetThresholdsAllGrid .brief-stage-8 .col-template-status,
.s-Budget-BudgetThresholdsGrid .brief-stage-8 .col-template-status,
.s-Budget-BudgetThresholdBackupGrid .brief-stage-8 .col-template-status,
.s-Budget-BTFundingTrancheBackupGrid .brief-stage-8 .col-template-status,
.s-Budget-OperatorTemplatesGrid .brief-stage-8 .col-template-status,
.s-Budget-TemplateCommitteeGrid .brief-stage-8 .col-template-status,
.s-Budget-BudgetHistoricBriefGrid .brief-stage-8 .col-template-status,
.s-Budget-BudgetHistoricTemplateGrid .brief-stage-8 .col-template-status,
.s-Budget-BTFundingTranchesGrid .brief-stage-8 .col-template-status,
.s-Budget-BTFundingTranchesAllGrid .brief-stage-8 .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsGrid .brief-stage-8 .col-template-status,
.s-Budget-BTFundingTrancheBreakdownsBackupGrid .brief-stage-8 .col-template-status,
.s-Budget-CallScheduleCalendarsGrid .brief-stage-8 .col-template-status,
.s-Budget-CallCircularsAllGrid .brief-stage-8 .col-template-status,
.s-Budget-CallCircularsGrid .brief-stage-8 .col-template-status,
.s-Budget-CallScheduleActivitiesGrid .brief-stage-8 .col-template-status,
.s-Budget-CallSchedulesAllGrid .brief-stage-8 .col-template-status,
.s-Budget-CallSchedulesGrid .brief-stage-8 .col-template-status,
.s-Budget-SwotsGrid .brief-stage-8 .col-template-status,
.s-Budget-BudgetAssumptionsGrid .brief-stage-8 .col-template-status,
.s-Budget-SeismicActivitiesGrid .brief-stage-8 .col-template-status,
.s-Budget-ReservesGrid .brief-stage-8 .col-template-status,
.s-Budget-ProductionGrid .brief-stage-8 .col-template-status,
.s-Budget-GasUtilizationGrid .brief-stage-8 .col-template-status,
.s-Budget-RigSequencesGrid .brief-stage-8 .col-template-status,
.s-Budget-VesselSchedulesGrid .brief-stage-8 .col-template-status,
.s-Budget-HrSummariesGrid .brief-stage-8 .col-template-status,
.s-Budget-SharedCostsGrid .brief-stage-8 .col-template-status,
.s-Budget-SharedCostAllocationsGrid .brief-stage-8 .col-template-status,
.s-Budget-GeneralWorkProgrammesGrid .brief-stage-8 .col-template-status,
.s-Budget-ExpenditureBreakdownsGrid .brief-stage-8 .col-template-status,
.s-Budget-WellCostsNonRigWorkGrid .brief-stage-8 .col-template-status,
.s-Budget-NonRigWorkOverCostElementsGrid .brief-stage-8 .col-template-status,
.s-Budget-WellCostsGrid .brief-stage-8 .col-template-status,
.s-Budget-WellCostElementsGrid .brief-stage-8 .col-template-status,
.s-Budget-ProjectSummariesGrid .brief-stage-8 .col-template-status,
.s-Budget-PADWorkProgrammesGrid .brief-stage-8 .col-template-status,
.s-Budget-RigSequencesGrid .brief-stage-8 .col-template-status,
.s-Budget-BlocksGrid .brief-stage-8 .col-template-status,
.s-Budget-CashCallEquitySharesGrid .brief-stage-8 .col-template-status,
.s-Budget-FieldsGrid .brief-stage-8 .col-template-status,
.s-Budget-FieldTerrainsGrid .brief-stage-8 .col-template-status,
.s-Budget-FundingTranchesGrid .brief-stage-8 .col-template-status,
.s-Budget-FundingTranchesAllGrid .brief-stage-8 .col-template-status,
.s-Budget-MajorDriversGrid .brief-stage-8 .col-template-status,
.s-Budget-BudgetData_ExcelTemplatesGrid .brief-stage-8 .col-template-status,
.s-Budget-MyBudgetData_ExcelTemplatesGrid .brief-stage-8 .col-template-status,
.s-Budget-ExcelTemplatesGrid .brief-stage-8 .col-template-status,
.s-Budget-OperatorBlocksAllGrid .brief-stage-8 .col-template-status,
.s-Budget-OperatorBlocksGrid .brief-stage-8 .col-template-status,
.s-Budget-ProductsGrid .brief-stage-8 .col-template-status,
.s-Budget-RigsGrid .brief-stage-8 .col-template-status,
.s-Budget-SeismicActivityDescriptionsGrid .brief-stage-8 .col-template-status,
.s-Budget-UAPCodeAccessPermissionsGrid .brief-stage-8 .col-template-status,
.s-Budget-UAPCodesAllGrid .brief-stage-8 .col-template-status,
.s-Budget-NUIMS_UAPCodesGrid .brief-stage-8 .col-template-status,
.s-Budget-Operator_UAPCodesGrid .brief-stage-8 .col-template-status,
.s-Budget-VesselsGrid .brief-stage-8 .col-template-status,
.s-Budget-WellCostElementGroupsGrid .brief-stage-8 .col-template-status,
.s-Budget-WellCostsElementDetailsGrid .brief-stage-8 .col-template-status,
.s-Budget-WellCostsElementDetailsAllGrid .brief-stage-8 .col-template-status,
.s-Budget-NonRigActivityTypesGrid .brief-stage-8 .col-template-status,
.s-Budget-NonRigElementDetailsGrid .brief-stage-8 .col-template-status,
.s-Budget-NonRigElementDetailsAllGrid .brief-stage-8 .col-template-status,
.s-Budget-WellsAllGrid .brief-stage-8 .col-template-status,
.s-Budget-WellsGrid .brief-stage-8 .col-template-status,
.s-Budget-ProjectsGrid .brief-stage-8 .col-template-status,
.s-Budget-ResponsiblePartyOperatorsGrid .brief-stage-8 .col-template-status,
.s-Budget-ContractApprovingBodiesGrid .brief-stage-8 .col-template-status,
.s-Budget-CountryGrid .brief-stage-8 .col-template-status,
.s-Budget-FundingTrancheSourcesGrid .brief-stage-8 .col-template-status,
.s-Budget-MonthsGrid .brief-stage-8 .col-template-status,
.s-Budget-NationalityGrid .brief-stage-8 .col-template-status,
.s-Budget-PadClustersGrid .brief-stage-8 .col-template-status,
.s-Budget-PadCommunitiesGrid .brief-stage-8 .col-template-status,
.s-Budget-SecurityRolesGrid .brief-stage-8 .col-template-status,
.s-Budget-TemplatesGrid .brief-stage-8 .col-template-status,
.s-Budget-TerrainsGrid .brief-stage-8 .col-template-status,
.s-Budget-UAPAccessPermissionsGrid .brief-stage-8 .col-template-status,
.s-Budget-UAPCodeLevelsGrid .brief-stage-8 .col-template-status,
.s-Budget-UAPCodeGroupsGrid .brief-stage-8 .col-template-status,
.s-Budget-UAPCodeGroupTitlesGrid .brief-stage-8 .col-template-status,
.s-Budget-UnitsGrid .brief-stage-8 .col-template-status,
.s-Budget-UnitsOfMeasureGrid .brief-stage-8 .col-template-status,
.s-Budget-UnitsOfMeasureUsageGrid .brief-stage-8 .col-template-status,
.s-Budget-VesselActivitiesGrid .brief-stage-8 .col-template-status,
.s-Budget-WellClassificationsGrid .brief-stage-8 .col-template-status,
.s-Budget-YearsGrid .brief-stage-8 .col-template-status,
.s-Budget-AnnualBudgetStatusesGrid .brief-stage-8 .col-template-status,
.s-Budget-ApprovedBudgetStatusesGrid .brief-stage-8 .col-template-status,
.s-Budget-BudgetPreviewStatusesGrid .brief-stage-8 .col-template-status,
.s-Budget-BudgetProfileStatusesGrid .brief-stage-8 .col-template-status,
.s-Budget-BudgetStatusesGrid .brief-stage-8 .col-template-status,
.s-Budget-BudgetThresholdStatusesGrid .brief-stage-8 .col-template-status,
.s-Budget-ButtonStatusesGrid .brief-stage-8 .col-template-status,
.s-Budget-CallCircularStatusesGrid .brief-stage-8 .col-template-status,
.s-Budget-CashCallStatusesGrid .brief-stage-8 .col-template-status,
.s-Budget-ContractStatusesGrid .brief-stage-8 .col-template-status,
.s-Budget-FieldStatusesGrid .brief-stage-8 .col-template-status,
.s-Budget-FincomStatusesGrid .brief-stage-8 .col-template-status,
.s-Budget-MacomReviewStatusesGrid .brief-stage-8 .col-template-status,
.s-Budget-NuimsPlanningReviewStatusesGrid .brief-stage-8 .col-template-status,
.s-Budget-OpcomReviewStatusesGrid .brief-stage-8 .col-template-status,
.s-Budget-OperatorProposalStatusesGrid .brief-stage-8 .col-template-status,
.s-Budget-OperatorStatusesGrid .brief-stage-8 .col-template-status,
.s-Budget-OwnershipStatusesGrid .brief-stage-8 .col-template-status,
.s-Budget-PerformanceStatusesGrid .brief-stage-8 .col-template-status,
.s-Budget-ProjectStatusGrid .brief-stage-8 .col-template-status,
.s-Budget-RealignedBudgetStatusesGrid .brief-stage-8 .col-template-status,
.s-Budget-SubcomRecommendationStatusesGrid .brief-stage-8 .col-template-status,
.s-Budget-TecomRecommendationStatusesGrid .brief-stage-8 .col-template-status,
.s-Budget-TemplateStatusesGrid .brief-stage-8 .col-template-status,
.s-Budget-UAPCodeStatusesGrid .brief-stage-8 .col-template-status,
.s-Budget-AgreementTypesGrid .brief-stage-8 .col-template-status,
.s-Budget-BriefTypesGrid .brief-stage-8 .col-template-status,
.s-Budget-BudgetTypesGrid .brief-stage-8 .col-template-status,
.s-Budget-MeetingGrid .brief-stage-8 .col-template-status,
.s-Budget-MeetingAgendaGrid .brief-stage-8 .col-template-status,
.s-Budget-MeetingAgendaRelevantGrid .brief-stage-8 .col-template-status,
.s-Budget-MeetingAgendaTypeGrid .brief-stage-8 .col-template-status,
.s-Budget-MeetingDecisionGrid .brief-stage-8 .col-template-status,
.s-Budget-MeetingDecisionRelevantGrid .brief-stage-8 .col-template-status,
.s-Budget-MeetingLocationGrid .brief-stage-8 .col-template-status,
.s-Budget-MeetingTypeGrid .brief-stage-8 .col-template-status,
.s-Budget-FinancialDataGrid .brief-stage-8 .col-template-status,
.s-Budget-WorkflowButtonSequenceTypesGrid .brief-stage-8 .col-template-status,
.s-Budget-CommitteeTypesGrid .brief-stage-8 .col-template-status,
.s-Budget-ContractTypesGrid .brief-stage-8 .col-template-status,
.s-Budget-EmploymentTypeGrid .brief-stage-8 .col-template-status,
.s-Budget-ExpenditureTypesGrid .brief-stage-8 .col-template-status,
.s-Budget-FundingTrancheTypesGrid .brief-stage-8 .col-template-status,
.s-Budget-GasUtilizationTypesGrid .brief-stage-8 .col-template-status,
.s-Budget-PadProgramTypesGrid .brief-stage-8 .col-template-status,
.s-Budget-PadTypesGrid .brief-stage-8 .col-template-status,
.s-Budget-ProductTypesGrid .brief-stage-8 .col-template-status,
.s-Budget-ProjectTypesGrid .brief-stage-8 .col-template-status,
.s-Budget-RigTypesGrid .brief-stage-8 .col-template-status,
.s-Budget-SharedCostAllocationTypesGrid .brief-stage-8 .col-template-status,
.s-Budget-UAPCodeTypesGrid .brief-stage-8 .col-template-status,
.s-Budget-VesselTypesGrid .brief-stage-8 .col-template-status,
.s-Budget-WellCostElementTypesGrid .brief-stage-8 .col-template-status,
.s-Budget-WellTypesGrid .brief-stage-8 .col-template-status,
.s-Budget-BudgetPreviewGrid .brief-stage-8 .col-template-status,
.s-Budget-FINCOMAppendixIGrid .brief-stage-8 .col-template-status,
.s-Budget-FINCOMAppendixIIGrid .brief-stage-8 .col-template-status,
.s-Budget-FINCOMCollationGrid .brief-stage-8 .col-template-status,
.s-Budget-CallScheduleActionsGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallCalendarsGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallActivitiesGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallScheduleActivitiesGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallCircularsGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallCircularsAllGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallCalendarsGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallCalendarsAllGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallBriefsGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallCashComRecommendationsGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallMandatesGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallMeetingDayAttendancesGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallPayablesGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallsGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallsAllGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallsEPGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallsBDGGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallSchedulesGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallSchedulesAllGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallRequestsGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallRequestsEPGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallRequestItemsGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallUapCodeItemsGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallOperatorRequestsGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallNuimsReviewsGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallManagerJVReviewGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallCashComSubComReviewGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallFincomCollationGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallSubcomRecomendationsGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallEndorsementGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallGgmSummariesGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallGgmSummariesItemGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallPayablesGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallPayableItemsGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallPayableItemsAdjustedGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallPayablesAnnualGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallMandatesGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallPaymentConfirmationGrid .brief-stage-8 .col-template-status,
.s-CashCall-CashCallPayableItemsEditor .brief-stage-8 .col-template-status,
.s-CashCall-CashCallPaymentDataEditor .brief-stage-8 .col-template-status,
.s-CashCall-CashCallPaymentDataGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformancesGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformancesAllGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformancesBDGGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformanceSchedulesGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformanceCallScheduleCalendarsAllGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformanceCallScheduleActivitiesGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformanceCallCircularsGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformanceCallCircularsAllGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformanceMonthlyGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformanceQuarterlyGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformanceQuarterFourGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformanceBriefOperatorReportMonthlyGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewMonthlyGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewMonthlyGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformanceBriefOperatorReportQuarterlyMonthGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformanceBriefNuimsReviewQuarterlyMonthGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformanceBriefSubcomReviewQuarterlyMonthGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformanceBriefFincomCollationQuarterlyGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformanceBriefTecomValidationQuarterlyGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformanceBriefFincomAppendixQuarterlyGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformanceBriefCallBalanceQuarterlyGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformanceFinancialItemsGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformanceNonFinancialItemsGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformanceFinancialMonthItemsGrid .brief-stage-8 .col-template-status,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .brief-stage-8 .col-template-status,
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .brief-stage-8 .col-template-status,
.s-Common-DashboardWidgetGrid .brief-stage-8 .col-template-status,
.s-Administration-BcPproExceptionsGrid .brief-stage-8 .col-template-status {
  background-color: #36D900 !important;
}
.gutter {
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 50%;
}
.gutter.gutter-horizontal {
  cursor: ew-resize;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAeCAYAAADkftS9AAAAIklEQVQoU2M4c+bMfxAGAgYYmwGrIIiDjrELjpo5aiZeMwF+yNnOs5KSvgAAAABJRU5ErkJggg==');
}
.gutter.gutter-vertical {
  cursor: ns-resize;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAFAQMAAABo7865AAAABlBMVEVHcEzMzMzyAv2sAAAAAXRSTlMAQObYZgAAABBJREFUeF5jOAMEEAIEEFwAn3kMwcB6I2AAAAAASUVORK5CYII=');
}
.s-TabBudgetPreviewDetailPane,
.s-TabGeneralWorkProgrammesDetailPane,
.s-TabGroupedGeneralWorkProgrammesDetailPane,
.s-TabWellCostsDetailPane,
.s-TabWellCostsNonRigWorkDetailPane,
.s-TabSharedCostsDetailPane,
.s-TabMajorProjectDetailPane,
.s-TabFINCOMCollationDetailPane,
.s-TabFINCOMAppendixIDetailPane,
.s-TabFINCOMAppendixIIDetailPane,
.s-TabGasUtil,
.s-TabExplorationWorkPlan,
.s-TabPedWorkPlan {
  position: relative;
}
.s-BudgetPreviewDetailPane,
.s-GeneralWorkProgrammesDetailPane,
.s-GroupedGeneralWorkProgrammesDetailPane,
.s-WellCostsDetailPane,
.s-WellCostsNonRigWorkDetailPane,
.s-SharedCostsDetailPane,
.s-MajorProjectDetailPane,
.s-FINCOMCollationDetailPane,
.s-FINCOMAppendixIDetailPane,
.s-FINCOMAppendixIIDetailPane,
.s-PerformanceNonFinancialItemsDetailPane {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 4px;
  bottom: 0px;
  background: #f6f6f6;
  padding: 2px;
  border: 1px solid #ccc;
  display: block;
}
.s-BudgetPreviewDetailPane > .pane,
.s-GeneralWorkProgrammesDetailPane > .pane,
.s-GroupedGeneralWorkProgrammesDetailPane > .pane,
.s-WellCostsDetailPane > .pane,
.s-WellCostsNonRigWorkDetailPane > .pane,
.s-SharedCostsDetailPane > .pane,
.s-MajorProjectDetailPane > .pane,
.s-FINCOMCollationDetailPane > .pane,
.s-FINCOMAppendixIDetailPane > .pane,
.s-FINCOMAppendixIIDetailPane > .pane,
.s-PerformanceNonFinancialItemsDetailPane > .pane {
  border: 1px solid #c0c0c0;
  background: #fff;
  box-shadow: inset 0 1px 2px #e4e4e4;
  padding: 6px;
  overflow: hidden;
}
.panelower > .childgridholder1 {
  position: relative;
  height: 100%;
  display: block;
}
.panelower > .childgridholder2 {
  position: relative;
  height: 100%;
  display: block;
}
.panelower > .childgridholder3 {
  position: relative;
  height: 100%;
  display: block;
}
.panelower > .childgridholder1 > .childgrid1 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  display: block;
  padding: 0px;
  border: hidden;
}
.panelower > .childgridholder2 > .childgrid2 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  display: block;
  padding: 0px;
  border: hidden;
}
.panelower > .childgridholder3 > .childgrid3 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  display: block;
  padding: 0px;
  border: hidden;
}
.s-Budget-CashCallCircularStatusesDialog > .size {
  width: 650px;
}
.s-Budget-CashCallCircularStatusesDialog .caption {
  width: 150px;
}
.s-Budget-OperatorRequestStatusesDialog > .size {
  width: 650px;
}
.s-Budget-OperatorRequestStatusesDialog .caption {
  width: 150px;
}
.s-Budget-ManagerJvReviewStatusesDialog > .size {
  width: 650px;
}
.s-Budget-ManagerJvReviewStatusesDialog .caption {
  width: 150px;
}
.s-Budget-CashcomSubcomReviewStatusesDialog > .size {
  width: 650px;
}
.s-Budget-CashcomSubcomReviewStatusesDialog .caption {
  width: 150px;
}
.s-Budget-RecommendationSummariesStatusesDialog > .size {
  width: 650px;
}
.s-Budget-RecommendationSummariesStatusesDialog .caption {
  width: 150px;
}
.s-Budget-EndorsementStatusesDialog > .size {
  width: 650px;
}
.s-Budget-EndorsementStatusesDialog .caption {
  width: 150px;
}
.s-Budget-PayablesStatusesDialog > .size {
  width: 650px;
}
.s-Budget-PayablesStatusesDialog .caption {
  width: 150px;
}
.s-Budget-MandatesStatusesDialog > .size {
  width: 650px;
}
.s-Budget-MandatesStatusesDialog .caption {
  width: 150px;
}
.s-Budget-CashCallRequestStatusesDialog > .size {
  width: 650px;
}
.s-Budget-CashCallRequestStatusesDialog .caption {
  width: 150px;
}
.s-Budget-CashCallBriefStatusesDialog > .size {
  width: 650px;
}
.s-Budget-CashCallBriefStatusesDialog .caption {
  width: 150px;
}
.s-Budget-CashCallBriefTypesDialog > .size {
  width: 650px;
}
.s-Budget-CashCallBriefTypesDialog .caption {
  width: 150px;
}
.s-Budget-LookupRequestItemsMasterStatusesDialog > .size {
  width: 650px;
}
.s-Budget-LookupRequestItemsMasterStatusesDialog .caption {
  width: 150px;
}
.s-Budget-RequestItemsMasterStatusesDialog > .size {
  width: 650px;
}
.s-Budget-RequestItemsMasterStatusesDialog .caption {
  width: 150px;
}
.s-Budget-UAPCodeGroupsDialog > .size {
  width: 650px;
}
.s-Budget-UAPCodeGroupsDialog .caption {
  width: 150px;
}
.s-Budget-UAPCodeGroupTitlesDialog > .size {
  width: 650px;
}
.s-Budget-UAPCodeGroupTitlesDialog .caption {
  width: 150px;
}
.s-Budget-OperatorBudgetTemplatesDialog > .size {
  width: 650px;
}
.s-Budget-OperatorBudgetTemplatesDialog .caption {
  width: 150px;
}
.s-Budget-OperatorTemplatesDialog > .size {
  width: 650px;
}
.s-Budget-OperatorTemplatesDialog .caption {
  width: 150px;
}
.s-Budget-OperatorTemplateStatusesDialog > .size {
  width: 650px;
}
.s-Budget-OperatorTemplateStatusesDialog .caption {
  width: 150px;
}
.s-Budget-FINCOMCollationDialog > .size {
  width: 650px;
}
.s-Budget-FINCOMCollationDialog .caption {
  width: 150px;
}
.s-Budget-FINCOMAppendixIDialog > .size {
  width: 650px;
}
.s-Budget-FINCOMAppendixIDialog .caption {
  width: 150px;
}
.s-Budget-FINCOMAppendixIIDialog > .size {
  width: 650px;
}
.s-Budget-FINCOMAppendixIIDialog .caption {
  width: 150px;
}
.s-Budget-CalendarScheduleStatusesDialog > .size {
  width: 650px;
}
.s-Budget-CalendarScheduleStatusesDialog .caption {
  width: 150px;
}
.s-Budget-CallScheduleActionsDialog > .size {
  width: 650px;
}
.s-Budget-CallScheduleActionsDialog .caption {
  width: 150px;
}
.s-Budget-ResponsibleRolesDialog > .size {
  width: 650px;
}
.s-Budget-ResponsibleRolesDialog .caption {
  width: 150px;
}
.s-Budget-CallScheduleStatesDialog > .size {
  width: 650px;
}
.s-Budget-CallScheduleStatesDialog .caption {
  width: 150px;
}
.s-Budget-ScheduleStatusesDialog > .size {
  width: 650px;
}
.s-Budget-ScheduleStatusesDialog .caption {
  width: 150px;
}
.s-Budget-BudgetThresholdFundingTrancheBackupDialog > .size {
  width: 650px;
}
.s-Budget-BudgetThresholdFundingTrancheBackupDialog .caption {
  width: 150px;
}
.s-Budget-BudgetThresholdBackupDialog > .size {
  width: 650px;
}
.s-Budget-BudgetThresholdBackupDialog .caption {
  width: 150px;
}
.s-Budget-BTFundingTrancheBackupDialog > .size {
  width: 650px;
}
.s-Budget-BTFundingTrancheBackupDialog .caption {
  width: 150px;
}
.s-Budget-OtherStatusesDialog > .size {
  width: 650px;
}
.s-Budget-OtherStatusesDialog .caption {
  width: 150px;
}
.s-Budget-NonRigActivityTypesDialog > .size {
  width: 650px;
}
.s-Budget-NonRigActivityTypesDialog .caption {
  width: 150px;
}
.s-Budget-NonRigElementDetailsDialog > .size {
  width: 650px;
}
.s-Budget-NonRigElementDetailsDialog .caption {
  width: 150px;
}
.s-Budget-UnitsOfMeasureUsageDialog > .size {
  width: 650px;
}
.s-Budget-UnitsOfMeasureUsageDialog .caption {
  width: 150px;
}
.s-Budget-UnitsOfMeasureToUsageDialog > .size {
  width: 650px;
}
.s-Budget-UnitsOfMeasureToUsageDialog .caption {
  width: 150px;
}
.s-Budget-ResponsibleActionedOperatorsDialog > .size {
  width: 650px;
}
.s-Budget-ResponsibleActionedOperatorsDialog .caption {
  width: 150px;
}
.s-Budget-ProjectToTypeDialog > .size {
  width: 650px;
}
.s-Budget-ProjectToTypeDialog .caption {
  width: 150px;
}
.s-Budget-TemplateCommitteeDialog > .size {
  width: 650px;
}
.s-Budget-TemplateCommitteeDialog .caption {
  width: 150px;
}
.s-Budget-TemplateToCommitteeDialog > .size {
  width: 650px;
}
.s-Budget-TemplateToCommitteeDialog .caption {
  width: 150px;
}
.s-Budget-BTFundingTrancheBreakdownsBackupDialog > .size {
  width: 650px;
}
.s-Budget-BTFundingTrancheBreakdownsBackupDialog .caption {
  width: 150px;
}
.s-Budget-BudgetHistoricBriefDialog > .size {
  width: 650px;
}
.s-Budget-BudgetHistoricBriefDialog .caption {
  width: 150px;
}
.s-Budget-BudgetHistoricTemplateDialog > .size {
  width: 650px;
}
.s-Budget-BudgetHistoricTemplateDialog .caption {
  width: 150px;
}
.s-Budget-MajorProjectDialog > .size {
  width: 650px;
}
.s-Budget-MajorProjectDialog .caption {
  width: 150px;
}
.s-Budget-MajorProjectBreakdownDialog > .size {
  width: 650px;
}
.s-Budget-MajorProjectBreakdownDialog .caption {
  width: 150px;
}
.s-Budget-YearlyWorkPlanDialog > .size {
  width: 650px;
}
.s-Budget-YearlyWorkPlanDialog .caption {
  width: 150px;
}
.s-Budget-RiglessSummaryDialog > .size {
  width: 650px;
}
.s-Budget-RiglessSummaryDialog .caption {
  width: 150px;
}
.s-Budget-RiglessActivityDialog > .size {
  width: 650px;
}
.s-Budget-RiglessActivityDialog .caption {
  width: 150px;
}
.s-Budget-MidstreamFacilitiesCostDialog > .size {
  width: 650px;
}
.s-Budget-MidstreamFacilitiesCostDialog .caption {
  width: 150px;
}
.s-Budget-DecarbonizationMonetizationPlDialog > .size {
  width: 650px;
}
.s-Budget-DecarbonizationMonetizationPlDialog .caption {
  width: 150px;
}
.s-Budget-VesselSummaryDialog > .size {
  width: 650px;
}
.s-Budget-VesselSummaryDialog .caption {
  width: 150px;
}
.s-Budget-FacilitiesMaintenanceScheduleDialog > .size {
  width: 650px;
}
.s-Budget-FacilitiesMaintenanceScheduleDialog .caption {
  width: 150px;
}
.s-Budget-FacilitiesMaintenanceScheduleFieldsDialog > .size {
  width: 650px;
}
.s-Budget-FacilitiesMaintenanceScheduleFieldsDialog .caption {
  width: 150px;
}
.s-Budget-MonthlyCashflowPlanDialog > .size {
  width: 650px;
}
.s-Budget-MonthlyCashflowPlanDialog .caption {
  width: 150px;
}
.s-Budget-WellSummaryDialog > .size {
  width: 650px;
}
.s-Budget-WellSummaryDialog .caption {
  width: 150px;
}
.s-Budget-StudiesDialog > .size {
  width: 650px;
}
.s-Budget-StudiesDialog .caption {
  width: 150px;
}
.s-Budget-WellSchedulesDialog > .size {
  width: 650px;
}
.s-Budget-WellSchedulesDialog .caption {
  width: 150px;
}
.s-Budget-AbandonmentAndDecommissioningDialog > .size {
  width: 650px;
}
.s-Budget-AbandonmentAndDecommissioningDialog .caption {
  width: 150px;
}
.s-Budget-FiveYearMtpDialog > .size {
  width: 650px;
}
.s-Budget-FiveYearMtpDialog .caption {
  width: 150px;
}
.s-Budget-ExchangeRateDialog > .size {
  width: 650px;
}
.s-Budget-ExchangeRateDialog .caption {
  width: 150px;
}
.s-Budget-PEDWorkPlanDialog > .size {
  width: 650px;
}
.s-Budget-PEDWorkPlanDialog .caption {
  width: 150px;
}
.s-Budget-GasWorkPlanDialog > .size {
  width: 650px;
}
.s-Budget-GasWorkPlanDialog .caption {
  width: 150px;
}
.s-Budget-ExplorationWorkPlanDialog > .size {
  width: 650px;
}
.s-Budget-ExplorationWorkPlanDialog .caption {
  width: 150px;
}
.s-Budget-BudgetAttachmentSubmissionDialog > .size {
  width: 650px;
}
.s-Budget-BudgetAttachmentSubmissionDialog .caption {
  width: 150px;
}
.s-Budget-AnnualBudgetTemplateDialog > .size {
  width: 650px;
}
.s-Budget-AnnualBudgetTemplateDialog .caption {
  width: 150px;
}
.s-Budget-AnnualBudgetTemplateCommitteeDialog > .size {
  width: 650px;
}
.s-Budget-AnnualBudgetTemplateCommitteeDialog .caption {
  width: 150px;
}
.s-Budget-WorkPlanDescriptionDialog > .size {
  width: 650px;
}
.s-Budget-WorkPlanDescriptionDialog .caption {
  width: 150px;
}
.s-Budget-MajorDriverToFundingTrancheTypeDialog > .size {
  width: 650px;
}
.s-Budget-MajorDriverToFundingTrancheTypeDialog .caption {
  width: 150px;
}
.s-Budget-WpFundingTrancheBreakdownDialog > .size {
  width: 650px;
}
.s-Budget-WpFundingTrancheBreakdownDialog .caption {
  width: 150px;
}
.s-Performance-PerformancesDialog > .size {
  width: 650px;
}
.s-Performance-PerformancesDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceFinancialItemsGrid .slick-header-columns,
.s-Performance-PerformanceFinancialMonthItemsGrid .slick-header-columns {
  height: 50px !important;
  overflow: hidden;
}
.s-Performance-PerformanceNonFinancialItemsGrid .slick-header-columns,
.s-Performance-PerformanceNonFinancialMonthItemsGrid .slick-header-columns {
  height: 40px !important;
  overflow: hidden;
}
.s-Performance-CallBalanceQuarterlyFinancialItemsGrid .slick-header-columns {
  height: 65px !important;
  overflow: hidden;
}
.s-Performance-PerformanceCallCircularsDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceCallCircularsDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceCallScheduleActivitiesDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceCallScheduleActivitiesDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceCallScheduleCalendarsDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceCallScheduleCalendarsDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceNonFinancialDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceNonFinancialDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceResponsiblePartyOperatorsDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceResponsiblePartyOperatorsDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceSchedulesDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceSchedulesDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceMeetingDayAttendancesDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceMeetingDayAttendancesDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceCallCircularStatusDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceCallCircularStatusDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceStatusesDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceStatusesDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceMeetingScheduleDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceMeetingScheduleDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceCallScheduleResponsiblePartyOperatorsDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceCallScheduleResponsiblePartyOperatorsDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceScheduleStatusDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceScheduleStatusDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceMonthlyStatusesDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceMonthlyStatusesDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceQuarterlyStatusesDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceQuarterlyStatusesDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceQuarterFourStatusesDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceQuarterFourStatusesDialog .caption {
  width: 150px;
}
.s-Performance-OperatorPerformanceReportStatusesDialog > .size {
  width: 650px;
}
.s-Performance-OperatorPerformanceReportStatusesDialog .caption {
  width: 150px;
}
.s-Performance-SUBCOM_PerformanceReviewStatusesDialog > .size {
  width: 650px;
}
.s-Performance-SUBCOM_PerformanceReviewStatusesDialog .caption {
  width: 150px;
}
.s-Performance-SUBCOM_PerformanceSignOffStatusesDialog > .size {
  width: 650px;
}
.s-Performance-SUBCOM_PerformanceSignOffStatusesDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceCallBalanceStatusesDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceCallBalanceStatusesDialog .caption {
  width: 150px;
}
.s-Performance-TECOM_PerformanceReviewStatusesDialog > .size {
  width: 650px;
}
.s-Performance-TECOM_PerformanceReviewStatusesDialog .caption {
  width: 150px;
}
.s-Performance-FINCOM_PerformanceStatusesDialog > .size {
  width: 650px;
}
.s-Performance-FINCOM_PerformanceStatusesDialog .caption {
  width: 150px;
}
.s-Performance-MACOM_PerformanceStatusesDialog > .size {
  width: 650px;
}
.s-Performance-MACOM_PerformanceStatusesDialog .caption {
  width: 150px;
}
.s-Performance-OPCOM_PerformanceStatusesDialog > .size {
  width: 650px;
}
.s-Performance-OPCOM_PerformanceStatusesDialog .caption {
  width: 150px;
}
.s-Performance-QuarterDialog > .size {
  width: 650px;
}
.s-Performance-QuarterDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceCallCircularStatusesDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceCallCircularStatusesDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceScheduleStatusesDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceScheduleStatusesDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceMonthlyDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceMonthlyDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceQuarterlyDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceQuarterlyDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceQuarterFourDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceQuarterFourDialog .caption {
  width: 150px;
}
.s-Performance-OperatorReportDialog > .size {
  width: 650px;
}
.s-Performance-OperatorReportDialog .caption {
  width: 150px;
}
.s-Performance-OperatorReportMonthlyDialog > .size {
  width: 650px;
}
.s-Performance-OperatorReportMonthlyDialog .caption {
  width: 150px;
}
.s-Performance-SUBCOM_ReviewMonthlyDialog > .size {
  width: 650px;
}
.s-Performance-SUBCOM_ReviewMonthlyDialog .caption {
  width: 150px;
}
.s-Performance-OperatorReportQuaterlyDialog > .size {
  width: 650px;
}
.s-Performance-OperatorReportQuaterlyDialog .caption {
  width: 150px;
}
.s-Performance-SUBCOM_ReviewQuarterlyDialog > .size {
  width: 650px;
}
.s-Performance-SUBCOM_ReviewQuarterlyDialog .caption {
  width: 150px;
}
.s-Performance-SUBCOM_SignOffQuarterlyDialog > .size {
  width: 650px;
}
.s-Performance-SUBCOM_SignOffQuarterlyDialog .caption {
  width: 150px;
}
.s-Performance-OperatorReportQuarterFourDialog > .size {
  width: 650px;
}
.s-Performance-OperatorReportQuarterFourDialog .caption {
  width: 150px;
}
.s-Performance-OperatorReportQuarterlyDialog > .size {
  width: 650px;
}
.s-Performance-OperatorReportQuarterlyDialog .caption {
  width: 150px;
}
.s-Performance-SUBCOM_ReviewQuarterFourDialog > .size {
  width: 650px;
}
.s-Performance-SUBCOM_ReviewQuarterFourDialog .caption {
  width: 150px;
}
.s-Performance-SUBCOM_SignOffQuarterFourDialog > .size {
  width: 650px;
}
.s-Performance-SUBCOM_SignOffQuarterFourDialog .caption {
  width: 150px;
}
.s-Performance-TECOM_ValidationQuarterFourDialog > .size {
  width: 650px;
}
.s-Performance-TECOM_ValidationQuarterFourDialog .caption {
  width: 150px;
}
.s-Performance-OPCOM_ValidationQuarterFourDialog > .size {
  width: 650px;
}
.s-Performance-OPCOM_ValidationQuarterFourDialog .caption {
  width: 150px;
}
.s-Performance-MACOM_ValidationQuarterFourDialog > .size {
  width: 650px;
}
.s-Performance-MACOM_ValidationQuarterFourDialog .caption {
  width: 150px;
}
.s-Performance-TECOM_PerformanceSignOffStatusesDialog > .size {
  width: 650px;
}
.s-Performance-TECOM_PerformanceSignOffStatusesDialog .caption {
  width: 150px;
}
.s-Performance-OperatorReportParentMonthlyDialog > .size {
  width: 650px;
}
.s-Performance-OperatorReportParentMonthlyDialog .caption {
  width: 150px;
}
.s-Performance-FINCOM_ValidationQuarterlyDialog > .size {
  width: 650px;
}
.s-Performance-FINCOM_ValidationQuarterlyDialog .caption {
  width: 150px;
}
.s-Performance-FINCOM_ValidationOneQuarterFourDialog > .size {
  width: 650px;
}
.s-Performance-FINCOM_ValidationOneQuarterFourDialog .caption {
  width: 150px;
}
.s-Performance-FINCOM_ValidationTwoQuarterFourDialog > .size {
  width: 650px;
}
.s-Performance-FINCOM_ValidationTwoQuarterFourDialog .caption {
  width: 150px;
}
.s-Performance-NUIMS_PerformanceReviewStatusesDialog > .size {
  width: 650px;
}
.s-Performance-NUIMS_PerformanceReviewStatusesDialog .caption {
  width: 150px;
}
.s-Performance-NUIMS_PlanningMonthlyDialog > .size {
  width: 650px;
}
.s-Performance-NUIMS_PlanningMonthlyDialog .caption {
  width: 150px;
}
.s-Performance-NuimsReviewNonFinancialMonthlyItemsDialog > .size {
  width: 650px;
}
.s-Performance-NuimsReviewNonFinancialMonthlyItemsDialog .caption {
  width: 150px;
}
.s-Performance-SubcomReviewNonFinancialQuarterlyItemsDialog > .size {
  width: 650px;
}
.s-Performance-SubcomReviewNonFinancialQuarterlyItemsDialog .caption {
  width: 150px;
}
.s-Performance-FincomValidationNonFinancialQuarterlyItemsDialog > .size {
  width: 650px;
}
.s-Performance-FincomValidationNonFinancialQuarterlyItemsDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceFinancialItemsDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceFinancialItemsDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceTemplateStatusesDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceTemplateStatusesDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceBriefTypesDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceBriefTypesDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceParentBriefTypesDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceParentBriefTypesDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceBriefOperatorReportMonthlyDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceBriefOperatorReportMonthlyDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceBriefNuimsReviewMonthlyDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceBriefNuimsReviewMonthlyDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceBriefSubcomReviewMonthlyDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceBriefSubcomReviewMonthlyDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceBriefSubcomSignOffQuarterlyDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceBriefFincomAppendixQuarterlyDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceBriefFincomAppendixQuarterlyDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceBriefSubcomSignOffQuarterFourDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceBriefSubcomSignOffQuarterFourDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceBriefFincomAppendixOneQuarterFourDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceBriefFincomAppendixOneQuarterFourDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceBriefTecomValidationQuarterFourDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceBriefTecomValidationQuarterFourDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceBriefFincomAppendixTwoQuarterFourDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceBriefFincomAppendixTwoQuarterFourDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceBriefOpcomValidationQuarterFourDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceBriefOpcomValidationQuarterFourDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceBriefMacomValidationQuarterFourDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceBriefMacomValidationQuarterFourDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceBriefCallBalanceQuarterlyDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceBriefCallBalanceQuarterlyDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceBriefCallBalanceQuarterFourDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceBriefCallBalanceQuarterFourDialog .caption {
  width: 150px;
}
.s-Performance-CallBalanceQuarterlyFinancialItemsDialog > .size {
  width: 650px;
}
.s-Performance-CallBalanceQuarterlyFinancialItemsDialog .caption {
  width: 150px;
}
.s-Performance-CallBalanceQuarterFourFinancialItemsDialog > .size {
  width: 650px;
}
.s-Performance-CallBalanceQuarterFourFinancialItemsDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceNonFinancialItemsDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceNonFinancialItemsDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceVersionTypesDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceVersionTypesDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceBriefFincomCollationQuarterlyDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceBriefFincomCollationQuarterlyDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceBriefTecomValidationQuarterlyDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceBriefTecomValidationQuarterlyDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceBriefOpcomEndorsementQuarterlyDialog .caption {
  width: 150px;
}
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyDialog > .size {
  width: 650px;
}
.s-Performance-PerformanceBriefMacomEndorsementQuarterlyDialog .caption {
  width: 150px;
}
.performance-month-width {
  width: 80px;
  text-align: center;
}
.s-Default-WellCostElementsDialog > .size {
  width: 650px;
}
.s-Default-WellCostElementsDialog .caption {
  width: 150px;
}
.s-Default-tBudgetThresholdsFundingTranchesBreakdownsDialog > .size {
  width: 650px;
}
.s-Default-tBudgetThresholdsFundingTranchesBreakdownsDialog .caption {
  width: 150px;
}
.s-Common-DashboardWidgetDialog > .size {
  width: 650px;
}
.s-Common-DashboardWidgetDialog .caption {
  width: 150px;
}
.s-Common-DashboardWidgetToRoleDialog > .size {
  width: 650px;
}
.s-Common-DashboardWidgetToRoleDialog .caption {
  width: 150px;
}
.dialog-form-tab-top {
  display: block;
  margin-top: 0px;
  top: 0px;
  bottom: 0px;
  padding: 4px;
}
.dialog-form-tab {
  display: block;
  margin-top: 40px;
  top: 0px;
  bottom: 0px;
  padding: 4px;
}
.dialog-grid {
  display: block;
  top: 0px;
  bottom: 0px;
  margin: 0;
  padding: 4px;
}
@media print {
  .row {
    display: block;
  }
  .page-break {
    page-break-after: always;
  }
}
