/* General */

html {
  height: 100%;
}
body {
  background: rgb(240, 238, 230);
  
  margin: 0;
  padding: 0;
  
  height: 100%;
  overflow: hidden;

  opacity: 0;
  -webkit-transition: opacity 2000ms;
  -moz-transition: opacity 2000ms;
}
body.loaded {
  opacity: 1;
}
body,
input,
button {
  font-family: 'Open Sans', Arial, sans-serif;  
  -webkit-font-smoothing: antialiased;
}
::selection, 
textarea::selection {
  color: white;
  background: rgba(120, 60, 30, .25);
  text-shadow: 0 0 2px rgba(120, 60, 30, 1);  
}

/* Presentation */

presentation {
  display: block;
  width: 100%;
  height: 100%;

  background: -moz-linear-gradient(rgba(240, 200, 160, .3), transparent, transparent, transparent, transparent, transparent, transparent, transparent, transparent, transparent, transparent, transparent, transparent, transparent, transparent, transparent, transparent, transparent, transparent, transparent),
              -moz-linear-gradient(180deg, rgba(240, 200, 160, .3), transparent),
              -moz-linear-gradient(180deg, rgba(240, 200, 160, .3), transparent),
              -moz-linear-gradient(180deg, rgba(240, 200, 160, .3), transparent),
              -moz-linear-gradient(180deg, rgba(240, 200, 160, .3), transparent),
              -moz-linear-gradient(180deg, rgba(240, 200, 160, .3), transparent),
              transparent;
  
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(240, 200, 160, .3)), color-stop(0.04, transparent)),
              -webkit-gradient(linear, left top, right top, from(rgba(240, 200, 160, .3)), to(rgba(240, 200, 160, .3))),
              -webkit-gradient(linear, left top, right top, from(rgba(240, 200, 160, .3)), to(rgba(240, 200, 160, .3))),
              -webkit-gradient(linear, left top, right top, from(rgba(240, 200, 160, .3)), to(rgba(240, 200, 160, .3))),
              -webkit-gradient(linear, left top, right top, from(rgba(240, 200, 160, .3)), to(rgba(240, 200, 160, .3))),
              -webkit-gradient(linear, left top, right top, from(rgba(240, 200, 160, .3)), to(rgba(240, 200, 160, .3))),
              transparent;
              
  background: -webkit-linear-gradient(rgba(240, 200, 160, .3), transparent, transparent, transparent, transparent, transparent, transparent, transparent, transparent, transparent, transparent, transparent, transparent, transparent, transparent, transparent, transparent, transparent, transparent, transparent),
              -webkit-linear-gradient(180deg, rgba(240, 200, 160, .3), transparent),
              -webkit-linear-gradient(180deg, rgba(240, 200, 160, .3), transparent),
              -webkit-linear-gradient(180deg, rgba(240, 200, 160, .3), transparent),
              -webkit-linear-gradient(180deg, rgba(240, 200, 160, .3), transparent),
              -webkit-linear-gradient(180deg, rgba(240, 200, 160, .3), transparent),
              -webkit-radial-gradient(transparent, rgba(240, 200, 160, .3));

  background-repeat: repeat-y, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat;
  background-position: 0 0, 
                       60px 0, 
                       120px 0, 
                       180px 0, 
                       964px 0, 
                       1024px 0, 
                       0 0;
  background-size: 100% 24px, 1px 100%, 1px 100%, 1px 100%, 1px 100%, 1px 100%, auto;

  background-clip: content-box;
  
  -webkit-transition: background-position 200ms ease-out;
  -moz-transition: background-position 200ms ease-out;
}

slide {
  position: absolute;
  left: 0;
  top: 0;
  
  padding-left: 120px;
  padding-top: 48px;
  
  width: 844px;
  height: 100%;
  -webkit-line-box-contain: block;  
}
slide.no-grid {
  -webkit-line-box-contain: block inline replaced;  
}
slide {
  display: none;
  
  -webkit-transition: -webkit-transform 250ms ease-out;
  -moz-transition: -moz-transform 250ms ease-out;
}
slide.current {
  display: block;
}
slide.temporarily-visible {
  opacity: 0 !important;
  display: block !important;
}
slide.prev {
  display: block;
  -webkit-transform: translate(0, -100%);
  -moz-transform: translate(0, -100%);
}
slide.next {
  display: block;
  -webkit-transform: translate(0, 100%);
  -moz-transform: translate(0, 100%);
}

/* Navigation buttons */

header {
  display: block;
  
  margin: 0;
  padding: 0;
  
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  
  margin-bottom: 0;
  
  z-index: 5000;  
}

header > button {
  position: absolute;
  display: block;
  
  border-radius: 2px;
  
  left: 24px;
  width: 72px;
  height: 60px;
  
  border: 0;
  padding: 0;
  margin: 0;
  padding-top: 10px;
  padding-bottom: 70px;
  
  font-size: 48px;
  line-height: 46px;

  cursor: pointer;
}
header > #prev-slide {
  bottom: 116px;  
  
  -webkit-transform: rotateZ(90deg);
  -moz-transform: rotateZ(90deg);
} 
header > #prev-slide:active {
  -webkit-transform: rotateZ(90deg) scale(.9);
  -moz-transform: rotateZ(90deg) scale(.9);
} 
header > #next-slide {
  bottom: 20px;

  -webkit-transform: rotateZ(90deg);
  -moz-transform: rotateZ(90deg);
}
header > #next-slide:active {
  -webkit-transform: rotateZ(90deg) scale(.9);
  -moz-transform: rotateZ(90deg);
} 
header > #slide-no {
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  height: 24px;
  padding: 0;
  
  bottom: 93px;
}
header > #slide-no:active {
  -webkit-transform: scale(.94);
  -moz-transform: scale(.94);
}
header > #slide-no::before {
  content: '№';
}
header > button {
  background: transparent;
  color: rgba(120, 60, 30, .5);
  text-shadow: 0 0 2px rgba(120, 60, 30, .5);
}
header > button:hover {
  color: rgba(120, 60, 30, .66);
  text-shadow: 0 0 2px rgba(120, 60, 30, .66);
}
header > button:active {
  color: rgba(120, 60, 30, .66);
  text-shadow: 0 0 2px rgba(120, 60, 30, .66);
}

/* Inline styles */

h4 .ref {
  position: absolute;
  right: 0;
  font-size: 24px;
  padding-top: 3px;
  letter-spacing: -1px;
}
.ref::after {
  content: ' »';
}

slide hgroup li .ref {
  position: absolute;
  right: 30px;
  color: rgba(255, 255, 255, .8);
  font-size: 24px;
  padding-top: 7px;
  letter-spacing: 0;
  font-family: 'Open Sans', Arial, sans-serif;  

  text-shadow: 0 0 2px rgba(255, 255, 255, .5);  
}
slide hgroup li .ref:hover {
  color: rgba(255, 255, 255, 1);
  text-shadow: 0 0 2px rgba(255, 255, 255, 1);  
}

strong {
  font-weight: 600;
}
slide img {
  margin-top: 48px;
  vertical-align: top;

  border: 1px solid rgba(0, 0, 0, .2);
  
  max-width: 843px;
}

slide iframe {
  margin-top: 24px;
  width: 843px;
  
  box-spacing: border-box;
  
  margin-left: 1px;
  margin-top: 25px;
  
  vertical-align: top;
  
  background: rgba(255, 255, 255, .66);

  border: 0;
  outline: 1px solid rgba(0, 0, 0, .2);
}
slide iframe.no-border {
  background: transparent;
  outline: none;
}

p {  
  margin: 0;
  padding: 0;
  padding-top: 16px;
  padding-bottom: 8px;
  font-size: 24px;
  line-height: 48px;
  margin-bottom: -24px;
  
  letter-spacing: 0;
  font-weight: 400;
  
  letter-spacing: -1px;
  color: rgb(32, 32, 32);

}

h1 {
  margin: 0;
  padding: 0;
  
  color: white;
  
  font-weight: 400;
  font-size: 96px;
  letter-spacing: -6px;
  line-height: 96px;
  
  text-shadow: 0 0 2px white;
  
  background: rgba(120, 60, 30, .75);
  
  padding-left: 120px;
  margin-right: -61px;
  padding-right: 61px;
  padding-top: 11px;
  padding-bottom: 13px;
  margin-left: -120px;
}
h1 * {
  line-height: 0;
}
p abbr {
  font-variant: small-caps;
  font-size: 85%;
  font-weight: 500;
  letter-spacing: 1px;
  margin-right: -2px;  
}
h1 abbr {
  font-variant: small-caps;
  font-size: 85%;
  font-weight: 400;
  letter-spacing: -4px;
  text-shadow: 0 0 2px white,
               0 0 2px white;
}


h2 {
  margin: 0;
  padding: 0;
  
  color: white;
  
  font-weight: 400;
  font-size: 72px;
  letter-spacing: -4px;
  line-height: 72px;
  
  text-shadow: 0 0 2px white;
  
  background: rgba(120, 60, 30, .75);
  padding-left: 120px;
  margin-right: -31px;
  padding-right: 31px;
  padding-top: 9px;
  padding-bottom: 15px;
  margin-left: -120px;

}

h3 {
  margin: 0;
  padding: 0;
  
  color: white;
  
  font-weight: 300;
  font-size: 48px;
  letter-spacing: -2px;
  line-height: 48px;
  
  text-shadow: 0 0 2px white;
  
  background: rgba(120, 60, 30, .75);
  padding-left: 120px;
  margin-right: -1px;
  padding-right: 1px;
  padding-top: 5px;
  padding-bottom: 19px;
  margin-left: -120px;
}

hgroup ul {
  margin: 0;
  padding: 0;
  
  color: white;
  
  font-weight: 300;
  font-size: 48px;
  letter-spacing: -2px;
  line-height: 48px;
  
  text-shadow: 0 0 2px white;
  
  background: rgba(120, 60, 30, .75);
  padding-left: 120px;
  margin-right: -1px;
  padding-right: 1px;
  padding-top: 8px;
  padding-bottom: 16px;
  margin-left: -120px;

  font-family: 'Inconsolata', Courier, monospace;  
}


h4 {
  margin: 0;
  padding: 0;
  
  color: black;
  
  font-weight: 300;
  font-size: 32px;
  letter-spacing: -1px;
  line-height: 48px;
  
  text-shadow: 0 0 2px black;
  
  padding-left: 120px;
  margin-right: -61px;
  padding-right: 61px;
  padding-top: 36px;
  padding-bottom: 12px;
  margin-left: -120px;  
}
h4:first-child {
  padding-top: 12px;
}


img.icon {
  background: white;
  height: 20px;
  padding-left: 6px;
  padding-right: 6px;
  padding-top: 10px;
  padding-bottom: 10px;
  
  margin-top: 24px;
  
  box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
  border-radius: 2px;
}

:not(.example):not(hgroup) > ul {
  margin: 0;
  padding: 0;
}
:not(.example) > ul > li {
  list-style: none;
  margin-left: 60px;
}
:not(.example) > ul > li::before {
  font-weight: 400;
  
  content: '·';
  position: absolute;
  margin-left: -60px;
  width: 60px;
}
hgroup li {
  margin-left: 55px;
}
:not(hgroup) > ul {
  line-height: 48px;
  font-size: 24px;
  padding-top: 16px !important;
  padding-bottom: 8px !important;
}

.entity-ex {
  width: 60px;
  display: inline-block;
  color: rgba(120, 60, 30, 1);
}
.entity-code {
  width: 120px;
  display: inline-block;
  font-family: 'Inconsolata', Courier, monospace;  
  color: rgba(120, 60, 30, 1);
}

.space-ex {
  width: 200px;
  display: inline-block;
  color: rgba(120, 60, 30, 1);
}
.space {
  -webkit-transition: background 100ms;
  -moz-transition: background 100ms;
}
.space-ex:hover .space {
  background: rgba(120, 60, 30, .75);
}

a {
  text-decoration: none;
  font-weight: 400;
  display: inline-block;
  
  cursor: pointer;
  
  color: rgba(120, 60, 30, .5);
  text-shadow: 0 0 2px rgba(120, 60, 30, .5);  
}
a:hover {
  color: rgba(120, 60, 30, .66);
  text-shadow: 0 0 2px rgba(120, 60, 30, .66);  
}
a:active {
  color: rgba(120, 60, 30, .66);
  text-shadow: 0 0 2px rgba(120, 60, 30, .66);  
  -webkit-transform: scale(.98);
  -moz-transform: scale(.98);
}

/* Sandbox */

.normal {
  margin: 0;
  padding: 0;
  
  color: black;
  
  font-weight: 400;
  font-size: 96px;
  letter-spacing: -6px;
  line-height: 96px;
  
  text-shadow: 0 0 2px black;
    
  border: 1px solid transparent;
  
  padding-left: 60px;
  margin-left: -60px;
  margin-right: -61px;
  padding-right: 61px;
  padding-top: 10px;
  padding-bottom: 37px;

}

.example {
  margin: 0;
  padding: 0;
  
  color: rgb(64, 64, 64);
  
  font-weight: 400;
  font-size: 96px;
  letter-spacing: -6px;
  line-height: 96px;
  
  text-shadow: 0 0 2px black;
    
  border: 1px solid rgba(0, 0, 0, .2);
  
  background: rgba(255, 255, 255, .66);
  padding-left: 60px;
  margin-left: -60px;
  margin-right: -61px;
  padding-right: 61px;
  padding-top: 10px;
  padding-bottom: 37px;

  -webkit-line-box-contain: block;  
}
.example.no-background {
  background: transparent;
  border-color: transparent;
}
.example.serif {
  font-family: 'OFL Sorts Mill Goudy TT', serif;
}
.example.serif.medium {
  padding-top: 16px;
  padding-bottom: 8px;
}

.example.medium {  
  font-weight: 400;
  font-size: 72px;
  letter-spacing: -4px;
  line-height: 72px;
  
  text-shadow: 0 0 2px black;

  padding-top: 9px;
  padding-bottom: 15px;
}

.example.smaller {
  font-weight: 300;
  font-size: 48px;
  letter-spacing: -2px;
  line-height: 48px;

  text-shadow: 0 0 2px black;

  padding-top: 5px;
  padding-bottom: 19px;
}

.example.smallest {
  font-weight: 300;
  font-size: 20px;
  letter-spacing: -1px;
  line-height: 24px;

  text-shadow: 0 0 1px black;

  padding-top: 28px;
  padding-bottom: 20px;
}

.example + .example {
  margin-top: -1px;
}

.example.no-shadow {
  text-shadow: none;
}


section.sandbox {
  display: block;
  padding: 24px 60px;
  padding-bottom: 53px;
  
  border: 1px solid rgba(0, 0, 0, .1);
  margin-top: -1px;
  margin-right: -1px;
  
  z-index: 1000000;  
}
section.sandbox div.input {
  padding: 0;
  margin: 0;
  line-height: 24px;  
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -9px;
  margin-bottom: 5px;
  min-height: 24px;
  
  position: relative;
}
section.sandbox div.input:last-child {
  margin-bottom: -24px;
}
section.sandbox input[type='range'] {
  cursor: -webkit-grab;
  
  width: 738px;
  height: 24px;
  
  margin-left: -8px;
  margin-right: -8px;

  opacity: .75;
  -webkit-transition: opacity 100ms;
  -moz-transition: opacity 100ms;
}
section.sandbox input[type='range']:hover,
section.sandbox input[type='range']:active {
  opacity: 1;
  -webkit-transition: opacity 250ms;  
  -moz-transition: opacity 250ms;  
}
section.sandbox input[type='range']:active {
  cursor: -webkit-grabbing;  
}

section.sandbox .tick {
  position: absolute;
  margin-top: -4px;
  margin-left: -1px;
  left: 0;
  width: 1px;
  height: 20px;
  z-index: 0;
  background: rgba(0, 0, 0, .2);
  
  pointer-events: none;
}

section.sandbox pre {
  padding: 0;
  margin: 0;
  padding-top: 4px;
  margin-bottom: -4px;
  font-size: 24px;
  line-height: 24px;
  font-family: 'Inconsolata', Courier, monospace;
  
  color: rgb(96, 96, 96);
}
section.sandbox pre span {
  color: black;
  text-shadow: 0 0 2px rgba(0, 0, 0, .5);
  border-radius: 4px;
  padding: 2px 6px;
  margin: -2px -6px;
  
  -webkit-transition: color 100ms, background 200ms, text-shadow 100ms;
  -moz-transition: color 100ms, background 200ms, text-shadow 100ms;
}
section.sandbox pre span.hover {
  color: white;
  text-shadow: 0 0 2px white;
  background: rgba(120, 60, 30, .75);

  -webkit-transition: color 250ms, background 500ms, text-shadow 250ms;
  -moz-transition: color 250ms, background 500ms, text-shadow 250ms;
}

/* Code */

.frame {
  outline: 1px solid #d2d2d2;
  position: absolute;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}
.frame-buttons {
  position: absolute;
  z-index: 5000;
  text-align: right;
  padding-left: 5px;
  margin-top: -4px;
}
.refresh-render {
  display: none;
}
.refresh-render.needs-refresh {
  -webkit-box-shadow: 0 0 5px green;
  text-shadow: 0 0 1px rgba(0, 255, 0, .8);
  color: green;
}

.commentary-canvas {
  background: rgba(255, 255, 255, .66);  
}
.commentary-view {
  width: 904px;
  height: 100%;
  
  box-sizing: border-box;
  
  padding: 0 60px;
  
  overflow-y: auto;
}
.code-annotation p {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  margin: 0;
  padding: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.code-annotation .property {
  font-size: 18px;
  color: rgb(120, 60, 30);
  text-shadow: 0 0 1px rgb(120, 60, 30);
  font-family: 'Inconsolata', Courier, monospace;  
}
.code-annotation code {
  font-size: 18px;
  text-shadow: 0 0 1px black;
} 

.commentary-view ol {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  
  padding: 0;
  margin: 0;
  list-style: none;
  
  margin-top: 30px;
  margin-bottom: 18px;
}
.commentary-view li {
  line-height: 24px;
  position: relative;
}
.commentary-view li::before {
  margin-left: -30px;
  width: 30px;
}
.commentary-view li input {
  height: 20px;
  position: absolute;
  left: -20px;
  top: -1px;
}
.commentary-view li.done {
  color: rgb(160, 160, 160);
  text-decoration: line-through;
}
  

.render-canvas {
  background: white;
}
.render-edit {
  position: absolute;
  left: 5px;
  top: 5px;
  border: 0;
  padding: 0;
  margin: 0;
}
.frame iframe {
  border: 0;
  width: 100%;
  height: 100%;
  outline: 0;
}
  
.instructions-canvas {
  background: white;
  border-top: 0;
  border-right: 3px solid black;
}
.instructions-view {
  overflow: auto;
  font-size: 12px;
  line-height: 18px;
}
.instructions-view p,
.objective-view p {
  margin: 0;
  padding: 0;
  padding: 6px 6px;
  margin-bottom: 10px;
}
.objective-view p.close {
  margin-bottom: 0;
}
  
.code-highlight {
  left: 0;
  top: 0;
  margin-top: -1px;
  position: absolute;
  width: 9999px;
  height: 23px;
  background: rgba(240, 120, 60, .15);
  border-top: 1px solid rgba(240, 120, 60, .2);
  border-bottom: 1px solid rgba(240, 120, 60, .2);
  z-index: 2001;
  
  opacity: 0;
  
  -webkit-transition: opacity 100ms;
  
  pointer-events: none;
}
.code-highlight.visible {
  opacity: 1;
}

.code-background {
  position: absolute;
  left: -5px;
  top: -5px;
  width: 9999px;
  height: 9999px;
  background: rgba(255, 255, 255, .66);
}
code {
  font-family: 'Inconsolata', Courier, monospace;  
}
.code-gutter {
  left: -25px;
  top: 0;
  padding-top: 0;
  background: white;
  position: absolute;
  height: 9999px;
  text-align: right;
  color: #888;
  font-family: 'Inconsolata', Courier, monospace;
  line-height: 24px;
  font-size: 18px;
  padding-right: 24px;
  border-right: 1px solid rgba(0, 0, 0, .2);
  z-index: 2000;
}
.code-gutter input {
  position: absolute;
  margin-left: 5px;
  opacity: .5;
  margin-top: 5px;
}
.code-edit {
  position: absolute;
  left: 5px;
  top: 5px;
  font-size: 18px;
  line-height: 24px;
  padding: 0;
  margin: 0;
  border: 0;
  font-family: 'Inconsolata', Courier, monospace;
  background: transparent;
  outline: 0;
  width: 9999px;
  resize: none;
  white-space: pre-wrap;
}

.code-annotation {
  display: none;
  position: absolute;
  padding: 4px 12px;
  background: white;
  color: white;
  max-width: 480px;
  overflow: hidden;
  z-index: 20000;
  -webkit-box-shadow: 0 0 4px rgba(120, 60, 30, .5);
  background: -webkit-linear-gradient(rgba(120, 60, 30, .1), rgba(120, 60, 30, .1)), white;
  pointer-events: none;
  line-height: 28px;
  font-size: 16px !important;
}
.code-annotation hr {
  margin-top: 10px;
  border: 0;
  border-top: 1px solid rgba(120, 60, 30, .2);
  margin-bottom: 8px;
}
.code-annotation .triangle-top {
  position: absolute;
  left: 0;
  top: 0;
  color: black;
  font-weight: bold;
  margin-top: -12px;
  margin-left: 10px;
  font-family: Webdings;
  font-size: 30px;
  color: rgba(240, 240, 255, .98);
  display: none;
}
.code-annotation .triangle-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  color: black;
  font-weight: bold;
  margin-bottom: -12px;
  margin-left: 10px;
  font-family: Webdings;
  font-size: 30px;
  color: rgba(240, 240, 255, .98);
  text-shadow: 0px 3px 3px rgba(0, 0, 100, .2);
  display: none;
}
.code-annotation .triangle-right {
  display: none;
}
.code-annotation.triangle-right-top .triangle-right {
  position: absolute;
  right: 0;
  top: 0;
  color: black;
  font-weight: bold;
  margin-right: -19px;
  margin-top: 20px;
  font-family: Webdings;
  font-size: 30px;
  color: rgba(240, 240, 255, .98);
  text-shadow: 2px 2px 2px rgba(0, 0, 100, .2);
  display: block;
}
.code-annotation.triangle-right-bottom .triangle-right {
  position: absolute;
  right: 0;
  bottom: 0;
  color: black;
  font-weight: bold;
  margin-right: -19px;
  margin-bottom: 20px;
  font-family: Webdings;
  font-size: 30px;
  color: rgba(240, 240, 255, .98);
  text-shadow: 2px 2px 2px rgba(0, 0, 100, .2);
  display: block;
}
/*.code-annotation.triangle-top .triangle-top,
.code-annotation.triangle-bottom .triangle-bottom {
  display: block;
}*/
.code-annotation .parameters {
  padding-left: 2em;
  padding-bottom: 0;
  margin-bottom: 0;
}
.code-annotation ul {
  padding: 0 !important;
  margin: 0 !important;
  font-size: 16px !important;
  padding-left: 1em;
  list-style: none;
  color: black;
}
.code-annotation ul li {
  text-indent: -30px !important;
  margin-left: 30px !important;
  line-height: 28px;
}  
.code-annotation ul li::before {
  content: '';
}

.code-annotation .parameters {
  padding: 0;
  margin: 0 auto;
  margin-top: 10px;
}
.code-annotation .parameters li {
  padding: 0;
  margin: 0;
  list-style: none;
  display: table-cell;
  width: 4em;
  color: black;
  text-align: center; 
  padding: 5px 5px;
  border-right: 1px solid rgba(120, 60, 30, .2);
}
.code-annotation .parameters li:last-child {
  border-right: 0;
}
.code-annotation .parameters .for-example {
  margin-top: 10px;
  font-family: 'Inconsolata', Courier, monospace;
  color: black;
  font-size: 18px;
  text-shadow: 0 0 1px black;
}  

.code-annotation .close {
  float: right;
  font-size: 18px; 
  padding: 2px 5px;
  margin: -2px -3px -0px;
  cursor: pointer;
  color: #555;
}
.code-annotation .close:hover {
  color: black;
  margin: -2px -3px -0px;
  color: #0000f0;
  text-shadow: 0 0 2px rgba(0, 0, 255, 1);
  -webkit-border-radius: 3px;
}
.code-annotation .close:active {
  position: relative;
  top: 1px;
}

/* Fonts */

@font-face {
  font-family: 'P22UndergroundTitling-C';
  src: url('fonts/eot/style_150151.eot');
  src: url('fonts/eot/style_150151.eot?#iefix') format('embedded-opentype'),
       url('fonts/woff/style_150151.woff') format('woff'),
       url('fonts/ttf/style_150151.ttf') format('truetype'),
       url('fonts/svg/style_150151.svg#P22UndergroundTitling-C') format('svg');
}
