    body {
        font-family: Roboto, sans-serif;        
    }
    
    .table-taken {
            background-color: WhiteSmoke;
    }

    th, td {
      padding: 2px;
      text-align: left;
    }

    .blink {
      animation: blinker 1s linear infinite;
      background-color : WhiteSmoke; 
    }

    @keyframes blinker {  
      50% { opacity: 0; }
    }

    .bg-image {
        /*background-image: url('img/4S4A8673.JPG');*/
        background-size: cover;
    }

    .divider {                /* minor cosmetics */
            display: table; 
            text-align: center; 
            width: 75%;             /* divider width */
            margin: 20px auto;          /* spacing above/below */
        }
        .divider span { display: table-cell; position: relative; }
        .divider span:first-child, .divider span:last-child {
            width: 50%;
            top: 10px;              /* adjust vertical align */
            -moz-background-size: 100% 2px;   /* line width */
            background-size: 100% 2px;      /* line width */
            background-position: 0 0, 0 100%;
            background-repeat: no-repeat;
        }
        .divider span:first-child {       /* color changes in here */
            background-image: -webkit-gradient(linear, 0 0, 0 100%, from(transparent), to(#000));
            background-image: -webkit-linear-gradient(180deg, transparent, #000);
            background-image: -moz-linear-gradient(180deg, transparent, #000);
            background-image: -o-linear-gradient(180deg, transparent, #000);
            background-image: linear-gradient(90deg, transparent, #000);
        }
        .divider span:nth-child(2) {
            color: #000; padding: 0px 5px; width: auto; white-space: nowrap;
        }
        .divider span:last-child {        /* color changes in here */
            background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#000), to(transparent));
            background-image: -webkit-linear-gradient(180deg, #000, transparent);
            background-image: -moz-linear-gradient(180deg, #000, transparent);
            background-image: -o-linear-gradient(180deg, #000, transparent);
            background-image: linear-gradient(90deg, #000, transparent);
        }

  a {
    text-decoration: none;
    font-weight: bold;   
    color:black; 
  }

  a:hover {
    text-decoration: underline;
    font-weight: bold;
    color:black;
}

.mytext {
  display: inline-block;
  width: 70px;
}