/* Move down content because we have a fixed navbar that is 50px tall */

body {
    padding-top: 50px;
    padding-bottom: 20px;
}

.error_message {
    color: red;
}

.remember-me {
    font-weight: normal;
    color: #fff;
}

.bg {
  background: url('images/background.jpg') no-repeat center center;
  position: fixed;
  width: 100%;
  height: 550px; /*same height as jumbotron */
  top:0;
  left:0;
  z-index: -1;
}

.jumbotron {
  height: 550px;
  color: white;
  text-shadow: #444 0 1px 1px;
  background:transparent;
}

.div-table-content {
  height:550px;
  overflow-y:auto;
}

.table > thead > tr > td.yelow,
.table > tbody > tr > td.yellow,
.table > tfoot > tr > td.yellow,
.table > thead > tr > th.yellow,
.table > tbody > tr > th.yellow,
.table > tfoot > tr > th.yellow,
.table > thead > tr.yellow > td,
.table > tbody > tr.yellow > td,
.table > tfoot > tr.yellow > td,
.table > thead > tr.yellow > th,
.table > tbody > tr.yellow > th,
.table > tfoot > tr.yellow > th {
  background-color: #FFFF66;
}

.table > thead > tr > td.green,
.table > tbody > tr > td.green,
.table > tfoot > tr > td.green,
.table > thead > tr > th.green,
.table > tbody > tr > th.green,
.table > tfoot > tr > th.green,
.table > thead > tr.green > td,
.table > tbody > tr.green > td,
.table > tfoot > tr.green > td,
.table > thead > tr.green > th,
.table > tbody > tr.green > th,
.table > tfoot > tr.green > th {
  background-color: #99FF99;
}

.table > thead > tr > td.red,
.table > tbody > tr > td.red,
.table > tfoot > tr > td.red,
.table > thead > tr > th.red,
.table > tbody > tr > th.red,
.table > tfoot > tr > th.red,
.table > thead > tr.red > td,
.table > tbody > tr.red > td,
.table > tfoot > tr.red > td,
.table > thead > tr.red > th,
.table > tbody > tr.red > th,
.table > tfoot > tr.red > th {
  background-color: #FF4719;
}

.table > thead > tr > td.purple,
.table > tbody > tr > td.purple,
.table > tfoot > tr > td.purple,
.table > thead > tr > th.purple,
.table > tbody > tr > th.purple,
.table > tfoot > tr > th.purple,
.table > thead > tr.purple > td,
.table > tbody > tr.purple > td,
.table > tfoot > tr.purple > td,
.table > thead > tr.purple > th,
.table > tbody > tr.purple > th,
.table > tfoot > tr.purple > th {
  background-color: #FFCCFF;
}

.bg-blue {
  background-color: #EBF5FF;
}

.bg-blue-dark {
  background-color: #D6EBFF;
}

.bg-grey {
  background-color: #F5F5F5;
}

.bg-white {
  background-color: #FFFFFF;
}

.bg-green {
    background-color: #ccffe5;
}

.fix-to-top {
  position: fixed;
  top: 50px; 
 
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}