body {
    background-color: black;
    color: #999;
    max-width: 500px;
    margin: 0 auto;
}

table {
   table-layout: fixed ;
   background-color: black;
   border-color: #999;
   border-style: solid;
   border-collapse: separate ;
   border-spacing: 1px;
   border-width: 2px;
   border-radius: 10px;
   margin: 1em auto 1em;
}

td {
   background-color: #42ff4f ;
   width: 120px;
   height: 120px;
   border-style: solid;
   border-width: 1px;
   padding: 0px;
}

td.ltop {
  border-top-left-radius: 8px;
}

td.rtop {
    border-top-right-radius: 8px;
}

td.rbottom {
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    background-color: black;
    border-style: none;
    height:40px;
}

img.user {
    display: block;
    width: 100%;
    max-height: 100%;
    position: absolute; top: 0px;
}

object.user {
    width: 100%;
    position: absolute; top: 0px;
}

@keyframes blinkcolor {
    0%   { background-color: #ff0012;
          background: -moz-radial-gradient(center, ellipse cover, #ff0012 0%, #d01f1f 100%);
          background: radial-gradient(ellipse at center, #ff0012 0%, #d01f1f 100%);
          filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0012', endColorstr='#d01f1f',GradientType=1 );
    }
    100%   { background-color: #f65200;
          background: -moz-radial-gradient(center, ellipse cover, #efbf2e 0%, #f65200 100%);
          background: radial-gradient(ellipse at center, #efbf2e 0%, #f65200 100%);
          filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffd65e', endColorstr='#f65200',GradientType=1 );
    }
  }

  @-webkit-keyframes blinkcolor {
    0% {
      background-color: #ff0012;
      background: -webkit-radial-gradient(center, ellipse cover, #ff0012 0%, #d01f1f 100%);
    }

    50% {
      background-color: #ff0012;
      background: -webkit-radial-gradient(center, ellipse cover, #ff0012 0%, #d01f1f 100%);
    }
    100% {
      background-color: #f65200;
      background: -webkit-radial-gradient(center, ellipse cover, #efbf2e 0%, #f65200 100%);
    }
  }

tr.users td {
    position: relative;
    overflow: hidden;
}

img.burnupgif {
    position: absolute;
    top: -17px;
    left: -30px;
    width: 180px;
}

img.burnupgif3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
}

table tr.users td.cuser {
background-color: #42ff4f;
}

table tr.users td.cuser-gradient {
background-color: #42ff4f;
background: -moz-radial-gradient(center, ellipse cover, #d2ff52 0%, #42ff4f 100%);
background: -webkit-radial-gradient(center, ellipse cover, #d2ff52 0%,#42ff4f 100%);
background: radial-gradient(ellipse at center, #d2ff52 0%,#42ff4f 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d2ff52', endColorstr='#42ff4f',GradientType=1 );
}

table tr.users td {
  background-color: black;
  background-image: none;
}

table tr.users td.glow1 {
    background: #f25100 url("glow.gif") center 30%;
}

table tr.users td.glow2 {
    background: #f25100 url("glow2.gif") center 30%;
}

table tr.users td.burnup1 {
    background-color: #f25100;
}

table tr.users td.burnup2 {
    background-color: #000000;
    background-image: none;
}

table tr.users td.clasttree {
background: #3effde;
background: #d6f9ff; /* Old browsers */
background: -moz-radial-gradient(center, ellipse cover, #d6f9ff 0%, #3effde 100%);
background: -webkit-radial-gradient(center, ellipse cover, #d6f9ff 0%,#3effde 100%);
background: radial-gradient(ellipse at center, #d6f9ff 0%,#3effde 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d6f9ff', endColorstr='#3effde',GradientType=1 );
}

table tr.users td.cblink {
background-color: #ff0012 ;
background: -moz-radial-gradient(center, ellipse cover, #ff0012 0%, #d01f1f 100%);
background: -webkit-radial-gradient(center, ellipse cover, #ff0012 0%, #d01f1f 100%);
background: radial-gradient(ellipse at center, #ff0012 0%, #d01f1f 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0012', endColorstr='#d01f1f',GradientType=1 );


-o-animation: blinkcolor 300ms linear 5s 15 forwards;
-moz-animation: blinkcolor 300ms linear 5s 15 forwards;
-webkit-animation: blinkcolor 300ms linear 5s 15 forwards;
animation: blinkcolor 300ms linear 5s 15 forwards ;
}

#marquee {
 height: 50px;
}

.marquee-hidden div {
    display: none;
}

.marquee {
 height: 50px;
 overflow: hidden;
 position: relative;
 color: white;
 font-family: Arial, Helvetica, sans-serif;
 font-size: 24px;
 letter-spacing: 2px;
 vertical-align: top;
}

.marquee div {
 position: absolute;
 width: 100%;
 height: 100%;
 margin: 0;
 line-height: 50px;
 text-align: center;
 /* Starting position */
 -moz-transform:translateX(100%);
 -webkit-transform:translateX(100%);
 transform:translateX(100%);
 /* Apply animation to this element */
 -moz-animation: scroll-left 10s linear infinite;
 -webkit-animation: scroll-left 10s linear infinite;
 animation: scroll-left 10s linear infinite;
}

/* Move it (define the animation) */
@-moz-keyframes scroll-left {
0%   { -moz-transform: translateX(100%); } 100% { -moz-transform: translateX(-100%); }
}
@-webkit-keyframes scroll-left {
 0%   { -webkit-transform: translateX(100%); } 100% { -webkit-transform: translateX(-100%); }
}

@keyframes scroll-left {
 0%   {
 -moz-transform: translateX(100%); /* Browser bug fix */
 -webkit-transform: translateX(100%); /* Browser bug fix */
 transform: translateX(100%);
 }
 100% {
 -moz-transform: translateX(-100%); /* Browser bug fix */
 -webkit-transform: translateX(-100%); /* Browser bug fix */
 transform: translateX(-100%);
 }
}

@keyframes firstletter {
  0% { opacity: 0 ;}
  to { opacity: 1 ; text-shadow: 2px 2px 2px white;}
}

@keyframes otherletters {
  0% { opacity: 0 ;}
  to { opacity: 0.7 ;}
}


.marquee .fl {
  font-weigth: bold;
  font-size: 28px;
  -webkit-animation: firstletter 10s linear infinite backwards;
  -o-animation: firstletter 10s linear infinite backwards;
  -moz-animation: firstletter 10s linear infinite backwards;
  animation: firstletter 10s linear infinite backwards;
}

.marquee .nt {
  -webkit-animation: otherletters 10s linear infinite backwards;
  -o-animation: otherletters 10s linear infinite backwards;
  -moz-animation: otherletters 10s linear infinite backwards;
  animation: otherletters 10s linear infinite backwards;
}

@media only screen and (max-width: 768px) {
    /* Overrides or mobile phones: */

    body{
        margin: 0 auto;
    }

    table {
        margin: 0.2em auto;
    }

    td {
        height: 100px;
        width: 100px;
    }

    img.user {
    }

    img.burnupgif {
        position: absolute;
        top: -14px;
        left: -25px;
        width: 150px;
    }

    img.burnupgif3 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100px;
    }

    .marquee {
      font-size: 18px;
    }

    .marquee .fl {
      font-size: 20px;
    }
}
