/* BASICS */


.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  height: auto;
}
.CodeMirror-scroll {
  /* Set scrolling behaviour here */
  overflow: auto;
}

/* PADDING */

.CodeMirror-lines {
  padding: 4px 0; /* Vertical padding around content */
}
.CodeMirror pre {
  padding: 0 4px; /* Horizontal padding of content */
}

.CodeMirror-scrollbar-filler {
  background-color: white; /* The little square between H and V scrollbars */
}

/* GUTTER */

.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
}
.CodeMirror-linenumbers {}
.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
}

/* CURSOR */

.CodeMirror div.CodeMirror-cursor {
  border-left: 1px solid black;
  z-index: 3;
}
/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
.CodeMirror.cm-keymap-fat-cursor div.CodeMirror-cursor {
  width: auto;
  border: 0;
  background: #7e7;
  z-index: 1;
}
/* Can style cursor different in overwrite (non-insert) mode */
.CodeMirror div.CodeMirror-cursor.CodeMirror-overwrite {}

.cm-tab { display: inline-block; }

/* DEFAULT THEME */

.cm-s-default .cm-keyword {color: #708;}
.cm-s-default .cm-atom {color: #219;}
.cm-s-default .cm-number {color: #164;}
.cm-s-default .cm-def {color: #00f;}
.cm-s-default .cm-variable {color: black;}
.cm-s-default .cm-variable-2 {color: #05a;}
.cm-s-default .cm-variable-3 {color: #085;}
.cm-s-default .cm-property {color: black;}
.cm-s-default .cm-operator {color: black;}
.cm-s-default .cm-comment {color: #a50;}
.cm-s-default .cm-string {color: #a11;}
.cm-s-default .cm-string-2 {color: #f50;}
.cm-s-default .cm-meta {color: #555;}
.cm-s-default .cm-error {color: #f00;}
.cm-s-default .cm-qualifier {color: #555;}
.cm-s-default .cm-builtin {color: #30a;}
.cm-s-default .cm-bracket {color: #997;}
.cm-s-default .cm-tag {color: #170;}
.cm-s-default .cm-attribute {color: #00c;}
.cm-s-default .cm-header {color: blue;}
.cm-s-default .cm-quote {color: #090;}
.cm-s-default .cm-hr {color: #999;}
.cm-s-default .cm-link {color: #00c;}

.cm-negative {color: #d44;}
.cm-positive {color: #292;}
.cm-header, .cm-strong {font-weight: bold;}
.cm-em {font-style: italic;}
.cm-link {text-decoration: underline;}

.cm-invalidchar {color: #f00;}

div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}

/* STOP */

/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */

.CodeMirror {
  line-height: 1;
  position: relative;
  overflow: hidden;
  background: white;
  color: black;
}

.CodeMirror-scroll {
  /* 30px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror, and the paddings in .CodeMirror-sizer */
  margin-bottom: -30px; margin-right: -30px;
  padding-bottom: 30px; padding-right: 30px;
  height: 100%;
  outline: none; /* Prevent dragging from highlighting the element */
  position: relative;
}
.CodeMirror-sizer {
  position: relative;
}

/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actuall scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler {
  position: absolute;
  z-index: 6;
  display: none;
}
.CodeMirror-vscrollbar {
  right: 0; top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.CodeMirror-hscrollbar {
  bottom: 0; left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
.CodeMirror-scrollbar-filler {
  right: 0; bottom: 0;
  z-index: 6;
}

.CodeMirror-gutters {
  position: absolute; left: 0; top: 0;
  height: 100%;
  padding-bottom: 30px;
  z-index: 3;
}
.CodeMirror-gutter {
  height: 100%;
  padding-bottom: 30px;
  margin-bottom: -32px;
  display: inline-block;
  /* Hack to make IE7 behave */
  *zoom:1;
  *display:inline;
}
.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}

.CodeMirror-lines {
  cursor: text;
}
.CodeMirror pre {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
}
.CodeMirror-wrap pre {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}
.CodeMirror-linebackground {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 0;
}

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  overflow: visible;
}

.CodeMirror-widget {
  display: inline-block;
}

.CodeMirror-wrap .CodeMirror-scroll {
  overflow-x: hidden;
}

.CodeMirror-measure {
  position: absolute;
  width: 100%; height: 0px;
  overflow: hidden;
  visibility: hidden;
}
.CodeMirror-measure pre { position: static; }

.CodeMirror div.CodeMirror-cursor {
  position: absolute;
  visibility: hidden;
  border-right: none;
  width: 0;
}
.CodeMirror-focused div.CodeMirror-cursor {
  visibility: visible;
}

.CodeMirror-selected { background: #d9d9d9; }
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }

.cm-searching {
  background: #ffa;
  background: rgba(255, 255, 0, .4);
}

/* IE7 hack to prevent it from returning funny offsetTops on the spans */
.CodeMirror span { *vertical-align: text-bottom; }

@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursor {
    visibility: hidden;
  }
}
/* Taken from the popular Visual Studio Vibrant Ink Schema */


.cm-s-vibrant-ink { background: #424242; color: white; }
.cm-s-vibrant-ink .CodeMirror-selected { background: #35493c !important; }

.cm-s-vibrant-ink .CodeMirror-gutters { background: #002240; border-right: 1px solid #aaa; }
.cm-s-vibrant-ink .CodeMirror-linenumber { color: #d0d0d0; }
.cm-s-vibrant-ink .CodeMirror-cursor { border-left: 1px solid white !important; }

.cm-s-vibrant-ink .cm-keyword {  color: #CC7832; }
.cm-s-vibrant-ink .cm-atom { color: #FC0; }
.cm-s-vibrant-ink .cm-number { color:  #FFEE98; }
.cm-s-vibrant-ink .cm-def { color: #8DA6CE; }
.cm-s-vibrant-ink span.cm-variable-2, .cm-s-cobalt span.cm-tag { color: #FFC66D }
.cm-s-vibrant-ink span.cm-variable-3, .cm-s-cobalt span.cm-def { color: #FFC66D }
.cm-s-vibrant-ink .cm-operator { color: #888; }
.cm-s-vibrant-ink .cm-comment { color: gray; font-weight: bold; }
.cm-s-vibrant-ink .cm-string { color:  #A5C25C }
.cm-s-vibrant-ink .cm-string-2 { color: red }
.cm-s-vibrant-ink .cm-meta { color: #D8FA3C; }
.cm-s-vibrant-ink .cm-error { border-bottom: 1px solid red; }
.cm-s-vibrant-ink .cm-builtin { color: #8DA6CE; }
.cm-s-vibrant-ink .cm-tag { color: #8DA6CE; }
.cm-s-vibrant-ink .cm-attribute { color: #8DA6CE; }
.cm-s-vibrant-ink .cm-header { color: #FF6400; }
.cm-s-vibrant-ink .cm-hr { color: #AEAEAE; }
.cm-s-vibrant-ink .cm-link { color: blue; }
/* line 5, ../../app/assets/stylesheets/course.css.scss */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

/* line 6, ../../app/assets/stylesheets/course.css.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 7, ../../app/assets/stylesheets/course.css.scss */
fieldset, img {
  border: 0;
}

/* line 8, ../../app/assets/stylesheets/course.css.scss */
address, b, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

/* line 9, ../../app/assets/stylesheets/course.css.scss */
ol, ul {
  list-style: none;
}

/* line 10, ../../app/assets/stylesheets/course.css.scss */
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

/* line 11, ../../app/assets/stylesheets/course.css.scss */
a {
  text-decoration: none;
}

/* line 13, ../../app/assets/stylesheets/course.css.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

@font-face {
  font-family: 'OpenSansLight';
  src: url(//d13jv82ekraqyq.cloudfront.net/assets/OpenSans-Light-webfont-63731c6b9a1ed22a703c44da0c79d93e.eot);
  src: url(//d13jv82ekraqyq.cloudfront.net/assets/OpenSans-Light-webfont.eot?#iefix) format("embedded-opentype"), url(//d13jv82ekraqyq.cloudfront.net/assets/OpenSans-Light-webfont-3c6b94b3bc3ebf4914bed9dbd1109404.woff) format("woff"), url(//d13jv82ekraqyq.cloudfront.net/assets/OpenSans-Light-webfont-6c3c2a5b1b51bb5bf34da2eee0124233.ttf) format("truetype"), url(//d13jv82ekraqyq.cloudfront.net/assets/OpenSans-Light-webfont.svg#OpenSansLight) format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'OpenSansRegular';
  src: url(//d13jv82ekraqyq.cloudfront.net/assets/OpenSans-Regular-webfont-1f215e160863ff5983c29aa9f8848183.eot);
  src: url(//d13jv82ekraqyq.cloudfront.net/assets/OpenSans-Regular-webfont.eot?#iefix) format("embedded-opentype"), url(//d13jv82ekraqyq.cloudfront.net/assets/OpenSans-Regular-webfont-c430a5eac9ca173dd443ba437d9aeeb9.woff) format("woff"), url(//d13jv82ekraqyq.cloudfront.net/assets/OpenSans-Regular-webfont-3aa3c4724e12479c347df5fd8c5cebf9.ttf) format("truetype"), url(//d13jv82ekraqyq.cloudfront.net/assets/OpenSans-Regular-webfont.svg#OpenSansRegular) format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'OpenSansBold';
  src: url(//d13jv82ekraqyq.cloudfront.net/assets/OpenSans-Bold-webfont-378e7706c6c6dae6279f650496b37eac.eot);
  src: url(//d13jv82ekraqyq.cloudfront.net/assets/OpenSans-Bold-webfont.eot?#iefix) format("embedded-opentype"), url(//d13jv82ekraqyq.cloudfront.net/assets/OpenSans-Bold-webfont-901a681123fb0aab4508fce0fad987e9.woff) format("woff"), url(//d13jv82ekraqyq.cloudfront.net/assets/OpenSans-Bold-webfont-90ab8320c64a7bd853933d9b7c63c602.ttf) format("truetype"), url(//d13jv82ekraqyq.cloudfront.net/assets/OpenSans-Bold-webfont.svg#OpenSansBold) format("svg");
  font-weight: normal;
  font-style: normal;
}

/* line 115, ../../app/assets/stylesheets/course.css.scss */
.group, #codeschool .progress-bar, #challenge #challenge-objective, #challenge #challenge-objective header, .codeschool-banner, .resource-group-panel, .toolbar, .toolbar .controls, footer ul, .home .share-block, .home .sub-content, .success .success-message, .bucket {
  zoom: 1;
}
/* line 118, ../../app/assets/stylesheets/course.css.scss */
.group:before, #codeschool .progress-bar:before, #challenge #challenge-objective:before, #challenge #challenge-objective header:before, .codeschool-banner:before, .resource-group-panel:before, .toolbar:before, .toolbar .controls:before, footer ul:before, .home .share-block:before, .home .sub-content:before, .success .success-message:before, .bucket:before, .group:after, #codeschool .progress-bar:after, #challenge #challenge-objective:after, #challenge #challenge-objective header:after, .codeschool-banner:after, .resource-group-panel:after, .toolbar:after, .toolbar .controls:after, footer ul:after, .home .share-block:after, .home .sub-content:after, .success .success-message:after, .bucket:after {
  content: '';
  display: table;
}
/* line 122, ../../app/assets/stylesheets/course.css.scss */
.group:after, #codeschool .progress-bar:after, #challenge #challenge-objective:after, #challenge #challenge-objective header:after, .codeschool-banner:after, .resource-group-panel:after, .toolbar:after, .toolbar .controls:after, footer ul:after, .home .share-block:after, .home .sub-content:after, .success .success-message:after, .bucket:after {
  clear: both;
}

/* line 126, ../../app/assets/stylesheets/course.css.scss */
.ir, #codeschool #codeschool-logo, #challenge #challenge-objective h4, .toolbar .controls li a, footer .credits a, .success .success-close {
  background-color: transparent;
  border: 0;
  color: transparent;
  font: 0/0 a;
  text-shadow: none;
}

/* line 133, ../../app/assets/stylesheets/course.css.scss */
.truncate, #codeschool .progress-bar li span em {
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 145, ../../app/assets/stylesheets/course.css.scss */
html {
  background: #FFF;
  font-size: 16px;
  height: 100%;
  min-width: 768px;
}

/* line 151, ../../app/assets/stylesheets/course.css.scss */
body {
  color: #434343;
  font-family: "OpenSansRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 62.5%;
  /* 1em = 10px */
  height: 100%;
  min-width: 768px;
  min-height: 700px;
  position: relative;
}

/* line 160, ../../app/assets/stylesheets/course.css.scss */
.inner {
  margin: 0 auto;
  max-width: 1300px;
  padding: 0 60px;
}

/* line 165, ../../app/assets/stylesheets/course.css.scss */
.button {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.3);
  -o-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.3);
  display: block;
}
/* line 169, ../../app/assets/stylesheets/course.css.scss */
.button b {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  -webkit-backface-visibility: hidden;
  display: block;
  font-weight: bold;
  line-height: 22px;
  padding: 1px 14px 0;
  position: relative;
  text-align: center;
  top: -4px;
}
/* line 181, ../../app/assets/stylesheets/course.css.scss */
.button:active b {
  -webkit-transform: translateY(1px);
  -moz-transform: translateY(1px);
  -ms-transform: translateY(1px);
  transform: translateY(1px);
  -webkit-backface-visibility: hidden;
}

/* line 185, ../../app/assets/stylesheets/course.css.scss */
::selection {
  background: #4183c4;
  color: #fff;
}

/* line 189, ../../app/assets/stylesheets/course.css.scss */
::-moz-selection {
  background: #4183c4;
  color: #fff;
}

/* line 198, ../../app/assets/stylesheets/course.css.scss */
#codeschool {
  -webkit-transition: top 0.7s ease-in-out;
  -moz-transition: top 0.7s ease-in-out;
  -ms-transition: top 0.7s ease-in-out;
  transition: top 0.7s ease-in-out;
  -webkit-backface-visibility: hidden;
  background: #EDEDED;
  border-bottom: 1px solid #D3D3D3;
  height: 35px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
/* line 208, ../../app/assets/stylesheets/course.css.scss */
.reveal #codeschool {
  top: -35px;
}
/* line 211, ../../app/assets/stylesheets/course.css.scss */
#codeschool #codeschool-logo {
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  -webkit-backface-visibility: hidden;
  background: url(//d13jv82ekraqyq.cloudfront.net/assets/codeschool_logo_brackets-c74cf9011234ff99b9767d3f74bbdb9c.svg) 0 5px no-repeat;
  border: none;
  float: left;
  height: 27px;
  margin: 0 10px 0 0;
  padding: 0 0 5px;
  opacity: 0.4;
  width: 26px;
}
/* line 223, ../../app/assets/stylesheets/course.css.scss */
#codeschool #codeschool-logo:hover, #codeschool #codeschool-logo:focus {
  opacity: 0.65;
}
/* line 227, ../../app/assets/stylesheets/course.css.scss */
#codeschool .progress-bar {
  float: right;
  padding: 7px 0 0;
  width: 90%;
}
/* line 232, ../../app/assets/stylesheets/course.css.scss */
#codeschool .progress-bar li {
  background: url(//d13jv82ekraqyq.cloudfront.net/assets/bg-progress-bar-7c434475854a4abc243d193cfafffcb7.png) no-repeat;
  height: 24px;
  float: left;
  position: relative;
  width: 4%;
}
/* line 238, ../../app/assets/stylesheets/course.css.scss */
#codeschool .progress-bar li.completed {
  background: url(//d13jv82ekraqyq.cloudfront.net/assets/bg-progress-bar-filled-77f1716a0eefdfeceb005135e8a13705.png) no-repeat;
}
/* line 240, ../../app/assets/stylesheets/course.css.scss */
#codeschool .progress-bar li.completed a {
  background: url(//d13jv82ekraqyq.cloudfront.net/assets/bg-progress-link-filled-550b82cbc81eb5f56ff099f1a7b28b86.png) no-repeat;
}
/* line 244, ../../app/assets/stylesheets/course.css.scss */
#codeschool .progress-bar li:first-child {
  background: none;
}
/* line 246, ../../app/assets/stylesheets/course.css.scss */
#codeschool .progress-bar li:first-child a {
  background: url(//d13jv82ekraqyq.cloudfront.net/assets/bg-progress-link-front-f6c5f46e278bd96a855ed98aec0c4caa.png) no-repeat;
  width: 20px;
}
/* line 251, ../../app/assets/stylesheets/course.css.scss */
#codeschool .progress-bar li:first-child.completed a {
  background: url(//d13jv82ekraqyq.cloudfront.net/assets/bg-progress-link-front-filled-a52059dd6997db5be183d538bd9abd60.png) no-repeat;
  width: 20px;
}
/* line 257, ../../app/assets/stylesheets/course.css.scss */
#codeschool .progress-bar li:last-child {
  background-position-x: -23px;
}
/* line 259, ../../app/assets/stylesheets/course.css.scss */
#codeschool .progress-bar li:last-child a {
  background: url(//d13jv82ekraqyq.cloudfront.net/assets/bg-progress-link-end-bf00eb481437384c215feb11197e26cb.png) no-repeat;
  width: 20px;
}
/* line 264, ../../app/assets/stylesheets/course.css.scss */
#codeschool .progress-bar li:last-child.completed a {
  background: url(//d13jv82ekraqyq.cloudfront.net/assets/bg-progress-link-end-filled-d929e1d857627ec94c4a1746e7578033.png) no-repeat;
  width: 20px;
}
/* line 270, ../../app/assets/stylesheets/course.css.scss */
#codeschool .progress-bar li a {
  background: url(//d13jv82ekraqyq.cloudfront.net/assets/bg-progress-link-00feefaa8cd9a07088d1118deeb4b27b.png) no-repeat;
  display: block;
  float: right;
  height: 24px;
  width: 18px;
}
/* line 277, ../../app/assets/stylesheets/course.css.scss */
#codeschool .progress-bar li span {
  background: #eee;
  border: 1px solid #B2B2B2;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  display: none;
  font: 1.2em "OpenSansBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  max-width: 130px;
  padding: 5px 10px;
  text-align: center;
}
/* line 287, ../../app/assets/stylesheets/course.css.scss */
#codeschool .progress-bar li span em {
  display: block;
}
/* line 291, ../../app/assets/stylesheets/course.css.scss */
#codeschool .progress-bar li span:after, #codeschool .progress-bar li span:before {
  bottom: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
/* line 300, ../../app/assets/stylesheets/course.css.scss */
#codeschool .progress-bar li span:after {
  border-bottom-color: #eee;
  border-width: 6px;
  left: 50%;
  margin-left: -6px;
}
/* line 306, ../../app/assets/stylesheets/course.css.scss */
#codeschool .progress-bar li span:before {
  border-bottom-color: #b2b2b2;
  border-width: 7px;
  left: 50%;
  margin-left: -7px;
}

/* line 321, ../../app/assets/stylesheets/course.css.scss */
#notifications {
  display: none;
}

/* line 329, ../../app/assets/stylesheets/course.css.scss */
#challenge {
  padding-right: 0;
  position: relative;
}
/* line 335, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-objective {
  -webkit-transition: opacity 0.6s ease-in-out;
  -moz-transition: opacity 0.6s ease-in-out;
  -ms-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  background: url(//d13jv82ekraqyq.cloudfront.net/assets/logo-course-1fc23c6b16d6feda2bbfc802af9a209f.gif) 95% 65% no-repeat;
  opacity: 1;
  min-height: 190px;
  padding: 6em 60px 20px;
  position: relative;
}
/* line 343, ../../app/assets/stylesheets/course.css.scss */
.reveal #challenge #challenge-objective {
  opacity: 0;
}
/* line 346, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-objective h1 {
  color: #000;
  font-size: 2.6em;
}
/* line 349, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-objective h1 em {
  color: #8D8D8D;
  margin-right: 5px;
  padding-right: 15px;
  position: relative;
}
/* line 354, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-objective h1 em:after {
  background: #a9a9a9;
  border-radius: 20px;
  content: '';
  display: block;
  height: 4px;
  position: absolute;
  right: 0;
  top: 18px;
  width: 4px;
}
/* line 370, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-objective header {
  margin: 0 0 7px;
}
/* line 373, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-objective header h1 {
  font: 2.8em "OpenSansLight", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* line 380, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-objective h4 {
  display: block;
}
/* line 384, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-objective #instructions {
  margin-top: 10px;
}
/* line 386, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-objective #instructions p {
  color: #434343;
  font-size: 1.6em;
  line-height: 1.6em;
  margin-bottom: 1em;
  margin-left: 0;
  max-width: 75%;
  min-height: 0;
}
/* line 394, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-objective #instructions p a {
  color: #4183c4;
  font-family: "OpenSansBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* line 397, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-objective #instructions p a:hover {
  text-decoration: underline;
}
/* line 400, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-objective #instructions p a.button {
  background-color: #4183c4;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#4183c4), to(#3c78b5));
  background-image: -webkit-linear-gradient(top, #4183c4, #3c78b5);
  background-image: -moz-linear-gradient(top, #4183c4, #3c78b5);
  background-image: -ms-linear-gradient(top, #4183c4, #3c78b5);
  background-image: -o-linear-gradient(top, #4183c4, #3c78b5);
  background-image: linear-gradient(top, #4183c4, #3c78b5);
  border: 1px solid #2a5b8d;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-family: "OpenSansBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 12px 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
/* line 409, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-objective #instructions p a.button:hover {
  background-color: #448fd8;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#448fd8), to(#4183c4));
  background-image: -webkit-linear-gradient(top, #448fd8, #4183c4);
  background-image: -moz-linear-gradient(top, #448fd8, #4183c4);
  background-image: -ms-linear-gradient(top, #448fd8, #4183c4);
  background-image: -o-linear-gradient(top, #448fd8, #4183c4);
  background-image: linear-gradient(top, #448fd8, #4183c4);
  text-decoration: none;
}
/* line 415, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-objective #instructions p code {
  font: 1em "OpenSansBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  white-space: pre;
}
/* line 418, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-objective #instructions p code.input {
  background: #f2f2f2 url(//d13jv82ekraqyq.cloudfront.net/assets/icon-arrow-f773f101189484da3d28b6e1270409f8.png) 10px 14px no-repeat;
  border-radius: 8px;
  color: #4183c4;
  font-size: 1.3em;
  padding: 5px 15px 5px 35px;
}
/* line 424, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-objective #instructions p code.input:hover {
  background-color: #eee;
  cursor: pointer;
}
/* line 429, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-objective #instructions p code.input-inline {
  background: url(//d13jv82ekraqyq.cloudfront.net/assets/icon-arrow-f773f101189484da3d28b6e1270409f8.png) 10px 7px no-repeat;
  color: #4183c4;
  padding: 0 0 0 35px;
}
/* line 434, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-objective #instructions p code.input, #challenge #challenge-objective #instructions p code.input-inline {
  cursor: pointer;
}
/* line 443, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-objective #challenge-points {
  display: none;
}
/* line 450, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-panels {
  background-color: #3b84c0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3b84c0), to(#3983bd));
  background-image: -webkit-linear-gradient(top, #3b84c0, #3983bd);
  background-image: -moz-linear-gradient(top, #3b84c0, #3983bd);
  background-image: -ms-linear-gradient(top, #3b84c0, #3983bd);
  background-image: -o-linear-gradient(top, #3b84c0, #3983bd);
  background-image: linear-gradient(top, #3b84c0, #3983bd);
  -webkit-transition: opacity 0.6s ease-in-out;
  -moz-transition: opacity 0.6s ease-in-out;
  -ms-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  border-top: 1px solid #26597F;
  height: auto !important;
  opacity: 1;
  margin-bottom: 35px;
  position: relative;
}
/* line 458, ../../app/assets/stylesheets/course.css.scss */
.reveal #challenge #challenge-panels {
  opacity: 0;
}
/* line 464, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-panels nav {
  display: none;
}
/* line 474, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-panels .panel-group#editor-group {
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  -o-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
}
/* line 477, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-panels .panel-group#editor-group .panel {
  background: #424242;
  height: 300px;
  overflow-y: auto;
}
/* line 481, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-panels .panel-group#editor-group .panel.ace-course {
  bottom: 58px;
}
/* line 483, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-panels .panel-group#editor-group .panel.ace-course .ace_scroller {
  background-color: #28261f;
  overflow-x: auto;
}
/* line 488, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-panels .panel-group#editor-group .panel.console {
  color: #fff;
  font-family: Monaco, Courier, font-monospace;
  font-size: 1.4em;
}
/* line 492, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-panels .panel-group#editor-group .panel.console .jquery-console-inner {
  padding: 10px;
}
/* line 495, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-panels .panel-group#editor-group .panel.console pre {
  line-height: 1.4em;
}
/* line 498, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-panels .panel-group#editor-group .panel.console .jquery-console-focus .jquery-console-cursor {
  background: #999;
  color: #999;
  font-weight: bold;
}
/* line 503, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-panels .panel-group#editor-group .panel.console .jquery-console-message {
  color: #BBB;
  padding: 0 17px;
}
/* line 507, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-panels .panel-group#editor-group .panel.console .jquery-console-message-error {
  color: #fb8a8a;
  font-family: "OpenSansRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
}
/* line 512, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-panels .panel-group#editor-group .panel.console .jquery-console-message-value {
  color: #999;
}
/* line 515, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-panels .panel-group#editor-group .panel.console .jquery-console-message-type {
  color: #999;
}
/* line 522, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-panels .panel-group#editor-group .panel.console .jquery-console-success-message,
#challenge #challenge-panels .panel-group#editor-group .panel.console .jquery-console-error-message {
  padding-right: 17px;
  padding-left: 17px;
}
/* line 526, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-panels .panel-group#editor-group .panel.console .jquery-console-error-message {
  color: #fb8a8a;
}
/* line 529, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-panels .panel-group#editor-group .panel.console .jquery-console-success-message {
  color: #64c53d;
}
/* line 538, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-panels .panel-group#editor-group footer {
  display: none;
}

/* line 548, ../../app/assets/stylesheets/course.css.scss */
.codeschool-banner {
  background-color: #f2f2f2;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#eeeeee));
  background-image: -webkit-linear-gradient(top, #f2f2f2, #eeeeee);
  background-image: -moz-linear-gradient(top, #f2f2f2, #eeeeee);
  background-image: -ms-linear-gradient(top, #f2f2f2, #eeeeee);
  background-image: -o-linear-gradient(top, #f2f2f2, #eeeeee);
  background-image: linear-gradient(top, #f2f2f2, #eeeeee);
  border-top: 3px solid #FFF;
  bottom: -70px;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.25);
  display: none;
  left: 0;
  opacity: 0.95;
  padding: 15px 40px 15px 180px;
  position: fixed;
  width: 100%;
  z-index: 10;
}
/* line 561, ../../app/assets/stylesheets/course.css.scss */
.codeschool-banner img {
  left: 40px;
  position: absolute;
  top: -20px;
  width: 70px;
  height: 70px;
}
/* line 568, ../../app/assets/stylesheets/course.css.scss */
.codeschool-banner h4 {
  text-align: center;
  position: relative;
  left: -160px;
  font: 1.7em "OpenSansBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* line 573, ../../app/assets/stylesheets/course.css.scss */
.codeschool-banner h4 a {
  color: #4183c4;
}
/* line 575, ../../app/assets/stylesheets/course.css.scss */
.codeschool-banner h4 a:hover {
  color: #3269a0;
}

/* line 590, ../../app/assets/stylesheets/course.css.scss */
.toolbar {
  background-color: #efedee;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#efedee), to(#c1c1c1));
  background-image: -webkit-linear-gradient(top, #efedee, #c1c1c1);
  background-image: -moz-linear-gradient(top, #efedee, #c1c1c1);
  background-image: -ms-linear-gradient(top, #efedee, #c1c1c1);
  background-image: -o-linear-gradient(top, #efedee, #c1c1c1);
  background-image: linear-gradient(top, #efedee, #c1c1c1);
  border-radius: 3px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border: 1px solid #6287A4;
  border-bottom: 0;
  height: 30px;
  margin-top: 20px;
  position: relative;
}
/* line 601, ../../app/assets/stylesheets/course.css.scss */
.toolbar .controls {
  left: 9px;
  position: absolute;
  top: 9px;
}
/* line 606, ../../app/assets/stylesheets/course.css.scss */
.toolbar .controls li {
  float: left;
  margin: 0 7px 0 0;
}
/* line 609, ../../app/assets/stylesheets/course.css.scss */
.toolbar .controls li a {
  background: url(//d13jv82ekraqyq.cloudfront.net/assets/icon-control-cbd38af5c0f5d6695fa8da2c9ede1be2.png) no-repeat;
  display: block;
  height: 13px;
  width: 12px;
}
/* line 615, ../../app/assets/stylesheets/course.css.scss */
.toolbar .controls li a.close {
  background-image: url(//d13jv82ekraqyq.cloudfront.net/assets/icon-close-9701c5138ee5a046693f75cdf4136826.png);
}
/* line 621, ../../app/assets/stylesheets/course.css.scss */
.toolbar .title {
  color: #000;
  display: block;
  font: 1.3em "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 30px;
  text-align: center;
  text-shadow: 0 1px 0 #fff;
}
/* line 629, ../../app/assets/stylesheets/course.css.scss */
.toolbar .title-console {
  position: relative;
}
/* line 631, ../../app/assets/stylesheets/course.css.scss */
.toolbar .title-console:before {
  background: url(//d13jv82ekraqyq.cloudfront.net/assets/icon-home-cf0380418397eacff4a254d99291b73d.png) no-repeat;
  content: '';
  height: 15px;
  position: absolute;
  left: -22px;
  top: 0;
  width: 13px;
}

/* line 643, ../../app/assets/stylesheets/course.css.scss */
#file-browser {
  float: left;
  width: 70%;
}
/* line 646, ../../app/assets/stylesheets/course.css.scss */
#file-browser .file-browser {
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  -o-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  padding: 0;
}
/* line 650, ../../app/assets/stylesheets/course.css.scss */
#file-browser .toolbar {
  border-bottom: 1px solid #A7A7A7;
  margin: 0;
  width: 100%;
}
/* line 655, ../../app/assets/stylesheets/course.css.scss */
#file-browser .directories {
  background: #fff;
  height: 200px;
  margin-left: 1px;
  width: 100%;
}
/* line 661, ../../app/assets/stylesheets/course.css.scss */
#file-browser .directory {
  background: #fff;
  border-top: 0;
  height: 100%;
  width: 33.3333333%;
}
/* line 666, ../../app/assets/stylesheets/course.css.scss */
#file-browser .directory:first-child {
  background: #E3E3E3;
}
/* line 669, ../../app/assets/stylesheets/course.css.scss */
#file-browser .directory li a {
  padding-left: 7px;
}
/* line 671, ../../app/assets/stylesheets/course.css.scss */
#file-browser .directory li a.modified:before {
  color: #666;
  content: 'M';
  font: 0.6em "OpenSansBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* line 676, ../../app/assets/stylesheets/course.css.scss */
#file-browser .directory li a.added:before {
  color: green;
  content: 'A';
  font: 0.6em "OpenSansBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* line 681, ../../app/assets/stylesheets/course.css.scss */
#file-browser .directory li a.deleted:before {
  color: red;
  content: 'D';
  font: 0.6em "OpenSansBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* line 686, ../../app/assets/stylesheets/course.css.scss */
#file-browser .directory li a.untracked:before {
  color: #333;
  content: 'Q';
  font: 0.6em "OpenSansBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* line 692, ../../app/assets/stylesheets/course.css.scss */
#file-browser .directory .selected {
  background: none;
  color: #444;
}
/* line 696, ../../app/assets/stylesheets/course.css.scss */
#file-browser .directory a:hover {
  background: none;
  cursor: default;
}
/* line 700, ../../app/assets/stylesheets/course.css.scss */
#file-browser .directory .folder {
  background: url(//d13jv82ekraqyq.cloudfront.net/assets/icon-arrow-right-d4318610d8e2441b6205726010c8ad2d.png) 96% 11px no-repeat, url(//d13jv82ekraqyq.cloudfront.net/assets/icon-folder-1ff0921f2a28b221ae686087787f1415.png) 7px 8px no-repeat;
  padding-left: 30px;
}
/* line 703, ../../app/assets/stylesheets/course.css.scss */
#file-browser .directory .folder:hover {
  cursor: pointer;
  background: url(//d13jv82ekraqyq.cloudfront.net/assets/icon-arrow-right-d4318610d8e2441b6205726010c8ad2d.png) 96% 11px no-repeat, url(//d13jv82ekraqyq.cloudfront.net/assets/icon-folder-1ff0921f2a28b221ae686087787f1415.png) 7px 8px no-repeat;
}
/* line 707, ../../app/assets/stylesheets/course.css.scss */
#file-browser .directory .folder.selected {
  padding-left: 0;
  -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3);
  -moz-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3);
  -o-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.3);
  background-color: #3983be;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3983be), to(#316b9b));
  background-image: -webkit-linear-gradient(top, #3983be, #316b9b);
  background-image: -moz-linear-gradient(top, #3983be, #316b9b);
  background-image: -ms-linear-gradient(top, #3983be, #316b9b);
  background-image: -o-linear-gradient(top, #3983be, #316b9b);
  background-image: linear-gradient(top, #3983be, #316b9b);
  border: 1px solid #255075;
  border-left: 0;
  border-right: 0;
  color: #fff;
}
/* line 715, ../../app/assets/stylesheets/course.css.scss */
#file-browser .directory .folder.selected span {
  background: url(//d13jv82ekraqyq.cloudfront.net/assets/icon-folder-1ff0921f2a28b221ae686087787f1415.png) 7px 3px no-repeat;
  padding-left: 30px;
}

/* line 723, ../../app/assets/stylesheets/course.css.scss */
#terms {
  background: #3579af url(//d13jv82ekraqyq.cloudfront.net/assets/bg-terms-octocat-992475c1d45c413a00492b17924d53ff.png) 98% 4px no-repeat;
  border-radius: 6px;
  border: 1px solid #2E6C9F;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  float: right;
  margin-bottom: 20px;
  min-height: 210px;
  padding: 5px 10px 15px;
  width: 25%;
}
/* line 733, ../../app/assets/stylesheets/course.css.scss */
#terms h3 {
  border-bottom: 1px solid #6091B9;
  color: #fff;
  font: 1.4em "OpenSansBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 0 0 7px;
  text-align: center;
  width: 75%;
}
/* line 742, ../../app/assets/stylesheets/course.css.scss */
#terms #resource-group p {
  color: #fff;
  font: 1.3em/1.5em "OpenSansRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 10px 0 5px;
  width: 90%;
}
/* line 747, ../../app/assets/stylesheets/course.css.scss */
#terms #resource-group p strong {
  color: #89AAC3;
  display: block;
  font: bold 1.1em "OpenSansBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0 0 3px;
}
/* line 753, ../../app/assets/stylesheets/course.css.scss */
#terms #resource-group p code {
  background: #3269a0;
  border-radius: 2px;
  color: #FFF;
  font: 0.9em Monaco, Courier, font-monospace;
  padding: 2px 4px;
}
/* line 760, ../../app/assets/stylesheets/course.css.scss */
#terms #resource-group p a {
  color: #bccfdd;
}
/* line 762, ../../app/assets/stylesheets/course.css.scss */
#terms #resource-group p a:hover {
  text-decoration: underline;
}

/* line 774, ../../app/assets/stylesheets/course.css.scss */
#sidebar {
  display: none;
}

/* line 782, ../../app/assets/stylesheets/course.css.scss */
footer {
  -webkit-transition: opacity 0.6s ease-in-out;
  -moz-transition: opacity 0.6s ease-in-out;
  -ms-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  min-height: 150px;
  opacity: 1;
}
/* line 786, ../../app/assets/stylesheets/course.css.scss */
footer.inner {
  padding-bottom: 40px;
}
/* line 789, ../../app/assets/stylesheets/course.css.scss */
.reveal footer {
  opacity: 0;
}
/* line 792, ../../app/assets/stylesheets/course.css.scss */
footer .support {
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  margin: 4.5em auto 0;
  text-align: center;
  width: 20%;
}
/* line 799, ../../app/assets/stylesheets/course.css.scss */
footer .support a {
  color: #999;
  display: inline-block;
  font-size: 1.3em;
  font-weight: bold;
  margin: 0 auto;
  padding: 5px 5px 5px 35px;
  position: relative;
}
/* line 807, ../../app/assets/stylesheets/course.css.scss */
footer .support a:before {
  background: url(//d13jv82ekraqyq.cloudfront.net/assets/icon-support-f2e4c985f7f5a5bb5bcc057910388e28.png) 0 center no-repeat;
  content: '';
  display: block;
  height: 20px;
  left: 8px;
  position: absolute;
  top: 4px;
  width: 20px;
}
/* line 817, ../../app/assets/stylesheets/course.css.scss */
footer .support a:hover {
  color: #666;
  border-color: #cbcbcb;
}
/* line 823, ../../app/assets/stylesheets/course.css.scss */
footer .credits {
  position: relative;
}
/* line 825, ../../app/assets/stylesheets/course.css.scss */
footer .credits a {
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  -webkit-backface-visibility: hidden;
  display: block;
  height: 77px;
  opacity: 0.4;
  position: absolute;
  top: 0;
}
/* line 833, ../../app/assets/stylesheets/course.css.scss */
footer .credits a:hover {
  opacity: 0.6;
}
/* line 837, ../../app/assets/stylesheets/course.css.scss */
footer .credits .codeschool {
  background: url(//d13jv82ekraqyq.cloudfront.net/assets/logo-codeschool-footer-720af602b8823cf152fafd83e3293aac.png) no-repeat;
  left: 0;
  width: 192px;
}
/* line 842, ../../app/assets/stylesheets/course.css.scss */
footer .credits .github {
  background: url(//d13jv82ekraqyq.cloudfront.net/assets/logo-github-footer-3ab916a3190f9ad63418ae5a1608c519.png) no-repeat;
  background-size: 169px 77px;
  right: 0;
  width: 169px;
}
/* line 849, ../../app/assets/stylesheets/course.css.scss */
footer ul {
  margin: 0 auto;
  padding: 25px 0 0;
  width: 502px;
}
/* line 854, ../../app/assets/stylesheets/course.css.scss */
footer ul li {
  float: left;
}
/* line 856, ../../app/assets/stylesheets/course.css.scss */
footer ul li a {
  color: #4183c4;
  display: block;
}
/* line 859, ../../app/assets/stylesheets/course.css.scss */
footer ul li a.share {
  -webkit-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  -webkit-backface-visibility: hidden;
  background: #EDEDED;
  border: 1px solid #D8D8D8;
  border-radius: 20px;
  font: 1.3em "OpenSansBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 5px 0;
  position: relative;
  width: 230px;
}
/* line 868, ../../app/assets/stylesheets/course.css.scss */
footer ul li a.share:hover {
  background: #e8e8e8;
}
/* line 871, ../../app/assets/stylesheets/course.css.scss */
footer ul li a.share img {
  position: absolute;
  top: -18px;
}
/* line 875, ../../app/assets/stylesheets/course.css.scss */
footer ul li a.share.share-facebook {
  padding-left: 18px;
}
/* line 877, ../../app/assets/stylesheets/course.css.scss */
footer ul li a.share.share-facebook img {
  right: -2px;
}
/* line 881, ../../app/assets/stylesheets/course.css.scss */
footer ul li a.share.share-twitter {
  padding-left: 80px;
  width: 170px;
}
/* line 884, ../../app/assets/stylesheets/course.css.scss */
footer ul li a.share.share-twitter img {
  left: -2px;
}

/* line 902, ../../app/assets/stylesheets/course.css.scss */
.ruby .comment,
.javascript .comment,
.html .comment,
.html .doctype,
.css .comment {
  color: #999;
}

/* line 908, ../../app/assets/stylesheets/course.css.scss */
.ruby .symbol,
.css .selectors,
.ruby .brackets,
.javascript .brackets {
  color: #52666f;
}

/* line 914, ../../app/assets/stylesheets/course.css.scss */
.ruby .string,
.javascript .string,
.html .string,
.css .urls {
  color: #668025;
}

/* line 920, ../../app/assets/stylesheets/course.css.scss */
.ruby .keywords,
.javascript .keywords,
.html .tag,
.css .properties {
  color: #9e6501;
}

/* line 928, ../../app/assets/stylesheets/course.css.scss */
.home {
  margin-top: 30px;
}
/* line 930, ../../app/assets/stylesheets/course.css.scss */
.home .content {
  margin-top: 10px;
  padding-bottom: 100px;
}
/* line 934, ../../app/assets/stylesheets/course.css.scss */
.home .intro {
  min-height: 199px;
  padding: 0 0 70px;
  position: relative;
}
/* line 939, ../../app/assets/stylesheets/course.css.scss */
.home h2 {
  font: 6em "OpenSansLight", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-bottom: 15px;
  text-align: center;
}
/* line 943, ../../app/assets/stylesheets/course.css.scss */
.home h2:before {
  background: none;
}
/* line 947, ../../app/assets/stylesheets/course.css.scss */
.home p {
  font-size: 1.6em;
  line-height: 1.6;
}
/* line 950, ../../app/assets/stylesheets/course.css.scss */
.home p a:hover {
  text-decoration: underline;
}
/* line 954, ../../app/assets/stylesheets/course.css.scss */
.home a {
  color: #4183c4;
}
/* line 957, ../../app/assets/stylesheets/course.css.scss */
.home .share-block {
  bottom: 20px;
  left: 16%;
  position: absolute;
}
/* line 962, ../../app/assets/stylesheets/course.css.scss */
.home .share-block li {
  float: left;
  margin-right: 15px;
}
/* line 965, ../../app/assets/stylesheets/course.css.scss */
.home .share-block li a {
  -webkit-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  -webkit-backface-visibility: hidden;
  background: #EDEDED;
  border: 1px solid #D8D8D8;
  border-radius: 20px;
  display: block;
  font: 1.3em "OpenSansBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 5px 0;
  position: relative;
  width: 230px;
}
/* line 975, ../../app/assets/stylesheets/course.css.scss */
.home .share-block li a:hover {
  background: #e8e8e8;
}
/* line 978, ../../app/assets/stylesheets/course.css.scss */
.home .share-block li a img {
  position: absolute;
  top: -18px;
}
/* line 982, ../../app/assets/stylesheets/course.css.scss */
.home .share-block li a.share-facebook {
  padding-left: 18px;
}
/* line 984, ../../app/assets/stylesheets/course.css.scss */
.home .share-block li a.share-facebook img {
  right: -3px;
}
/* line 988, ../../app/assets/stylesheets/course.css.scss */
.home .share-block li a.share-twitter {
  padding-left: 80px;
  width: 170px;
}
/* line 991, ../../app/assets/stylesheets/course.css.scss */
.home .share-block li a.share-twitter img {
  left: -3px;
}
/* line 998, ../../app/assets/stylesheets/course.css.scss */
.home .share-facebook {
  background: url(//d13jv82ekraqyq.cloudfront.net/assets/icon-facebook-e6c5c3771571b8ebc7a2bb65ac59ed9b.png) no-repeat;
}
/* line 1001, ../../app/assets/stylesheets/course.css.scss */
.home .share-twitter {
  background: url(//d13jv82ekraqyq.cloudfront.net/assets/icon-twitter-dc403620a9d7a8d70180a6f86c68e41b.png) no-repeat;
}
/* line 1004, ../../app/assets/stylesheets/course.css.scss */
.home .upcoming {
  background-color: #3b84c0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3b84c0), to(#3983bd));
  background-image: -webkit-linear-gradient(top, #3b84c0, #3983bd);
  background-image: -moz-linear-gradient(top, #3b84c0, #3983bd);
  background-image: -ms-linear-gradient(top, #3b84c0, #3983bd);
  background-image: -o-linear-gradient(top, #3b84c0, #3983bd);
  background-image: linear-gradient(top, #3b84c0, #3983bd);
  border-top: 1px solid #26597F;
  color: #FFF;
  margin: 20px 0;
  padding: 40px 0;
}
/* line 1010, ../../app/assets/stylesheets/course.css.scss */
.home .upcoming h3 {
  font: 2.6em "OpenSansBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0 0 5px;
}
/* line 1014, ../../app/assets/stylesheets/course.css.scss */
.home .upcoming .promotion-block {
  margin: 0 auto;
  width: 50%;
}
/* line 1017, ../../app/assets/stylesheets/course.css.scss */
.home .upcoming .promotion-block div {
  display: inline-block;
  margin: 0 0 0 1em;
  width: 75%;
}
/* line 1022, ../../app/assets/stylesheets/course.css.scss */
.home .upcoming .promotion-block p {
  width: 100%;
}
/* line 1024, ../../app/assets/stylesheets/course.css.scss */
.home .upcoming .promotion-block p + p {
  margin: 15px 0 8px 0;
}
/* line 1028, ../../app/assets/stylesheets/course.css.scss */
.home .upcoming .promotion-block img {
  display: inline-block;
  position: relative;
  top: -42px;
}
/* line 1035, ../../app/assets/stylesheets/course.css.scss */
.home .upcoming form {
  margin: 30px auto 20px;
  text-align: center;
}
/* line 1038, ../../app/assets/stylesheets/course.css.scss */
.home .upcoming form input[type="email"] {
  background: #FFF;
  border: 4px solid #EEE;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.45);
  font: 1.6em "OpenSansRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-right: 10px;
  padding: 8px;
  width: 40%;
}
/* line 1046, ../../app/assets/stylesheets/course.css.scss */
.home .upcoming form input[type="email"]:focus {
  outline: 0;
}
/* line 1050, ../../app/assets/stylesheets/course.css.scss */
.home .upcoming form input[type="submit"] {
  background-color: #d98745;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d98745), to(#bd6a3a));
  background-image: -webkit-linear-gradient(top, #d98745, #bd6a3a);
  background-image: -moz-linear-gradient(top, #d98745, #bd6a3a);
  background-image: -ms-linear-gradient(top, #d98745, #bd6a3a);
  background-image: -o-linear-gradient(top, #d98745, #bd6a3a);
  background-image: linear-gradient(top, #d98745, #bd6a3a);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-backface-visibility: hidden;
  border: 1px solid #A35C2C;
  border-radius: 3px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.45), 0 1px 3px rgba(0, 0, 0, 0.45);
  color: #4A2914;
  cursor: pointer;
  display: inline;
  font: 1.8em "OpenSansBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 11px 40px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}
/* line 1062, ../../app/assets/stylesheets/course.css.scss */
.home .upcoming form input[type="submit"]:hover {
  background-color: #fc9d4f;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fc9d4f), to(#bd6a3a));
  background-image: -webkit-linear-gradient(top, #fc9d4f, #bd6a3a);
  background-image: -moz-linear-gradient(top, #fc9d4f, #bd6a3a);
  background-image: -ms-linear-gradient(top, #fc9d4f, #bd6a3a);
  background-image: -o-linear-gradient(top, #fc9d4f, #bd6a3a);
  background-image: linear-gradient(top, #fc9d4f, #bd6a3a);
}
/* line 1069, ../../app/assets/stylesheets/course.css.scss */
.home .sub-content {
  max-width: 1100px;
}
/* line 1072, ../../app/assets/stylesheets/course.css.scss */
.home .sub-content h4 {
  font: 2.4em "OpenSansBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0 0 10px;
  padding-left: 35px;
}
@media screen and (max-width: 1090px) {
  /* line 1072, ../../app/assets/stylesheets/course.css.scss */
  .home .sub-content h4 {
    font-size: 2.2em;
  }
}
@media screen and (max-width: 960px) {
  /* line 1072, ../../app/assets/stylesheets/course.css.scss */
  .home .sub-content h4 {
    font-size: 2em;
  }
}
/* line 1083, ../../app/assets/stylesheets/course.css.scss */
.home .sub-content h5 {
  font: 2.2em "OpenSansLight", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 20px 0;
}
/* line 1087, ../../app/assets/stylesheets/course.css.scss */
.home .sub-content p {
  font-size: 1.6em;
  width: 100%;
}
/* line 1090, ../../app/assets/stylesheets/course.css.scss */
.home .sub-content p:last-child {
  padding-top: 30px;
}
/* line 1095, ../../app/assets/stylesheets/course.css.scss */
.home .github {
  float: left;
  width: 45%;
}
@media screen and (max-width: 1090px) {
  /* line 1098, ../../app/assets/stylesheets/course.css.scss */
  .home .github h4 {
    background-position-y: 3px;
  }
}
@media screen and (max-width: 960px) {
  /* line 1098, ../../app/assets/stylesheets/course.css.scss */
  .home .github h4 {
    background-position-y: 1px;
  }
}
/* line 1106, ../../app/assets/stylesheets/course.css.scss */
.home .github .resources {
  margin-bottom: 20px;
}
/* line 1109, ../../app/assets/stylesheets/course.css.scss */
.home .github .resources li {
  font: 1.6em "OpenSansRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.8em;
}
/* line 1112, ../../app/assets/stylesheets/course.css.scss */
.home .github .resources li a {
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  -webkit-backface-visibility: hidden;
  border-top: 1px solid #D8D8D8;
  display: block;
  padding: 8px 15px;
}
/* line 1117, ../../app/assets/stylesheets/course.css.scss */
.home .github .resources li a:hover {
  background: #EDEDED;
}
/* line 1121, ../../app/assets/stylesheets/course.css.scss */
.home .github .resources li:last-child a {
  border-bottom: 1px solid #D8D8D8;
}
/* line 1126, ../../app/assets/stylesheets/course.css.scss */
.home .codeschool {
  float: right;
  width: 45%;
}
@media screen and (max-width: 1090px) {
  /* line 1129, ../../app/assets/stylesheets/course.css.scss */
  .home .codeschool h4 {
    background-position-y: 3px;
  }
}
@media screen and (max-width: 960px) {
  /* line 1129, ../../app/assets/stylesheets/course.css.scss */
  .home .codeschool h4 {
    background-position-y: 1px;
  }
}
/* line 1137, ../../app/assets/stylesheets/course.css.scss */
.home .codeschool form {
  margin: 20px 0 0;
}
/* line 1139, ../../app/assets/stylesheets/course.css.scss */
.home .codeschool form input[type="text"] {
  border: 1px solid #D8D8D8;
  border-radius: 4px;
  font: 1.4em "OpenSansRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 5px;
  width: 75%;
}
/* line 1145, ../../app/assets/stylesheets/course.css.scss */
.home .codeschool form input[type="text"]:focus {
  border-color: #4183c4;
  outline: none;
}
/* line 1150, ../../app/assets/stylesheets/course.css.scss */
.home .codeschool form input[type="submit"] {
  background-color: #f2f2f2;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#ededed));
  background-image: -webkit-linear-gradient(top, #f2f2f2, #ededed);
  background-image: -moz-linear-gradient(top, #f2f2f2, #ededed);
  background-image: -ms-linear-gradient(top, #f2f2f2, #ededed);
  background-image: -o-linear-gradient(top, #f2f2f2, #ededed);
  background-image: linear-gradient(top, #f2f2f2, #ededed);
  border: 1px solid #CCC;
  border-radius: 4px;
  cursor: pointer;
  font: 1.4em "OpenSansBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 5px 0;
  text-shadow: 0 1px 0 #FFF;
  width: 20%;
}
/* line 1159, ../../app/assets/stylesheets/course.css.scss */
.home .codeschool form input[type="submit"]:hover {
  background-color: white;
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#ededed));
  background-image: -webkit-linear-gradient(top, white, #ededed);
  background-image: -moz-linear-gradient(top, white, #ededed);
  background-image: -ms-linear-gradient(top, white, #ededed);
  background-image: -o-linear-gradient(top, white, #ededed);
  background-image: linear-gradient(top, white, #ededed);
  text-decoration: none;
}
/* line 1166, ../../app/assets/stylesheets/course.css.scss */
.home .courses {
  margin-bottom: 20px;
}
/* line 1169, ../../app/assets/stylesheets/course.css.scss */
.home .courses ul li a {
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  -webkit-backface-visibility: hidden;
  border-top: 1px solid #D8D8D8;
  display: block;
  font: 1.6em "OpenSansRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 57px;
  padding: 5px 0 5px 70px;
  position: relative;
}
/* line 1177, ../../app/assets/stylesheets/course.css.scss */
.home .courses ul li a:hover {
  background: #EDEDED;
}
/* line 1181, ../../app/assets/stylesheets/course.css.scss */
.home .courses ul li:last-child a {
  border-bottom: 1px solid #D8D8D8;
}
/* line 1184, ../../app/assets/stylesheets/course.css.scss */
.home .courses ul li em {
  color: #767676;
  font-family: "OpenSansRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* line 1188, ../../app/assets/stylesheets/course.css.scss */
.home .courses ul li img {
  left: 0;
  position: absolute;
  top: 5px;
}

/* line 1202, ../../app/assets/stylesheets/course.css.scss */
.github-explain p {
  margin: 0 auto 20px;
  width: 70%;
  padding: 0;
}
/* line 1209, ../../app/assets/stylesheets/course.css.scss */
.github-explain.container h2 {
  text-align: center;
  padding: 0;
}
/* line 1215, ../../app/assets/stylesheets/course.css.scss */
.github-explain .links {
  width: 295px;
  margin: 40px auto 0;
}
/* line 1218, ../../app/assets/stylesheets/course.css.scss */
.github-explain .links p {
  margin: 0;
  width: 100%;
  text-align: center;
}
/* line 1222, ../../app/assets/stylesheets/course.css.scss */
.github-explain .links p a {
  font-size: .7em;
}
/* line 1225, ../../app/assets/stylesheets/course.css.scss */
.github-explain .links p .button {
  background-color: #4183c4;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#4183c4), to(#3c78b5));
  background-image: -webkit-linear-gradient(top, #4183c4, #3c78b5);
  background-image: -moz-linear-gradient(top, #4183c4, #3c78b5);
  background-image: -ms-linear-gradient(top, #4183c4, #3c78b5);
  background-image: -o-linear-gradient(top, #4183c4, #3c78b5);
  background-image: linear-gradient(top, #4183c4, #3c78b5);
  border: 1px solid #2a5b8d;
  border-radius: 4px;
  color: #fff;
  font-family: "OpenSansBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1em;
  padding: 12px 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  display: inline-block;
  text-align: center;
  margin-bottom: 20px;
}
/* line 1237, ../../app/assets/stylesheets/course.css.scss */
.github-explain .links p .button:hover {
  background-color: #448fd8;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#448fd8), to(#4183c4));
  background-image: -webkit-linear-gradient(top, #448fd8, #4183c4);
  background-image: -moz-linear-gradient(top, #448fd8, #4183c4);
  background-image: -ms-linear-gradient(top, #448fd8, #4183c4);
  background-image: -o-linear-gradient(top, #448fd8, #4183c4);
  background-image: linear-gradient(top, #448fd8, #4183c4);
  text-decoration: none;
}

/* line 1252, ../../app/assets/stylesheets/course.css.scss */
#facebox {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  text-align: left;
}
/* line 1258, ../../app/assets/stylesheets/course.css.scss */
#facebox .popup {
  position: relative;
}
/* line 1260, ../../app/assets/stylesheets/course.css.scss */
#facebox .popup .close {
  display: none;
}
/* line 1264, ../../app/assets/stylesheets/course.css.scss */
#facebox .content {
  display: table;
  margin: 0;
}

/* line 1269, ../../app/assets/stylesheets/course.css.scss */
#facebox_overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
}

/* line 1276, ../../app/assets/stylesheets/course.css.scss */
.facebox_hide {
  z-index: -100;
}

/* line 1279, ../../app/assets/stylesheets/course.css.scss */
.facebox_overlayBG {
  background-color: #8a897c;
  z-index: 99;
}

/* line 1286, ../../app/assets/stylesheets/course.css.scss */
.success {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  -o-box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  background: #3b3b37;
  background: rgba(22, 22, 22, 0.9);
  padding: 15px 15px 57px;
  position: relative;
  width: 500px;
}
/* line 1294, ../../app/assets/stylesheets/course.css.scss */
.success h2 {
  border-bottom: 1px solid #000;
  border-color: rgba(0, 0, 0, 0.5);
  color: #4183c4;
  font: normal 3em/1.1 "OpenSansRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-bottom: 14px;
  padding-bottom: 5px;
  text-transform: uppercase;
}
/* line 1303, ../../app/assets/stylesheets/course.css.scss */
.success h3 {
  color: #fff;
  font: bold 1.5em/1.3em "OpenSansRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0 0 10px;
  text-shadow: none;
  text-transform: none;
}
/* line 1310, ../../app/assets/stylesheets/course.css.scss */
.success p {
  color: #4183c4;
  font-size: 1.4em;
  margin: 0 0 10px;
}
/* line 1315, ../../app/assets/stylesheets/course.css.scss */
.success #next {
  bottom: 10px;
  left: 15px;
  position: absolute;
  right: 15px;
}
/* line 1324, ../../app/assets/stylesheets/course.css.scss */
.success .success-close {
  background: url(//d13jv82ekraqyq.cloudfront.net/assets/close.png) no-repeat;
  display: block;
  height: 26px;
  position: absolute;
  right: 5px;
  top: 5px;
  width: 27px;
}
/* line 1334, ../../app/assets/stylesheets/course.css.scss */
.success .success-close:hover, .success .success-close:focus {
  opacity: 0.75;
}

/* line 1344, ../../app/assets/stylesheets/course.css.scss */
#codeschool.reveal {
  top: -35px;
}

/* line 1349, ../../app/assets/stylesheets/course.css.scss */
#challenge #challenge-objective.reveal,
#challenge #challenge-panels.reveal,
#sidebar-content.reveal {
  opacity: 0;
}

@media screen and (max-width: 1020px) {
  /* line 1359, ../../app/assets/stylesheets/course.css.scss */
  footer ul {
    margin: 0 auto;
    padding: 10px 0 0;
    width: 220px;
  }
  /* line 1363, ../../app/assets/stylesheets/course.css.scss */
  footer ul li {
    float: none;
    margin: 0 0 25px;
  }
  /* line 1368, ../../app/assets/stylesheets/course.css.scss */
  footer .support {
    margin-top: 2.5em;
  }
}
@media screen and (max-width: 970px) {
  /* line 1374, ../../app/assets/stylesheets/course.css.scss */
  #file-browser {
    float: none;
    width: inherit;
  }

  /* line 1378, ../../app/assets/stylesheets/course.css.scss */
  #terms {
    float: none;
    min-height: 175px;
    width: inherit;
  }
  /* line 1382, ../../app/assets/stylesheets/course.css.scss */
  #terms h3 {
    font-size: 1.8em;
    width: 90%;
  }
  /* line 1387, ../../app/assets/stylesheets/course.css.scss */
  #terms #resource-group p {
    font-size: 1.3em;
    padding-left: 20px;
    width: 50%;
  }
  /* line 1391, ../../app/assets/stylesheets/course.css.scss */
  #terms #resource-group p strong {
    font-size: 1.2em;
  }
}
/* line 1399, ../../app/assets/stylesheets/course.css.scss */
.cs-console {
  color: #5d5d5d;
  font: 16px/23px Monaco, Courier, font-monospace;
}
/* line 1402, ../../app/assets/stylesheets/course.css.scss */
.cs-console .console-cursor {
  background: #434343;
}
/* line 1405, ../../app/assets/stylesheets/course.css.scss */
.cs-console .console-message {
  color: #b6cfe8;
}
/* line 1408, ../../app/assets/stylesheets/course.css.scss */
.cs-console .console-success-message {
  color: #FFF;
}
/* line 1411, ../../app/assets/stylesheets/course.css.scss */
.cs-console .console-error-message {
  color: #4183c4;
}

/* line 1416, ../../app/assets/stylesheets/course.css.scss */
.cs-console-height {
  height: 290px;
  padding: 5px;
}

/* line 1429, ../../app/assets/stylesheets/course.css.scss */
.mbm {
  margin-bottom: 20px;
}

/* line 1443, ../../app/assets/stylesheets/course.css.scss */
.group::after, #codeschool .progress-bar::after, #challenge #challenge-objective::after, #challenge #challenge-objective header::after, .codeschool-banner::after, .resource-group-panel::after, .toolbar::after, .toolbar .controls::after, footer ul::after, .home .share-block::after, .home .sub-content::after, .success .success-message::after, .bucket::after {
  clear: both;
  content: '';
  display: table;
}

/* line 1463, ../../app/assets/stylesheets/course.css.scss */
.bucket-content {
  display: table-cell;
  width: 10000px;
}

/* line 1469, ../../app/assets/stylesheets/course.css.scss */
.bucket-media {
  float: left;
  margin-right: 30px;
}
/* line 1472, ../../app/assets/stylesheets/course.css.scss */
.bucket-media > img {
  display: block;
}

/* line 1486, ../../app/assets/stylesheets/course.css.scss */
.home .btn {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-backface-visibility: hidden;
  background: #D98745;
  border-radius: 3px;
  border: 1px solid #A35C2C;
  color: #4A2914;
  cursor: pointer;
  display: block;
  font: 1em "OpenSansBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 8px 0;
  text-align: center;
}
/* line 1497, ../../app/assets/stylesheets/course.css.scss */
.home .btn:hover {
  background: #c36d28;
  text-decoration: none;
}
/* line 1502, ../../app/assets/stylesheets/course.css.scss */
.home .button-sign-up {
  background: #3c78b5;
  border: 1px solid #2a5b8d;
  border-radius: 4px;
  color: #fff;
  font-family: "OpenSansBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 12px 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
/* line 1510, ../../app/assets/stylesheets/course.css.scss */
.home .button-sign-up:hover {
  background: #2f5f8f;
  text-decoration: none;
}
/* line 1515, ../../app/assets/stylesheets/course.css.scss */
.home .link-invert {
  color: black;
  font: 1em "OpenSansBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* line 1519, ../../app/assets/stylesheets/course.css.scss */
.home .cell {
  margin: 0 auto;
  max-width: 730px;
  width: 90%;
}
/* line 1523, ../../app/assets/stylesheets/course.css.scss */
.home .cell h4 {
  font: 2.2em "OpenSansBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0 0 10px;
  padding-left: 35px;
  padding-bottom: 10px;
}
/* line 2, ../../vendor/gems/code_path_course/app/assets/stylesheets/file_browser.css.scss */
.file-browser {
  padding: 15px;
  margin-bottom: 40px;
}
/* line 5, ../../vendor/gems/code_path_course/app/assets/stylesheets/file_browser.css.scss */
.file-browser .directories {
  position: relative;
  overflow: hidden;
  width: 50%;
  height: 100px;
}
/* line 10, ../../vendor/gems/code_path_course/app/assets/stylesheets/file_browser.css.scss */
.file-browser .directories ol.directory {
  position: absolute;
  overflow-y: auto;
  overflow-x: hidden;
  width: 33.333333%;
  background-color: #fff;
  padding: 0;
  border: 1px solid #ccc;
}
/* line 18, ../../vendor/gems/code_path_course/app/assets/stylesheets/file_browser.css.scss */
.file-browser .directories ol.directory a {
  color: #444;
  font-size: 15px;
  font-family: sans-serif;
  display: block;
  padding: 5px;
}
/* line 25, ../../vendor/gems/code_path_course/app/assets/stylesheets/file_browser.css.scss */
.file-browser .directories ol.directory a:hover {
  background-color: #eee;
}
/* line 28, ../../vendor/gems/code_path_course/app/assets/stylesheets/file_browser.css.scss */
.file-browser .directories ol.directory a.selected {
  background-color: #aaa;
  color: #fff;
}
/* line 32, ../../vendor/gems/code_path_course/app/assets/stylesheets/file_browser.css.scss */
.file-browser .directories ol.directory .folder {
  font-weight: bold;
  color: #316b9b;
}
/* line 36, ../../vendor/gems/code_path_course/app/assets/stylesheets/file_browser.css.scss */
.file-browser .directories ol.directory a.selected.folder {
  background-color: #316b9b;
  color: #fff;
}
/* line 41, ../../vendor/gems/code_path_course/app/assets/stylesheets/file_browser.css.scss */
.file-browser .directories ol.selected-directory {
  background-color: #ddd;
}
