html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

html {
  position: relative; }

.cf:before, .cf:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.cf:after {
  clear: both; }

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
  *zoom: 1; }

#queues {
  margin: 20px 0; }

.run-loop-queue {
  float: left;
  border: 1px solid black;
  width: 150px;
  margin: 0 5px;
  background: white;
  z-index: 5;
  position: relative; }

#current-queue-blip {
  background: blue;
  border-radius: 4px;
  position: absolute;
  z-index: 1;
  width: 161px;
  height: 30px;
  left: 0;
  -webkit-transition: left 0.4s;
  -moz-transition: left 0.4s;
  transition: left 0.4s;
  margin-top: -6px;
  background: red; }

textarea#code {
  display: block;
  width: 600px;
  height: 200px; }


.action {
  margin: 3px;
  border: 1px solid blue;
  padding: 3px;
  font-size: 13px;
  overflow: hidden; }
  .action:hover {
    overflow: visible; }
    .action:hover pre {
      box-shadow: 0 0 3px black;
      -webkit-box-shadow: 0 0 3px black;
      -moz-box-shadow: 0 0 3px black; }
  .action pre {
    background: white;
    float: left;
    display: block;
    position: relative; }
