html, body {
  background-color: #121010;
  background-image: url("https://cdn.lowgif.com/full/84d25213281c2613-.gif");
  color: #FFF;
  font-family: Roboto, helvetica, Arial, sans-serif;
  font-size: 8px;
  letter-spacing: 1px;
  line-height: 1.4em;
  text-align: justify;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}

@font-face { font-family: "gogoia-deco"; src: url('https://dl.dropboxusercontent.com/s/zyh6remaoilffa9/GOGOIA-Deco.otf'); }

p {
  padding: 0px;
  margin: 0px;
  text-transform: uppercase;
}

.green {
  color: #ACD336;
}

.red {
  color: #ff123e;
}

.yellow {
  color: #E1D728;
}

a.squiffy-link
{
    text-decoration: underline;
    color: #b62aff;
    cursor: pointer;
}
.squiffy-link.disabled
{
    text-decoration: inherit;
    color: inherit !important;
    cursor: inherit;
}
.squiffy-header-link
{
    text-decoration: underline;
    color: #b62aff;
    cursor: pointer;
}
#container {
  border-radius: 3px;
  height: 400px;
  margin: 50px auto 0 auto;
  padding: 1em 3em 1em 3.5em;
  width: 620px;
  }

#scroller {
  height: 300px;
  overflow: auto;
  padding-right: 15px;
  }

#squiffy-header
{
    font-size: 14px;
    text-align: right;
}
  
hr {
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 16px; margin-bottom: 16px;
}

::-webkit-scrollbar-thumb:vertical { background-color: #daeefd; }
::-webkit-scrollbar-button:horizontal { display:none; }
::-webkit-scrollbar { background-color: rgba(255,255,255,0.15); height:0px; width: 2px;}
::-webkit-scrollbar-thumb {
    background-color:#daeefd;
}

.blinking-cursor {
  font-weight: 100;
  color: #FFF;
  -webkit-animation: 1s blink step-end infinite;
  -moz-animation: 1s blink step-end infinite;
  -ms-animation: 1s blink step-end infinite;
  -o-animation: 1s blink step-end infinite;
  animation: 1s blink step-end infinite;
}

.blinking-cursor:after {
  content: "|";
}

@keyframes blink {
  from, to {
    color: #121212;
  }
  50% {
    color: #FFF;
  }
}
@-moz-keyframes blink {
  from, to {
    color: #121212;
  }
  50% {
    color: #FFF;
  }
}
@-webkit-keyframes blink {
  from, to {
    color: #121212;
  }
  50% {
    color: #FFF;
  }
}
@-ms-keyframes blink {
  from, to {
    color: transparent;
  }
  50% {
    color: black;
  }
}
@-o-keyframes blink {
  from, to {
    color: transparent;
  }
  50% {
    color: black;
  }
}