@font-face {
  font-family: MYRIADPRO;
  src: url("css/font/MYRIADPRO-COND.OTF") format("opentype");
}
@font-face {
  font-family: MYRIADPRO;
  font-weight: bold;
  src: url("css/font/MYRIADPRO-BOLD.OTF") format("opentype");
}
.watched{
    background-color: rgb(235, 250, 235);
}
.page_contents{
    margin: 30px;
}
.arrow{
    width : 15px;
    height: 15px;
}

#blackout table{
    background-color: #e6EEEE;
}

#graph_options input{
    display : inline-block;
}
input[type="number"]{
    width: 100px;
}
table thead tr th, table tfoot tr th {
    background-color: #e6EEEE;
}
table thead tr .header.headerSortUp .arrow {
    background-image: url(images/asc.gif);
}
table thead tr .header.headerSortDown .arrow {
    background-image: url(images/desc.gif);
}
table thead tr .headerSortDown, table thead tr .headerSortUp {
    background-color: #8dbdd8;
}
table thead tr .header {
    cursor: pointer;
}
table thead tr .header div{
    display: inline-block;
}
table thead tr .header .arrow{
    background-image: url(images/bg.gif);
    background-repeat: no-repeat;
    background-position: center right;
}

#loading_panel {
    -webkit-transition: background-color 1s;
    transition: background-color 1s;
}
#loading_panel.loading {
    /* Replace #333 with the background-color of your choice */
    /* Replace loading.gif with the loading image of your choice */
    background: #FFFFFF url('ajax-loader.gif') no-repeat 50% 0%;

    /* Ensures that the transition only runs in one direction */
    -webkit-transition: background-color 0;
    transition: background-color 0;
}
#loading_panel.loading div {
    /* Make the contents of the body opaque during loading */
    opacity: 0;

    /* Ensures that the transition only runs in one direction */
    -webkit-transition: opacity 0;
    transition: opacity 0;
}
.add_outl_form {  
  position:fixed;
  z-index: 100;  
  top:50%;  
  left:50%;  
  margin:-100px 0 0 -100px; 
} 

.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

#blackout{
    position:fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .5);
    display: none;
    z-index: 20;
    margin: auto;
    text-align: center;
}
.button{
  font: bold 11px Arial;
  text-decoration: none;
  background-color: #EEEEEE;
  color: #333333;
  padding: 2px 6px 2px 6px;
  border-top: 1px solid #CCCCCC;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  border-left: 1px solid #CCCCCC;
}
.columnSelectorWrapper {
  position: relative;
  margin: 10px 0;
  display: inline-block;
}
.columnSelector, .hidden {
  display: none;
}
.columnSelectorButton {
  background: #99bfe6;
  border: #888 1px solid;
  color: #111;
  border-radius: 5px;
  padding: 5px;
}
#colSelect1:checked + label {
  background: #5797d7;
  border-color: #555;
}
#colSelect1:checked ~ #columnSelector {
  display: block;
}
.columnSelector {
  width: 120px;
  position: absolute;
  top: 30px;
  padding: 10px;
  background: #fff;
  border: #99bfe6 1px solid;
  border-radius: 5px;
}
.columnSelector label {
  display: block;
}
.columnSelector label:nth-child(1) {
  border-bottom: #99bfe6 solid 1px;
  margin-bottom: 5px;
}
.columnSelector input {
  margin-right: 5px;
}
.columnSelector .disabled {
  color: #ddd;
}

.page_header{
    height : 40px;
    width : 100%;
    background-color: #e6EEEE;
}
.username:not(td){
    float : right;
    margin-top :5px;
    margin-bottom : 5px;
    margin-right : 30px;
    height : 30px;
    width : 300px;
    text-align: center;
    font-weight: bold;
}
.username span{
    vertical-align: middle;
    margin-left: 10px;
    margin-right: 10px;
}
#o_description{
    width : 100%;
    height : 200px;
}
.top_3 td{
    width : 10%;
}


.table-block{
    display: inline-block;
    width: 20px;
    height: 20px;
}
.block-green{
    background-color : green;
}
.block-red{
    background-color : red;
}
.block-yellow{
    background-color : yellow;
}
.class-tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.class-tooltip .tooltiptext {
    visibility: hidden;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 1s;
}


.class-tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

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

.popup{
    position : fixed;
    top : 100px;
    left : 45%;
    background: gray;
}
