/* portrait */
@media screen and (orientation:portrait) {
  /* portrait-specific styles */
  .orientation {
    display: block;
  }

  .rotate {
    align-self: center;
    font-size:0.8em;
    font-weight: bold;
    width: 40%;
    border: 1px solid;
	  margin: 3px 0px 0px 0px;
	  padding:5px 5px 5px 5px;
    background-color: #d1d3d49f;
	  border-radius: 3px;
  }

  .reverseorientation {
    display: none;
  }

}
/* landscape */
@media screen and (orientation:landscape) {
  /* landscape-specific styles */
  .orientation {
    display: none;
  }

  .reverseorientation {
    display: block;
  }
}

body {
  
  background-image:  url("/../media/background.jpg");

  
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: top;
  background-size: contain;
  width: 100vw;
  height: 100vh;
}

  .header {
  color: #025c9c;
  font-size:0.8em;
  background: #c9f3fda6;
  border-radius: 25px;
  padding: 20px;
}

.header .brand {
  float: none;
  display: block;
  text-align: center;
  cursor: pointer;
  padding-top: 20px;
}

  .video {
    font-size:1.2em;
    left:-6px;
    top:0px;
    position:relative;
    color:#025c9c;
    cursor:pointer
  }

  .back {
    font-size:1.2em;
    color:#025c9c;
    cursor:pointer
  }

  video {
    width: 100%;
    height: auto;
  }

  table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: 1px solid #ddd;
    white-space:nowrap;
    background-color: #ddd;
    position:relative;
    overflow:auto;  
  }
  
  th, td {
    text-align: left;
    padding: 4px;
    width: auto;
  }
  
  tr:nth-child(even){background-color: #f2f2f2}

  tbody tr:hover {background-color: #ddd; cursor: pointer;}
  
  th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #92d1f552;
    color: rgb(50, 50, 53);
  }

  table .highlight td {
    font-weight: bold;
  }

  .rg-hed {
    font-weight: bold;
    font-size: 1.4em;
  }

  .rg-dek {
    font-size: 1em;
    position:relative;
    left: 6px;
  }

  .text { width: 5% }
  
  .rg-source {
    margin: 0;
    font-size: 0.75em;
    text-align: right;
  }

  .rg-table{
    display: block;
    width: auto;
  }

  .rg-container {
   
    padding-top: 10px;
    color: #222;
  }