@charset "UTF-8";
/**
* Prints classes for supported or unsupported features
* ---
* @access private
* ---
* @param {Bool}      $supports   - Whether to check for supported features or not
* @param {ArgList}   $features   - List of features
* ---
* @throws `$feature` is not a `string` for `modernizr`
*/
/**
* Prints classes for supported features
* ---
* @requires modernizr
* ---
* @access public
* ---
* @param {ArgList} $features   - List of features
* ---
* @example scss
* .my-selector { @include yep(opacity, csstransforms) { // ... } }
*/
/**
* Nope “alias”
* Prints classes for unsupported features and lack of JS
* ---
* @requires modernizr
* ---
* @access public
* ---
* @param {ArgList} $features - List of features
* ---
* @example scss
* .my-selector { @include nope(opacity, csstransforms) { // ... } }
*/
/*
	Name: blueidea
	Date: Oct 2013
	Description: A Pelican theme inspired by the default theme notmyidea
	Version: 1.0
	License: MIT <http://opensource.org/licenses/MIT>
	Licensed by: Smashing Media GmbH <http://www.smashingmagazine.com/>
	Original author: Enrique Ramírez <http://enrique-ramirez.com/>
	Customized by : Nassim Kacha <http://www.blueicefield.com/>
*/
/* Imports */
@import url("reset.css");
@import url("pygment.css");
@import url("typogrify.css");
@import url("simplegrid.css");
@import url(//fonts.googleapis.com/css?family=Yanone+Kaffeesatz&subset=latin);
/***** Global *****/
/* Body */
/* line 41, ../../../blueidea/static/sass/style.scss */
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* line 47, ../../../blueidea/static/sass/style.scss */
body {
  background-color: #f1f1f1;
  color: #000305;
  font-size: 1.5rem;
  font-family: 'Trebuchet MS', Trebuchet, 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  text-align: left;
}

/* Headings */
/* line 60, ../../../blueidea/static/sass/style.scss */
h1 {
  font-size: 3.2rem;
}

/* line 64, ../../../blueidea/static/sass/style.scss */
h2 {
  font-size: 2.6rem;
}

/* line 68, ../../../blueidea/static/sass/style.scss */
h3,
h4 {
  font-size: 2.2rem;
}

/* line 73, ../../../blueidea/static/sass/style.scss */
h5,
h6 {
  font-size: 1.8rem;
}

/* line 79, ../../../blueidea/static/sass/style.scss */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: .8em;
  font-family: 'Yanone Kaffeesatz', arial, serif;
}

/* line 86, ../../../blueidea/static/sass/style.scss */
h3, h4, h5, h6 {
  margin-top: .8em;
}

/* line 90, ../../../blueidea/static/sass/style.scss */
hr {
  border: 2px solid #EEEEEE;
}

/* Anchors */
/* line 96, ../../../blueidea/static/sass/style.scss */
a {
  outline: 0;
}
/* line 98, ../../../blueidea/static/sass/style.scss */
a img {
  border: 0px;
  text-decoration: none;
}
/* line 102, ../../../blueidea/static/sass/style.scss */
a:link, a:visited {
  color: #a4b847;
  padding: 0 1px;
  text-decoration: none;
}
/* line 107, ../../../blueidea/static/sass/style.scss */
a:hover, a:active {
  color: black;
  text-decoration: none;
}

/* Paragraphs */
/* line 115, ../../../blueidea/static/sass/style.scss */
.line-block, p {
  margin-top: 1em;
  margin-bottom: 1em;
}

/* line 120, ../../../blueidea/static/sass/style.scss */
strong, b {
  font-weight: bold;
}

/* line 124, ../../../blueidea/static/sass/style.scss */
em, i {
  font-style: italic;
}

/* Lists */
/* line 130, ../../../blueidea/static/sass/style.scss */
ul {
  list-style: outside disc;
  /*margin: 0em 0 0 1.5em;*/
}

/* line 135, ../../../blueidea/static/sass/style.scss */
ol {
  list-style: outside decimal;
  margin: 0em 0 0 1.5em;
}

/* line 140, ../../../blueidea/static/sass/style.scss */
li {
  margin-top: 0.5em;
}

/* line 144, ../../../blueidea/static/sass/style.scss */
.post-info {
  border-top: 1px solid;
  text-align: right;
}

/* line 149, ../../../blueidea/static/sass/style.scss */
.readmore {
  float: right;
}

/* line 153, ../../../blueidea/static/sass/style.scss */
dl {
  margin: 0 0 1.5em 0;
}

/* line 157, ../../../blueidea/static/sass/style.scss */
dt {
  font-weight: bold;
}

/* line 161, ../../../blueidea/static/sass/style.scss */
dd {
  margin-left: 1.5em;
}

/* line 165, ../../../blueidea/static/sass/style.scss */
pre {
  background-color: #eeeeee;
  padding: 10px;
  margin: 10px;
  overflow: auto;
}

/* Quotes */
/* line 174, ../../../blueidea/static/sass/style.scss */
blockquote {
  margin: 20px;
  font-style: italic;
}

/* line 181, ../../../blueidea/static/sass/style.scss */
.note {
  float: right;
  margin: 5px;
  font-size: 85%;
  max-width: 300px;
}

/* Tables */
/* line 190, ../../../blueidea/static/sass/style.scss */
table {
  margin: .5em auto 1.5em auto;
  width: 98%;
}

/* Thead */
/* line 198, ../../../blueidea/static/sass/style.scss */
thead th {
  padding: .5em .4em;
  text-align: left;
}

/* Tbody */
/* line 208, ../../../blueidea/static/sass/style.scss */
tbody td {
  padding: .5em .4em;
}

/* Tfoot */
/* HTML5 tags */
/* line 225, ../../../blueidea/static/sass/style.scss */
header, section, footer, aside, nav, article, figure {
  display: block;
}

/***** Layout *****/
/* line 231, ../../../blueidea/static/sass/style.scss */
.body {
  clear: both;
  margin: 0 auto;
  width: 950px;
}
@media screen and (min-width: 100px) and (max-width: 767px) {
  /* line 231, ../../../blueidea/static/sass/style.scss */
  .body {
    width: auto;
  }
}

/* line 240, ../../../blueidea/static/sass/style.scss */
img.right, figure.right {
  float: right;
  margin: 0 0 2em 2em;
}

/* line 245, ../../../blueidea/static/sass/style.scss */
img.left, figure.left {
  float: left;
  margin: 0 2em 2em 0;
}

/*
	Header
*****************/
/* line 254, ../../../blueidea/static/sass/style.scss */
#banner {
  margin: 0 auto;
  padding: 0;
}
/* line 257, ../../../blueidea/static/sass/style.scss */
#banner #submenu {
  -moz-border-radius-bottomleft: 5px;
  -webkit-border-bottom-left-radius: 5px;
  border-bottom-left-radius: 5px;
  -moz-border-radius-bottomright: 10px;
  -webkit-border-bottom-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fff;
  border: 0px;
  height: 25px;
  line-height: 20px;
  margin: -2.3em auto 2em auto;
  padding: 0px;
  text-align: center;
  width: 790px;
}
/* line 268, ../../../blueidea/static/sass/style.scss */
#banner #submenu ul {
  clear: both;
  list-style: none;
  margin: 0;
}
/* line 273, ../../../blueidea/static/sass/style.scss */
#banner #submenu li {
  float: left;
  display: inline;
  margin: 0;
}
/* line 278, ../../../blueidea/static/sass/style.scss */
#banner #submenu li a:link, #banner #submenu li a:visited {
  display: inline-block;
  font-size: small;
  font-weight: bold;
  height: 25px;
  padding: 0px 1.5em;
}
/* line 285, ../../../blueidea/static/sass/style.scss */
#banner #submenu li a:hover, #banner #submenu li a:active {
  background: #008db8;
  border-top: 1px solid #008db8;
  -moz-border-top: 1px solid #008db8;
  -webkit-border-top: 1px solid #008db8;
  color: #fff;
  text-decoration: none;
}
/* line 296, ../../../blueidea/static/sass/style.scss */
#banner #submenu .active a:link, #banner #submenu .active a:visited {
  background: #008db8;
  border-top: 1px solid #008db8;
  -moz-border-top: 1px solid #008db8;
  -webkit-border-top: 1px solid #008db8;
  color: #fff;
  text-decoration: none;
}
/* line 305, ../../../blueidea/static/sass/style.scss */
#banner #submenu li:first-child a {
  border-bottom-left-radius: 5px;
  -moz-border-bottom-left-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
}

/* Banner */
/* Title */
/* line 317, ../../../blueidea/static/sass/style.scss */
.title {
  font-size: 4.0rem;
  line-height: 0;
}
/* line 321, ../../../blueidea/static/sass/style.scss */
.title a:link, .title a:visited {
  color: colorGreen;
  font-weight: bold;
  margin: 0 0 .6em .2em;
  text-decoration: none;
}
/* line 327, ../../../blueidea/static/sass/style.scss */
.title a:hover, .title a:active {
  background: none;
  color: #075385;
  text-shadow: none;
}

/* line 335, ../../../blueidea/static/sass/style.scss */
.subtitle {
  font-size: 1.8rem;
  font-weight: normal;
  color: #111;
}
/* line 339, ../../../blueidea/static/sass/style.scss */
.subtitle a {
  color: #111;
}

/* Main Nav */
/* line 346, ../../../blueidea/static/sass/style.scss */
nav {
  color: white;
  background: #075385;
  padding: 0;
  margin-bottom: 1rem;
  text-align: center;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
/* line 353, ../../../blueidea/static/sass/style.scss */
nav ul {
  margin: 0 auto;
}
/* line 356, ../../../blueidea/static/sass/style.scss */
nav li {
  margin: 0;
}
/* line 360, ../../../blueidea/static/sass/style.scss */
nav a:link, nav a:visited {
  color: #fff;
  text-decoration: none;
}
/* line 364, ../../../blueidea/static/sass/style.scss */
nav a:hover, nav a:active {
  background: #06446d;
  color: #fff;
  text-shadow: none !important;
}
/* line 371, ../../../blueidea/static/sass/style.scss */
nav .active a:link, nav .active a:visited {
  background: #008db8;
  color: #fff;
  text-shadow: none !important;
}

/* Search form */
/* line 382, ../../../blueidea/static/sass/style.scss */
#search {
  float: right;
  width: 180px;
  z-index: 1;
}
/* line 387, ../../../blueidea/static/sass/style.scss */
#search input {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background: #272822 url("../images/icons/search.png") no-repeat 135px;
  border: none;
  color: #fff;
  float: right;
  height: 25px;
  margin-top: 8px;
  margin-right: 10px;
  padding-left: 10px;
  width: 160px;
  font-size: small;
}
/* line 399, ../../../blueidea/static/sass/style.scss */
#search input:focus {
  background: #272822;
  box-shadow: inset 0 0 5px #fff;
}

/* Submenu */
/*
	Featured
*****************/
/* line 412, ../../../blueidea/static/sass/style.scss */
#featured {
  background: #fff;
  margin-bottom: 1rem;
  margin-top: 1rem;
  overflow: hidden;
  padding: 20px;
}
/* line 418, ../../../blueidea/static/sass/style.scss */
#featured figure {
  border: 2px solid #eee;
  float: right;
  /*margin: 0.786em 2em 0 5em;*/
  width: 248px;
}
/* line 423, ../../../blueidea/static/sass/style.scss */
#featured figure img {
  display: block;
  float: right;
}
/* line 428, ../../../blueidea/static/sass/style.scss */
#featured h2 {
  color: #008db8;
  font-size: 1.714em;
  margin-bottom: 0.333em;
}
/* line 433, ../../../blueidea/static/sass/style.scss */
#featured h3 {
  font-size: 1.429em;
  margin-bottom: .5em;
}
/* line 437, ../../../blueidea/static/sass/style.scss */
#featured h3 a:link, #featured h3 a:visited {
  color: #000305;
  text-decoration: none;
}
/* line 441, ../../../blueidea/static/sass/style.scss */
#featured h3 a:hover, #featured h3 a:active {
  color: #fff;
}

/*
	Body
*****************/
/* line 452, ../../../blueidea/static/sass/style.scss */
.content {
  background-color: white;
  margin-top: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  padding: 1rem 3rem;
}

/* line 460, ../../../blueidea/static/sass/style.scss */
img.resized {
  height: 180px;
  width: 180px;
}

/* line 465, ../../../blueidea/static/sass/style.scss */
.green {
  color: colorGreen;
}

/* line 469, ../../../blueidea/static/sass/style.scss */
.minimumsize {
  min-width: 250px;
  min-height: 200px;
}

/*
	Extras
*****************/
/* line 478, ../../../blueidea/static/sass/style.scss */
#extras {
  -moz-border-radius-bottomleft: 10px;
  -webkit-border-bottom-left-radius: 10px;
  border-bottom-left-radius: 10px;
  -moz-border-radius-bottomright: 10px;
  -webkit-border-bottom-right-radius: 10px;
  border-bottom-right-radius: 10px;
  margin: 0 auto 0 auto;
  overflow: hidden;
  background: #075385;
  padding-bottom: 10px;
}
/* line 485, ../../../blueidea/static/sass/style.scss */
#extras ul {
  list-style: none;
  margin: 0;
}
/* line 489, ../../../blueidea/static/sass/style.scss */
#extras li {
  margin-top: 0;
}
/* line 492, ../../../blueidea/static/sass/style.scss */
#extras h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  padding: 0 3px;
}
/* line 499, ../../../blueidea/static/sass/style.scss */
#extras a:link, #extras a:visited {
  color: #fff;
  display: block;
  /*border-bottom: 1px solid #F4E3E3;*/
  text-decoration: none;
  padding: .3em .25em;
}
/* line 506, ../../../blueidea/static/sass/style.scss */
#extras a:hover, #extras a:active {
  background: #008db8;
  color: #fff;
}
/* line 511, ../../../blueidea/static/sass/style.scss */
#extras .partners {
  padding-right: 3rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
/* line 515, ../../../blueidea/static/sass/style.scss */
#extras .partners li {
  float: right;
  margin: 0 20px 0 0;
}
/* line 519, ../../../blueidea/static/sass/style.scss */
#extras .partners img {
  width: 80px;
  margin-right: 15px;
  margin-top: 10px;
}
/* line 525, ../../../blueidea/static/sass/style.scss */
#extras .social, #extras .contact {
  float: left;
  width: 225px;
  padding-left: 3rem;
  padding-bottom: 1rem;
  padding-top: 1rem;
  font-size: 1.4rem;
}
/* line 532, ../../../blueidea/static/sass/style.scss */
#extras .social li, #extras .contact li {
  float: left;
  margin: 0 20px 0 0;
  width: 185px;
}
/* line 538, ../../../blueidea/static/sass/style.scss */
#extras .recent-articles {
  font-size: 1.4rem;
  padding-right: 3rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
/* line 544, ../../../blueidea/static/sass/style.scss */
#extras div[class='social'] a {
  background-repeat: no-repeat;
  background-position: 3px 6px;
  padding-left: 25px;
}
/* line 549, ../../../blueidea/static/sass/style.scss */
#extras .social a {
  background-size: 18px;
}
/* line 551, ../../../blueidea/static/sass/style.scss */
#extras .social a[href*='facebook.com'] {
  background-image: url("../images/icons/facebook.png");
}
/* line 554, ../../../blueidea/static/sass/style.scss */
#extras .social a[href*='github.com'], #extras .social a[href*='git.io'] {
  background-image: url("../images/icons/github.png");
}
/* line 557, ../../../blueidea/static/sass/style.scss */
#extras .social a[href*='plus.google.com'], #extras .social a[href*='groups.google.com'] {
  background-image: url("../images/icons/google-plus.png");
}
/* line 560, ../../../blueidea/static/sass/style.scss */
#extras .social a[href*='last.fm'] {
  background-image: url("../images/icons/lastfm.png");
}

/*#extras li {border-bottom: 1px solid #fff;}*/
/* Blogroll */
/* Social */
/* Icons */
/* line 574, ../../../blueidea/static/sass/style.scss */
.social a[href*='lastfm.'] {
  background-image: url("../images/icons/lastfm.png");
}

/* line 579, ../../../blueidea/static/sass/style.scss */
#extras .social a[href*='linkedin.com'] {
  background-image: url("../images/icons/linkedin.png");
}
/* line 582, ../../../blueidea/static/sass/style.scss */
#extras .social a[type$='atom+xml'] {
  background-image: url("../images/icons/rss.png");
}

/* line 587, ../../../blueidea/static/sass/style.scss */
.social a[type$='rss+xml'] {
  background-image: url("../images/icons/rss.png");
}

/* line 592, ../../../blueidea/static/sass/style.scss */
#extras .social a[href*='twitter.com'] {
  background-image: url("../images/icons/twitter.png");
}
/* line 595, ../../../blueidea/static/sass/style.scss */
#extras .social a[href*='vimeo.com'] {
  background-image: url("../images/icons/vimeo.png");
}
/* line 598, ../../../blueidea/static/sass/style.scss */
#extras .social a[href*='youtube.com'] {
  background-image: url("../images/icons/youtube.png");
}
/* line 601, ../../../blueidea/static/sass/style.scss */
#extras .social a[href*='viadeo.com'] {
  background-image: url("../images/icons/viadeo.png");
}
/* line 604, ../../../blueidea/static/sass/style.scss */
#extras .social a[href*='gis.stackexchange.com'] {
  background-image: url("../images/icons/gisstackexchange.png");
}

/* line 609, ../../../blueidea/static/sass/style.scss */
.inline {
  display: inline;
}

/* line 613, ../../../blueidea/static/sass/style.scss */
.block {
  display: block;
}

/* line 618, ../../../blueidea/static/sass/style.scss */
.iconbox {
  border-right: 1px solid #eaeaea;
  /*margin-top: 20px;*/
  padding-bottom: 1rem;
  padding-top: 1rem;
}

/* line 624, ../../../blueidea/static/sass/style.scss */
.iconbox:last-child {
  border: medium none;
}

/* line 628, ../../../blueidea/static/sass/style.scss */
.grid-pad {
  padding-top: 0px;
}

/* line 632, ../../../blueidea/static/sass/style.scss */
.lang-display {
  float: right;
  margin: 8px 0 0 1rem;
}

/* line 637, ../../../blueidea/static/sass/style.scss */
[class*="col-"] {
  padding-right: 0px;
}

/* line 641, ../../../blueidea/static/sass/style.scss */
.blue-border {
  border: 1px inset #075385;
}

/*
	Footer
*****************/
/* line 651, ../../../blueidea/static/sass/style.scss */
#contentinfo {
  text-align: right;
  font-size: x-small;
}
/* line 654, ../../../blueidea/static/sass/style.scss */
#contentinfo a {
  font-weight: bold;
}

/***** Sections *****/
/* Blog */
/* line 662, ../../../blueidea/static/sass/style.scss */
.hentry {
  display: block;
  clear: both;
  border-bottom: 1px solid #eee;
  padding: 0.2rem 0 1.4rem 0;
}

/* line 669, ../../../blueidea/static/sass/style.scss */
li:last-child .hentry {
  border: 0;
  margin: 0;
}

/* line 674, ../../../blueidea/static/sass/style.scss */
.content > .hentry {
  border: 0;
  margin: 0;
  padding: 1em 0;
}

/* line 680, ../../../blueidea/static/sass/style.scss */
.hentry img {
  display: none;
}

/* line 684, ../../../blueidea/static/sass/style.scss */
.entry-title {
  margin-bottom: 20px;
}
/* line 687, ../../../blueidea/static/sass/style.scss */
.entry-title a:link {
  text-decoration: none;
  color: #333;
}
/* line 691, ../../../blueidea/static/sass/style.scss */
.entry-title a:visited {
  text-decoration: none;
  color: #333;
  background-color: #fff;
}

/* line 700, ../../../blueidea/static/sass/style.scss */
.hentry .post-info * {
  font-style: normal;
}
/* line 703, ../../../blueidea/static/sass/style.scss */
.hentry footer {
  margin-bottom: 2em;
}
/* line 705, ../../../blueidea/static/sass/style.scss */
.hentry footer address {
  display: inline;
}

/* Content */
/* line 713, ../../../blueidea/static/sass/style.scss */
#posts-list {
  list-style: none;
  margin: 0;
}
/* line 714, ../../../blueidea/static/sass/style.scss */
#posts-list footer address {
  display: block;
}
/* line 719, ../../../blueidea/static/sass/style.scss */
#posts-list .hentry {
  padding-left: 10px;
  position: relative;
}
/* line 723, ../../../blueidea/static/sass/style.scss */
#posts-list footer {
  border-top: 1px solid;
}

/* Blog Index */
/* About the Author */
/* line 732, ../../../blueidea/static/sass/style.scss */
#about-author {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background: #f9f9f9;
  clear: both;
  font-style: normal;
  margin: 2em 0;
  padding: 10px 20px 15px 20px;
}
/* line 739, ../../../blueidea/static/sass/style.scss */
#about-author strong {
  color: #C64350;
  clear: both;
  display: block;
  font-size: 1.429em;
}
/* line 745, ../../../blueidea/static/sass/style.scss */
#about-author .photo {
  border: 1px solid #ddd;
  float: left;
  margin: 5px 1em 0 0;
}

/* Comments */
/* line 754, ../../../blueidea/static/sass/style.scss */
#comments-list {
  list-style: none;
  margin: 0 1em;
}
/* line 757, ../../../blueidea/static/sass/style.scss */
#comments-list blockquote {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background: #f8f8f8;
  clear: both;
  font-style: normal;
  margin: 0;
  padding: 15px 20px;
}
/* line 765, ../../../blueidea/static/sass/style.scss */
#comments-list footer {
  color: #888;
  padding: .5em 1em 0 0;
  text-align: right;
}
/* line 770, ../../../blueidea/static/sass/style.scss */
#comments-list li:nth-child(2n) blockquote {
  background: #F5f5f5;
}

/* Add a Comment */
/* line 778, ../../../blueidea/static/sass/style.scss */
#add-comment label {
  clear: left;
  float: left;
  text-align: left;
  width: 150px;
}
/* line 785, ../../../blueidea/static/sass/style.scss */
#add-comment input[type='text'], #add-comment input[type='email'], #add-comment input[type='url'] {
  float: left;
  width: 200px;
}
/* line 790, ../../../blueidea/static/sass/style.scss */
#add-comment textarea {
  float: left;
  height: 150px;
  width: 495px;
}
/* line 795, ../../../blueidea/static/sass/style.scss */
#add-comment p.req {
  clear: both;
  margin: 0 .5em 1em 0;
  text-align: right;
}
/* line 800, ../../../blueidea/static/sass/style.scss */
#add-comment input[type='submit'] {
  float: right;
  margin: 0 .5em;
}
/* line 804, ../../../blueidea/static/sass/style.scss */
#add-comment * {
  margin-bottom: .5em;
}

/* line 810, ../../../blueidea/static/sass/style.scss */
*, *:after, *:before {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 821, ../../../blueidea/static/sass/style.scss */
.animenu__toggle {
  display: none;
  cursor: pointer;
  background-color: #111111;
  border: 0;
  padding: 10px;
  height: 40px;
  width: 40px;
}
/* line 830, ../../../blueidea/static/sass/style.scss */
.animenu__toggle:hover {
  background-color: #0186ba;
}

/* line 835, ../../../blueidea/static/sass/style.scss */
.animenu__toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  transition: 0.15s cubic-bezier(0.75, -0.55, 0.25, 1.55);
}
/* line 841, ../../../blueidea/static/sass/style.scss */
.animenu__toggle__bar + .animenu__toggle__bar {
  margin-top: 4px;
}

/* line 847, ../../../blueidea/static/sass/style.scss */
.animenu__toggle--active .animenu__toggle__bar {
  margin: 0;
  position: absolute;
}
/* line 851, ../../../blueidea/static/sass/style.scss */
.animenu__toggle--active .animenu__toggle__bar:nth-child(1) {
  transform: rotate(45deg);
}
/* line 855, ../../../blueidea/static/sass/style.scss */
.animenu__toggle--active .animenu__toggle__bar:nth-child(2) {
  opacity: 0;
}
/* line 859, ../../../blueidea/static/sass/style.scss */
.animenu__toggle--active .animenu__toggle__bar:nth-child(3) {
  transform: rotate(-45deg);
}

/* line 866, ../../../blueidea/static/sass/style.scss */
.animenu {
  display: block;
}
/* line 868, ../../../blueidea/static/sass/style.scss */
.animenu ul {
  padding: 0;
  list-style: none;
  font: 0px 'Open Sans', Arial, Helvetica;
}
/* line 874, ../../../blueidea/static/sass/style.scss */
.animenu li, .animenu a {
  display: inline-block;
  font-size: 15px;
}
/* line 879, ../../../blueidea/static/sass/style.scss */
.animenu a {
  color: #aaaaaa;
  text-decoration: none;
}

/* line 891, ../../../blueidea/static/sass/style.scss */
.animenu__nav {
  background-color: #075385;
}
/* line 893, ../../../blueidea/static/sass/style.scss */
.animenu__nav > li {
  position: relative;
  border-right: 1px solid #444444;
}
/* line 897, ../../../blueidea/static/sass/style.scss */
.animenu__nav > li > a {
  padding: 10px 25px;
  text-transform: uppercase;
}
/* line 902, ../../../blueidea/static/sass/style.scss */
.animenu__nav > li > a:first-child:nth-last-child(2):before {
  content: "";
  position: absolute;
  border: 4px solid transparent;
  border-bottom: 0;
  border-top-color: currentColor;
  top: 50%;
  margin-top: -2px;
  right: 10px;
}
/* line 915, ../../../blueidea/static/sass/style.scss */
.animenu__nav > li:hover > ul {
  opacity: 1;
  visibility: visible;
  margin: 0;
}
/* line 921, ../../../blueidea/static/sass/style.scss */
.animenu__nav > li:hover > a {
  color: #fff;
}

/* line 936, ../../../blueidea/static/sass/style.scss */
.animenu__nav__child {
  min-width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  margin: 20px 0 0 0;
  background-color: #373737;
  transition: margin .15s, opacity .15s;
}
/* line 947, ../../../blueidea/static/sass/style.scss */
.animenu__nav__child > li {
  width: 100%;
  border-bottom: 1px solid #515151;
}
/* line 951, ../../../blueidea/static/sass/style.scss */
.animenu__nav__child > li:first-child > a:after {
  content: '';
  position: absolute;
  height: 0;
  width: 0;
  left: 1em;
  top: -6px;
  border: 6px solid transparent;
  border-top: 0;
  border-bottom-color: inherit;
}
/* line 962, ../../../blueidea/static/sass/style.scss */
.animenu__nav__child > li:last-child {
  border: 0;
}
/* line 967, ../../../blueidea/static/sass/style.scss */
.animenu__nav__child a {
  padding: 10px;
  width: 100%;
  border-color: #373737;
}
/* line 972, ../../../blueidea/static/sass/style.scss */
.animenu__nav__child a:hover {
  background-color: #0186ba;
  border-color: #0186ba;
  color: #fff;
}

@media screen and (min-width: 100px) and (max-width: 767px) {
  /* line 984, ../../../blueidea/static/sass/style.scss */
  .animenu__toggle {
    display: inline-block;
  }

  /* line 988, ../../../blueidea/static/sass/style.scss */
  .animenu__nav,
  .animenu__nav__child {
    display: none;
  }

  /* line 999, ../../../blueidea/static/sass/style.scss */
  .animenu__nav {
    margin: 10px 0;
  }
  /* line 1002, ../../../blueidea/static/sass/style.scss */
  .animenu__nav > li {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #515151;
  }
  /* line 1007, ../../../blueidea/static/sass/style.scss */
  .animenu__nav > li:last-child {
    border: 0;
  }
  /* line 1011, ../../../blueidea/static/sass/style.scss */
  .animenu__nav > li:first-child > a:after {
    content: '';
    position: absolute;
    height: 0;
    width: 0;
    left: 1em;
    top: -6px;
    border: 6px solid transparent;
    border-top: 0;
    border-bottom-color: inherit;
  }
  /* line 1022, ../../../blueidea/static/sass/style.scss */
  .animenu__nav > li > a {
    width: 100%;
    padding: 10px;
    border-color: #111111;
    position: relative;
  }
  /* line 1030, ../../../blueidea/static/sass/style.scss */
  .animenu__nav a:hover {
    background-color: #0186ba;
    border-color: #0186ba;
    color: #fff;
  }

  /* line 1045, ../../../blueidea/static/sass/style.scss */
  .animenu__nav__child {
    position: static;
    background-color: #373737;
    margin: 0;
    transition: none;
    visibility: visible;
    opacity: 1;
  }
  /* line 1053, ../../../blueidea/static/sass/style.scss */
  .animenu__nav__child > li:first-child > a:after {
    content: none;
  }
  /* line 1057, ../../../blueidea/static/sass/style.scss */
  .animenu__nav__child a {
    padding-left: 20px;
    width: 100%;
  }

  /* line 1063, ../../../blueidea/static/sass/style.scss */
  .content {
    padding: 1rem;
  }
}
/* line 1077, ../../../blueidea/static/sass/style.scss */
.animenu__nav--open {
  display: block !important;
}
/* line 1080, ../../../blueidea/static/sass/style.scss */
.animenu__nav--open .animenu__nav__child {
  display: block;
}

/* line 1086, ../../../blueidea/static/sass/style.scss */
.valign {
  vertical-align: middle;
  line-height: normal;
}

/* line 1091, ../../../blueidea/static/sass/style.scss */
.inline-block {
  display: inline-block;
}

/* line 1096, ../../../blueidea/static/sass/style.scss */
.grid-pad {
  padding-left: 0px;
}

/* line 1103, ../../../blueidea/static/sass/style.scss */
div.input {
  -moz-box-align: stretch;
  -moz-box-orient: horizontal;
  align-items: stretch;
  display: flex;
  flex-direction: row;
  page-break-inside: avoid;
}

/* line 1112, ../../../blueidea/static/sass/style.scss */
div.input_prompt {
  border-top: 1px solid transparent;
  color: #000080;
}

/* line 1117, ../../../blueidea/static/sass/style.scss */
div.prompt {
  font-family: monospace;
  line-height: 1.21429em;
  margin: 0;
  min-width: 11ex;
  padding: 0.4em;
  text-align: right;
}

/* line 1126, ../../../blueidea/static/sass/style.scss */
div.output_wrapper {
  -moz-box-align: stretch;
  -moz-box-orient: vertical;
  align-items: stretch;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* line 1134, ../../../blueidea/static/sass/style.scss */
div.output_scroll {
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.8) inset;
  display: block;
  height: 24em;
  overflow: auto;
  width: 100%;
}

/* line 1142, ../../../blueidea/static/sass/style.scss */
div.output_collapsed {
  -moz-box-align: stretch;
  -moz-box-orient: vertical;
  align-items: stretch;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

/* line 1151, ../../../blueidea/static/sass/style.scss */
div.out_prompt_overlay {
  border-radius: 4px;
  height: 100%;
  padding: 0 0.4em;
  position: absolute;
}

/* line 1157, ../../../blueidea/static/sass/style.scss */
div.out_prompt_overlay:hover {
  background: none repeat scroll 0 0 rgba(240, 240, 240, 0.5);
  box-shadow: 0 0 1px #000 inset;
}

/* line 1161, ../../../blueidea/static/sass/style.scss */
div.output_prompt {
  color: #8b0000;
}

/* line 1164, ../../../blueidea/static/sass/style.scss */
div.output_area {
  -moz-box-align: stretch;
  -moz-box-orient: horizontal;
  align-items: stretch;
  display: flex;
  flex-direction: row;
  padding: 0;
  page-break-inside: avoid;
}

/* line 1173, ../../../blueidea/static/sass/style.scss */
div.output_area .MathJax_Display {
  text-align: left !important;
}

/* line 1176, ../../../blueidea/static/sass/style.scss */
div.output_area .rendered_html table {
  margin-left: 0;
  margin-right: 0;
}

/* line 1180, ../../../blueidea/static/sass/style.scss */
div.output_area .rendered_html img {
  margin-left: 0;
  margin-right: 0;
}

/* line 1184, ../../../blueidea/static/sass/style.scss */
.output {
  -moz-box-align: stretch;
  -moz-box-orient: vertical;
  align-items: stretch;
  display: flex;
  flex-direction: column;
}

/* line 1192, ../../../blueidea/static/sass/style.scss */
.rendered_html {
  color: #000;
}

/* line 1195, ../../../blueidea/static/sass/style.scss */
.rendered_html em {
  font-style: italic;
}

/* line 1198, ../../../blueidea/static/sass/style.scss */
.rendered_html strong {
  font-weight: bold;
}

/* line 1201, ../../../blueidea/static/sass/style.scss */
.rendered_html u {
  text-decoration: underline;
}

/* line 1204, ../../../blueidea/static/sass/style.scss */
.rendered_html:link {
  text-decoration: underline;
}

/* line 1207, ../../../blueidea/static/sass/style.scss */
.rendered_html:visited {
  text-decoration: underline;
}

/* line 1210, ../../../blueidea/static/sass/style.scss */
.rendered_html h1 {
  font-size: 185.7%;
  margin: 1.08em 0 0 0;
  font-weight: bold;
  line-height: 1;
}

/* line 1216, ../../../blueidea/static/sass/style.scss */
.rendered_html h2 {
  font-size: 157.1%;
  margin: 1.27em 0 0 0;
  font-weight: bold;
  line-height: 1;
}

/* line 1222, ../../../blueidea/static/sass/style.scss */
.rendered_html h3 {
  font-size: 128.6%;
  margin: 1.55em 0 0 0;
  font-weight: bold;
  line-height: 1;
}

/* line 1228, ../../../blueidea/static/sass/style.scss */
.rendered_html h4 {
  font-size: 100%;
  margin: 2em 0 0 0;
  font-weight: bold;
  line-height: 1;
}

/* line 1234, ../../../blueidea/static/sass/style.scss */
.rendered_html h5 {
  font-size: 100%;
  margin: 2em 0 0 0;
  font-weight: bold;
  line-height: 1;
  font-style: italic;
}

/* line 1241, ../../../blueidea/static/sass/style.scss */
.rendered_html h6 {
  font-size: 100%;
  margin: 2em 0 0 0;
  font-weight: bold;
  line-height: 1;
  font-style: italic;
}

/* line 1248, ../../../blueidea/static/sass/style.scss */
.rendered_html h1:first-child {
  margin-top: 0.538em;
}

/* line 1251, ../../../blueidea/static/sass/style.scss */
.rendered_html h2:first-child {
  margin-top: 0.636em;
}

/* line 1254, ../../../blueidea/static/sass/style.scss */
.rendered_html h3:first-child {
  margin-top: 0.777em;
}

/* line 1257, ../../../blueidea/static/sass/style.scss */
.rendered_html h4:first-child {
  margin-top: 1em;
}

/* line 1260, ../../../blueidea/static/sass/style.scss */
.rendered_html h5:first-child {
  margin-top: 1em;
}

/* line 1263, ../../../blueidea/static/sass/style.scss */
.rendered_html h6:first-child {
  margin-top: 1em;
}

/* line 1266, ../../../blueidea/static/sass/style.scss */
.rendered_html ul {
  list-style: disc;
  margin: 0 2em;
}

/* line 1270, ../../../blueidea/static/sass/style.scss */
.rendered_html ul ul {
  list-style: square;
  margin: 0 2em;
}

/* line 1274, ../../../blueidea/static/sass/style.scss */
.rendered_html ul ul ul {
  list-style: circle;
  margin: 0 2em;
}

/* line 1278, ../../../blueidea/static/sass/style.scss */
.rendered_html ol {
  list-style: decimal;
  margin: 0 2em;
}

/* line 1282, ../../../blueidea/static/sass/style.scss */
.rendered_html ol ol {
  list-style: upper-alpha;
  margin: 0 2em;
}

/* line 1286, ../../../blueidea/static/sass/style.scss */
.rendered_html ol ol ol {
  list-style: lower-alpha;
  margin: 0 2em;
}

/* line 1290, ../../../blueidea/static/sass/style.scss */
.rendered_html ol ol ol ol {
  list-style: lower-roman;
  margin: 0 2em;
}

/* line 1294, ../../../blueidea/static/sass/style.scss */
.rendered_html ol ol ol ol ol {
  list-style: decimal;
  margin: 0 2em;
}

/* line 1298, ../../../blueidea/static/sass/style.scss */
.rendered_html * + ul {
  margin-top: 1em;
}

/* line 1301, ../../../blueidea/static/sass/style.scss */
.rendered_html * + ol {
  margin-top: 1em;
}

/* line 1304, ../../../blueidea/static/sass/style.scss */
.rendered_html hr {
  color: #000;
  background-color: black;
}

/* line 1308, ../../../blueidea/static/sass/style.scss */
.rendered_html pre {
  margin: 1em 2em;
}

/* line 1311, ../../../blueidea/static/sass/style.scss */
.rendered_html pre,
.rendered_html code {
  border: 0;
  background-color: #fff;
  color: #000;
  font-size: 100%;
  padding: 0;
}

/* line 1319, ../../../blueidea/static/sass/style.scss */
.rendered_html blockquote {
  margin: 1em 2em;
}

/* line 1322, ../../../blueidea/static/sass/style.scss */
.rendered_html table {
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #000;
  border-collapse: collapse;
}

/* line 1328, ../../../blueidea/static/sass/style.scss */
.rendered_html tr,
.rendered_html th,
.rendered_html td {
  border: 1px solid #000;
  border-collapse: collapse;
  margin: 1em 2em;
}

/* line 1335, ../../../blueidea/static/sass/style.scss */
.rendered_html td,
.rendered_html th {
  text-align: left;
  vertical-align: middle;
  padding: 4px;
}

/* line 1341, ../../../blueidea/static/sass/style.scss */
.rendered_html th {
  font-weight: bold;
}

/* line 1344, ../../../blueidea/static/sass/style.scss */
.rendered_html * + table {
  margin-top: 1em;
}

/* line 1347, ../../../blueidea/static/sass/style.scss */
.rendered_html p {
  text-align: justify;
}

/* line 1350, ../../../blueidea/static/sass/style.scss */
.rendered_html * + p {
  margin-top: 1em;
}

/* line 1353, ../../../blueidea/static/sass/style.scss */
.rendered_html img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 1358, ../../../blueidea/static/sass/style.scss */
.rendered_html * + img {
  margin-top: 1em;
}

/* line 1362, ../../../blueidea/static/sass/style.scss */
pre.ipynb {
  color: black;
  background: #f7f7f7;
  border: none;
  box-shadow: none;
  margin-bottom: 0;
  padding: 0;
  margin: 0px;
  font-size: 13px;
}

/* line 1373, ../../../blueidea/static/sass/style.scss */
.output_pyout {
  font-size: 13px;
}

/* line 1377, ../../../blueidea/static/sass/style.scss */
a.anchor-link:link, a.anchor-link:visited {
  color: #f2f3f3;
}

/* line 1381, ../../../blueidea/static/sass/style.scss */
pre, code {
  font-family: monospace;
}

/* line 1385, ../../../blueidea/static/sass/style.scss */
div.output_area pre {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  color: #000;
  background-color: transparent;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

/* line 1397, ../../../blueidea/static/sass/style.scss */
div.output_subarea {
  padding: .4em .4em 0 .4em;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  flex: 1;
}

/* line 1404, ../../../blueidea/static/sass/style.scss */
div.output_text {
  text-align: left;
  color: #000;
  line-height: 1.21429em;
}

/* line 1409, ../../../blueidea/static/sass/style.scss */
div.output_stderr {
  background: #fdd;
}

/* line 1412, ../../../blueidea/static/sass/style.scss */
div.output_latex {
  text-align: left;
}

/* line 1415, ../../../blueidea/static/sass/style.scss */
div.output_javascript:empty {
  padding: 0;
}

/* line 1418, ../../../blueidea/static/sass/style.scss */
.js-error {
  color: darkred;
}

/* line 1422, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .hll {
  background-color: #ffffcc;
}

/* line 1423, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb {
  background: #f8f8f8;
}

/* line 1424, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .c {
  color: #408080;
  font-style: italic;
}

/* Comment */
/* line 1425, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .err {
  border: 1px solid red;
}

/* Error */
/* line 1426, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .k {
  color: #008000;
  font-weight: bold;
}

/* Keyword */
/* line 1427, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .o {
  color: #666666;
}

/* Operator */
/* line 1428, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .cm {
  color: #408080;
  font-style: italic;
}

/* Comment.Multiline */
/* line 1429, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .cp {
  color: #bc7a00;
}

/* Comment.Preproc */
/* line 1430, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .c1 {
  color: #408080;
  font-style: italic;
}

/* Comment.Single */
/* line 1431, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .cs {
  color: #408080;
  font-style: italic;
}

/* Comment.Special */
/* line 1432, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .gd {
  color: #a00000;
}

/* Generic.Deleted */
/* line 1433, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .ge {
  font-style: italic;
}

/* Generic.Emph */
/* line 1434, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .gr {
  color: red;
}

/* Generic.Error */
/* line 1435, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .gh {
  color: #000080;
  font-weight: bold;
}

/* Generic.Heading */
/* line 1436, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .gi {
  color: #00a000;
}

/* Generic.Inserted */
/* line 1437, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .go {
  color: #888888;
}

/* Generic.Output */
/* line 1438, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .gp {
  color: #000080;
  font-weight: bold;
}

/* Generic.Prompt */
/* line 1439, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .gs {
  font-weight: bold;
}

/* Generic.Strong */
/* line 1440, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .gu {
  color: #800080;
  font-weight: bold;
}

/* Generic.Subheading */
/* line 1441, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .gt {
  color: #0044dd;
}

/* Generic.Traceback */
/* line 1442, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .kc {
  color: #008000;
  font-weight: bold;
}

/* Keyword.Constant */
/* line 1443, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .kd {
  color: #008000;
  font-weight: bold;
}

/* Keyword.Declaration */
/* line 1444, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .kn {
  color: #008000;
  font-weight: bold;
}

/* Keyword.Namespace */
/* line 1445, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .kp {
  color: green;
}

/* Keyword.Pseudo */
/* line 1446, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .kr {
  color: #008000;
  font-weight: bold;
}

/* Keyword.Reserved */
/* line 1447, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .kt {
  color: #b00040;
}

/* Keyword.Type */
/* line 1448, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .m {
  color: #666666;
}

/* Literal.Number */
/* line 1449, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .s {
  color: #ba2121;
}

/* Literal.String */
/* line 1450, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .na {
  color: #7d9029;
}

/* Name.Attribute */
/* line 1451, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .nb {
  color: green;
}

/* Name.Builtin */
/* line 1452, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .nc {
  color: #0000FF;
  font-weight: bold;
}

/* Name.Class */
/* line 1453, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .no {
  color: #880000;
}

/* Name.Constant */
/* line 1454, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .nd {
  color: #aa22ff;
}

/* Name.Decorator */
/* line 1455, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .ni {
  color: #999999;
  font-weight: bold;
}

/* Name.Entity */
/* line 1456, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .ne {
  color: #D2413A;
  font-weight: bold;
}

/* Name.Exception */
/* line 1457, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .nf {
  color: blue;
}

/* Name.Function */
/* line 1458, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .nl {
  color: #a0a000;
}

/* Name.Label */
/* line 1459, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .nn {
  color: #0000FF;
  font-weight: bold;
}

/* Name.Namespace */
/* line 1460, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .nt {
  color: #008000;
  font-weight: bold;
}

/* Name.Tag */
/* line 1461, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .nv {
  color: #19177c;
}

/* Name.Variable */
/* line 1462, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .ow {
  color: #AA22FF;
  font-weight: bold;
}

/* Operator.Word */
/* line 1463, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .w {
  color: #bbbbbb;
}

/* Text.Whitespace */
/* line 1464, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .mf {
  color: #666666;
}

/* Literal.Number.Float */
/* line 1465, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .mh {
  color: #666666;
}

/* Literal.Number.Hex */
/* line 1466, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .mi {
  color: #666666;
}

/* Literal.Number.Integer */
/* line 1467, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .mo {
  color: #666666;
}

/* Literal.Number.Oct */
/* line 1468, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .sb {
  color: #ba2121;
}

/* Literal.String.Backtick */
/* line 1469, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .sc {
  color: #ba2121;
}

/* Literal.String.Char */
/* line 1470, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .sd {
  color: #BA2121;
  font-style: italic;
}

/* Literal.String.Doc */
/* line 1471, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .s2 {
  color: #ba2121;
}

/* Literal.String.Double */
/* line 1472, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .se {
  color: #BB6622;
  font-weight: bold;
}

/* Literal.String.Escape */
/* line 1473, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .sh {
  color: #ba2121;
}

/* Literal.String.Heredoc */
/* line 1474, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .si {
  color: #BB6688;
  font-weight: bold;
}

/* Literal.String.Interpol */
/* line 1475, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .sx {
  color: green;
}

/* Literal.String.Other */
/* line 1476, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .sr {
  color: #bb6688;
}

/* Literal.String.Regex */
/* line 1477, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .s1 {
  color: #ba2121;
}

/* Literal.String.Single */
/* line 1478, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .ss {
  color: #19177c;
}

/* Literal.String.Symbol */
/* line 1479, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .bp {
  color: green;
}

/* Name.Builtin.Pseudo */
/* line 1480, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .vc {
  color: #19177c;
}

/* Name.Variable.Class */
/* line 1481, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .vg {
  color: #19177c;
}

/* Name.Variable.Global */
/* line 1482, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .vi {
  color: #19177c;
}

/* Name.Variable.Instance */
/* line 1483, ../../../blueidea/static/sass/style.scss */
.highlight-ipynb .il {
  color: #666666;
}

/* Literal.Number.Integer.Long */
/* line 1486, ../../../blueidea/static/sass/style.scss */
.clearfix {
  *zoom: 1;
}
/* line 1488, ../../../blueidea/static/sass/style.scss */
.clearfix:before {
  display: table;
  content: "";
  line-height: 0;
}
/* line 1493, ../../../blueidea/static/sass/style.scss */
.clearfix:after {
  display: table;
  content: "";
  line-height: 0;
  clear: both;
}

/* line 1501, ../../../blueidea/static/sass/style.scss */
.hide-text {
  font: 0 / 0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 1509, ../../../blueidea/static/sass/style.scss */
.input-block-level {
  display: block;
  width: 100%;
  min-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 1518, ../../../blueidea/static/sass/style.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

/* line 1522, ../../../blueidea/static/sass/style.scss */
audio, canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/* line 1528, ../../../blueidea/static/sass/style.scss */
audio:not([controls]) {
  display: none;
}

/* line 1533, ../../../blueidea/static/sass/style.scss */
a:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
/* line 1538, ../../../blueidea/static/sass/style.scss */
a:hover, a:active {
  outline: 0;
}

/* line 1543, ../../../blueidea/static/sass/style.scss */
sub {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

/* line 1550, ../../../blueidea/static/sass/style.scss */
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
  top: -0.5em;
}

/* line 1558, ../../../blueidea/static/sass/style.scss */
sub {
  bottom: -0.25em;
}

/* line 1562, ../../../blueidea/static/sass/style.scss */
img {
  max-width: 100%;
  width: auto\9;
  height: auto;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

/* line 1571, ../../../blueidea/static/sass/style.scss */
#map_canvas img, .google-maps img {
  max-width: none;
}

/* line 1575, ../../../blueidea/static/sass/style.scss */
button, input, select, textarea {
  margin: 0;
  font-size: 100%;
  vertical-align: middle;
}

/* line 1581, ../../../blueidea/static/sass/style.scss */
button, input {
  *overflow: visible;
  line-height: normal;
}

/* line 1586, ../../../blueidea/static/sass/style.scss */
button::-moz-focus-inner, input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* line 1591, ../../../blueidea/static/sass/style.scss */
button, html input[type="button"] {
  -webkit-appearance: button;
  cursor: pointer;
}

/* line 1597, ../../../blueidea/static/sass/style.scss */
input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

/* line 1603, ../../../blueidea/static/sass/style.scss */
label, select, button {
  cursor: pointer;
}

/* line 1608, ../../../blueidea/static/sass/style.scss */
input[type="button"], input[type="reset"], input[type="submit"], input[type="radio"], input[type="checkbox"] {
  cursor: pointer;
}
/* line 1611, ../../../blueidea/static/sass/style.scss */
input[type="search"] {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: textfield;
}
/* line 1616, ../../../blueidea/static/sass/style.scss */
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/* line 1622, ../../../blueidea/static/sass/style.scss */
textarea {
  overflow: auto;
  vertical-align: top;
}

@media print {
  /* line 1628, ../../../blueidea/static/sass/style.scss */
  * {
    text-shadow: none !important;
    color: #000 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  /* line 1634, ../../../blueidea/static/sass/style.scss */
  a {
    text-decoration: underline;
  }
  /* line 1636, ../../../blueidea/static/sass/style.scss */
  a:visited {
    text-decoration: underline;
  }
  /* line 1639, ../../../blueidea/static/sass/style.scss */
  a[href]:after {
    content: " (" attr(href) ")";
  }

  /* line 1643, ../../../blueidea/static/sass/style.scss */
  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* line 1646, ../../../blueidea/static/sass/style.scss */
  .ir a:after {
    content: "";
  }

  /* line 1650, ../../../blueidea/static/sass/style.scss */
  a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  }

  /* line 1654, ../../../blueidea/static/sass/style.scss */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /* line 1658, ../../../blueidea/static/sass/style.scss */
  thead {
    display: table-header-group;
  }

  /* line 1661, ../../../blueidea/static/sass/style.scss */
  tr {
    page-break-inside: avoid;
  }

  /* line 1664, ../../../blueidea/static/sass/style.scss */
  img {
    page-break-inside: avoid;
    max-width: 100% !important;
  }

  /* line 1668, ../../../blueidea/static/sass/style.scss */
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  /* line 1672, ../../../blueidea/static/sass/style.scss */
  h2, h3 {
    page-break-after: avoid;
  }
}
/* line 1678, ../../../blueidea/static/sass/style.scss */
a {
  color: #a4b847;
  text-decoration: none;
}
/* line 1681, ../../../blueidea/static/sass/style.scss */
a:hover, a:focus {
  color: black;
  text-decoration: none;
}

/* line 1687, ../../../blueidea/static/sass/style.scss */
.img-rounded {
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

/* line 1694, ../../../blueidea/static/sass/style.scss */
.img-polaroid {
  padding: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* line 1704, ../../../blueidea/static/sass/style.scss */
.img-circle {
  border-radius: 500px;
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  border-radius: 500px;
}

/* line 1711, ../../../blueidea/static/sass/style.scss */
.row {
  margin-left: -20px;
  *zoom: 1;
}
/* line 1714, ../../../blueidea/static/sass/style.scss */
.row:before {
  display: table;
  content: "";
  line-height: 0;
}
/* line 1719, ../../../blueidea/static/sass/style.scss */
.row:after {
  display: table;
  content: "";
  line-height: 0;
  clear: both;
}

/* line 1727, ../../../blueidea/static/sass/style.scss */
[class*="span"] {
  float: left;
  min-height: 1px;
  margin-left: 20px;
}

/* line 1733, ../../../blueidea/static/sass/style.scss */
.container, .navbar-static-top .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container, .span12 {
  width: 940px;
}

/* line 1737, ../../../blueidea/static/sass/style.scss */
.span11 {
  width: 860px;
}

/* line 1741, ../../../blueidea/static/sass/style.scss */
.span10 {
  width: 780px;
}

/* line 1745, ../../../blueidea/static/sass/style.scss */
.span9 {
  width: 700px;
}

/* line 1749, ../../../blueidea/static/sass/style.scss */
.span8 {
  width: 620px;
}

/* line 1753, ../../../blueidea/static/sass/style.scss */
.span7 {
  width: 540px;
}

/* line 1757, ../../../blueidea/static/sass/style.scss */
.span6 {
  width: 460px;
}

/* line 1761, ../../../blueidea/static/sass/style.scss */
.span5 {
  width: 380px;
}

/* line 1765, ../../../blueidea/static/sass/style.scss */
.span4 {
  width: 300px;
}

/* line 1769, ../../../blueidea/static/sass/style.scss */
.span3 {
  width: 220px;
}

/* line 1773, ../../../blueidea/static/sass/style.scss */
.span2 {
  width: 140px;
}

/* line 1777, ../../../blueidea/static/sass/style.scss */
.span1 {
  width: 60px;
}

/* line 1781, ../../../blueidea/static/sass/style.scss */
.offset12 {
  margin-left: 980px;
}

/* line 1785, ../../../blueidea/static/sass/style.scss */
.offset11 {
  margin-left: 900px;
}

/* line 1789, ../../../blueidea/static/sass/style.scss */
.offset10 {
  margin-left: 820px;
}

/* line 1793, ../../../blueidea/static/sass/style.scss */
.offset9 {
  margin-left: 740px;
}

/* line 1797, ../../../blueidea/static/sass/style.scss */
.offset8 {
  margin-left: 660px;
}

/* line 1801, ../../../blueidea/static/sass/style.scss */
.offset7 {
  margin-left: 580px;
}

/* line 1805, ../../../blueidea/static/sass/style.scss */
.offset6 {
  margin-left: 500px;
}

/* line 1809, ../../../blueidea/static/sass/style.scss */
.offset5 {
  margin-left: 420px;
}

/* line 1813, ../../../blueidea/static/sass/style.scss */
.offset4 {
  margin-left: 340px;
}

/* line 1817, ../../../blueidea/static/sass/style.scss */
.offset3 {
  margin-left: 260px;
}

/* line 1821, ../../../blueidea/static/sass/style.scss */
.offset2 {
  margin-left: 180px;
}

/* line 1825, ../../../blueidea/static/sass/style.scss */
.offset1 {
  margin-left: 100px;
}

/* line 1829, ../../../blueidea/static/sass/style.scss */
.row-fluid {
  width: 100%;
  *zoom: 1;
}
/* line 1832, ../../../blueidea/static/sass/style.scss */
.row-fluid:before {
  display: table;
  content: "";
  line-height: 0;
}
/* line 1837, ../../../blueidea/static/sass/style.scss */
.row-fluid:after {
  display: table;
  content: "";
  line-height: 0;
  clear: both;
}
/* line 1843, ../../../blueidea/static/sass/style.scss */
.row-fluid [class*="span"] {
  display: block;
  width: 100%;
  min-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin-left: 2.127659574468085%;
  *margin-left: 2.074468085106383%;
}
/* line 1853, ../../../blueidea/static/sass/style.scss */
.row-fluid [class*="span"]:first-child {
  margin-left: 0;
}
/* line 1857, ../../../blueidea/static/sass/style.scss */
.row-fluid .controls-row [class*="span"] + [class*="span"] {
  margin-left: 2.127659574468085%;
}
/* line 1860, ../../../blueidea/static/sass/style.scss */
.row-fluid .span12 {
  width: 100%;
  *width: 99.94680851063829%;
}
/* line 1864, ../../../blueidea/static/sass/style.scss */
.row-fluid .span11 {
  width: 91.48936170212765%;
  *width: 91.43617021276594%;
}
/* line 1868, ../../../blueidea/static/sass/style.scss */
.row-fluid .span10 {
  width: 82.97872340425532%;
  *width: 82.92553191489361%;
}
/* line 1872, ../../../blueidea/static/sass/style.scss */
.row-fluid .span9 {
  width: 74.46808510638297%;
  *width: 74.41489361702126%;
}
/* line 1876, ../../../blueidea/static/sass/style.scss */
.row-fluid .span8 {
  width: 65.95744680851064%;
  *width: 65.90425531914893%;
}
/* line 1880, ../../../blueidea/static/sass/style.scss */
.row-fluid .span7 {
  width: 57.44680851063829%;
  *width: 57.39361702127659%;
}
/* line 1884, ../../../blueidea/static/sass/style.scss */
.row-fluid .span6 {
  width: 48.93617021276595%;
  *width: 48.88297872340425%;
}
/* line 1888, ../../../blueidea/static/sass/style.scss */
.row-fluid .span5 {
  width: 40.42553191489362%;
  *width: 40.37234042553192%;
}
/* line 1892, ../../../blueidea/static/sass/style.scss */
.row-fluid .span4 {
  width: 31.914893617021278%;
  *width: 31.861702127659576%;
}
/* line 1896, ../../../blueidea/static/sass/style.scss */
.row-fluid .span3 {
  width: 23.404255319148934%;
  *width: 23.351063829787233%;
}
/* line 1900, ../../../blueidea/static/sass/style.scss */
.row-fluid .span2 {
  width: 14.893617021276595%;
  *width: 14.840425531914894%;
}
/* line 1904, ../../../blueidea/static/sass/style.scss */
.row-fluid .span1 {
  width: 6.382978723404255%;
  *width: 6.329787234042553%;
}
/* line 1908, ../../../blueidea/static/sass/style.scss */
.row-fluid .offset12 {
  margin-left: 104.25531914893617%;
  *margin-left: 104.14893617021275%;
}
/* line 1911, ../../../blueidea/static/sass/style.scss */
.row-fluid .offset12:first-child {
  margin-left: 102.12765957446808%;
  *margin-left: 102.02127659574467%;
}
/* line 1916, ../../../blueidea/static/sass/style.scss */
.row-fluid .offset11 {
  margin-left: 95.74468085106382%;
  *margin-left: 95.6382978723404%;
}
/* line 1919, ../../../blueidea/static/sass/style.scss */
.row-fluid .offset11:first-child {
  margin-left: 93.61702127659574%;
  *margin-left: 93.51063829787232%;
}
/* line 1924, ../../../blueidea/static/sass/style.scss */
.row-fluid .offset10 {
  margin-left: 87.23404255319149%;
  *margin-left: 87.12765957446807%;
}
/* line 1927, ../../../blueidea/static/sass/style.scss */
.row-fluid .offset10:first-child {
  margin-left: 85.1063829787234%;
  *margin-left: 84.99999999999999%;
}
/* line 1932, ../../../blueidea/static/sass/style.scss */
.row-fluid .offset9 {
  margin-left: 78.72340425531914%;
  *margin-left: 78.61702127659572%;
}
/* line 1935, ../../../blueidea/static/sass/style.scss */
.row-fluid .offset9:first-child {
  margin-left: 76.59574468085106%;
  *margin-left: 76.48936170212764%;
}
/* line 1940, ../../../blueidea/static/sass/style.scss */
.row-fluid .offset8 {
  margin-left: 70.2127659574468%;
  *margin-left: 70.10638297872339%;
}
/* line 1943, ../../../blueidea/static/sass/style.scss */
.row-fluid .offset8:first-child {
  margin-left: 68.08510638297872%;
  *margin-left: 67.9787234042553%;
}
/* line 1948, ../../../blueidea/static/sass/style.scss */
.row-fluid .offset7 {
  margin-left: 61.70212765957446%;
  *margin-left: 61.59574468085106%;
}
/* line 1951, ../../../blueidea/static/sass/style.scss */
.row-fluid .offset7:first-child {
  margin-left: 59.574468085106375%;
  *margin-left: 59.46808510638297%;
}
/* line 1956, ../../../blueidea/static/sass/style.scss */
.row-fluid .offset6 {
  margin-left: 53.191489361702125%;
  *margin-left: 53.085106382978715%;
}
/* line 1959, ../../../blueidea/static/sass/style.scss */
.row-fluid .offset6:first-child {
  margin-left: 51.063829787234035%;
  *margin-left: 50.95744680851063%;
}
/* line 1964, ../../../blueidea/static/sass/style.scss */
.row-fluid .offset5 {
  margin-left: 44.68085106382979%;
  *margin-left: 44.57446808510638%;
}
/* line 1967, ../../../blueidea/static/sass/style.scss */
.row-fluid .offset5:first-child {
  margin-left: 42.5531914893617%;
  *margin-left: 42.4468085106383%;
}
/* line 1972, ../../../blueidea/static/sass/style.scss */
.row-fluid .offset4 {
  margin-left: 36.170212765957444%;
  *margin-left: 36.06382978723405%;
}
/* line 1975, ../../../blueidea/static/sass/style.scss */
.row-fluid .offset4:first-child {
  margin-left: 34.04255319148936%;
  *margin-left: 33.93617021276596%;
}
/* line 1980, ../../../blueidea/static/sass/style.scss */
.row-fluid .offset3 {
  margin-left: 27.659574468085104%;
  *margin-left: 27.5531914893617%;
}
/* line 1983, ../../../blueidea/static/sass/style.scss */
.row-fluid .offset3:first-child {
  margin-left: 25.53191489361702%;
  *margin-left: 25.425531914893618%;
}
/* line 1988, ../../../blueidea/static/sass/style.scss */
.row-fluid .offset2 {
  margin-left: 19.148936170212764%;
  *margin-left: 19.04255319148936%;
}
/* line 1991, ../../../blueidea/static/sass/style.scss */
.row-fluid .offset2:first-child {
  margin-left: 17.02127659574468%;
  *margin-left: 16.914893617021278%;
}
/* line 1996, ../../../blueidea/static/sass/style.scss */
.row-fluid .offset1 {
  margin-left: 10.638297872340425%;
  *margin-left: 10.53191489361702%;
}
/* line 1999, ../../../blueidea/static/sass/style.scss */
.row-fluid .offset1:first-child {
  margin-left: 8.51063829787234%;
  *margin-left: 8.404255319148938%;
}

/* line 2006, ../../../blueidea/static/sass/style.scss */
[class*="span"].hide, .row-fluid [class*="span"].hide {
  display: none;
}

/* line 2010, ../../../blueidea/static/sass/style.scss */
[class*="span"].pull-right, .row-fluid [class*="span"].pull-right {
  float: right;
}

/* line 2014, ../../../blueidea/static/sass/style.scss */
.container {
  margin-right: auto;
  margin-left: auto;
  *zoom: 1;
}
/* line 2018, ../../../blueidea/static/sass/style.scss */
.container:before {
  display: table;
  content: "";
  line-height: 0;
}
/* line 2023, ../../../blueidea/static/sass/style.scss */
.container:after {
  display: table;
  content: "";
  line-height: 0;
  clear: both;
}

/* line 2031, ../../../blueidea/static/sass/style.scss */
.lead {
  margin-bottom: 20px;
  font-size: 19.5px;
  font-weight: 200;
  line-height: 30px;
}

/* line 2038, ../../../blueidea/static/sass/style.scss */
small {
  font-size: 85%;
}

/* line 2042, ../../../blueidea/static/sass/style.scss */
strong {
  font-weight: bold;
}

/* line 2046, ../../../blueidea/static/sass/style.scss */
em {
  font-style: italic;
}

/* line 2050, ../../../blueidea/static/sass/style.scss */
cite {
  font-style: normal;
}

/* line 2054, ../../../blueidea/static/sass/style.scss */
.muted {
  color: #999;
}

/* line 2059, ../../../blueidea/static/sass/style.scss */
a.muted:hover, a.muted:focus {
  color: #808080;
}

/* line 2064, ../../../blueidea/static/sass/style.scss */
.text-warning {
  color: #c09853;
}

/* line 2069, ../../../blueidea/static/sass/style.scss */
a.text-warning:hover, a.text-warning:focus {
  color: #a47e3c;
}

/* line 2074, ../../../blueidea/static/sass/style.scss */
.text-error {
  color: #b94a48;
}

/* line 2079, ../../../blueidea/static/sass/style.scss */
a.text-error:hover, a.text-error:focus {
  color: #953b39;
}

/* line 2084, ../../../blueidea/static/sass/style.scss */
.text-info {
  color: #3a87ad;
}

/* line 2089, ../../../blueidea/static/sass/style.scss */
a.text-info:hover, a.text-info:focus {
  color: #2d6987;
}

/* line 2094, ../../../blueidea/static/sass/style.scss */
.text-success {
  color: #468847;
}

/* line 2099, ../../../blueidea/static/sass/style.scss */
a.text-success:hover, a.text-success:focus {
  color: #356635;
}

/* line 2104, ../../../blueidea/static/sass/style.scss */
.text-left {
  text-align: left;
}

/* line 2108, ../../../blueidea/static/sass/style.scss */
.text-right {
  text-align: right;
}

/* line 2112, ../../../blueidea/static/sass/style.scss */
.text-center {
  text-align: center;
}

/* line 2116, ../../../blueidea/static/sass/style.scss */
h1, h2, h3, h4, h5, h6 {
  margin: 10px 0;
  font-family: inherit;
  font-weight: bold;
  /*line-height: 20px;*/
  text-rendering: optimizelegibility;
}

/* line 2124, ../../../blueidea/static/sass/style.scss */
h1, h3, h5 {
  color: #075385;
}

/* line 2128, ../../../blueidea/static/sass/style.scss */
h2, h4, h6 {
  color: #a4b847 !important;
}

/* line 2132, ../../../blueidea/static/sass/style.scss */
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  font-weight: normal;
  line-height: 1;
  color: #999;
}

/* line 2138, ../../../blueidea/static/sass/style.scss */
.page-header {
  padding-bottom: 9px;
  margin: 20px 0 30px;
  border-bottom: 1px solid #eee;
}

/* line 2144, ../../../blueidea/static/sass/style.scss */
ul, ol {
  padding: 0;
  margin: 0 0 10px 25px;
}

/* line 2150, ../../../blueidea/static/sass/style.scss */
ul ul, ul ol {
  margin-bottom: 0;
}

/* line 2156, ../../../blueidea/static/sass/style.scss */
ol ol, ol ul {
  margin-bottom: 0;
}

/* line 2161, ../../../blueidea/static/sass/style.scss */
li {
  line-height: 20px;
}

/* line 2165, ../../../blueidea/static/sass/style.scss */
ul.unstyled, ol.unstyled, ul.inline, ol.inline {
  margin-left: 0;
  list-style: none;
}

/* line 2170, ../../../blueidea/static/sass/style.scss */
ul.inline > li, ol.inline > li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding-left: 5px;
  padding-right: 5px;
}

/* line 2178, ../../../blueidea/static/sass/style.scss */
dl {
  margin-bottom: 20px;
}

/* line 2182, ../../../blueidea/static/sass/style.scss */
dt, dd {
  line-height: 20px;
}

/* line 2186, ../../../blueidea/static/sass/style.scss */
dt {
  font-weight: bold;
}

/* line 2190, ../../../blueidea/static/sass/style.scss */
dd {
  margin-left: 10px;
}

/* line 2194, ../../../blueidea/static/sass/style.scss */
.dl-horizontal {
  *zoom: 1;
}
/* line 2196, ../../../blueidea/static/sass/style.scss */
.dl-horizontal:before {
  display: table;
  content: "";
  line-height: 0;
}
/* line 2201, ../../../blueidea/static/sass/style.scss */
.dl-horizontal:after {
  display: table;
  content: "";
  line-height: 0;
  clear: both;
}
/* line 2207, ../../../blueidea/static/sass/style.scss */
.dl-horizontal dt {
  float: left;
  width: 160px;
  clear: left;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* line 2216, ../../../blueidea/static/sass/style.scss */
.dl-horizontal dd {
  margin-left: 180px;
}

/* line 2221, ../../../blueidea/static/sass/style.scss */
hr {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #fff;
}

/* line 2229, ../../../blueidea/static/sass/style.scss */
abbr[title], abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #999;
}

/* line 2235, ../../../blueidea/static/sass/style.scss */
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

/* line 2240, ../../../blueidea/static/sass/style.scss */
blockquote {
  padding: 0 0 0 15px;
  margin: 0 0 20px;
  border-left: 5px solid #eee;
}
/* line 2244, ../../../blueidea/static/sass/style.scss */
blockquote p {
  margin-bottom: 0;
  font-size: 16.25px;
  font-weight: 300;
  line-height: 1.25;
}
/* line 2250, ../../../blueidea/static/sass/style.scss */
blockquote small {
  display: block;
  line-height: 20px;
  color: #999;
}
/* line 2254, ../../../blueidea/static/sass/style.scss */
blockquote small:before {
  content: '\2014 \00A0';
}
/* line 2258, ../../../blueidea/static/sass/style.scss */
blockquote.pull-right {
  float: right;
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eee;
  border-left: 0;
}
/* line 2264, ../../../blueidea/static/sass/style.scss */
blockquote.pull-right p {
  text-align: right;
}
/* line 2267, ../../../blueidea/static/sass/style.scss */
blockquote.pull-right small {
  text-align: right;
}
/* line 2269, ../../../blueidea/static/sass/style.scss */
blockquote.pull-right small:before {
  content: '';
}
/* line 2272, ../../../blueidea/static/sass/style.scss */
blockquote.pull-right small:after {
  content: '\00A0 \2014';
}

/* line 2280, ../../../blueidea/static/sass/style.scss */
q:before, q:after {
  content: "";
}

/* line 2286, ../../../blueidea/static/sass/style.scss */
blockquote:before, blockquote:after {
  content: "";
}

/* line 2291, ../../../blueidea/static/sass/style.scss */
address {
  display: block;
  margin-bottom: 20px;
  font-style: normal;
  line-height: 20px;
}

/* line 2298, ../../../blueidea/static/sass/style.scss */
code, pre {
  padding: 0 3px 2px;
  font-family: monospace;
  font-size: 11px;
  color: #333;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

/* line 2309, ../../../blueidea/static/sass/style.scss */
code {
  padding: 2px 4px;
  color: #d14;
  background-color: #f7f7f9;
  border: 1px solid #e1e1e8;
  white-space: nowrap;
}

/* line 2317, ../../../blueidea/static/sass/style.scss */
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 20px;
  word-break: break-all;
  word-wrap: break-word;
  white-space: pre;
  white-space: pre-wrap;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
/* line 2334, ../../../blueidea/static/sass/style.scss */
pre code {
  padding: 0;
  color: inherit;
  white-space: pre;
  white-space: pre-wrap;
  background-color: transparent;
  border: 0;
}

/* line 2344, ../../../blueidea/static/sass/style.scss */
prettyprint {
  margin-bottom: 20px;
}

/* line 2348, ../../../blueidea/static/sass/style.scss */
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

/* line 2353, ../../../blueidea/static/sass/style.scss */
form {
  margin: 0;
}

/* line 2357, ../../../blueidea/static/sass/style.scss */
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

/* line 2363, ../../../blueidea/static/sass/style.scss */
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 19.5px;
  line-height: 40px;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
/* line 2373, ../../../blueidea/static/sass/style.scss */
legend small {
  font-size: 15px;
  color: #999;
}

/* line 2379, ../../../blueidea/static/sass/style.scss */
label, input, button, select, textarea {
  font-size: 13px;
  font-weight: normal;
  line-height: 20px;
}

/* line 2385, ../../../blueidea/static/sass/style.scss */
input, button, select, textarea {
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

/* line 2389, ../../../blueidea/static/sass/style.scss */
label {
  display: block;
  margin-bottom: 5px;
}

/* line 2394, ../../../blueidea/static/sass/style.scss */
select, textarea {
  display: inline-block;
  height: 20px;
  padding: 4px 6px;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 20px;
  color: #555;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  vertical-align: middle;
}

/* line 2409, ../../../blueidea/static/sass/style.scss */
input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"] {
  display: inline-block;
  height: 30px;
  padding: 4px 6px;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 20px;
  color: #555;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  vertical-align: middle;
}

/* line 2424, ../../../blueidea/static/sass/style.scss */
.uneditable-input {
  display: inline-block;
  height: 20px;
  padding: 4px 6px;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 20px;
  color: #555;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  vertical-align: middle;
}

/* line 2438, ../../../blueidea/static/sass/style.scss */
input, textarea, .uneditable-input {
  width: 206px;
}

/* line 2442, ../../../blueidea/static/sass/style.scss */
textarea {
  height: auto;
  background-color: #fff;
  border: 1px solid #ccc;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border linear .2s, box-shadow linear .2s;
  -moz-transition: border linear .2s, box-shadow linear .2s;
  -o-transition: border linear .2s, box-shadow linear .2s;
  transition: border linear .2s, box-shadow linear .2s;
}

/* line 2456, ../../../blueidea/static/sass/style.scss */
input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"] {
  background-color: #fff;
  border: 1px solid #ccc;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border linear .2s, box-shadow linear .2s;
  -moz-transition: border linear .2s, box-shadow linear .2s;
  -o-transition: border linear .2s, box-shadow linear .2s;
  transition: border linear .2s, box-shadow linear .2s;
}

/* line 2469, ../../../blueidea/static/sass/style.scss */
.uneditable-input {
  background-color: #fff;
  border: 1px solid #ccc;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border linear .2s, box-shadow linear .2s;
  -moz-transition: border linear .2s, box-shadow linear .2s;
  -o-transition: border linear .2s, box-shadow linear .2s;
  transition: border linear .2s, box-shadow linear .2s;
}

/* line 2481, ../../../blueidea/static/sass/style.scss */
textarea:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  outline: thin dotted \9;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}

/* line 2491, ../../../blueidea/static/sass/style.scss */
input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  outline: thin dotted \9;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}

/* line 2501, ../../../blueidea/static/sass/style.scss */
.uneditable-input:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  outline: thin dotted \9;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}

/* line 2511, ../../../blueidea/static/sass/style.scss */
input[type="radio"], input[type="checkbox"] {
  margin: 4px 0 0;
  *margin-top: 0;
  margin-top: 1px \9;
  line-height: normal;
}
/* line 2517, ../../../blueidea/static/sass/style.scss */
input[type="file"], input[type="image"], input[type="submit"], input[type="reset"], input[type="button"], input[type="radio"], input[type="checkbox"] {
  width: auto;
}

/* line 2522, ../../../blueidea/static/sass/style.scss */
select, input[type="file"] {
  height: 30px;
  *margin-top: 4px;
  line-height: 30px;
}

/* line 2528, ../../../blueidea/static/sass/style.scss */
select {
  width: 220px;
  border: 1px solid #ccc;
  background-color: #fff;
}
/* line 2532, ../../../blueidea/static/sass/style.scss */
select[multiple], select[size] {
  height: auto;
}
/* line 2535, ../../../blueidea/static/sass/style.scss */
select:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 2543, ../../../blueidea/static/sass/style.scss */
input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 2550, ../../../blueidea/static/sass/style.scss */
.uneditable-input, .uneditable-textarea {
  color: #999;
  background-color: #fcfcfc;
  border-color: #ccc;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  cursor: not-allowed;
}

/* line 2560, ../../../blueidea/static/sass/style.scss */
.uneditable-input {
  overflow: hidden;
  white-space: nowrap;
}

/* line 2565, ../../../blueidea/static/sass/style.scss */
.uneditable-textarea {
  width: auto;
  height: auto;
}

/* line 2570, ../../../blueidea/static/sass/style.scss */
input:-moz-placeholder, textarea:-moz-placeholder, input:-ms-input-placeholder, textarea:-ms-input-placeholder, input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #999;
}

/* line 2574, ../../../blueidea/static/sass/style.scss */
.radio, .checkbox {
  min-height: 20px;
  padding-left: 20px;
}

/* line 2579, ../../../blueidea/static/sass/style.scss */
.radio input[type="radio"], .checkbox input[type="checkbox"] {
  float: left;
  margin-left: -20px;
}

/* line 2585, ../../../blueidea/static/sass/style.scss */
.controls > .radio:first-child, .controls > .checkbox:first-child {
  padding-top: 5px;
}

/* line 2590, ../../../blueidea/static/sass/style.scss */
.radio.inline, .checkbox.inline {
  display: inline-block;
  padding-top: 5px;
  margin-bottom: 0;
  vertical-align: middle;
}

/* line 2597, ../../../blueidea/static/sass/style.scss */
.radio.inline + .radio.inline, .checkbox.inline + .checkbox.inline {
  margin-left: 10px;
}

/* line 2601, ../../../blueidea/static/sass/style.scss */
.input-mini {
  width: 60px;
}

/* line 2605, ../../../blueidea/static/sass/style.scss */
.input-small {
  width: 90px;
}

/* line 2609, ../../../blueidea/static/sass/style.scss */
.input-medium {
  width: 150px;
}

/* line 2613, ../../../blueidea/static/sass/style.scss */
.input-large {
  width: 210px;
}

/* line 2617, ../../../blueidea/static/sass/style.scss */
.input-xlarge {
  width: 270px;
}

/* line 2621, ../../../blueidea/static/sass/style.scss */
.input-xxlarge {
  width: 530px;
}

/* line 2625, ../../../blueidea/static/sass/style.scss */
input[class*="span"], select[class*="span"], textarea[class*="span"], .uneditable-input[class*="span"] {
  float: none;
  margin-left: 0;
}

/* line 2631, ../../../blueidea/static/sass/style.scss */
.row-fluid input[class*="span"], .row-fluid select[class*="span"], .row-fluid textarea[class*="span"], .row-fluid .uneditable-input[class*="span"] {
  float: none;
  margin-left: 0;
}

/* line 2638, ../../../blueidea/static/sass/style.scss */
.input-append input[class*="span"], .input-append .uneditable-input[class*="span"] {
  display: inline-block;
}

/* line 2644, ../../../blueidea/static/sass/style.scss */
.input-prepend input[class*="span"], .input-prepend .uneditable-input[class*="span"] {
  display: inline-block;
}

/* line 2650, ../../../blueidea/static/sass/style.scss */
.row-fluid input[class*="span"], .row-fluid select[class*="span"], .row-fluid textarea[class*="span"], .row-fluid .uneditable-input[class*="span"], .row-fluid .input-prepend [class*="span"], .row-fluid .input-append [class*="span"] {
  display: inline-block;
}

/* line 2655, ../../../blueidea/static/sass/style.scss */
input, textarea, .uneditable-input {
  margin-left: 0;
}

/* line 2659, ../../../blueidea/static/sass/style.scss */
.controls-row [class*="span"] + [class*="span"] {
  margin-left: 20px;
}

/* line 2663, ../../../blueidea/static/sass/style.scss */
input.span12, textarea.span12, .uneditable-input.span12 {
  width: 926px;
}

/* line 2667, ../../../blueidea/static/sass/style.scss */
input.span11, textarea.span11, .uneditable-input.span11 {
  width: 846px;
}

/* line 2671, ../../../blueidea/static/sass/style.scss */
input.span10, textarea.span10, .uneditable-input.span10 {
  width: 766px;
}

/* line 2675, ../../../blueidea/static/sass/style.scss */
input.span9, textarea.span9, .uneditable-input.span9 {
  width: 686px;
}

/* line 2679, ../../../blueidea/static/sass/style.scss */
input.span8, textarea.span8, .uneditable-input.span8 {
  width: 606px;
}

/* line 2683, ../../../blueidea/static/sass/style.scss */
input.span7, textarea.span7, .uneditable-input.span7 {
  width: 526px;
}

/* line 2687, ../../../blueidea/static/sass/style.scss */
input.span6, textarea.span6, .uneditable-input.span6 {
  width: 446px;
}

/* line 2691, ../../../blueidea/static/sass/style.scss */
input.span5, textarea.span5, .uneditable-input.span5 {
  width: 366px;
}

/* line 2695, ../../../blueidea/static/sass/style.scss */
input.span4, textarea.span4, .uneditable-input.span4 {
  width: 286px;
}

/* line 2699, ../../../blueidea/static/sass/style.scss */
input.span3, textarea.span3, .uneditable-input.span3 {
  width: 206px;
}

/* line 2703, ../../../blueidea/static/sass/style.scss */
input.span2, textarea.span2, .uneditable-input.span2 {
  width: 126px;
}

/* line 2707, ../../../blueidea/static/sass/style.scss */
input.span1, textarea.span1, .uneditable-input.span1 {
  width: 46px;
}

/* line 2711, ../../../blueidea/static/sass/style.scss */
.controls-row {
  *zoom: 1;
}
/* line 2713, ../../../blueidea/static/sass/style.scss */
.controls-row:before {
  display: table;
  content: "";
  line-height: 0;
}
/* line 2718, ../../../blueidea/static/sass/style.scss */
.controls-row:after {
  display: table;
  content: "";
  line-height: 0;
  clear: both;
}
/* line 2724, ../../../blueidea/static/sass/style.scss */
.controls-row [class*="span"] {
  float: left;
}

/* line 2729, ../../../blueidea/static/sass/style.scss */
.row-fluid .controls-row [class*="span"] {
  float: left;
}

/* line 2734, ../../../blueidea/static/sass/style.scss */
.controls-row .checkbox[class*="span"], .controls-row .radio[class*="span"] {
  padding-top: 5px;
}

/* line 2739, ../../../blueidea/static/sass/style.scss */
input[disabled], select[disabled], textarea[disabled], input[readonly], select[readonly], textarea[readonly] {
  cursor: not-allowed;
  background-color: #eee;
}

/* line 2745, ../../../blueidea/static/sass/style.scss */
input[type="radio"][disabled], input[type="checkbox"][disabled], input[type="radio"][readonly], input[type="checkbox"][readonly] {
  background-color: transparent;
}

/* line 2752, ../../../blueidea/static/sass/style.scss */
.control-group.warning .control-label, .control-group.warning .help-block, .control-group.warning .help-inline, .control-group.warning .checkbox, .control-group.warning .radio, .control-group.warning input, .control-group.warning select, .control-group.warning textarea {
  color: #c09853;
}
/* line 2755, ../../../blueidea/static/sass/style.scss */
.control-group.warning input, .control-group.warning select, .control-group.warning textarea {
  border-color: #c09853;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
/* line 2761, ../../../blueidea/static/sass/style.scss */
.control-group.warning input:focus, .control-group.warning select:focus, .control-group.warning textarea:focus {
  border-color: #a47e3c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
}
/* line 2767, ../../../blueidea/static/sass/style.scss */
.control-group.warning .input-prepend .add-on, .control-group.warning .input-append .add-on {
  color: #c09853;
  background-color: #fcf8e3;
  border-color: #c09853;
}
/* line 2774, ../../../blueidea/static/sass/style.scss */
.control-group.error .control-label, .control-group.error .help-block, .control-group.error .help-inline, .control-group.error .checkbox, .control-group.error .radio, .control-group.error input, .control-group.error select, .control-group.error textarea {
  color: #b94a48;
}
/* line 2777, ../../../blueidea/static/sass/style.scss */
.control-group.error input, .control-group.error select, .control-group.error textarea {
  border-color: #b94a48;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
/* line 2783, ../../../blueidea/static/sass/style.scss */
.control-group.error input:focus, .control-group.error select:focus, .control-group.error textarea:focus {
  border-color: #953b39;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
}
/* line 2789, ../../../blueidea/static/sass/style.scss */
.control-group.error .input-prepend .add-on, .control-group.error .input-append .add-on {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #b94a48;
}
/* line 2796, ../../../blueidea/static/sass/style.scss */
.control-group.success .control-label, .control-group.success .help-block, .control-group.success .help-inline, .control-group.success .checkbox, .control-group.success .radio, .control-group.success input, .control-group.success select, .control-group.success textarea {
  color: #468847;
}
/* line 2799, ../../../blueidea/static/sass/style.scss */
.control-group.success input, .control-group.success select, .control-group.success textarea {
  border-color: #468847;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
/* line 2805, ../../../blueidea/static/sass/style.scss */
.control-group.success input:focus, .control-group.success select:focus, .control-group.success textarea:focus {
  border-color: #356635;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
}
/* line 2811, ../../../blueidea/static/sass/style.scss */
.control-group.success .input-prepend .add-on, .control-group.success .input-append .add-on {
  color: #468847;
  background-color: #dff0d8;
  border-color: #468847;
}
/* line 2818, ../../../blueidea/static/sass/style.scss */
.control-group.info .control-label, .control-group.info .help-block, .control-group.info .help-inline, .control-group.info .checkbox, .control-group.info .radio, .control-group.info input, .control-group.info select, .control-group.info textarea {
  color: #3a87ad;
}
/* line 2821, ../../../blueidea/static/sass/style.scss */
.control-group.info input, .control-group.info select, .control-group.info textarea {
  border-color: #3a87ad;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
/* line 2827, ../../../blueidea/static/sass/style.scss */
.control-group.info input:focus, .control-group.info select:focus, .control-group.info textarea:focus {
  border-color: #2d6987;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
}
/* line 2833, ../../../blueidea/static/sass/style.scss */
.control-group.info .input-prepend .add-on, .control-group.info .input-append .add-on {
  color: #3a87ad;
  background-color: #d9edf7;
  border-color: #3a87ad;
}

/* line 2841, ../../../blueidea/static/sass/style.scss */
input:focus:invalid, textarea:focus:invalid, select:focus:invalid {
  color: #b94a48;
  border-color: #ee5f5b;
}

/* line 2846, ../../../blueidea/static/sass/style.scss */
input:focus:invalid:focus, textarea:focus:invalid:focus, select:focus:invalid:focus {
  border-color: #e9322d;
  -webkit-box-shadow: 0 0 6px #f8b9b7;
  -moz-box-shadow: 0 0 6px #f8b9b7;
  box-shadow: 0 0 6px #f8b9b7;
}

/* line 2853, ../../../blueidea/static/sass/style.scss */
.form-actions {
  padding: 19px 20px 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-top: 1px solid #e5e5e5;
  *zoom: 1;
}
/* line 2860, ../../../blueidea/static/sass/style.scss */
.form-actions:before {
  display: table;
  content: "";
  line-height: 0;
}
/* line 2865, ../../../blueidea/static/sass/style.scss */
.form-actions:after {
  display: table;
  content: "";
  line-height: 0;
  clear: both;
}

/* line 2873, ../../../blueidea/static/sass/style.scss */
.help-block, .help-inline {
  color: #262626;
}

/* line 2877, ../../../blueidea/static/sass/style.scss */
.help-block {
  display: block;
  margin-bottom: 10px;
}

/* line 2882, ../../../blueidea/static/sass/style.scss */
.help-inline {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
  padding-left: 5px;
}

/* line 2890, ../../../blueidea/static/sass/style.scss */
.input-append, .input-prepend {
  display: inline-block;
  margin-bottom: 10px;
  vertical-align: middle;
  font-size: 0;
  white-space: nowrap;
}

/* line 2898, ../../../blueidea/static/sass/style.scss */
.input-append input, .input-prepend input, .input-append select, .input-prepend select, .input-append .uneditable-input, .input-prepend .uneditable-input, .input-append .dropdown-menu, .input-prepend .dropdown-menu, .input-append .popover, .input-prepend .popover {
  font-size: 13px;
}

/* line 2902, ../../../blueidea/static/sass/style.scss */
.input-append input, .input-prepend input, .input-append select, .input-prepend select, .input-append .uneditable-input, .input-prepend .uneditable-input {
  position: relative;
  margin-bottom: 0;
  *margin-left: 0;
  vertical-align: top;
  border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}

/* line 2913, ../../../blueidea/static/sass/style.scss */
.input-append input:focus, .input-prepend input:focus, .input-append select:focus, .input-prepend select:focus, .input-append .uneditable-input:focus, .input-prepend .uneditable-input:focus {
  z-index: 2;
}

/* line 2917, ../../../blueidea/static/sass/style.scss */
.input-append .add-on, .input-prepend .add-on {
  display: inline-block;
  width: auto;
  height: 20px;
  min-width: 16px;
  padding: 4px 5px;
  font-size: 13px;
  font-weight: normal;
  line-height: 20px;
  text-align: center;
  text-shadow: 0 1px 0 #fff;
  background-color: #eee;
  border: 1px solid #ccc;
}

/* line 2932, ../../../blueidea/static/sass/style.scss */
.input-append .add-on, .input-prepend .add-on, .input-append .btn, .input-prepend .btn, .input-append .btn-group > .dropdown-toggle, .input-prepend .btn-group > .dropdown-toggle {
  vertical-align: top;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

/* line 2940, ../../../blueidea/static/sass/style.scss */
.input-append .active {
  background-color: #a9dba9;
  border-color: #46a546;
}

/* line 2946, ../../../blueidea/static/sass/style.scss */
.input-prepend .active {
  background-color: #a9dba9;
  border-color: #46a546;
}
/* line 2950, ../../../blueidea/static/sass/style.scss */
.input-prepend .add-on, .input-prepend .btn {
  margin-right: -1px;
}
/* line 2953, ../../../blueidea/static/sass/style.scss */
.input-prepend .add-on:first-child, .input-prepend .btn:first-child {
  border-radius: 4px 0 0 4px;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}

/* line 2962, ../../../blueidea/static/sass/style.scss */
.input-append input, .input-append select, .input-append .uneditable-input {
  border-radius: 4px 0 0 4px;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}
/* line 2968, ../../../blueidea/static/sass/style.scss */
.input-append input + .btn-group .btn:last-child, .input-append select + .btn-group .btn:last-child, .input-append .uneditable-input + .btn-group .btn:last-child {
  border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
/* line 2974, ../../../blueidea/static/sass/style.scss */
.input-append .add-on, .input-append .btn, .input-append .btn-group {
  margin-left: -1px;
}
/* line 2977, ../../../blueidea/static/sass/style.scss */
.input-append .add-on:last-child, .input-append .btn:last-child, .input-append .btn-group:last-child > .dropdown-toggle {
  border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}

/* line 2986, ../../../blueidea/static/sass/style.scss */
.input-prepend.input-append input, .input-prepend.input-append select, .input-prepend.input-append .uneditable-input {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
/* line 2992, ../../../blueidea/static/sass/style.scss */
.input-prepend.input-append input + .btn-group .btn, .input-prepend.input-append select + .btn-group .btn, .input-prepend.input-append .uneditable-input + .btn-group .btn {
  border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
/* line 2998, ../../../blueidea/static/sass/style.scss */
.input-prepend.input-append .add-on:first-child, .input-prepend.input-append .btn:first-child {
  margin-right: -1px;
  border-radius: 4px 0 0 4px;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}
/* line 3005, ../../../blueidea/static/sass/style.scss */
.input-prepend.input-append .add-on:last-child, .input-prepend.input-append .btn:last-child {
  margin-left: -1px;
  border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
/* line 3012, ../../../blueidea/static/sass/style.scss */
.input-prepend.input-append .btn-group:first-child {
  margin-left: 0;
}

/* line 3017, ../../../blueidea/static/sass/style.scss */
input.search-query {
  padding-right: 14px;
  padding-right: 4px \9;
  padding-left: 14px;
  padding-left: 4px \9;
  margin-bottom: 0;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}

/* line 3030, ../../../blueidea/static/sass/style.scss */
.form-search .input-append .search-query, .form-search .input-prepend .search-query {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
/* line 3037, ../../../blueidea/static/sass/style.scss */
.form-search .input-append .search-query {
  border-radius: 14px 0 0 14px;
  -webkit-border-radius: 14px 0 0 14px;
  -moz-border-radius: 14px 0 0 14px;
  border-radius: 14px 0 0 14px;
}
/* line 3043, ../../../blueidea/static/sass/style.scss */
.form-search .input-append .btn {
  border-radius: 0 14px 14px 0;
  -webkit-border-radius: 0 14px 14px 0;
  -moz-border-radius: 0 14px 14px 0;
  border-radius: 0 14px 14px 0;
}
/* line 3051, ../../../blueidea/static/sass/style.scss */
.form-search .input-prepend .search-query {
  border-radius: 0 14px 14px 0;
  -webkit-border-radius: 0 14px 14px 0;
  -moz-border-radius: 0 14px 14px 0;
  border-radius: 0 14px 14px 0;
}
/* line 3057, ../../../blueidea/static/sass/style.scss */
.form-search .input-prepend .btn {
  border-radius: 14px 0 0 14px;
  -webkit-border-radius: 14px 0 0 14px;
  -moz-border-radius: 14px 0 0 14px;
  border-radius: 14px 0 0 14px;
}
/* line 3064, ../../../blueidea/static/sass/style.scss */
.form-search input {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  margin-bottom: 0;
  vertical-align: middle;
}

/* line 3073, ../../../blueidea/static/sass/style.scss */
.form-inline input, .form-horizontal input, .form-search textarea, .form-inline textarea, .form-horizontal textarea, .form-search select, .form-inline select, .form-horizontal select, .form-search .help-inline, .form-inline .help-inline, .form-horizontal .help-inline, .form-search .uneditable-input, .form-inline .uneditable-input, .form-horizontal .uneditable-input, .form-search .input-prepend, .form-inline .input-prepend, .form-horizontal .input-prepend, .form-search .input-append, .form-inline .input-append, .form-horizontal .input-append {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  margin-bottom: 0;
  vertical-align: middle;
}

/* line 3081, ../../../blueidea/static/sass/style.scss */
.form-search .hide, .form-inline .hide, .form-horizontal .hide {
  display: none;
}

/* line 3085, ../../../blueidea/static/sass/style.scss */
.form-search label, .form-inline label, .form-search .btn-group, .form-inline .btn-group {
  display: inline-block;
}

/* line 3089, ../../../blueidea/static/sass/style.scss */
.form-search .input-append, .form-inline .input-append, .form-search .input-prepend, .form-inline .input-prepend {
  margin-bottom: 0;
}

/* line 3094, ../../../blueidea/static/sass/style.scss */
.form-search .radio, .form-search .checkbox {
  padding-left: 0;
  margin-bottom: 0;
  vertical-align: middle;
}

/* line 3102, ../../../blueidea/static/sass/style.scss */
.form-inline .radio, .form-inline .checkbox {
  padding-left: 0;
  margin-bottom: 0;
  vertical-align: middle;
}

/* line 3110, ../../../blueidea/static/sass/style.scss */
.form-search .radio input[type="radio"], .form-search .checkbox input[type="checkbox"] {
  float: left;
  margin-right: 3px;
  margin-left: 0;
}

/* line 3118, ../../../blueidea/static/sass/style.scss */
.form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] {
  float: left;
  margin-right: 3px;
  margin-left: 0;
}

/* line 3125, ../../../blueidea/static/sass/style.scss */
.control-group {
  margin-bottom: 10px;
}

/* line 3129, ../../../blueidea/static/sass/style.scss */
legend + .control-group {
  margin-top: 20px;
  -webkit-margin-top-collapse: separate;
}

/* line 3135, ../../../blueidea/static/sass/style.scss */
.form-horizontal .control-group {
  margin-bottom: 20px;
  *zoom: 1;
}
/* line 3138, ../../../blueidea/static/sass/style.scss */
.form-horizontal .control-group:before {
  display: table;
  content: "";
  line-height: 0;
}
/* line 3143, ../../../blueidea/static/sass/style.scss */
.form-horizontal .control-group:after {
  display: table;
  content: "";
  line-height: 0;
  clear: both;
}
/* line 3150, ../../../blueidea/static/sass/style.scss */
.form-horizontal .control-label {
  float: left;
  width: 160px;
  padding-top: 5px;
  text-align: right;
}
/* line 3156, ../../../blueidea/static/sass/style.scss */
.form-horizontal .controls {
  *display: inline-block;
  *padding-left: 20px;
  margin-left: 180px;
  *margin-left: 0;
}
/* line 3161, ../../../blueidea/static/sass/style.scss */
.form-horizontal .controls:first-child {
  *padding-left: 180px;
}
/* line 3165, ../../../blueidea/static/sass/style.scss */
.form-horizontal .help-block {
  margin-bottom: 0;
}
/* line 3168, ../../../blueidea/static/sass/style.scss */
.form-horizontal input + .help-block, .form-horizontal select + .help-block, .form-horizontal textarea + .help-block, .form-horizontal .uneditable-input + .help-block, .form-horizontal .input-prepend + .help-block, .form-horizontal .input-append + .help-block {
  margin-top: 10px;
}
/* line 3171, ../../../blueidea/static/sass/style.scss */
.form-horizontal .form-actions {
  padding-left: 180px;
}

/* line 3176, ../../../blueidea/static/sass/style.scss */
table {
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 3183, ../../../blueidea/static/sass/style.scss */
.table {
  width: 100%;
  margin-bottom: 20px;
}
/* line 3186, ../../../blueidea/static/sass/style.scss */
.table th, .table td {
  padding: 8px;
  line-height: 20px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
/* line 3193, ../../../blueidea/static/sass/style.scss */
.table th {
  font-weight: bold;
}
/* line 3196, ../../../blueidea/static/sass/style.scss */
.table thead th {
  vertical-align: bottom;
}
/* line 3200, ../../../blueidea/static/sass/style.scss */
.table caption + thead tr:first-child th, .table caption + thead tr:first-child td {
  border-top: 0;
}
/* line 3205, ../../../blueidea/static/sass/style.scss */
.table colgroup + thead tr:first-child th, .table colgroup + thead tr:first-child td {
  border-top: 0;
}
/* line 3210, ../../../blueidea/static/sass/style.scss */
.table thead:first-child tr:first-child th, .table thead:first-child tr:first-child td {
  border-top: 0;
}
/* line 3214, ../../../blueidea/static/sass/style.scss */
.table tbody + tbody {
  border-top: 2px solid #ddd;
}
/* line 3217, ../../../blueidea/static/sass/style.scss */
.table .table {
  background-color: #fff;
}

/* line 3223, ../../../blueidea/static/sass/style.scss */
.table-condensed th, .table-condensed td {
  padding: 4px 5px;
}

/* line 3228, ../../../blueidea/static/sass/style.scss */
.table-bordered {
  border: 1px solid #ddd;
  border-collapse: separate;
  *border-collapse: collapse;
  border-left: 0;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
/* line 3237, ../../../blueidea/static/sass/style.scss */
.table-bordered th, .table-bordered td {
  border-left: 1px solid #ddd;
}
/* line 3241, ../../../blueidea/static/sass/style.scss */
.table-bordered caption + thead tr:first-child th {
  border-top: 0;
}
/* line 3245, ../../../blueidea/static/sass/style.scss */
.table-bordered caption + tbody tr:first-child th, .table-bordered caption + tbody tr:first-child td {
  border-top: 0;
}
/* line 3251, ../../../blueidea/static/sass/style.scss */
.table-bordered colgroup + thead tr:first-child th {
  border-top: 0;
}
/* line 3255, ../../../blueidea/static/sass/style.scss */
.table-bordered colgroup + tbody tr:first-child th, .table-bordered colgroup + tbody tr:first-child td {
  border-top: 0;
}
/* line 3260, ../../../blueidea/static/sass/style.scss */
.table-bordered thead:first-child tr:first-child th {
  border-top: 0;
}
/* line 3264, ../../../blueidea/static/sass/style.scss */
.table-bordered tbody:first-child tr:first-child th, .table-bordered tbody:first-child tr:first-child td {
  border-top: 0;
}
/* line 3268, ../../../blueidea/static/sass/style.scss */
.table-bordered thead:first-child tr:first-child > th:first-child {
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
}
/* line 3274, ../../../blueidea/static/sass/style.scss */
.table-bordered tbody:first-child tr:first-child > td:first-child, .table-bordered tbody:first-child tr:first-child > th:first-child {
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
}
/* line 3280, ../../../blueidea/static/sass/style.scss */
.table-bordered thead:first-child tr:first-child > th:last-child {
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
}
/* line 3286, ../../../blueidea/static/sass/style.scss */
.table-bordered tbody:first-child tr:first-child > td:last-child, .table-bordered tbody:first-child tr:first-child > th:last-child {
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
}
/* line 3292, ../../../blueidea/static/sass/style.scss */
.table-bordered thead:last-child tr:last-child > th:first-child {
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
}
/* line 3298, ../../../blueidea/static/sass/style.scss */
.table-bordered tbody:last-child tr:last-child > td:first-child, .table-bordered tbody:last-child tr:last-child > th:first-child {
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
}
/* line 3305, ../../../blueidea/static/sass/style.scss */
.table-bordered tfoot:last-child tr:last-child > td:first-child, .table-bordered tfoot:last-child tr:last-child > th:first-child {
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
}
/* line 3311, ../../../blueidea/static/sass/style.scss */
.table-bordered thead:last-child tr:last-child > th:last-child {
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
}
/* line 3317, ../../../blueidea/static/sass/style.scss */
.table-bordered tbody:last-child tr:last-child > td:last-child, .table-bordered tbody:last-child tr:last-child > th:last-child {
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
}
/* line 3325, ../../../blueidea/static/sass/style.scss */
.table-bordered tfoot:last-child tr:last-child > td:last-child, .table-bordered tfoot:last-child tr:last-child > th:last-child {
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
}
/* line 3332, ../../../blueidea/static/sass/style.scss */
.table-bordered tfoot + tbody:last-child tr:last-child td:first-child {
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-left-radius: 0;
}
/* line 3337, ../../../blueidea/static/sass/style.scss */
.table-bordered tfoot + tbody:last-child tr:last-child td:last-child {
  -webkit-border-bottom-right-radius: 0;
  -moz-border-radius-bottomright: 0;
  border-bottom-right-radius: 0;
}
/* line 3345, ../../../blueidea/static/sass/style.scss */
.table-bordered caption + thead tr:first-child th:first-child, .table-bordered caption + tbody tr:first-child td:first-child {
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
}
/* line 3352, ../../../blueidea/static/sass/style.scss */
.table-bordered colgroup + thead tr:first-child th:first-child, .table-bordered colgroup + tbody tr:first-child td:first-child {
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
}
/* line 3359, ../../../blueidea/static/sass/style.scss */
.table-bordered caption + thead tr:first-child th:last-child, .table-bordered caption + tbody tr:first-child td:last-child {
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
}
/* line 3366, ../../../blueidea/static/sass/style.scss */
.table-bordered colgroup + thead tr:first-child th:last-child, .table-bordered colgroup + tbody tr:first-child td:last-child {
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
}

/* line 3375, ../../../blueidea/static/sass/style.scss */
.table-striped tbody > tr:nth-child(odd) > td, .table-striped tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}

/* line 3381, ../../../blueidea/static/sass/style.scss */
.table-hover tbody tr:hover > td, .table-hover tbody tr:hover > th {
  background-color: #f5f5f5;
}

/* line 3387, ../../../blueidea/static/sass/style.scss */
table td[class*="span"], table th[class*="span"] {
  display: table-cell;
  float: none;
  margin-left: 0;
}

/* line 3395, ../../../blueidea/static/sass/style.scss */
.row-fluid table td[class*="span"], .row-fluid table th[class*="span"] {
  display: table-cell;
  float: none;
  margin-left: 0;
}

/* line 3403, ../../../blueidea/static/sass/style.scss */
.table td.span1, .table th.span1 {
  float: none;
  width: 44px;
  margin-left: 0;
}
/* line 3408, ../../../blueidea/static/sass/style.scss */
.table td.span2, .table th.span2 {
  float: none;
  width: 124px;
  margin-left: 0;
}
/* line 3413, ../../../blueidea/static/sass/style.scss */
.table td.span3, .table th.span3 {
  float: none;
  width: 204px;
  margin-left: 0;
}
/* line 3418, ../../../blueidea/static/sass/style.scss */
.table td.span4, .table th.span4 {
  float: none;
  width: 284px;
  margin-left: 0;
}
/* line 3423, ../../../blueidea/static/sass/style.scss */
.table td.span5, .table th.span5 {
  float: none;
  width: 364px;
  margin-left: 0;
}
/* line 3428, ../../../blueidea/static/sass/style.scss */
.table td.span6, .table th.span6 {
  float: none;
  width: 444px;
  margin-left: 0;
}
/* line 3433, ../../../blueidea/static/sass/style.scss */
.table td.span7, .table th.span7 {
  float: none;
  width: 524px;
  margin-left: 0;
}
/* line 3438, ../../../blueidea/static/sass/style.scss */
.table td.span8, .table th.span8 {
  float: none;
  width: 604px;
  margin-left: 0;
}
/* line 3443, ../../../blueidea/static/sass/style.scss */
.table td.span9, .table th.span9 {
  float: none;
  width: 684px;
  margin-left: 0;
}
/* line 3448, ../../../blueidea/static/sass/style.scss */
.table td.span10, .table th.span10 {
  float: none;
  width: 764px;
  margin-left: 0;
}
/* line 3453, ../../../blueidea/static/sass/style.scss */
.table td.span11, .table th.span11 {
  float: none;
  width: 844px;
  margin-left: 0;
}
/* line 3458, ../../../blueidea/static/sass/style.scss */
.table td.span12, .table th.span12 {
  float: none;
  width: 924px;
  margin-left: 0;
}
/* line 3464, ../../../blueidea/static/sass/style.scss */
.table tbody tr.success > td {
  background-color: #dff0d8;
}
/* line 3467, ../../../blueidea/static/sass/style.scss */
.table tbody tr.error > td {
  background-color: #f2dede;
}
/* line 3470, ../../../blueidea/static/sass/style.scss */
.table tbody tr.warning > td {
  background-color: #fcf8e3;
}
/* line 3473, ../../../blueidea/static/sass/style.scss */
.table tbody tr.info > td {
  background-color: #d9edf7;
}

/* line 3480, ../../../blueidea/static/sass/style.scss */
.table-hover tbody tr.success:hover > td {
  background-color: #d0e9c6;
}
/* line 3483, ../../../blueidea/static/sass/style.scss */
.table-hover tbody tr.error:hover > td {
  background-color: #ebcccc;
}
/* line 3486, ../../../blueidea/static/sass/style.scss */
.table-hover tbody tr.warning:hover > td {
  background-color: #faf2cc;
}
/* line 3489, ../../../blueidea/static/sass/style.scss */
.table-hover tbody tr.info:hover > td {
  background-color: #c4e3f3;
}

/* line 3494, ../../../blueidea/static/sass/style.scss */
[class^="icon-"], [class*=" icon-"] {
  display: inline-block;
  width: 14px;
  height: 14px;
  *margin-right: .3em;
  line-height: 14px;
  vertical-align: text-top;
  background-image: url("../img/glyphicons-halflings.png");
  background-position: 14px 14px;
  background-repeat: no-repeat;
  margin-top: 1px;
}

/* line 3507, ../../../blueidea/static/sass/style.scss */
.icon-white {
  background-image: url("../img/glyphicons-halflings-white.png");
}

/* line 3512, ../../../blueidea/static/sass/style.scss */
.nav-pills > .active > a > [class^="icon-"], .nav-pills > .active > a > [class*=" icon-"] {
  background-image: url("../img/glyphicons-halflings-white.png");
}

/* line 3518, ../../../blueidea/static/sass/style.scss */
.nav-list > .active > a > [class^="icon-"], .nav-list > .active > a > [class*=" icon-"] {
  background-image: url("../img/glyphicons-halflings-white.png");
}

/* line 3524, ../../../blueidea/static/sass/style.scss */
.navbar-inverse .nav > .active > a > [class^="icon-"], .navbar-inverse .nav > .active > a > [class*=" icon-"] {
  background-image: url("../img/glyphicons-halflings-white.png");
}

/* line 3531, ../../../blueidea/static/sass/style.scss */
.dropdown-menu > li > a:hover > [class^="icon-"], .dropdown-menu > li > a:focus > [class^="icon-"], .dropdown-menu > li > a:hover > [class*=" icon-"], .dropdown-menu > li > a:focus > [class*=" icon-"] {
  background-image: url("../img/glyphicons-halflings-white.png");
}
/* line 3536, ../../../blueidea/static/sass/style.scss */
.dropdown-menu > .active > a > [class^="icon-"], .dropdown-menu > .active > a > [class*=" icon-"] {
  background-image: url("../img/glyphicons-halflings-white.png");
}

/* line 3543, ../../../blueidea/static/sass/style.scss */
.dropdown-submenu:hover > a > [class^="icon-"], .dropdown-submenu:focus > a > [class^="icon-"], .dropdown-submenu:hover > a > [class*=" icon-"], .dropdown-submenu:focus > a > [class*=" icon-"] {
  background-image: url("../img/glyphicons-halflings-white.png");
}

/* line 3548, ../../../blueidea/static/sass/style.scss */
.icon-glass {
  background-position: 0 0;
}

/* line 3552, ../../../blueidea/static/sass/style.scss */
.icon-music {
  background-position: -24px 0;
}

/* line 3556, ../../../blueidea/static/sass/style.scss */
.icon-search {
  background-position: -48px 0;
}

/* line 3560, ../../../blueidea/static/sass/style.scss */
.icon-envelope {
  background-position: -72px 0;
}

/* line 3564, ../../../blueidea/static/sass/style.scss */
.icon-heart {
  background-position: -96px 0;
}

/* line 3568, ../../../blueidea/static/sass/style.scss */
.icon-star {
  background-position: -120px 0;
}

/* line 3572, ../../../blueidea/static/sass/style.scss */
.icon-star-empty {
  background-position: -144px 0;
}

/* line 3576, ../../../blueidea/static/sass/style.scss */
.icon-user {
  background-position: -168px 0;
}

/* line 3580, ../../../blueidea/static/sass/style.scss */
.icon-film {
  background-position: -192px 0;
}

/* line 3584, ../../../blueidea/static/sass/style.scss */
.icon-th-large {
  background-position: -216px 0;
}

/* line 3588, ../../../blueidea/static/sass/style.scss */
.icon-th {
  background-position: -240px 0;
}

/* line 3592, ../../../blueidea/static/sass/style.scss */
.icon-th-list {
  background-position: -264px 0;
}

/* line 3596, ../../../blueidea/static/sass/style.scss */
.icon-ok {
  background-position: -288px 0;
}

/* line 3600, ../../../blueidea/static/sass/style.scss */
.icon-remove {
  background-position: -312px 0;
}

/* line 3604, ../../../blueidea/static/sass/style.scss */
.icon-zoom-in {
  background-position: -336px 0;
}

/* line 3608, ../../../blueidea/static/sass/style.scss */
.icon-zoom-out {
  background-position: -360px 0;
}

/* line 3612, ../../../blueidea/static/sass/style.scss */
.icon-off {
  background-position: -384px 0;
}

/* line 3616, ../../../blueidea/static/sass/style.scss */
.icon-signal {
  background-position: -408px 0;
}

/* line 3620, ../../../blueidea/static/sass/style.scss */
.icon-cog {
  background-position: -432px 0;
}

/* line 3624, ../../../blueidea/static/sass/style.scss */
.icon-trash {
  background-position: -456px 0;
}

/* line 3628, ../../../blueidea/static/sass/style.scss */
.icon-home {
  background-position: 0 -24px;
}

/* line 3632, ../../../blueidea/static/sass/style.scss */
.icon-file {
  background-position: -24px -24px;
}

/* line 3636, ../../../blueidea/static/sass/style.scss */
.icon-time {
  background-position: -48px -24px;
}

/* line 3640, ../../../blueidea/static/sass/style.scss */
.icon-road {
  background-position: -72px -24px;
}

/* line 3644, ../../../blueidea/static/sass/style.scss */
.icon-download-alt {
  background-position: -96px -24px;
}

/* line 3648, ../../../blueidea/static/sass/style.scss */
.icon-download {
  background-position: -120px -24px;
}

/* line 3652, ../../../blueidea/static/sass/style.scss */
.icon-upload {
  background-position: -144px -24px;
}

/* line 3656, ../../../blueidea/static/sass/style.scss */
.icon-inbox {
  background-position: -168px -24px;
}

/* line 3660, ../../../blueidea/static/sass/style.scss */
.icon-play-circle {
  background-position: -192px -24px;
}

/* line 3664, ../../../blueidea/static/sass/style.scss */
.icon-repeat {
  background-position: -216px -24px;
}

/* line 3668, ../../../blueidea/static/sass/style.scss */
.icon-refresh {
  background-position: -240px -24px;
}

/* line 3672, ../../../blueidea/static/sass/style.scss */
.icon-list-alt {
  background-position: -264px -24px;
}

/* line 3676, ../../../blueidea/static/sass/style.scss */
.icon-lock {
  background-position: -287px -24px;
}

/* line 3680, ../../../blueidea/static/sass/style.scss */
.icon-flag {
  background-position: -312px -24px;
}

/* line 3684, ../../../blueidea/static/sass/style.scss */
.icon-headphones {
  background-position: -336px -24px;
}

/* line 3688, ../../../blueidea/static/sass/style.scss */
.icon-volume-off {
  background-position: -360px -24px;
}

/* line 3692, ../../../blueidea/static/sass/style.scss */
.icon-volume-down {
  background-position: -384px -24px;
}

/* line 3696, ../../../blueidea/static/sass/style.scss */
.icon-volume-up {
  background-position: -408px -24px;
}

/* line 3700, ../../../blueidea/static/sass/style.scss */
.icon-qrcode {
  background-position: -432px -24px;
}

/* line 3704, ../../../blueidea/static/sass/style.scss */
.icon-barcode {
  background-position: -456px -24px;
}

/* line 3708, ../../../blueidea/static/sass/style.scss */
.icon-tag {
  background-position: 0 -48px;
}

/* line 3712, ../../../blueidea/static/sass/style.scss */
.icon-tags {
  background-position: -25px -48px;
}

/* line 3716, ../../../blueidea/static/sass/style.scss */
.icon-book {
  background-position: -48px -48px;
}

/* line 3720, ../../../blueidea/static/sass/style.scss */
.icon-bookmark {
  background-position: -72px -48px;
}

/* line 3724, ../../../blueidea/static/sass/style.scss */
.icon-print {
  background-position: -96px -48px;
}

/* line 3728, ../../../blueidea/static/sass/style.scss */
.icon-camera {
  background-position: -120px -48px;
}

/* line 3732, ../../../blueidea/static/sass/style.scss */
.icon-font {
  background-position: -144px -48px;
}

/* line 3736, ../../../blueidea/static/sass/style.scss */
.icon-bold {
  background-position: -167px -48px;
}

/* line 3740, ../../../blueidea/static/sass/style.scss */
.icon-italic {
  background-position: -192px -48px;
}

/* line 3744, ../../../blueidea/static/sass/style.scss */
.icon-text-height {
  background-position: -216px -48px;
}

/* line 3748, ../../../blueidea/static/sass/style.scss */
.icon-text-width {
  background-position: -240px -48px;
}

/* line 3752, ../../../blueidea/static/sass/style.scss */
.icon-align-left {
  background-position: -264px -48px;
}

/* line 3756, ../../../blueidea/static/sass/style.scss */
.icon-align-center {
  background-position: -288px -48px;
}

/* line 3760, ../../../blueidea/static/sass/style.scss */
.icon-align-right {
  background-position: -312px -48px;
}

/* line 3764, ../../../blueidea/static/sass/style.scss */
.icon-align-justify {
  background-position: -336px -48px;
}

/* line 3768, ../../../blueidea/static/sass/style.scss */
.icon-list {
  background-position: -360px -48px;
}

/* line 3772, ../../../blueidea/static/sass/style.scss */
.icon-indent-left {
  background-position: -384px -48px;
}

/* line 3776, ../../../blueidea/static/sass/style.scss */
.icon-indent-right {
  background-position: -408px -48px;
}

/* line 3780, ../../../blueidea/static/sass/style.scss */
.icon-facetime-video {
  background-position: -432px -48px;
}

/* line 3784, ../../../blueidea/static/sass/style.scss */
.icon-picture {
  background-position: -456px -48px;
}

/* line 3788, ../../../blueidea/static/sass/style.scss */
.icon-pencil {
  background-position: 0 -72px;
}

/* line 3792, ../../../blueidea/static/sass/style.scss */
.icon-map-marker {
  background-position: -24px -72px;
}

/* line 3796, ../../../blueidea/static/sass/style.scss */
.icon-adjust {
  background-position: -48px -72px;
}

/* line 3800, ../../../blueidea/static/sass/style.scss */
.icon-tint {
  background-position: -72px -72px;
}

/* line 3804, ../../../blueidea/static/sass/style.scss */
.icon-edit {
  background-position: -96px -72px;
}

/* line 3808, ../../../blueidea/static/sass/style.scss */
.icon-share {
  background-position: -120px -72px;
}

/* line 3812, ../../../blueidea/static/sass/style.scss */
.icon-check {
  background-position: -144px -72px;
}

/* line 3816, ../../../blueidea/static/sass/style.scss */
.icon-move {
  background-position: -168px -72px;
}

/* line 3820, ../../../blueidea/static/sass/style.scss */
.icon-step-backward {
  background-position: -192px -72px;
}

/* line 3824, ../../../blueidea/static/sass/style.scss */
.icon-fast-backward {
  background-position: -216px -72px;
}

/* line 3828, ../../../blueidea/static/sass/style.scss */
.icon-backward {
  background-position: -240px -72px;
}

/* line 3832, ../../../blueidea/static/sass/style.scss */
.icon-play {
  background-position: -264px -72px;
}

/* line 3836, ../../../blueidea/static/sass/style.scss */
.icon-pause {
  background-position: -288px -72px;
}

/* line 3840, ../../../blueidea/static/sass/style.scss */
.icon-stop {
  background-position: -312px -72px;
}

/* line 3844, ../../../blueidea/static/sass/style.scss */
.icon-forward {
  background-position: -336px -72px;
}

/* line 3848, ../../../blueidea/static/sass/style.scss */
.icon-fast-forward {
  background-position: -360px -72px;
}

/* line 3852, ../../../blueidea/static/sass/style.scss */
.icon-step-forward {
  background-position: -384px -72px;
}

/* line 3856, ../../../blueidea/static/sass/style.scss */
.icon-eject {
  background-position: -408px -72px;
}

/* line 3860, ../../../blueidea/static/sass/style.scss */
.icon-chevron-left {
  background-position: -432px -72px;
}

/* line 3864, ../../../blueidea/static/sass/style.scss */
.icon-chevron-right {
  background-position: -456px -72px;
}

/* line 3868, ../../../blueidea/static/sass/style.scss */
.icon-plus-sign {
  background-position: 0 -96px;
}

/* line 3872, ../../../blueidea/static/sass/style.scss */
.icon-minus-sign {
  background-position: -24px -96px;
}

/* line 3876, ../../../blueidea/static/sass/style.scss */
.icon-remove-sign {
  background-position: -48px -96px;
}

/* line 3880, ../../../blueidea/static/sass/style.scss */
.icon-ok-sign {
  background-position: -72px -96px;
}

/* line 3884, ../../../blueidea/static/sass/style.scss */
.icon-question-sign {
  background-position: -96px -96px;
}

/* line 3888, ../../../blueidea/static/sass/style.scss */
.icon-info-sign {
  background-position: -120px -96px;
}

/* line 3892, ../../../blueidea/static/sass/style.scss */
.icon-screenshot {
  background-position: -144px -96px;
}

/* line 3896, ../../../blueidea/static/sass/style.scss */
.icon-remove-circle {
  background-position: -168px -96px;
}

/* line 3900, ../../../blueidea/static/sass/style.scss */
.icon-ok-circle {
  background-position: -192px -96px;
}

/* line 3904, ../../../blueidea/static/sass/style.scss */
.icon-ban-circle {
  background-position: -216px -96px;
}

/* line 3908, ../../../blueidea/static/sass/style.scss */
.icon-arrow-left {
  background-position: -240px -96px;
}

/* line 3912, ../../../blueidea/static/sass/style.scss */
.icon-arrow-right {
  background-position: -264px -96px;
}

/* line 3916, ../../../blueidea/static/sass/style.scss */
.icon-arrow-up {
  background-position: -289px -96px;
}

/* line 3920, ../../../blueidea/static/sass/style.scss */
.icon-arrow-down {
  background-position: -312px -96px;
}

/* line 3924, ../../../blueidea/static/sass/style.scss */
.icon-share-alt {
  background-position: -336px -96px;
}

/* line 3928, ../../../blueidea/static/sass/style.scss */
.icon-resize-full {
  background-position: -360px -96px;
}

/* line 3932, ../../../blueidea/static/sass/style.scss */
.icon-resize-small {
  background-position: -384px -96px;
}

/* line 3936, ../../../blueidea/static/sass/style.scss */
.icon-plus {
  background-position: -408px -96px;
}

/* line 3940, ../../../blueidea/static/sass/style.scss */
.icon-minus {
  background-position: -433px -96px;
}

/* line 3944, ../../../blueidea/static/sass/style.scss */
.icon-asterisk {
  background-position: -456px -96px;
}

/* line 3948, ../../../blueidea/static/sass/style.scss */
.icon-exclamation-sign {
  background-position: 0 -120px;
}

/* line 3952, ../../../blueidea/static/sass/style.scss */
.icon-gift {
  background-position: -24px -120px;
}

/* line 3956, ../../../blueidea/static/sass/style.scss */
.icon-leaf {
  background-position: -48px -120px;
}

/* line 3960, ../../../blueidea/static/sass/style.scss */
.icon-fire {
  background-position: -72px -120px;
}

/* line 3964, ../../../blueidea/static/sass/style.scss */
.icon-eye-open {
  background-position: -96px -120px;
}

/* line 3968, ../../../blueidea/static/sass/style.scss */
.icon-eye-close {
  background-position: -120px -120px;
}

/* line 3972, ../../../blueidea/static/sass/style.scss */
.icon-warning-sign {
  background-position: -144px -120px;
}

/* line 3976, ../../../blueidea/static/sass/style.scss */
.icon-plane {
  background-position: -168px -120px;
}

/* line 3980, ../../../blueidea/static/sass/style.scss */
.icon-calendar {
  background-position: -192px -120px;
}

/* line 3984, ../../../blueidea/static/sass/style.scss */
.icon-random {
  background-position: -216px -120px;
  width: 16px;
}

/* line 3989, ../../../blueidea/static/sass/style.scss */
.icon-comment {
  background-position: -240px -120px;
}

/* line 3993, ../../../blueidea/static/sass/style.scss */
.icon-magnet {
  background-position: -264px -120px;
}

/* line 3997, ../../../blueidea/static/sass/style.scss */
.icon-chevron-up {
  background-position: -288px -120px;
}

/* line 4001, ../../../blueidea/static/sass/style.scss */
.icon-chevron-down {
  background-position: -313px -119px;
}

/* line 4005, ../../../blueidea/static/sass/style.scss */
.icon-retweet {
  background-position: -336px -120px;
}

/* line 4009, ../../../blueidea/static/sass/style.scss */
.icon-shopping-cart {
  background-position: -360px -120px;
}

/* line 4013, ../../../blueidea/static/sass/style.scss */
.icon-folder-close {
  background-position: -384px -120px;
  width: 16px;
}

/* line 4018, ../../../blueidea/static/sass/style.scss */
.icon-folder-open {
  background-position: -408px -120px;
  width: 16px;
}

/* line 4023, ../../../blueidea/static/sass/style.scss */
.icon-resize-vertical {
  background-position: -432px -119px;
}

/* line 4027, ../../../blueidea/static/sass/style.scss */
.icon-resize-horizontal {
  background-position: -456px -118px;
}

/* line 4031, ../../../blueidea/static/sass/style.scss */
.icon-hdd {
  background-position: 0 -144px;
}

/* line 4035, ../../../blueidea/static/sass/style.scss */
.icon-bullhorn {
  background-position: -24px -144px;
}

/* line 4039, ../../../blueidea/static/sass/style.scss */
.icon-bell {
  background-position: -48px -144px;
}

/* line 4043, ../../../blueidea/static/sass/style.scss */
.icon-certificate {
  background-position: -72px -144px;
}

/* line 4047, ../../../blueidea/static/sass/style.scss */
.icon-thumbs-up {
  background-position: -96px -144px;
}

/* line 4051, ../../../blueidea/static/sass/style.scss */
.icon-thumbs-down {
  background-position: -120px -144px;
}

/* line 4055, ../../../blueidea/static/sass/style.scss */
.icon-hand-right {
  background-position: -144px -144px;
}

/* line 4059, ../../../blueidea/static/sass/style.scss */
.icon-hand-left {
  background-position: -168px -144px;
}

/* line 4063, ../../../blueidea/static/sass/style.scss */
.icon-hand-up {
  background-position: -192px -144px;
}

/* line 4067, ../../../blueidea/static/sass/style.scss */
.icon-hand-down {
  background-position: -216px -144px;
}

/* line 4071, ../../../blueidea/static/sass/style.scss */
.icon-circle-arrow-right {
  background-position: -240px -144px;
}

/* line 4075, ../../../blueidea/static/sass/style.scss */
.icon-circle-arrow-left {
  background-position: -264px -144px;
}

/* line 4079, ../../../blueidea/static/sass/style.scss */
.icon-circle-arrow-up {
  background-position: -288px -144px;
}

/* line 4083, ../../../blueidea/static/sass/style.scss */
.icon-circle-arrow-down {
  background-position: -312px -144px;
}

/* line 4087, ../../../blueidea/static/sass/style.scss */
.icon-globe {
  background-position: -336px -144px;
}

/* line 4091, ../../../blueidea/static/sass/style.scss */
.icon-wrench {
  background-position: -360px -144px;
}

/* line 4095, ../../../blueidea/static/sass/style.scss */
.icon-tasks {
  background-position: -384px -144px;
}

/* line 4099, ../../../blueidea/static/sass/style.scss */
.icon-filter {
  background-position: -408px -144px;
}

/* line 4103, ../../../blueidea/static/sass/style.scss */
.icon-briefcase {
  background-position: -432px -144px;
}

/* line 4107, ../../../blueidea/static/sass/style.scss */
.icon-fullscreen {
  background-position: -456px -144px;
}

/* line 4111, ../../../blueidea/static/sass/style.scss */
.dropup, .dropdown {
  position: relative;
}

/* line 4115, ../../../blueidea/static/sass/style.scss */
.dropdown-toggle {
  *margin-bottom: -3px;
}
/* line 4117, ../../../blueidea/static/sass/style.scss */
.dropdown-toggle:active {
  outline: 0;
}

/* line 4122, ../../../blueidea/static/sass/style.scss */
.open .dropdown-toggle {
  outline: 0;
}

/* line 4126, ../../../blueidea/static/sass/style.scss */
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: top;
  border-top: 4px solid #000;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
}

/* line 4137, ../../../blueidea/static/sass/style.scss */
.dropdown .caret {
  margin-top: 8px;
  margin-left: 2px;
}

/* line 4142, ../../../blueidea/static/sass/style.scss */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  *border-right-width: 2px;
  *border-bottom-width: 2px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
/* line 4167, ../../../blueidea/static/sass/style.scss */
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
/* line 4171, ../../../blueidea/static/sass/style.scss */
.dropdown-menu .divider {
  *width: 100%;
  height: 1px;
  margin: 9px 1px;
  *margin: -5px 0 5px;
  overflow: hidden;
  background-color: #e5e5e5;
  border-bottom: 1px solid #fff;
}
/* line 4180, ../../../blueidea/static/sass/style.scss */
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 20px;
  color: #333;
  white-space: nowrap;
}
/* line 4188, ../../../blueidea/static/sass/style.scss */
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #fff;
  background-color: #0081c2;
  background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, left, right);
  background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
  background-image: -o-linear-gradient(top, #0088cc, #0077b3);
  background-image: linear-gradient(to bottom, #0088cc, #0077b3);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
}

/* line 4204, ../../../blueidea/static/sass/style.scss */
.dropdown-submenu:hover > a, .dropdown-submenu:focus > a {
  text-decoration: none;
  color: #fff;
  background-color: #0081c2;
  background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, left, right);
  background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
  background-image: -o-linear-gradient(top, #0088cc, #0077b3);
  background-image: linear-gradient(to bottom, #0088cc, #0077b3);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
}

/* line 4219, ../../../blueidea/static/sass/style.scss */
.dropdown-menu > .active > a {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #0081c2;
  background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, left, right);
  background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
  background-image: -o-linear-gradient(top, #0088cc, #0077b3);
  background-image: linear-gradient(to bottom, #0088cc, #0077b3);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
}
/* line 4231, ../../../blueidea/static/sass/style.scss */
.dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #0081c2;
  background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, left, right);
  background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
  background-image: -o-linear-gradient(top, #0088cc, #0077b3);
  background-image: linear-gradient(to bottom, #0088cc, #0077b3);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
}
/* line 4245, ../../../blueidea/static/sass/style.scss */
.dropdown-menu > .disabled > a {
  color: #999;
}
/* line 4247, ../../../blueidea/static/sass/style.scss */
.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #999;
}
/* line 4250, ../../../blueidea/static/sass/style.scss */
.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: default;
}

/* line 4260, ../../../blueidea/static/sass/style.scss */
.open {
  *z-index: 1000;
}
/* line 4262, ../../../blueidea/static/sass/style.scss */
.open > .dropdown-menu {
  display: block;
}

/* line 4267, ../../../blueidea/static/sass/style.scss */
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}

/* line 4276, ../../../blueidea/static/sass/style.scss */
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

/* line 4281, ../../../blueidea/static/sass/style.scss */
.dropup .caret, .navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid #000;
  content: "";
}

/* line 4287, ../../../blueidea/static/sass/style.scss */
.dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}

/* line 4293, ../../../blueidea/static/sass/style.scss */
.dropdown-submenu {
  position: relative;
}
/* line 4295, ../../../blueidea/static/sass/style.scss */
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  border-radius: 0 6px 6px 6px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px 6px;
  border-radius: 0 6px 6px 6px;
}
/* line 4305, ../../../blueidea/static/sass/style.scss */
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* line 4310, ../../../blueidea/static/sass/style.scss */
.dropup .dropdown-submenu > .dropdown-menu {
  top: auto;
  bottom: 0;
  margin-top: 0;
  margin-bottom: -2px;
  border-radius: 5px 5px 5px 0;
  -webkit-border-radius: 5px 5px 5px 0;
  -moz-border-radius: 5px 5px 5px 0;
  border-radius: 5px 5px 5px 0;
}

/* line 4322, ../../../blueidea/static/sass/style.scss */
.dropdown-submenu > a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #ccc;
  margin-top: 5px;
  margin-right: -10px;
}
/* line 4335, ../../../blueidea/static/sass/style.scss */
.dropdown-submenu:hover > a:after {
  border-left-color: #fff;
}
/* line 4338, ../../../blueidea/static/sass/style.scss */
.dropdown-submenu.pull-left {
  float: none;
}
/* line 4340, ../../../blueidea/static/sass/style.scss */
.dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
  border-radius: 6px 0 6px 6px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}

/* line 4351, ../../../blueidea/static/sass/style.scss */
.dropdown .dropdown-menu .nav-header {
  padding-left: 20px;
  padding-right: 20px;
}

/* line 4356, ../../../blueidea/static/sass/style.scss */
.typeahead {
  z-index: 1051;
  margin-top: 2px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

/* line 4365, ../../../blueidea/static/sass/style.scss */
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
/* line 4377, ../../../blueidea/static/sass/style.scss */
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

/* line 4383, ../../../blueidea/static/sass/style.scss */
.well-large {
  padding: 24px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

/* line 4391, ../../../blueidea/static/sass/style.scss */
.well-small {
  padding: 9px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

/* line 4399, ../../../blueidea/static/sass/style.scss */
.fade {
  opacity: 0;
  -webkit-transition: opacity .15s linear;
  -moz-transition: opacity .15s linear;
  -o-transition: opacity .15s linear;
  transition: opacity .15s linear;
}
/* line 4405, ../../../blueidea/static/sass/style.scss */
.fade.in {
  opacity: 1;
}

/* line 4410, ../../../blueidea/static/sass/style.scss */
.collapse {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height .35s ease;
  -moz-transition: height .35s ease;
  -o-transition: height .35s ease;
  transition: height .35s ease;
}
/* line 4418, ../../../blueidea/static/sass/style.scss */
.collapse.in {
  height: auto;
}

/* line 4423, ../../../blueidea/static/sass/style.scss */
.close {
  float: right;
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .2;
  filter: alpha(opacity=20);
}
/* line 4432, ../../../blueidea/static/sass/style.scss */
.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: .4;
  filter: alpha(opacity=40);
}

/* line 4441, ../../../blueidea/static/sass/style.scss */
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

/* line 4449, ../../../blueidea/static/sass/style.scss */
.btn {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding: 4px 12px;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  color: #333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  background-color: #f5f5f5;
  background-image: -moz-linear-gradient(top, white, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, left, right);
  background-image: -webkit-linear-gradient(top, white, #e6e6e6);
  background-image: -o-linear-gradient(top, white, #e6e6e6);
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #e6e6e6;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  border: 1px solid #ccc;
  *border: 0;
  border-bottom-color: #b3b3b3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  *margin-left: .3em;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
/* line 4484, ../../../blueidea/static/sass/style.scss */
.btn:hover, .btn:focus, .btn:active, .btn.active, .btn.disabled, .btn[disabled] {
  color: #333;
  background-color: #e6e6e6;
  *background-color: #d9d9d9;
}
/* line 4489, ../../../blueidea/static/sass/style.scss */
.btn:active, .btn.active {
  background-color: #ccc \9;
}
/* line 4492, ../../../blueidea/static/sass/style.scss */
.btn:first-child {
  *margin-left: 0;
}
/* line 4495, ../../../blueidea/static/sass/style.scss */
.btn:hover {
  color: #333;
  text-decoration: none;
  background-position: 0 -15px;
  -webkit-transition: background-position .1s linear;
  -moz-transition: background-position .1s linear;
  -o-transition: background-position .1s linear;
  transition: background-position .1s linear;
}
/* line 4504, ../../../blueidea/static/sass/style.scss */
.btn:focus {
  color: #333;
  text-decoration: none;
  background-position: 0 -15px;
  -webkit-transition: background-position .1s linear;
  -moz-transition: background-position .1s linear;
  -o-transition: background-position .1s linear;
  transition: background-position .1s linear;
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
/* line 4516, ../../../blueidea/static/sass/style.scss */
.btn.active, .btn:active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}
/* line 4523, ../../../blueidea/static/sass/style.scss */
.btn.disabled, .btn[disabled] {
  cursor: default;
  background-image: none;
  opacity: .65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* line 4534, ../../../blueidea/static/sass/style.scss */
.btn-large {
  padding: 11px 19px;
  font-size: 16.25px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
/* line 4541, ../../../blueidea/static/sass/style.scss */
.btn-large [class^="icon-"], .btn-large [class*=" icon-"] {
  margin-top: 4px;
}

/* line 4546, ../../../blueidea/static/sass/style.scss */
.btn-small {
  padding: 2px 10px;
  font-size: 11.049999999999999px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
/* line 4553, ../../../blueidea/static/sass/style.scss */
.btn-small [class^="icon-"], .btn-small [class*=" icon-"] {
  margin-top: 0;
}

/* line 4558, ../../../blueidea/static/sass/style.scss */
.btn-mini {
  padding: 0 6px;
  font-size: 9.75px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
/* line 4559, ../../../blueidea/static/sass/style.scss */
.btn-mini [class^="icon-"], .btn-mini [class*=" icon-"] {
  margin-top: -1px;
}

/* line 4570, ../../../blueidea/static/sass/style.scss */
.btn-block {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 4578, ../../../blueidea/static/sass/style.scss */
.btn-block + .btn-block {
  margin-top: 5px;
}

/* line 4584, ../../../blueidea/static/sass/style.scss */
input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block {
  width: 100%;
}

/* line 4589, ../../../blueidea/static/sass/style.scss */
.btn-primary.active, .btn-warning.active, .btn-danger.active, .btn-success.active, .btn-info.active, .btn-inverse.active {
  color: rgba(255, 255, 255, 0.75);
}

/* line 4593, ../../../blueidea/static/sass/style.scss */
.btn-primary {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #006dcc;
  background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, left, right);
  background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
  background-image: -o-linear-gradient(top, #0088cc, #0044cc);
  background-image: linear-gradient(to bottom, #0088cc, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
  border-color: #04c #04c #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #04c;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
/* line 4608, ../../../blueidea/static/sass/style.scss */
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] {
  color: #fff;
  background-color: #04c;
  *background-color: #003bb3;
}
/* line 4613, ../../../blueidea/static/sass/style.scss */
.btn-primary:active, .btn-primary.active {
  background-color: #039 \9;
}

/* line 4618, ../../../blueidea/static/sass/style.scss */
.btn-warning {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #faa732;
  background-image: -moz-linear-gradient(top, #fbb450, #f89406);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, left, right);
  background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
  background-image: -o-linear-gradient(top, #fbb450, #f89406);
  background-image: linear-gradient(to bottom, #fbb450, #f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
  border-color: #f89406 #f89406 #ad6704;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #f89406;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
/* line 4633, ../../../blueidea/static/sass/style.scss */
.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .btn-warning.disabled, .btn-warning[disabled] {
  color: #fff;
  background-color: #f89406;
  *background-color: #df8505;
}
/* line 4638, ../../../blueidea/static/sass/style.scss */
.btn-warning:active, .btn-warning.active {
  background-color: #c67605 \9;
}

/* line 4643, ../../../blueidea/static/sass/style.scss */
.btn-danger {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #da4f49;
  background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, left, right);
  background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
  border-color: #bd362f #bd362f #802420;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #bd362f;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
/* line 4658, ../../../blueidea/static/sass/style.scss */
.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .btn-danger.disabled, .btn-danger[disabled] {
  color: #fff;
  background-color: #bd362f;
  *background-color: #a9302a;
}
/* line 4663, ../../../blueidea/static/sass/style.scss */
.btn-danger:active, .btn-danger.active {
  background-color: #942a25 \9;
}

/* line 4668, ../../../blueidea/static/sass/style.scss */
.btn-success {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #5bb75b;
  background-image: -moz-linear-gradient(top, #62c462, #51a351);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, left, right);
  background-image: -webkit-linear-gradient(top, #62c462, #51a351);
  background-image: -o-linear-gradient(top, #62c462, #51a351);
  background-image: linear-gradient(to bottom, #62c462, #51a351);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
  border-color: #51a351 #51a351 #387038;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #51a351;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
/* line 4683, ../../../blueidea/static/sass/style.scss */
.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled] {
  color: #fff;
  background-color: #51a351;
  *background-color: #499249;
}
/* line 4688, ../../../blueidea/static/sass/style.scss */
.btn-success:active, .btn-success.active {
  background-color: #408140 \9;
}

/* line 4693, ../../../blueidea/static/sass/style.scss */
.btn-info {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #49afcd;
  background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, left, right);
  background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
  background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
  background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);
  border-color: #2f96b4 #2f96b4 #1f6377;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #2f96b4;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
/* line 4708, ../../../blueidea/static/sass/style.scss */
.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {
  color: #fff;
  background-color: #2f96b4;
  *background-color: #2a85a0;
}
/* line 4713, ../../../blueidea/static/sass/style.scss */
.btn-info:active, .btn-info.active {
  background-color: #24748c \9;
}

/* line 4718, ../../../blueidea/static/sass/style.scss */
.btn-inverse {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #363636;
  background-image: -moz-linear-gradient(top, #444444, #222222);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, left, right);
  background-image: -webkit-linear-gradient(top, #444444, #222222);
  background-image: -o-linear-gradient(top, #444444, #222222);
  background-image: linear-gradient(to bottom, #444444, #222222);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);
  border-color: #222 #222 #000;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #222;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
/* line 4733, ../../../blueidea/static/sass/style.scss */
.btn-inverse:hover, .btn-inverse:focus, .btn-inverse:active, .btn-inverse.active, .btn-inverse.disabled, .btn-inverse[disabled] {
  color: #fff;
  background-color: #222;
  *background-color: #151515;
}
/* line 4738, ../../../blueidea/static/sass/style.scss */
.btn-inverse:active, .btn-inverse.active {
  background-color: #080808 \9;
}

/* line 4743, ../../../blueidea/static/sass/style.scss */
button.btn, input[type="submit"].btn {
  *padding-top: 3px;
  *padding-bottom: 3px;
}

/* line 4748, ../../../blueidea/static/sass/style.scss */
button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* line 4753, ../../../blueidea/static/sass/style.scss */
button.btn.btn-large, input[type="submit"].btn.btn-large {
  *padding-top: 7px;
  *padding-bottom: 7px;
}

/* line 4758, ../../../blueidea/static/sass/style.scss */
button.btn.btn-small, input[type="submit"].btn.btn-small {
  *padding-top: 3px;
  *padding-bottom: 3px;
}

/* line 4763, ../../../blueidea/static/sass/style.scss */
button.btn.btn-mini, input[type="submit"].btn.btn-mini {
  *padding-top: 1px;
  *padding-bottom: 1px;
}

/* line 4768, ../../../blueidea/static/sass/style.scss */
.btn-link {
  background-color: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-color: transparent;
  cursor: pointer;
  color: #a4b847;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
/* line 4774, ../../../blueidea/static/sass/style.scss */
.btn-link:active, .btn-link[disabled] {
  background-color: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
/* line 4788, ../../../blueidea/static/sass/style.scss */
.btn-link:hover, .btn-link:focus {
  color: #005580;
  text-decoration: underline;
  background-color: transparent;
}
/* line 4794, ../../../blueidea/static/sass/style.scss */
.btn-link[disabled]:hover, .btn-link[disabled]:focus {
  color: #333;
  text-decoration: none;
}

/* line 4801, ../../../blueidea/static/sass/style.scss */
.btn-group {
  position: relative;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 0;
  vertical-align: middle;
  white-space: nowrap;
  *margin-left: .3em;
}
/* line 4810, ../../../blueidea/static/sass/style.scss */
.btn-group:first-child {
  *margin-left: 0;
}
/* line 4813, ../../../blueidea/static/sass/style.scss */
.btn-group + .btn-group {
  margin-left: 5px;
}

/* line 4818, ../../../blueidea/static/sass/style.scss */
.btn-toolbar {
  font-size: 0;
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 4823, ../../../blueidea/static/sass/style.scss */
.btn-toolbar > .btn + .btn, .btn-toolbar > .btn-group + .btn, .btn-toolbar > .btn + .btn-group {
  margin-left: 5px;
}

/* line 4831, ../../../blueidea/static/sass/style.scss */
.btn-group > .btn {
  position: relative;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  font-size: 13px;
}
/* line 4837, ../../../blueidea/static/sass/style.scss */
.btn-group > .btn + .btn {
  margin-left: -1px;
}
/* line 4842, ../../../blueidea/static/sass/style.scss */
.btn-group > .dropdown-menu, .btn-group > .popover {
  font-size: 13px;
}
/* line 4845, ../../../blueidea/static/sass/style.scss */
.btn-group > .btn-mini {
  font-size: 9.75px;
}
/* line 4848, ../../../blueidea/static/sass/style.scss */
.btn-group > .btn-small {
  font-size: 11.049999999999999px;
}
/* line 4851, ../../../blueidea/static/sass/style.scss */
.btn-group > .btn-large {
  font-size: 16.25px;
}
/* line 4855, ../../../blueidea/static/sass/style.scss */
.btn-group > .btn:first-child {
  margin-left: 0;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
}
/* line 4864, ../../../blueidea/static/sass/style.scss */
.btn-group > .btn:last-child {
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
}
/* line 4873, ../../../blueidea/static/sass/style.scss */
.btn-group > .dropdown-toggle {
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
}
/* line 4882, ../../../blueidea/static/sass/style.scss */
.btn-group > .btn.large:first-child {
  margin-left: 0;
  -webkit-border-top-left-radius: 6px;
  -moz-border-radius-topleft: 6px;
  border-top-left-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  -moz-border-radius-bottomleft: 6px;
  border-bottom-left-radius: 6px;
}
/* line 4891, ../../../blueidea/static/sass/style.scss */
.btn-group > .btn.large:last-child {
  -webkit-border-top-right-radius: 6px;
  -moz-border-radius-topright: 6px;
  border-top-right-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  -moz-border-radius-bottomright: 6px;
  border-bottom-right-radius: 6px;
}
/* line 4900, ../../../blueidea/static/sass/style.scss */
.btn-group > .large.dropdown-toggle {
  -webkit-border-top-right-radius: 6px;
  -moz-border-radius-topright: 6px;
  border-top-right-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  -moz-border-radius-bottomright: 6px;
  border-bottom-right-radius: 6px;
}
/* line 4909, ../../../blueidea/static/sass/style.scss */
.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active {
  z-index: 2;
}
/* line 4914, ../../../blueidea/static/sass/style.scss */
.btn-group .dropdown-toggle:active {
  outline: 0;
}
/* line 4918, ../../../blueidea/static/sass/style.scss */
.btn-group.open .dropdown-toggle {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}
/* line 4925, ../../../blueidea/static/sass/style.scss */
.btn-group.open .btn.dropdown-toggle {
  background-color: #e6e6e6;
}
/* line 4928, ../../../blueidea/static/sass/style.scss */
.btn-group.open .btn-primary.dropdown-toggle {
  background-color: #04c;
}
/* line 4931, ../../../blueidea/static/sass/style.scss */
.btn-group.open .btn-warning.dropdown-toggle {
  background-color: #f89406;
}
/* line 4934, ../../../blueidea/static/sass/style.scss */
.btn-group.open .btn-danger.dropdown-toggle {
  background-color: #bd362f;
}
/* line 4937, ../../../blueidea/static/sass/style.scss */
.btn-group.open .btn-success.dropdown-toggle {
  background-color: #51a351;
}
/* line 4940, ../../../blueidea/static/sass/style.scss */
.btn-group.open .btn-info.dropdown-toggle {
  background-color: #2f96b4;
}
/* line 4943, ../../../blueidea/static/sass/style.scss */
.btn-group.open .btn-inverse.dropdown-toggle {
  background-color: #222;
}
/* line 4948, ../../../blueidea/static/sass/style.scss */
.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
  -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  *padding-top: 5px;
  *padding-bottom: 5px;
}
/* line 4957, ../../../blueidea/static/sass/style.scss */
.btn-group > .btn-mini + .dropdown-toggle {
  padding-left: 5px;
  padding-right: 5px;
  *padding-top: 2px;
  *padding-bottom: 2px;
}
/* line 4963, ../../../blueidea/static/sass/style.scss */
.btn-group > .btn-small + .dropdown-toggle {
  *padding-top: 5px;
  *padding-bottom: 4px;
}
/* line 4967, ../../../blueidea/static/sass/style.scss */
.btn-group > .btn-large + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
  *padding-top: 7px;
  *padding-bottom: 7px;
}

/* line 4976, ../../../blueidea/static/sass/style.scss */
.btn .caret {
  margin-top: 8px;
  margin-left: 0;
}

/* line 4981, ../../../blueidea/static/sass/style.scss */
.btn-large .caret {
  margin-top: 6px;
  border-left-width: 5px;
  border-right-width: 5px;
  border-top-width: 5px;
}

/* line 4988, ../../../blueidea/static/sass/style.scss */
.btn-mini .caret, .btn-small .caret {
  margin-top: 8px;
}

/* line 4992, ../../../blueidea/static/sass/style.scss */
.dropup .btn-large .caret {
  border-bottom-width: 5px;
}

/* line 4996, ../../../blueidea/static/sass/style.scss */
.btn-primary .caret, .btn-warning .caret, .btn-danger .caret, .btn-info .caret, .btn-success .caret, .btn-inverse .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
}

/* line 5001, ../../../blueidea/static/sass/style.scss */
.btn-group-vertical {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
/* line 5006, ../../../blueidea/static/sass/style.scss */
.btn-group-vertical > .btn {
  display: block;
  float: none;
  max-width: 100%;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
/* line 5014, ../../../blueidea/static/sass/style.scss */
.btn-group-vertical > .btn + .btn {
  margin-left: 0;
  margin-top: -1px;
}
/* line 5018, ../../../blueidea/static/sass/style.scss */
.btn-group-vertical > .btn:first-child {
  border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
/* line 5024, ../../../blueidea/static/sass/style.scss */
.btn-group-vertical > .btn:last-child {
  border-radius: 0 0 4px 4px;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}
/* line 5032, ../../../blueidea/static/sass/style.scss */
.btn-group-vertical > .btn-large:first-child {
  border-radius: 6px 6px 0 0;
  -webkit-border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
}
/* line 5038, ../../../blueidea/static/sass/style.scss */
.btn-group-vertical > .btn-large:last-child {
  border-radius: 0 0 6px 6px;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
}

/* line 5048, ../../../blueidea/static/sass/style.scss */
.alert {
  padding: 8px 35px 8px 14px;
  margin-bottom: 20px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  background-color: #fcf8e3;
  border: 1px solid #fbeed5;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  color: #c09853;
}
/* line 5059, ../../../blueidea/static/sass/style.scss */
.alert h4 {
  color: #c09853;
  margin: 0;
}
/* line 5063, ../../../blueidea/static/sass/style.scss */
.alert .close {
  position: relative;
  top: -2px;
  right: -21px;
  line-height: 20px;
}

/* line 5071, ../../../blueidea/static/sass/style.scss */
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #468847;
}
/* line 5075, ../../../blueidea/static/sass/style.scss */
.alert-success h4 {
  color: #468847;
}

/* line 5080, ../../../blueidea/static/sass/style.scss */
.alert-danger, .alert-error {
  background-color: #f2dede;
  border-color: #eed3d7;
  color: #b94a48;
}

/* line 5086, ../../../blueidea/static/sass/style.scss */
.alert-danger h4, .alert-error h4 {
  color: #b94a48;
}

/* line 5090, ../../../blueidea/static/sass/style.scss */
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #3a87ad;
}
/* line 5094, ../../../blueidea/static/sass/style.scss */
.alert-info h4 {
  color: #3a87ad;
}

/* line 5099, ../../../blueidea/static/sass/style.scss */
.alert-block {
  padding-top: 14px;
  padding-bottom: 14px;
}
/* line 5103, ../../../blueidea/static/sass/style.scss */
.alert-block > p, .alert-block > ul {
  margin-bottom: 0;
}
/* line 5107, ../../../blueidea/static/sass/style.scss */
.alert-block p + p {
  margin-top: 5px;
}

/* line 5112, ../../../blueidea/static/sass/style.scss */
.nav {
  margin-left: 0;
  margin-bottom: 20px;
  list-style: none;
}
/* line 5117, ../../../blueidea/static/sass/style.scss */
.nav > li > a {
  display: block;
}
/* line 5119, ../../../blueidea/static/sass/style.scss */
.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: #eee;
}
/* line 5123, ../../../blueidea/static/sass/style.scss */
.nav > li > a > img {
  max-width: none;
}
/* line 5127, ../../../blueidea/static/sass/style.scss */
.nav > .pull-right {
  float: right;
}

/* line 5133, ../../../blueidea/static/sass/style.scss */
.nav-header {
  display: block;
  padding: 3px 15px;
  font-size: 11px;
  font-weight: bold;
  line-height: 20px;
  color: #999;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

/* line 5144, ../../../blueidea/static/sass/style.scss */
.nav li + .nav-header {
  margin-top: 9px;
}

/* line 5148, ../../../blueidea/static/sass/style.scss */
.nav-list {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 0;
}
/* line 5152, ../../../blueidea/static/sass/style.scss */
.nav-list > li > a, .nav-list .nav-header {
  margin-left: -15px;
  margin-right: -15px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
/* line 5158, ../../../blueidea/static/sass/style.scss */
.nav-list > li > a {
  padding: 3px 15px;
}
/* line 5161, ../../../blueidea/static/sass/style.scss */
.nav-list > .active > a {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  background-color: #a4b847;
}
/* line 5165, ../../../blueidea/static/sass/style.scss */
.nav-list > .active > a:hover, .nav-list > .active > a:focus {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  background-color: #a4b847;
}
/* line 5172, ../../../blueidea/static/sass/style.scss */
.nav-list [class^="icon-"], .nav-list [class*=" icon-"] {
  margin-right: 2px;
}
/* line 5175, ../../../blueidea/static/sass/style.scss */
.nav-list .divider {
  *width: 100%;
  height: 1px;
  margin: 9px 1px;
  *margin: -5px 0 5px;
  overflow: hidden;
  background-color: #e5e5e5;
  border-bottom: 1px solid #fff;
}

/* line 5186, ../../../blueidea/static/sass/style.scss */
.nav-tabs, .nav-pills {
  *zoom: 1;
}

/* line 5190, ../../../blueidea/static/sass/style.scss */
.nav-tabs:before, .nav-pills:before, .nav-tabs:after, .nav-pills:after {
  display: table;
  content: "";
  line-height: 0;
}

/* line 5196, ../../../blueidea/static/sass/style.scss */
.nav-tabs:after, .nav-pills:after {
  clear: both;
}

/* line 5200, ../../../blueidea/static/sass/style.scss */
.nav-tabs > li, .nav-pills > li {
  float: left;
}

/* line 5204, ../../../blueidea/static/sass/style.scss */
.nav-tabs > li > a, .nav-pills > li > a {
  padding-right: 12px;
  padding-left: 12px;
  margin-right: 2px;
  line-height: 14px;
}

/* line 5211, ../../../blueidea/static/sass/style.scss */
.nav-tabs {
  border-bottom: 1px solid #ddd;
}
/* line 5214, ../../../blueidea/static/sass/style.scss */
.nav-tabs > li {
  margin-bottom: -1px;
}
/* line 5216, ../../../blueidea/static/sass/style.scss */
.nav-tabs > li > a {
  padding-top: 8px;
  padding-bottom: 8px;
  line-height: 20px;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
/* line 5225, ../../../blueidea/static/sass/style.scss */
.nav-tabs > li > a:hover, .nav-tabs > li > a:focus {
  border-color: #eee #eee #ddd;
}
/* line 5230, ../../../blueidea/static/sass/style.scss */
.nav-tabs > .active > a {
  color: #555;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}
/* line 5236, ../../../blueidea/static/sass/style.scss */
.nav-tabs > .active > a:hover, .nav-tabs > .active > a:focus {
  color: #555;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}

/* line 5248, ../../../blueidea/static/sass/style.scss */
.nav-pills > li > a {
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 2px;
  margin-bottom: 2px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
/* line 5258, ../../../blueidea/static/sass/style.scss */
.nav-pills > .active > a {
  color: #fff;
  background-color: #a4b847;
}
/* line 5261, ../../../blueidea/static/sass/style.scss */
.nav-pills > .active > a:hover, .nav-pills > .active > a:focus {
  color: #fff;
  background-color: #a4b847;
}

/* line 5268, ../../../blueidea/static/sass/style.scss */
.nav-stacked > li {
  float: none;
}
/* line 5270, ../../../blueidea/static/sass/style.scss */
.nav-stacked > li > a {
  margin-right: 0;
}

/* line 5275, ../../../blueidea/static/sass/style.scss */
.nav-tabs.nav-stacked {
  border-bottom: 0;
}
/* line 5278, ../../../blueidea/static/sass/style.scss */
.nav-tabs.nav-stacked > li > a {
  border: 1px solid #ddd;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
/* line 5285, ../../../blueidea/static/sass/style.scss */
.nav-tabs.nav-stacked > li:first-child > a {
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
}
/* line 5293, ../../../blueidea/static/sass/style.scss */
.nav-tabs.nav-stacked > li:last-child > a {
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
}
/* line 5302, ../../../blueidea/static/sass/style.scss */
.nav-tabs.nav-stacked > li > a:hover, .nav-tabs.nav-stacked > li > a:focus {
  border-color: #ddd;
  z-index: 2;
}

/* line 5311, ../../../blueidea/static/sass/style.scss */
.nav-pills.nav-stacked > li > a {
  margin-bottom: 3px;
}
/* line 5314, ../../../blueidea/static/sass/style.scss */
.nav-pills.nav-stacked > li:last-child > a {
  margin-bottom: 1px;
}

/* line 5319, ../../../blueidea/static/sass/style.scss */
.nav-tabs .dropdown-menu {
  border-radius: 0 0 6px 6px;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
}

/* line 5326, ../../../blueidea/static/sass/style.scss */
.nav-pills .dropdown-menu {
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

/* line 5334, ../../../blueidea/static/sass/style.scss */
.nav .dropdown-toggle .caret {
  border-top-color: #a4b847;
  border-bottom-color: #a4b847;
  margin-top: 6px;
}
/* line 5339, ../../../blueidea/static/sass/style.scss */
.nav .dropdown-toggle:hover .caret, .nav .dropdown-toggle:focus .caret {
  border-top-color: #005580;
  border-bottom-color: #005580;
}

/* line 5345, ../../../blueidea/static/sass/style.scss */
.nav-tabs .dropdown-toggle .caret {
  margin-top: 8px;
}

/* line 5349, ../../../blueidea/static/sass/style.scss */
.nav .active .dropdown-toggle .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
}

/* line 5354, ../../../blueidea/static/sass/style.scss */
.nav-tabs .active .dropdown-toggle .caret {
  border-top-color: #555;
  border-bottom-color: #555;
}

/* line 5360, ../../../blueidea/static/sass/style.scss */
.nav > .dropdown.active > a:hover, .nav > .dropdown.active > a:focus {
  cursor: pointer;
}

/* line 5365, ../../../blueidea/static/sass/style.scss */
.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle {
  color: #fff;
  background-color: #999;
  border-color: #999;
}

/* line 5373, ../../../blueidea/static/sass/style.scss */
.nav > li.dropdown.open.active > a:hover, .nav > li.dropdown.open.active > a:focus {
  color: #fff;
  background-color: #999;
  border-color: #999;
}
/* line 5380, ../../../blueidea/static/sass/style.scss */
.nav li.dropdown.open .caret, .nav li.dropdown.open.active .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
  opacity: 1;
  filter: alpha(opacity=100);
}
/* line 5387, ../../../blueidea/static/sass/style.scss */
.nav li.dropdown.open a:hover .caret, .nav li.dropdown.open a:focus .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 5398, ../../../blueidea/static/sass/style.scss */
.tabs-stacked .open > a:hover, .tabs-stacked .open > a:focus {
  border-color: #999;
}

/* line 5403, ../../../blueidea/static/sass/style.scss */
.tabbable {
  *zoom: 1;
}
/* line 5405, ../../../blueidea/static/sass/style.scss */
.tabbable:before {
  display: table;
  content: "";
  line-height: 0;
}
/* line 5410, ../../../blueidea/static/sass/style.scss */
.tabbable:after {
  display: table;
  content: "";
  line-height: 0;
  clear: both;
}

/* line 5418, ../../../blueidea/static/sass/style.scss */
.tab-content {
  overflow: auto;
}

/* line 5422, ../../../blueidea/static/sass/style.scss */
.tabs-below > .nav-tabs, .tabs-right > .nav-tabs, .tabs-left > .nav-tabs {
  border-bottom: 0;
}

/* line 5426, ../../../blueidea/static/sass/style.scss */
.tab-content > .tab-pane, .pill-content > .pill-pane {
  display: none;
}

/* line 5430, ../../../blueidea/static/sass/style.scss */
.tab-content > .active, .pill-content > .active {
  display: block;
}

/* line 5434, ../../../blueidea/static/sass/style.scss */
.tabs-below > .nav-tabs {
  border-top: 1px solid #ddd;
}
/* line 5437, ../../../blueidea/static/sass/style.scss */
.tabs-below > .nav-tabs > li {
  margin-top: -1px;
  margin-bottom: 0;
}
/* line 5440, ../../../blueidea/static/sass/style.scss */
.tabs-below > .nav-tabs > li > a {
  border-radius: 0 0 4px 4px;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}
/* line 5445, ../../../blueidea/static/sass/style.scss */
.tabs-below > .nav-tabs > li > a:hover, .tabs-below > .nav-tabs > li > a:focus {
  border-bottom-color: transparent;
  border-top-color: #ddd;
}
/* line 5451, ../../../blueidea/static/sass/style.scss */
.tabs-below > .nav-tabs > .active > a {
  border-color: transparent #ddd #ddd #ddd;
}
/* line 5453, ../../../blueidea/static/sass/style.scss */
.tabs-below > .nav-tabs > .active > a:hover, .tabs-below > .nav-tabs > .active > a:focus {
  border-color: transparent #ddd #ddd #ddd;
}

/* line 5460, ../../../blueidea/static/sass/style.scss */
.tabs-left > .nav-tabs > li, .tabs-right > .nav-tabs > li {
  float: none;
}

/* line 5464, ../../../blueidea/static/sass/style.scss */
.tabs-left > .nav-tabs > li > a, .tabs-right > .nav-tabs > li > a {
  min-width: 74px;
  margin-right: 0;
  margin-bottom: 3px;
}

/* line 5470, ../../../blueidea/static/sass/style.scss */
.tabs-left > .nav-tabs {
  float: left;
  margin-right: 19px;
  border-right: 1px solid #ddd;
}
/* line 5474, ../../../blueidea/static/sass/style.scss */
.tabs-left > .nav-tabs > li > a {
  margin-right: -1px;
  border-radius: 4px 0 0 4px;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}
/* line 5480, ../../../blueidea/static/sass/style.scss */
.tabs-left > .nav-tabs > li > a:hover, .tabs-left > .nav-tabs > li > a:focus {
  border-color: #eee #ddd #eee #eee;
}
/* line 5484, ../../../blueidea/static/sass/style.scss */
.tabs-left > .nav-tabs .active > a {
  border-color: #ddd transparent #ddd #ddd;
  *border-right-color: #fff;
}
/* line 5487, ../../../blueidea/static/sass/style.scss */
.tabs-left > .nav-tabs .active > a:hover, .tabs-left > .nav-tabs .active > a:focus {
  border-color: #ddd transparent #ddd #ddd;
  *border-right-color: #fff;
}

/* line 5494, ../../../blueidea/static/sass/style.scss */
.tabs-right > .nav-tabs {
  float: right;
  margin-left: 19px;
  border-left: 1px solid #ddd;
}
/* line 5498, ../../../blueidea/static/sass/style.scss */
.tabs-right > .nav-tabs > li > a {
  margin-left: -1px;
  border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
/* line 5504, ../../../blueidea/static/sass/style.scss */
.tabs-right > .nav-tabs > li > a:hover, .tabs-right > .nav-tabs > li > a:focus {
  border-color: #eee #eee #eee #ddd;
}
/* line 5508, ../../../blueidea/static/sass/style.scss */
.tabs-right > .nav-tabs .active > a {
  border-color: #ddd #ddd #ddd transparent;
  *border-left-color: #fff;
}
/* line 5511, ../../../blueidea/static/sass/style.scss */
.tabs-right > .nav-tabs .active > a:hover, .tabs-right > .nav-tabs .active > a:focus {
  border-color: #ddd #ddd #ddd transparent;
  *border-left-color: #fff;
}

/* line 5518, ../../../blueidea/static/sass/style.scss */
.nav > .disabled > a {
  color: #999;
}
/* line 5520, ../../../blueidea/static/sass/style.scss */
.nav > .disabled > a:hover, .nav > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  cursor: default;
}

/* line 5527, ../../../blueidea/static/sass/style.scss */
.navbar {
  overflow: visible;
  margin-bottom: 20px;
  *position: relative;
  *z-index: 2;
}

/* line 5534, ../../../blueidea/static/sass/style.scss */
.navbar-inner {
  min-height: 36px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #fafafa;
  background-image: -moz-linear-gradient(top, white, #f2f2f2);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, left, right);
  background-image: -webkit-linear-gradient(top, white, #f2f2f2);
  background-image: -o-linear-gradient(top, white, #f2f2f2);
  background-image: linear-gradient(to bottom, #ffffff, #f2f2f2);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);
  border: 1px solid #d4d4d4;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
  *zoom: 1;
}
/* line 5554, ../../../blueidea/static/sass/style.scss */
.navbar-inner:before {
  display: table;
  content: "";
  line-height: 0;
}
/* line 5559, ../../../blueidea/static/sass/style.scss */
.navbar-inner:after {
  display: table;
  content: "";
  line-height: 0;
  clear: both;
}

/* line 5567, ../../../blueidea/static/sass/style.scss */
.navbar .container {
  width: auto;
}

/* line 5571, ../../../blueidea/static/sass/style.scss */
.nav-collapse.collapse {
  height: auto;
  overflow: visible;
}

/* line 5576, ../../../blueidea/static/sass/style.scss */
.navbar .brand {
  float: left;
  display: block;
  padding: 8px 20px 8px;
  margin-left: -20px;
  font-size: 20px;
  font-weight: 200;
  color: #777;
  text-shadow: 0 1px 0 #fff;
}
/* line 5585, ../../../blueidea/static/sass/style.scss */
.navbar .brand:hover, .navbar .brand:focus {
  text-decoration: none;
}

/* line 5590, ../../../blueidea/static/sass/style.scss */
.navbar-text {
  margin-bottom: 0;
  line-height: 36px;
  color: #777;
}

/* line 5596, ../../../blueidea/static/sass/style.scss */
.navbar-link {
  color: #777;
}
/* line 5598, ../../../blueidea/static/sass/style.scss */
.navbar-link:hover, .navbar-link:focus {
  color: #333;
}

/* line 5604, ../../../blueidea/static/sass/style.scss */
.navbar .divider-vertical {
  height: 36px;
  margin: 0 9px;
  border-left: 1px solid #f2f2f2;
  border-right: 1px solid #fff;
}
/* line 5610, ../../../blueidea/static/sass/style.scss */
.navbar .btn {
  margin-top: 3px;
}
/* line 5613, ../../../blueidea/static/sass/style.scss */
.navbar .btn-group {
  margin-top: 3px;
}
/* line 5615, ../../../blueidea/static/sass/style.scss */
.navbar .btn-group .btn {
  margin-top: 0;
}
/* line 5619, ../../../blueidea/static/sass/style.scss */
.navbar .input-prepend .btn, .navbar .input-append .btn, .navbar .input-prepend .btn-group, .navbar .input-append .btn-group {
  margin-top: 0;
}

/* line 5624, ../../../blueidea/static/sass/style.scss */
.navbar-form {
  margin-bottom: 0;
  *zoom: 1;
}
/* line 5627, ../../../blueidea/static/sass/style.scss */
.navbar-form:before {
  display: table;
  content: "";
  line-height: 0;
}
/* line 5632, ../../../blueidea/static/sass/style.scss */
.navbar-form:after {
  display: table;
  content: "";
  line-height: 0;
  clear: both;
}
/* line 5638, ../../../blueidea/static/sass/style.scss */
.navbar-form input, .navbar-form select, .navbar-form .radio, .navbar-form .checkbox {
  margin-top: 3px;
}
/* line 5641, ../../../blueidea/static/sass/style.scss */
.navbar-form input, .navbar-form select, .navbar-form .btn {
  display: inline-block;
  margin-bottom: 0;
}
/* line 5646, ../../../blueidea/static/sass/style.scss */
.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
  margin-top: 3px;
}
/* line 5650, ../../../blueidea/static/sass/style.scss */
.navbar-form .input-append, .navbar-form .input-prepend {
  margin-top: 5px;
  white-space: nowrap;
}
/* line 5654, ../../../blueidea/static/sass/style.scss */
.navbar-form .input-append input, .navbar-form .input-prepend input {
  margin-top: 0;
}

/* line 5659, ../../../blueidea/static/sass/style.scss */
.navbar-search {
  position: relative;
  float: left;
  margin-top: 3px;
  margin-bottom: 0;
}
/* line 5664, ../../../blueidea/static/sass/style.scss */
.navbar-search .search-query {
  margin-bottom: 0;
  padding: 4px 14px;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 1;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}

/* line 5678, ../../../blueidea/static/sass/style.scss */
.navbar-static-top {
  position: static;
  margin-bottom: 0;
}
/* line 5681, ../../../blueidea/static/sass/style.scss */
.navbar-static-top .navbar-inner {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

/* line 5689, ../../../blueidea/static/sass/style.scss */
.navbar-fixed-top, .navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
  margin-bottom: 0;
}

/* line 5697, ../../../blueidea/static/sass/style.scss */
.navbar-fixed-top .navbar-inner, .navbar-static-top .navbar-inner {
  border-width: 0 0 1px;
}

/* line 5701, ../../../blueidea/static/sass/style.scss */
.navbar-fixed-bottom .navbar-inner {
  border-width: 1px 0 0;
}

/* line 5705, ../../../blueidea/static/sass/style.scss */
.navbar-fixed-top .navbar-inner, .navbar-fixed-bottom .navbar-inner {
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

/* line 5714, ../../../blueidea/static/sass/style.scss */
.navbar-static-top .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container {
  width: 940px;
}

/* line 5718, ../../../blueidea/static/sass/style.scss */
.navbar-fixed-top {
  top: 0;
}
/* line 5720, ../../../blueidea/static/sass/style.scss */
.navbar-fixed-top .navbar-inner {
  -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

/* line 5727, ../../../blueidea/static/sass/style.scss */
.navbar-static-top .navbar-inner {
  -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

/* line 5733, ../../../blueidea/static/sass/style.scss */
.navbar-fixed-bottom {
  bottom: 0;
}
/* line 5735, ../../../blueidea/static/sass/style.scss */
.navbar-fixed-bottom .navbar-inner {
  -webkit-box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
}

/* line 5743, ../../../blueidea/static/sass/style.scss */
.navbar .nav {
  position: relative;
  left: 0;
  display: block;
  float: left;
  margin: 0 10px 0 0;
}
/* line 5749, ../../../blueidea/static/sass/style.scss */
.navbar .nav.pull-right {
  float: right;
  margin-right: 0;
}
/* line 5753, ../../../blueidea/static/sass/style.scss */
.navbar .nav > li {
  float: left;
}
/* line 5755, ../../../blueidea/static/sass/style.scss */
.navbar .nav > li > a {
  float: none;
  padding: 8px 15px 8px;
  color: #777;
  text-decoration: none;
  text-shadow: 0 1px 0 #fff;
}
/* line 5763, ../../../blueidea/static/sass/style.scss */
.navbar .nav .dropdown-toggle .caret {
  margin-top: 8px;
}
/* line 5768, ../../../blueidea/static/sass/style.scss */
.navbar .nav > li > a:focus, .navbar .nav > li > a:hover {
  background-color: transparent;
  color: #333;
  text-decoration: none;
}
/* line 5774, ../../../blueidea/static/sass/style.scss */
.navbar .nav > .active > a {
  color: #555;
  text-decoration: none;
  background-color: #e5e5e5;
  -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
  -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
}
/* line 5781, ../../../blueidea/static/sass/style.scss */
.navbar .nav > .active > a:hover, .navbar .nav > .active > a:focus {
  color: #555;
  text-decoration: none;
  background-color: #e5e5e5;
  -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
  -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
}
/* line 5792, ../../../blueidea/static/sass/style.scss */
.navbar .btn-navbar {
  display: none;
  float: right;
  padding: 7px 10px;
  margin-left: 5px;
  margin-right: 5px;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #ededed;
  background-image: -moz-linear-gradient(top, #f2f2f2, #e5e5e5);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, left, right);
  background-image: -webkit-linear-gradient(top, #f2f2f2, #e5e5e5);
  background-image: -o-linear-gradient(top, #f2f2f2, #e5e5e5);
  background-image: linear-gradient(to bottom, #f2f2f2, #e5e5e5);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);
  border-color: #e5e5e5 #e5e5e5 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #e5e5e5;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
}
/* line 5815, ../../../blueidea/static/sass/style.scss */
.navbar .btn-navbar:hover, .navbar .btn-navbar:focus, .navbar .btn-navbar:active, .navbar .btn-navbar.active, .navbar .btn-navbar.disabled, .navbar .btn-navbar[disabled] {
  color: #fff;
  background-color: #e5e5e5;
  *background-color: #d9d9d9;
}
/* line 5820, ../../../blueidea/static/sass/style.scss */
.navbar .btn-navbar:active, .navbar .btn-navbar.active {
  background-color: #ccc \9;
}
/* line 5823, ../../../blueidea/static/sass/style.scss */
.navbar .btn-navbar .icon-bar {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #f5f5f5;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

/* line 5838, ../../../blueidea/static/sass/style.scss */
.btn-navbar .icon-bar + .icon-bar {
  margin-top: 3px;
}

/* line 5843, ../../../blueidea/static/sass/style.scss */
.navbar .nav > li > .dropdown-menu:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -7px;
  left: 9px;
}
/* line 5854, ../../../blueidea/static/sass/style.scss */
.navbar .nav > li > .dropdown-menu:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  position: absolute;
  top: -6px;
  left: 10px;
}

/* line 5867, ../../../blueidea/static/sass/style.scss */
.navbar-fixed-bottom .nav > li > .dropdown-menu:before {
  border-top: 7px solid #ccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  border-bottom: 0;
  bottom: -7px;
  top: auto;
}
/* line 5874, ../../../blueidea/static/sass/style.scss */
.navbar-fixed-bottom .nav > li > .dropdown-menu:after {
  border-top: 6px solid #fff;
  border-bottom: 0;
  bottom: -6px;
  top: auto;
}

/* line 5885, ../../../blueidea/static/sass/style.scss */
.navbar .nav li.dropdown > a:hover .caret, .navbar .nav li.dropdown > a:focus .caret {
  border-top-color: #333;
  border-bottom-color: #333;
}
/* line 5890, ../../../blueidea/static/sass/style.scss */
.navbar .nav li.dropdown.open > .dropdown-toggle, .navbar .nav li.dropdown.active > .dropdown-toggle {
  background-color: #e5e5e5;
  color: #555;
}
/* line 5895, ../../../blueidea/static/sass/style.scss */
.navbar .nav li.dropdown.open.active > .dropdown-toggle {
  background-color: #e5e5e5;
  color: #555;
}
/* line 5899, ../../../blueidea/static/sass/style.scss */
.navbar .nav li.dropdown.open > .dropdown-toggle .caret {
  border-top-color: #555;
  border-bottom-color: #555;
}
/* line 5904, ../../../blueidea/static/sass/style.scss */
.navbar .nav li.dropdown > .dropdown-toggle .caret {
  border-top-color: #777;
  border-bottom-color: #777;
}
/* line 5908, ../../../blueidea/static/sass/style.scss */
.navbar .nav li.dropdown.active > .dropdown-toggle .caret, .navbar .nav li.dropdown.open.active > .dropdown-toggle .caret {
  border-top-color: #555;
  border-bottom-color: #555;
}
/* line 5913, ../../../blueidea/static/sass/style.scss */
.navbar .pull-right > li > .dropdown-menu, .navbar .nav > li > .dropdown-menu.pull-right {
  left: auto;
  right: 0;
}
/* line 5917, ../../../blueidea/static/sass/style.scss */
.navbar .pull-right > li > .dropdown-menu:before, .navbar .nav > li > .dropdown-menu.pull-right:before {
  left: auto;
  right: 12px;
}
/* line 5921, ../../../blueidea/static/sass/style.scss */
.navbar .pull-right > li > .dropdown-menu:after, .navbar .nav > li > .dropdown-menu.pull-right:after {
  left: auto;
  right: 13px;
}
/* line 5925, ../../../blueidea/static/sass/style.scss */
.navbar .pull-right > li > .dropdown-menu .dropdown-menu, .navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu {
  left: auto;
  right: 100%;
  margin-left: 0;
  margin-right: -1px;
  border-radius: 6px 0 6px 6px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}

/* line 5938, ../../../blueidea/static/sass/style.scss */
.navbar-inverse .navbar-inner {
  background-color: #1b1b1b;
  background-image: -moz-linear-gradient(top, #222222, #111111);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, left, right);
  background-image: -webkit-linear-gradient(top, #222222, #111111);
  background-image: -o-linear-gradient(top, #222222, #111111);
  background-image: linear-gradient(to bottom, #222222, #111111);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);
  border-color: #252525;
}
/* line 5949, ../../../blueidea/static/sass/style.scss */
.navbar-inverse .brand, .navbar-inverse .nav > li > a {
  color: #999;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
/* line 5953, ../../../blueidea/static/sass/style.scss */
.navbar-inverse .brand:hover, .navbar-inverse .nav > li > a:hover, .navbar-inverse .brand:focus, .navbar-inverse .nav > li > a:focus {
  color: #fff;
}
/* line 5956, ../../../blueidea/static/sass/style.scss */
.navbar-inverse .brand, .navbar-inverse .navbar-text {
  color: #999;
}
/* line 5961, ../../../blueidea/static/sass/style.scss */
.navbar-inverse .nav > li > a:focus, .navbar-inverse .nav > li > a:hover {
  background-color: transparent;
  color: #fff;
}
/* line 5966, ../../../blueidea/static/sass/style.scss */
.navbar-inverse .nav .active > a {
  color: #fff;
  background-color: #111;
}
/* line 5969, ../../../blueidea/static/sass/style.scss */
.navbar-inverse .nav .active > a:hover, .navbar-inverse .nav .active > a:focus {
  color: #fff;
  background-color: #111;
}
/* line 5975, ../../../blueidea/static/sass/style.scss */
.navbar-inverse .navbar-link {
  color: #999;
}
/* line 5977, ../../../blueidea/static/sass/style.scss */
.navbar-inverse .navbar-link:hover, .navbar-inverse .navbar-link:focus {
  color: #fff;
}
/* line 5981, ../../../blueidea/static/sass/style.scss */
.navbar-inverse .divider-vertical {
  border-left-color: #111;
  border-right-color: #222;
}
/* line 5986, ../../../blueidea/static/sass/style.scss */
.navbar-inverse .nav li.dropdown.open > .dropdown-toggle, .navbar-inverse .nav li.dropdown.active > .dropdown-toggle {
  background-color: #111;
  color: #fff;
}
/* line 5991, ../../../blueidea/static/sass/style.scss */
.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle {
  background-color: #111;
  color: #fff;
}
/* line 5995, ../../../blueidea/static/sass/style.scss */
.navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
}
/* line 6002, ../../../blueidea/static/sass/style.scss */
.navbar-inverse .nav li.dropdown > a:hover .caret, .navbar-inverse .nav li.dropdown > a:focus .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
}
/* line 6007, ../../../blueidea/static/sass/style.scss */
.navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
  border-top-color: #999;
  border-bottom-color: #999;
}
/* line 6012, ../../../blueidea/static/sass/style.scss */
.navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret, .navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
}
/* line 6017, ../../../blueidea/static/sass/style.scss */
.navbar-inverse .navbar-search .search-query {
  color: #fff;
  background-color: #515151;
  border-color: #111;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
/* line 6028, ../../../blueidea/static/sass/style.scss */
.navbar-inverse .navbar-search .search-query:-moz-placeholder, .navbar-inverse .navbar-search .search-query:-ms-input-placeholder, .navbar-inverse .navbar-search .search-query::-webkit-input-placeholder {
  color: #ccc;
}
/* line 6031, ../../../blueidea/static/sass/style.scss */
.navbar-inverse .navbar-search .search-query:focus, .navbar-inverse .navbar-search .search-query.focused {
  padding: 5px 15px;
  color: #333;
  text-shadow: 0 1px 0 #fff;
  background-color: #fff;
  border: 0;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  outline: 0;
}
/* line 6043, ../../../blueidea/static/sass/style.scss */
.navbar-inverse .btn-navbar {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #0e0e0e;
  background-image: -moz-linear-gradient(top, #151515, #040404);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, left, right);
  background-image: -webkit-linear-gradient(top, #151515, #040404);
  background-image: -o-linear-gradient(top, #151515, #040404);
  background-image: linear-gradient(to bottom, #151515, #040404);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);
  border-color: #040404 #040404 #000;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #040404;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
/* line 6058, ../../../blueidea/static/sass/style.scss */
.navbar-inverse .btn-navbar:hover, .navbar-inverse .btn-navbar:focus, .navbar-inverse .btn-navbar:active, .navbar-inverse .btn-navbar.active, .navbar-inverse .btn-navbar.disabled, .navbar-inverse .btn-navbar[disabled] {
  color: #fff;
  background-color: #040404;
  *background-color: #000;
}
/* line 6063, ../../../blueidea/static/sass/style.scss */
.navbar-inverse .btn-navbar:active, .navbar-inverse .btn-navbar.active {
  background-color: #000 \9;
}

/* line 6069, ../../../blueidea/static/sass/style.scss */
.breadcrumb {
  padding: 8px 15px;
  margin: 0 0 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
/* line 6079, ../../../blueidea/static/sass/style.scss */
.breadcrumb > li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  text-shadow: 0 1px 0 #fff;
}
/* line 6084, ../../../blueidea/static/sass/style.scss */
.breadcrumb > li > .divider {
  padding: 0 5px;
  color: #ccc;
}
/* line 6089, ../../../blueidea/static/sass/style.scss */
.breadcrumb > .active {
  color: #999;
}

/* line 6095, ../../../blueidea/static/sass/style.scss */
.pagination {
  margin: 20px 0;
}
/* line 6097, ../../../blueidea/static/sass/style.scss */
.pagination ul {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  margin-left: 0;
  margin-bottom: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
/* line 6110, ../../../blueidea/static/sass/style.scss */
.pagination ul > li {
  display: inline;
}
/* line 6113, ../../../blueidea/static/sass/style.scss */
.pagination ul > li > a, .pagination ul > li > span {
  float: left;
  padding: 4px 12px;
  line-height: 20px;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
  border-left-width: 0;
}
/* line 6123, ../../../blueidea/static/sass/style.scss */
.pagination ul > li > a:hover, .pagination ul > li > a:focus {
  background-color: #f5f5f5;
}
/* line 6130, ../../../blueidea/static/sass/style.scss */
.pagination ul > .active > a, .pagination ul > .active > span {
  background-color: #f5f5f5;
}
/* line 6133, ../../../blueidea/static/sass/style.scss */
.pagination ul > .active > a, .pagination ul > .active > span {
  color: #999;
  cursor: default;
}
/* line 6139, ../../../blueidea/static/sass/style.scss */
.pagination ul > .disabled > span {
  color: #999;
  background-color: transparent;
  cursor: default;
}
/* line 6144, ../../../blueidea/static/sass/style.scss */
.pagination ul > .disabled > a {
  color: #999;
  background-color: transparent;
  cursor: default;
}
/* line 6148, ../../../blueidea/static/sass/style.scss */
.pagination ul > .disabled > a:hover, .pagination ul > .disabled > a:focus {
  color: #999;
  background-color: transparent;
  cursor: default;
}
/* line 6157, ../../../blueidea/static/sass/style.scss */
.pagination ul > li:first-child > a, .pagination ul > li:first-child > span {
  border-left-width: 1px;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
}
/* line 6168, ../../../blueidea/static/sass/style.scss */
.pagination ul > li:last-child > a, .pagination ul > li:last-child > span {
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
}

/* line 6182, ../../../blueidea/static/sass/style.scss */
.pagination-centered {
  text-align: center;
}

/* line 6186, ../../../blueidea/static/sass/style.scss */
.pagination-right {
  text-align: right;
}

/* line 6192, ../../../blueidea/static/sass/style.scss */
.pagination-large ul > li > a, .pagination-large ul > li > span {
  padding: 11px 19px;
  font-size: 16.25px;
}
/* line 6198, ../../../blueidea/static/sass/style.scss */
.pagination-large ul > li:first-child > a, .pagination-large ul > li:first-child > span {
  -webkit-border-top-left-radius: 6px;
  -moz-border-radius-topleft: 6px;
  border-top-left-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  -moz-border-radius-bottomleft: 6px;
  border-bottom-left-radius: 6px;
}
/* line 6208, ../../../blueidea/static/sass/style.scss */
.pagination-large ul > li:last-child > a, .pagination-large ul > li:last-child > span {
  -webkit-border-top-right-radius: 6px;
  -moz-border-radius-topright: 6px;
  border-top-right-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  -moz-border-radius-bottomright: 6px;
  border-bottom-right-radius: 6px;
}

/* line 6219, ../../../blueidea/static/sass/style.scss */
.pagination-mini ul > li:first-child > a, .pagination-small ul > li:first-child > a, .pagination-mini ul > li:first-child > span, .pagination-small ul > li:first-child > span {
  -webkit-border-top-left-radius: 3px;
  -moz-border-radius-topleft: 3px;
  border-top-left-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  -moz-border-radius-bottomleft: 3px;
  border-bottom-left-radius: 3px;
}

/* line 6228, ../../../blueidea/static/sass/style.scss */
.pagination-mini ul > li:last-child > a, .pagination-small ul > li:last-child > a, .pagination-mini ul > li:last-child > span {
  -webkit-border-top-right-radius: 3px;
  -moz-border-radius-topright: 3px;
  border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  border-bottom-right-radius: 3px;
}

/* line 6238, ../../../blueidea/static/sass/style.scss */
.pagination-small ul > li:last-child > span {
  -webkit-border-top-right-radius: 3px;
  -moz-border-radius-topright: 3px;
  border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  border-bottom-right-radius: 3px;
}
/* line 6247, ../../../blueidea/static/sass/style.scss */
.pagination-small ul > li > a, .pagination-small ul > li > span {
  padding: 2px 10px;
  font-size: 11.049999999999999px;
}

/* line 6255, ../../../blueidea/static/sass/style.scss */
.pagination-mini ul > li > a, .pagination-mini ul > li > span {
  padding: 0 6px;
  font-size: 9.75px;
}

/* line 6261, ../../../blueidea/static/sass/style.scss */
.pager {
  margin: 20px 0;
  list-style: none;
  text-align: center;
  *zoom: 1;
}
/* line 6266, ../../../blueidea/static/sass/style.scss */
.pager:before {
  display: table;
  content: "";
  line-height: 0;
}
/* line 6271, ../../../blueidea/static/sass/style.scss */
.pager:after {
  display: table;
  content: "";
  line-height: 0;
  clear: both;
}
/* line 6277, ../../../blueidea/static/sass/style.scss */
.pager li {
  display: inline;
}
/* line 6280, ../../../blueidea/static/sass/style.scss */
.pager li > a, .pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
/* line 6291, ../../../blueidea/static/sass/style.scss */
.pager li > a:hover, .pager li > a:focus {
  text-decoration: none;
  background-color: #f5f5f5;
}
/* line 6299, ../../../blueidea/static/sass/style.scss */
.pager .next > a, .pager .next > span {
  float: right;
}
/* line 6304, ../../../blueidea/static/sass/style.scss */
.pager .previous > a, .pager .previous > span {
  float: left;
}
/* line 6309, ../../../blueidea/static/sass/style.scss */
.pager .disabled > a {
  color: #999;
  background-color: #fff;
  cursor: default;
}
/* line 6313, ../../../blueidea/static/sass/style.scss */
.pager .disabled > a:hover, .pager .disabled > a:focus {
  color: #999;
  background-color: #fff;
  cursor: default;
}
/* line 6319, ../../../blueidea/static/sass/style.scss */
.pager .disabled > span {
  color: #999;
  background-color: #fff;
  cursor: default;
}

/* line 6327, ../../../blueidea/static/sass/style.scss */
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
  opacity: .8;
  filter: alpha(opacity=80);
}
/* line 6335, ../../../blueidea/static/sass/style.scss */
.modal-backdrop.fade {
  opacity: 0;
}
/* line 6337, ../../../blueidea/static/sass/style.scss */
.modal-backdrop.fade.in {
  opacity: .8;
  filter: alpha(opacity=80);
}

/* line 6346, ../../../blueidea/static/sass/style.scss */
.modal {
  position: fixed;
  top: 10%;
  left: 50%;
  z-index: 1050;
  width: 560px;
  margin-left: -280px;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.3);
  *border: 1px solid #999;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
  outline: none;
}
/* line 6367, ../../../blueidea/static/sass/style.scss */
.modal.fade {
  -webkit-transition: opacity .3s linear, top .3s ease-out;
  -moz-transition: opacity .3s linear, top .3s ease-out;
  -o-transition: opacity .3s linear, top .3s ease-out;
  transition: opacity .3s linear, top .3s ease-out;
  top: -25%;
}
/* line 6373, ../../../blueidea/static/sass/style.scss */
.modal.fade.in {
  top: 10%;
}

/* line 6379, ../../../blueidea/static/sass/style.scss */
.modal-header {
  padding: 9px 15px;
  border-bottom: 1px solid #eee;
}
/* line 6382, ../../../blueidea/static/sass/style.scss */
.modal-header .close {
  margin-top: 2px;
}
/* line 6385, ../../../blueidea/static/sass/style.scss */
.modal-header h3 {
  margin: 0;
  line-height: 30px;
}

/* line 6391, ../../../blueidea/static/sass/style.scss */
.modal-body {
  position: relative;
  overflow-y: auto;
  max-height: 400px;
  padding: 15px;
}

/* line 6398, ../../../blueidea/static/sass/style.scss */
.modal-form {
  margin-bottom: 0;
}

/* line 6402, ../../../blueidea/static/sass/style.scss */
.modal-footer {
  padding: 14px 15px 15px;
  margin-bottom: 0;
  text-align: right;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
  -webkit-box-shadow: inset 0 1px 0 #fff;
  -moz-box-shadow: inset 0 1px 0 #fff;
  box-shadow: inset 0 1px 0 #fff;
  *zoom: 1;
}
/* line 6415, ../../../blueidea/static/sass/style.scss */
.modal-footer:before {
  display: table;
  content: "";
  line-height: 0;
}
/* line 6420, ../../../blueidea/static/sass/style.scss */
.modal-footer:after {
  display: table;
  content: "";
  line-height: 0;
  clear: both;
}
/* line 6426, ../../../blueidea/static/sass/style.scss */
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
/* line 6430, ../../../blueidea/static/sass/style.scss */
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
/* line 6433, ../../../blueidea/static/sass/style.scss */
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

/* line 6438, ../../../blueidea/static/sass/style.scss */
.tooltip {
  position: absolute;
  z-index: 1030;
  display: block;
  visibility: visible;
  font-size: 11px;
  line-height: 1.4;
  opacity: 0;
  filter: alpha(opacity=0);
}
/* line 6447, ../../../blueidea/static/sass/style.scss */
.tooltip.in {
  opacity: .8;
  filter: alpha(opacity=80);
}
/* line 6451, ../../../blueidea/static/sass/style.scss */
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
/* line 6455, ../../../blueidea/static/sass/style.scss */
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
/* line 6459, ../../../blueidea/static/sass/style.scss */
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
/* line 6463, ../../../blueidea/static/sass/style.scss */
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}

/* line 6469, ../../../blueidea/static/sass/style.scss */
.tooltip-inner {
  max-width: 200px;
  padding: 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

/* line 6482, ../../../blueidea/static/sass/style.scss */
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 6491, ../../../blueidea/static/sass/style.scss */
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
/* line 6498, ../../../blueidea/static/sass/style.scss */
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
/* line 6505, ../../../blueidea/static/sass/style.scss */
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
/* line 6512, ../../../blueidea/static/sass/style.scss */
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 6521, ../../../blueidea/static/sass/style.scss */
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1010;
  display: none;
  max-width: 276px;
  padding: 1px;
  text-align: left;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  white-space: normal;
}
/* line 6543, ../../../blueidea/static/sass/style.scss */
.popover.top {
  margin-top: -10px;
}
/* line 6546, ../../../blueidea/static/sass/style.scss */
.popover.right {
  margin-left: 10px;
}
/* line 6549, ../../../blueidea/static/sass/style.scss */
.popover.bottom {
  margin-top: 10px;
}
/* line 6552, ../../../blueidea/static/sass/style.scss */
.popover.left {
  margin-left: -10px;
}

/* line 6557, ../../../blueidea/static/sass/style.scss */
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
/* line 6569, ../../../blueidea/static/sass/style.scss */
.popover-title:empty {
  display: none;
}

/* line 6574, ../../../blueidea/static/sass/style.scss */
.popover-content {
  padding: 9px 14px;
}

/* line 6579, ../../../blueidea/static/sass/style.scss */
.popover .arrow {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 11px;
}
/* line 6586, ../../../blueidea/static/sass/style.scss */
.popover .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 10px;
  content: "";
}
/* line 6598, ../../../blueidea/static/sass/style.scss */
.popover.top .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
/* line 6605, ../../../blueidea/static/sass/style.scss */
.popover.top .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff;
}
/* line 6612, ../../../blueidea/static/sass/style.scss */
.popover.right .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
/* line 6619, ../../../blueidea/static/sass/style.scss */
.popover.right .arrow:after {
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff;
}
/* line 6626, ../../../blueidea/static/sass/style.scss */
.popover.bottom .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}
/* line 6633, ../../../blueidea/static/sass/style.scss */
.popover.bottom .arrow:after {
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff;
}
/* line 6640, ../../../blueidea/static/sass/style.scss */
.popover.left .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
/* line 6647, ../../../blueidea/static/sass/style.scss */
.popover.left .arrow:after {
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px;
}

/* line 6656, ../../../blueidea/static/sass/style.scss */
.thumbnails {
  margin-left: -20px;
  list-style: none;
  *zoom: 1;
}
/* line 6660, ../../../blueidea/static/sass/style.scss */
.thumbnails:before {
  display: table;
  content: "";
  line-height: 0;
}
/* line 6665, ../../../blueidea/static/sass/style.scss */
.thumbnails:after {
  display: table;
  content: "";
  line-height: 0;
  clear: both;
}

/* line 6673, ../../../blueidea/static/sass/style.scss */
.row-fluid .thumbnails {
  margin-left: 0;
}

/* line 6677, ../../../blueidea/static/sass/style.scss */
.thumbnails > li {
  float: left;
  margin-bottom: 20px;
  margin-left: 20px;
}

/* line 6683, ../../../blueidea/static/sass/style.scss */
.thumbnail {
  display: block;
  padding: 4px;
  line-height: 20px;
  border: 1px solid #ddd;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 6701, ../../../blueidea/static/sass/style.scss */
a.thumbnail:hover, a.thumbnail:focus {
  border-color: #a4b847;
  -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
  -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
  box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
}

/* line 6710, ../../../blueidea/static/sass/style.scss */
.thumbnail > img {
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
/* line 6716, ../../../blueidea/static/sass/style.scss */
.thumbnail .caption {
  padding: 9px;
  color: #555;
}

/* line 6722, ../../../blueidea/static/sass/style.scss */
.media, .media-body {
  overflow: hidden;
  *overflow: visible;
  zoom: 1;
}

/* line 6728, ../../../blueidea/static/sass/style.scss */
.media {
  margin-top: 15px;
}
/* line 6730, ../../../blueidea/static/sass/style.scss */
.media .media {
  margin-top: 15px;
}
/* line 6733, ../../../blueidea/static/sass/style.scss */
.media:first-child {
  margin-top: 0;
}

/* line 6738, ../../../blueidea/static/sass/style.scss */
.media-object {
  display: block;
}

/* line 6742, ../../../blueidea/static/sass/style.scss */
.media-heading {
  margin: 0 0 5px;
}

/* line 6747, ../../../blueidea/static/sass/style.scss */
.media > .pull-left {
  margin-right: 10px;
}
/* line 6750, ../../../blueidea/static/sass/style.scss */
.media > .pull-right {
  margin-left: 10px;
}

/* line 6755, ../../../blueidea/static/sass/style.scss */
.media-list {
  margin-left: 0;
  list-style: none;
}

/* line 6760, ../../../blueidea/static/sass/style.scss */
.label, .badge {
  display: inline-block;
  padding: 2px 4px;
  font-size: 10.998px;
  font-weight: bold;
  line-height: 14px;
  color: #fff;
  vertical-align: baseline;
  white-space: nowrap;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #999;
}

/* line 6773, ../../../blueidea/static/sass/style.scss */
.label {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

/* line 6780, ../../../blueidea/static/sass/style.scss */
.badge {
  padding-left: 9px;
  padding-right: 9px;
  border-radius: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  border-radius: 9px;
}

/* line 6789, ../../../blueidea/static/sass/style.scss */
.label:empty, .badge:empty {
  display: none;
}

/* line 6795, ../../../blueidea/static/sass/style.scss */
a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
/* line 6802, ../../../blueidea/static/sass/style.scss */
a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* line 6810, ../../../blueidea/static/sass/style.scss */
.label-important, .badge-important {
  background-color: #b94a48;
}

/* line 6814, ../../../blueidea/static/sass/style.scss */
.label-important[href], .badge-important[href] {
  background-color: #953b39;
}

/* line 6818, ../../../blueidea/static/sass/style.scss */
.label-warning, .badge-warning {
  background-color: #f89406;
}

/* line 6822, ../../../blueidea/static/sass/style.scss */
.label-warning[href], .badge-warning[href] {
  background-color: #c67605;
}

/* line 6826, ../../../blueidea/static/sass/style.scss */
.label-success, .badge-success {
  background-color: #468847;
}

/* line 6830, ../../../blueidea/static/sass/style.scss */
.label-success[href], .badge-success[href] {
  background-color: #356635;
}

/* line 6834, ../../../blueidea/static/sass/style.scss */
.label-info, .badge-info {
  background-color: #3a87ad;
}

/* line 6838, ../../../blueidea/static/sass/style.scss */
.label-info[href], .badge-info[href] {
  background-color: #2d6987;
}

/* line 6842, ../../../blueidea/static/sass/style.scss */
.label-inverse, .badge-inverse {
  background-color: #333;
}

/* line 6846, ../../../blueidea/static/sass/style.scss */
.label-inverse[href], .badge-inverse[href] {
  background-color: #1a1a1a;
}

/* line 6851, ../../../blueidea/static/sass/style.scss */
.btn .label, .btn .badge {
  position: relative;
  top: -1px;
}

/* line 6858, ../../../blueidea/static/sass/style.scss */
.btn-mini .label, .btn-mini .badge {
  top: 0;
}

@-webkit-keyframes progress-bar-stripes {
  /* line 6864, ../../../blueidea/static/sass/style.scss */
  from {
    background-position: 40px 0;
  }

  /* line 6867, ../../../blueidea/static/sass/style.scss */
  to {
    background-position: 0 0;
  }
}
@-moz-keyframes progress-bar-stripes {
  /* line 6874, ../../../blueidea/static/sass/style.scss */
  from {
    background-position: 40px 0;
  }

  /* line 6877, ../../../blueidea/static/sass/style.scss */
  to {
    background-position: 0 0;
  }
}
@-ms-keyframes progress-bar-stripes {
  /* line 6884, ../../../blueidea/static/sass/style.scss */
  from {
    background-position: 40px 0;
  }

  /* line 6887, ../../../blueidea/static/sass/style.scss */
  to {
    background-position: 0 0;
  }
}
@-o-keyframes progress-bar-stripes {
  /* line 6894, ../../../blueidea/static/sass/style.scss */
  from {
    background-position: 0 0;
  }

  /* line 6897, ../../../blueidea/static/sass/style.scss */
  to {
    background-position: 40px 0;
  }
}
@keyframes progress-bar-stripes {
  /* line 6904, ../../../blueidea/static/sass/style.scss */
  from {
    background-position: 40px 0;
  }

  /* line 6907, ../../../blueidea/static/sass/style.scss */
  to {
    background-position: 0 0;
  }
}
/* line 6913, ../../../blueidea/static/sass/style.scss */
.progress {
  overflow: hidden;
  height: 20px;
  margin-bottom: 20px;
  background-color: #f7f7f7;
  background-image: -moz-linear-gradient(top, whitesmoke, #f9f9f9);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, left, right);
  background-image: -webkit-linear-gradient(top, whitesmoke, #f9f9f9);
  background-image: -o-linear-gradient(top, whitesmoke, #f9f9f9);
  background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
/* line 6932, ../../../blueidea/static/sass/style.scss */
.progress .bar {
  width: 0;
  height: 100%;
  color: #fff;
  float: left;
  font-size: 12px;
  text-align: center;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #0e90d2;
  background-image: -moz-linear-gradient(top, #149bdf, #0480be);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, left, right);
  background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
  background-image: -o-linear-gradient(top, #149bdf, #0480be);
  background-image: linear-gradient(to bottom, #149bdf, #0480be);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: width .6s ease;
  -moz-transition: width .6s ease;
  -o-transition: width .6s ease;
  transition: width .6s ease;
}
/* line 6958, ../../../blueidea/static/sass/style.scss */
.progress .bar + .bar {
  -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

/* line 6966, ../../../blueidea/static/sass/style.scss */
.progress-striped .bar {
  background-color: #149bdf;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), right);
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
  -webkit-background-size: 40px 40px;
  -moz-background-size: 40px 40px;
  -o-background-size: 40px 40px;
  background-size: 40px 40px;
}

/* line 6979, ../../../blueidea/static/sass/style.scss */
.progress.active .bar {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -moz-animation: progress-bar-stripes 2s linear infinite;
  -ms-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}

/* line 6987, ../../../blueidea/static/sass/style.scss */
.progress-danger .bar, .progress .bar-danger {
  background-color: #dd514c;
  background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, left, right);
  background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: linear-gradient(to bottom, #ee5f5b, #c43c35);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);
}

/* line 6998, ../../../blueidea/static/sass/style.scss */
.progress-danger.progress-striped .bar, .progress-striped .bar-danger {
  background-color: #ee5f5b;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), right);
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
}

/* line 7007, ../../../blueidea/static/sass/style.scss */
.progress-success .bar, .progress .bar-success {
  background-color: #5eb95e;
  background-image: -moz-linear-gradient(top, #62c462, #57a957);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, left, right);
  background-image: -webkit-linear-gradient(top, #62c462, #57a957);
  background-image: -o-linear-gradient(top, #62c462, #57a957);
  background-image: linear-gradient(to bottom, #62c462, #57a957);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);
}

/* line 7018, ../../../blueidea/static/sass/style.scss */
.progress-success.progress-striped .bar, .progress-striped .bar-success {
  background-color: #62c462;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), right);
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
}

/* line 7027, ../../../blueidea/static/sass/style.scss */
.progress-info .bar, .progress .bar-info {
  background-color: #4bb1cf;
  background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, left, right);
  background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
  background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
  background-image: linear-gradient(to bottom, #5bc0de, #339bb9);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);
}

/* line 7038, ../../../blueidea/static/sass/style.scss */
.progress-info.progress-striped .bar, .progress-striped .bar-info {
  background-color: #5bc0de;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), right);
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
}

/* line 7047, ../../../blueidea/static/sass/style.scss */
.progress-warning .bar, .progress .bar-warning {
  background-color: #faa732;
  background-image: -moz-linear-gradient(top, #fbb450, #f89406);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, left, right);
  background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
  background-image: -o-linear-gradient(top, #fbb450, #f89406);
  background-image: linear-gradient(to bottom, #fbb450, #f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
}

/* line 7058, ../../../blueidea/static/sass/style.scss */
.progress-warning.progress-striped .bar, .progress-striped .bar-warning {
  background-color: #fbb450;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), right);
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
}

/* line 7067, ../../../blueidea/static/sass/style.scss */
.accordion {
  margin-bottom: 20px;
}

/* line 7071, ../../../blueidea/static/sass/style.scss */
.accordion-group {
  margin-bottom: 2px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

/* line 7080, ../../../blueidea/static/sass/style.scss */
.accordion-heading {
  border-bottom: 0;
}
/* line 7082, ../../../blueidea/static/sass/style.scss */
.accordion-heading .accordion-toggle {
  display: block;
  padding: 8px 15px;
}

/* line 7088, ../../../blueidea/static/sass/style.scss */
.accordion-toggle {
  cursor: pointer;
}

/* line 7092, ../../../blueidea/static/sass/style.scss */
.accordion-inner {
  padding: 9px 15px;
  border-top: 1px solid #e5e5e5;
}

/* line 7097, ../../../blueidea/static/sass/style.scss */
.carousel {
  position: relative;
  margin-bottom: 20px;
  line-height: 1;
}

/* line 7103, ../../../blueidea/static/sass/style.scss */
.carousel-inner {
  overflow: hidden;
  width: 100%;
  position: relative;
}
/* line 7108, ../../../blueidea/static/sass/style.scss */
.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: .6s ease-in-out left;
  -moz-transition: .6s ease-in-out left;
  -o-transition: .6s ease-in-out left;
  transition: .6s ease-in-out left;
}
/* line 7116, ../../../blueidea/static/sass/style.scss */
.carousel-inner > .item > img, .carousel-inner > .item > a > img {
  display: block;
  line-height: 1;
}
/* line 7122, ../../../blueidea/static/sass/style.scss */
.carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev {
  display: block;
}
/* line 7125, ../../../blueidea/static/sass/style.scss */
.carousel-inner > .active {
  left: 0;
}
/* line 7128, ../../../blueidea/static/sass/style.scss */
.carousel-inner > .next, .carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
/* line 7133, ../../../blueidea/static/sass/style.scss */
.carousel-inner > .next {
  left: 100%;
}
/* line 7136, ../../../blueidea/static/sass/style.scss */
.carousel-inner > .prev {
  left: -100%;
}
/* line 7139, ../../../blueidea/static/sass/style.scss */
.carousel-inner > .next.left, .carousel-inner > .prev.right {
  left: 0;
}
/* line 7143, ../../../blueidea/static/sass/style.scss */
.carousel-inner > .active.left {
  left: -100%;
}
/* line 7146, ../../../blueidea/static/sass/style.scss */
.carousel-inner > .active.right {
  left: 100%;
}

/* line 7153, ../../../blueidea/static/sass/style.scss */
.carousel-control {
  position: absolute;
  top: 40%;
  left: 15px;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  font-size: 60px;
  font-weight: 100;
  line-height: 30px;
  color: #fff;
  text-align: center;
  background: #222;
  border: 3px solid #fff;
  -webkit-border-radius: 23px;
  -moz-border-radius: 23px;
  border-radius: 23px;
  opacity: .5;
  filter: alpha(opacity=50);
}
/* line 7172, ../../../blueidea/static/sass/style.scss */
.carousel-control.right {
  left: auto;
  right: 15px;
}
/* line 7176, ../../../blueidea/static/sass/style.scss */
.carousel-control:hover, .carousel-control:focus {
  color: #fff;
  text-decoration: none;
  opacity: .9;
  filter: alpha(opacity=90);
}

/* line 7184, ../../../blueidea/static/sass/style.scss */
.carousel-indicators {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 5;
  margin: 0;
  list-style: none;
}
/* line 7191, ../../../blueidea/static/sass/style.scss */
.carousel-indicators li {
  display: block;
  float: left;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  text-indent: -999px;
  background-color: #ccc;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 5px;
}
/* line 7202, ../../../blueidea/static/sass/style.scss */
.carousel-indicators .active {
  background-color: #fff;
}

/* line 7207, ../../../blueidea/static/sass/style.scss */
.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px;
  background: #333;
  background: rgba(0, 0, 0, 0.75);
}
/* line 7215, ../../../blueidea/static/sass/style.scss */
.carousel-caption h4, .carousel-caption p {
  color: #fff;
  line-height: 20px;
}
/* line 7219, ../../../blueidea/static/sass/style.scss */
.carousel-caption h4 {
  margin: 0 0 5px;
}
/* line 7222, ../../../blueidea/static/sass/style.scss */
.carousel-caption p {
  margin-bottom: 0;
}

/* line 7227, ../../../blueidea/static/sass/style.scss */
.hero-unit {
  padding: 60px;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 200;
  line-height: 30px;
  color: inherit;
  background-color: #eee;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
/* line 7239, ../../../blueidea/static/sass/style.scss */
.hero-unit h1 {
  margin-bottom: 0;
  font-size: 60px;
  line-height: 1;
  color: inherit;
  letter-spacing: -1px;
}
/* line 7246, ../../../blueidea/static/sass/style.scss */
.hero-unit li {
  line-height: 30px;
}

/* line 7251, ../../../blueidea/static/sass/style.scss */
.pull-right {
  float: right;
}

/* line 7255, ../../../blueidea/static/sass/style.scss */
.pull-left {
  float: left;
}

/* line 7259, ../../../blueidea/static/sass/style.scss */
.hide {
  display: none;
}

/* line 7263, ../../../blueidea/static/sass/style.scss */
.show {
  display: block;
}

/* line 7267, ../../../blueidea/static/sass/style.scss */
.invisible {
  visibility: hidden;
}

/* line 7271, ../../../blueidea/static/sass/style.scss */
.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}
/* line 7280, ../../../blueidea/static/sass/style.scss */
.hidden {
  display: none;
  visibility: hidden;
}

/* line 7285, ../../../blueidea/static/sass/style.scss */
.visible-phone, .visible-tablet, .hidden-desktop {
  display: none !important;
}

/* line 7289, ../../../blueidea/static/sass/style.scss */
.visible-desktop {
  display: inherit !important;
}

@media (min-width: 768px) and (max-width: 979px) {
  /* line 7294, ../../../blueidea/static/sass/style.scss */
  .hidden-desktop {
    display: inherit !important;
  }

  /* line 7297, ../../../blueidea/static/sass/style.scss */
  .visible-desktop {
    display: none !important;
  }

  /* line 7300, ../../../blueidea/static/sass/style.scss */
  .visible-tablet {
    display: inherit !important;
  }

  /* line 7303, ../../../blueidea/static/sass/style.scss */
  .hidden-tablet {
    display: none !important;
  }
}
@media (max-width: 767px) {
  /* line 7309, ../../../blueidea/static/sass/style.scss */
  .hidden-desktop {
    display: inherit !important;
  }

  /* line 7312, ../../../blueidea/static/sass/style.scss */
  .visible-desktop {
    display: none !important;
  }

  /* line 7315, ../../../blueidea/static/sass/style.scss */
  .visible-phone {
    display: inherit !important;
  }

  /* line 7318, ../../../blueidea/static/sass/style.scss */
  .hidden-phone {
    display: none !important;
  }
}
/* line 7323, ../../../blueidea/static/sass/style.scss */
.visible-print {
  display: none !important;
}

@media print {
  /* line 7328, ../../../blueidea/static/sass/style.scss */
  .visible-print {
    display: inherit !important;
  }

  /* line 7331, ../../../blueidea/static/sass/style.scss */
  .hidden-print {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  /* line 7337, ../../../blueidea/static/sass/style.scss */
  .row {
    margin-left: -30px;
    *zoom: 1;
  }
  /* line 7340, ../../../blueidea/static/sass/style.scss */
  .row:before {
    display: table;
    content: "";
    line-height: 0;
  }
  /* line 7345, ../../../blueidea/static/sass/style.scss */
  .row:after {
    display: table;
    content: "";
    line-height: 0;
    clear: both;
  }

  /* line 7352, ../../../blueidea/static/sass/style.scss */
  [class*="span"] {
    float: left;
    min-height: 1px;
    margin-left: 30px;
  }

  /* line 7357, ../../../blueidea/static/sass/style.scss */
  .container, .navbar-static-top .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container, .span12 {
    width: 1170px;
  }

  /* line 7360, ../../../blueidea/static/sass/style.scss */
  .span11 {
    width: 1070px;
  }

  /* line 7363, ../../../blueidea/static/sass/style.scss */
  .span10 {
    width: 970px;
  }

  /* line 7366, ../../../blueidea/static/sass/style.scss */
  .span9 {
    width: 870px;
  }

  /* line 7369, ../../../blueidea/static/sass/style.scss */
  .span8 {
    width: 770px;
  }

  /* line 7372, ../../../blueidea/static/sass/style.scss */
  .span7 {
    width: 670px;
  }

  /* line 7375, ../../../blueidea/static/sass/style.scss */
  .span6 {
    width: 570px;
  }

  /* line 7378, ../../../blueidea/static/sass/style.scss */
  .span5 {
    width: 470px;
  }

  /* line 7381, ../../../blueidea/static/sass/style.scss */
  .span4 {
    width: 370px;
  }

  /* line 7384, ../../../blueidea/static/sass/style.scss */
  .span3 {
    width: 270px;
  }

  /* line 7387, ../../../blueidea/static/sass/style.scss */
  .span2 {
    width: 170px;
  }

  /* line 7390, ../../../blueidea/static/sass/style.scss */
  .span1 {
    width: 70px;
  }

  /* line 7393, ../../../blueidea/static/sass/style.scss */
  .offset12 {
    margin-left: 1230px;
  }

  /* line 7396, ../../../blueidea/static/sass/style.scss */
  .offset11 {
    margin-left: 1130px;
  }

  /* line 7399, ../../../blueidea/static/sass/style.scss */
  .offset10 {
    margin-left: 1030px;
  }

  /* line 7402, ../../../blueidea/static/sass/style.scss */
  .offset9 {
    margin-left: 930px;
  }

  /* line 7405, ../../../blueidea/static/sass/style.scss */
  .offset8 {
    margin-left: 830px;
  }

  /* line 7408, ../../../blueidea/static/sass/style.scss */
  .offset7 {
    margin-left: 730px;
  }

  /* line 7411, ../../../blueidea/static/sass/style.scss */
  .offset6 {
    margin-left: 630px;
  }

  /* line 7414, ../../../blueidea/static/sass/style.scss */
  .offset5 {
    margin-left: 530px;
  }

  /* line 7417, ../../../blueidea/static/sass/style.scss */
  .offset4 {
    margin-left: 430px;
  }

  /* line 7420, ../../../blueidea/static/sass/style.scss */
  .offset3 {
    margin-left: 330px;
  }

  /* line 7423, ../../../blueidea/static/sass/style.scss */
  .offset2 {
    margin-left: 230px;
  }

  /* line 7426, ../../../blueidea/static/sass/style.scss */
  .offset1 {
    margin-left: 130px;
  }

  /* line 7429, ../../../blueidea/static/sass/style.scss */
  .row-fluid {
    width: 100%;
    *zoom: 1;
  }
  /* line 7432, ../../../blueidea/static/sass/style.scss */
  .row-fluid:before {
    display: table;
    content: "";
    line-height: 0;
  }
  /* line 7437, ../../../blueidea/static/sass/style.scss */
  .row-fluid:after {
    display: table;
    content: "";
    line-height: 0;
    clear: both;
  }
  /* line 7443, ../../../blueidea/static/sass/style.scss */
  .row-fluid [class*="span"] {
    display: block;
    width: 100%;
    min-height: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    margin-left: 2.564102564102564%;
    *margin-left: 2.5109110747408616%;
  }
  /* line 7453, ../../../blueidea/static/sass/style.scss */
  .row-fluid [class*="span"]:first-child {
    margin-left: 0;
  }
  /* line 7457, ../../../blueidea/static/sass/style.scss */
  .row-fluid .controls-row [class*="span"] + [class*="span"] {
    margin-left: 2.564102564102564%;
  }
  /* line 7460, ../../../blueidea/static/sass/style.scss */
  .row-fluid .span12 {
    width: 100%;
    *width: 99.94680851063829%;
  }
  /* line 7464, ../../../blueidea/static/sass/style.scss */
  .row-fluid .span11 {
    width: 91.45299145299145%;
    *width: 91.39979996362975%;
  }
  /* line 7468, ../../../blueidea/static/sass/style.scss */
  .row-fluid .span10 {
    width: 82.90598290598291%;
    *width: 82.8527914166212%;
  }
  /* line 7472, ../../../blueidea/static/sass/style.scss */
  .row-fluid .span9 {
    width: 74.35897435897436%;
    *width: 74.30578286961266%;
  }
  /* line 7476, ../../../blueidea/static/sass/style.scss */
  .row-fluid .span8 {
    width: 65.81196581196582%;
    *width: 65.75877432260411%;
  }
  /* line 7480, ../../../blueidea/static/sass/style.scss */
  .row-fluid .span7 {
    width: 57.26495726495726%;
    *width: 57.21176577559556%;
  }
  /* line 7484, ../../../blueidea/static/sass/style.scss */
  .row-fluid .span6 {
    width: 48.717948717948715%;
    *width: 48.664757228587014%;
  }
  /* line 7488, ../../../blueidea/static/sass/style.scss */
  .row-fluid .span5 {
    width: 40.17094017094017%;
    *width: 40.11774868157847%;
  }
  /* line 7492, ../../../blueidea/static/sass/style.scss */
  .row-fluid .span4 {
    width: 31.623931623931625%;
    *width: 31.570740134569924%;
  }
  /* line 7496, ../../../blueidea/static/sass/style.scss */
  .row-fluid .span3 {
    width: 23.076923076923077%;
    *width: 23.023731587561375%;
  }
  /* line 7500, ../../../blueidea/static/sass/style.scss */
  .row-fluid .span2 {
    width: 14.52991452991453%;
    *width: 14.476723040552828%;
  }
  /* line 7504, ../../../blueidea/static/sass/style.scss */
  .row-fluid .span1 {
    width: 5.982905982905983%;
    *width: 5.929714493544281%;
  }
  /* line 7508, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset12 {
    margin-left: 105.12820512820512%;
    *margin-left: 105.02182214948171%;
  }
  /* line 7511, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset12:first-child {
    margin-left: 102.56410256410257%;
    *margin-left: 102.45771958537915%;
  }
  /* line 7516, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset11 {
    margin-left: 96.58119658119658%;
    *margin-left: 96.47481360247316%;
  }
  /* line 7519, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset11:first-child {
    margin-left: 94.01709401709402%;
    *margin-left: 93.91071103837061%;
  }
  /* line 7524, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset10 {
    margin-left: 88.03418803418803%;
    *margin-left: 87.92780505546462%;
  }
  /* line 7527, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset10:first-child {
    margin-left: 85.47008547008548%;
    *margin-left: 85.36370249136206%;
  }
  /* line 7532, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset9 {
    margin-left: 79.48717948717949%;
    *margin-left: 79.38079650845607%;
  }
  /* line 7535, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset9:first-child {
    margin-left: 76.92307692307693%;
    *margin-left: 76.81669394435352%;
  }
  /* line 7540, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset8 {
    margin-left: 70.94017094017094%;
    *margin-left: 70.83378796144753%;
  }
  /* line 7543, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset8:first-child {
    margin-left: 68.37606837606839%;
    *margin-left: 68.26968539734497%;
  }
  /* line 7548, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset7 {
    margin-left: 62.393162393162385%;
    *margin-left: 62.28677941443899%;
  }
  /* line 7551, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset7:first-child {
    margin-left: 59.82905982905982%;
    *margin-left: 59.72267685033642%;
  }
  /* line 7556, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset6 {
    margin-left: 53.84615384615384%;
    *margin-left: 53.739770867430444%;
  }
  /* line 7559, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset6:first-child {
    margin-left: 51.28205128205128%;
    *margin-left: 51.175668303327875%;
  }
  /* line 7564, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset5 {
    margin-left: 45.299145299145295%;
    *margin-left: 45.1927623204219%;
  }
  /* line 7567, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset5:first-child {
    margin-left: 42.73504273504273%;
    *margin-left: 42.62865975631933%;
  }
  /* line 7572, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset4 {
    margin-left: 36.75213675213675%;
    *margin-left: 36.645753773413354%;
  }
  /* line 7575, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset4:first-child {
    margin-left: 34.18803418803419%;
    *margin-left: 34.081651209310785%;
  }
  /* line 7580, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset3 {
    margin-left: 28.205128205128204%;
    *margin-left: 28.0987452264048%;
  }
  /* line 7583, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset3:first-child {
    margin-left: 25.641025641025642%;
    *margin-left: 25.53464266230224%;
  }
  /* line 7588, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset2 {
    margin-left: 19.65811965811966%;
    *margin-left: 19.551736679396257%;
  }
  /* line 7591, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset2:first-child {
    margin-left: 17.094017094017094%;
    *margin-left: 16.98763411529369%;
  }
  /* line 7596, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset1 {
    margin-left: 11.11111111111111%;
    *margin-left: 11.004728132387708%;
  }
  /* line 7599, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset1:first-child {
    margin-left: 8.547008547008547%;
    *margin-left: 8.440625568285142%;
  }

  /* line 7605, ../../../blueidea/static/sass/style.scss */
  input, textarea, .uneditable-input {
    margin-left: 0;
  }

  /* line 7608, ../../../blueidea/static/sass/style.scss */
  .controls-row [class*="span"] + [class*="span"] {
    margin-left: 30px;
  }

  /* line 7611, ../../../blueidea/static/sass/style.scss */
  input.span12, textarea.span12, .uneditable-input.span12 {
    width: 1156px;
  }

  /* line 7614, ../../../blueidea/static/sass/style.scss */
  input.span11, textarea.span11, .uneditable-input.span11 {
    width: 1056px;
  }

  /* line 7617, ../../../blueidea/static/sass/style.scss */
  input.span10, textarea.span10, .uneditable-input.span10 {
    width: 956px;
  }

  /* line 7620, ../../../blueidea/static/sass/style.scss */
  input.span9, textarea.span9, .uneditable-input.span9 {
    width: 856px;
  }

  /* line 7623, ../../../blueidea/static/sass/style.scss */
  input.span8, textarea.span8, .uneditable-input.span8 {
    width: 756px;
  }

  /* line 7626, ../../../blueidea/static/sass/style.scss */
  input.span7, textarea.span7, .uneditable-input.span7 {
    width: 656px;
  }

  /* line 7629, ../../../blueidea/static/sass/style.scss */
  input.span6, textarea.span6, .uneditable-input.span6 {
    width: 556px;
  }

  /* line 7632, ../../../blueidea/static/sass/style.scss */
  input.span5, textarea.span5, .uneditable-input.span5 {
    width: 456px;
  }

  /* line 7635, ../../../blueidea/static/sass/style.scss */
  input.span4, textarea.span4, .uneditable-input.span4 {
    width: 356px;
  }

  /* line 7638, ../../../blueidea/static/sass/style.scss */
  input.span3, textarea.span3, .uneditable-input.span3 {
    width: 256px;
  }

  /* line 7641, ../../../blueidea/static/sass/style.scss */
  input.span2, textarea.span2, .uneditable-input.span2 {
    width: 156px;
  }

  /* line 7644, ../../../blueidea/static/sass/style.scss */
  input.span1, textarea.span1, .uneditable-input.span1 {
    width: 56px;
  }

  /* line 7647, ../../../blueidea/static/sass/style.scss */
  .thumbnails {
    margin-left: -30px;
  }
  /* line 7649, ../../../blueidea/static/sass/style.scss */
  .thumbnails > li {
    margin-left: 30px;
  }

  /* line 7653, ../../../blueidea/static/sass/style.scss */
  .row-fluid .thumbnails {
    margin-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  /* line 7659, ../../../blueidea/static/sass/style.scss */
  .row {
    margin-left: -20px;
    *zoom: 1;
  }
  /* line 7662, ../../../blueidea/static/sass/style.scss */
  .row:before {
    display: table;
    content: "";
    line-height: 0;
  }
  /* line 7667, ../../../blueidea/static/sass/style.scss */
  .row:after {
    display: table;
    content: "";
    line-height: 0;
    clear: both;
  }

  /* line 7674, ../../../blueidea/static/sass/style.scss */
  [class*="span"] {
    float: left;
    min-height: 1px;
    margin-left: 20px;
  }

  /* line 7679, ../../../blueidea/static/sass/style.scss */
  .container, .navbar-static-top .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container, .span12 {
    width: 724px;
  }

  /* line 7682, ../../../blueidea/static/sass/style.scss */
  .span11 {
    width: 662px;
  }

  /* line 7685, ../../../blueidea/static/sass/style.scss */
  .span10 {
    width: 600px;
  }

  /* line 7688, ../../../blueidea/static/sass/style.scss */
  .span9 {
    width: 538px;
  }

  /* line 7691, ../../../blueidea/static/sass/style.scss */
  .span8 {
    width: 476px;
  }

  /* line 7694, ../../../blueidea/static/sass/style.scss */
  .span7 {
    width: 414px;
  }

  /* line 7697, ../../../blueidea/static/sass/style.scss */
  .span6 {
    width: 352px;
  }

  /* line 7700, ../../../blueidea/static/sass/style.scss */
  .span5 {
    width: 290px;
  }

  /* line 7703, ../../../blueidea/static/sass/style.scss */
  .span4 {
    width: 228px;
  }

  /* line 7706, ../../../blueidea/static/sass/style.scss */
  .span3 {
    width: 166px;
  }

  /* line 7709, ../../../blueidea/static/sass/style.scss */
  .span2 {
    width: 104px;
  }

  /* line 7712, ../../../blueidea/static/sass/style.scss */
  .span1 {
    width: 42px;
  }

  /* line 7715, ../../../blueidea/static/sass/style.scss */
  .offset12 {
    margin-left: 764px;
  }

  /* line 7718, ../../../blueidea/static/sass/style.scss */
  .offset11 {
    margin-left: 702px;
  }

  /* line 7721, ../../../blueidea/static/sass/style.scss */
  .offset10 {
    margin-left: 640px;
  }

  /* line 7724, ../../../blueidea/static/sass/style.scss */
  .offset9 {
    margin-left: 578px;
  }

  /* line 7727, ../../../blueidea/static/sass/style.scss */
  .offset8 {
    margin-left: 516px;
  }

  /* line 7730, ../../../blueidea/static/sass/style.scss */
  .offset7 {
    margin-left: 454px;
  }

  /* line 7733, ../../../blueidea/static/sass/style.scss */
  .offset6 {
    margin-left: 392px;
  }

  /* line 7736, ../../../blueidea/static/sass/style.scss */
  .offset5 {
    margin-left: 330px;
  }

  /* line 7739, ../../../blueidea/static/sass/style.scss */
  .offset4 {
    margin-left: 268px;
  }

  /* line 7742, ../../../blueidea/static/sass/style.scss */
  .offset3 {
    margin-left: 206px;
  }

  /* line 7745, ../../../blueidea/static/sass/style.scss */
  .offset2 {
    margin-left: 144px;
  }

  /* line 7748, ../../../blueidea/static/sass/style.scss */
  .offset1 {
    margin-left: 82px;
  }

  /* line 7751, ../../../blueidea/static/sass/style.scss */
  .row-fluid {
    width: 100%;
    *zoom: 1;
  }
  /* line 7754, ../../../blueidea/static/sass/style.scss */
  .row-fluid:before {
    display: table;
    content: "";
    line-height: 0;
  }
  /* line 7759, ../../../blueidea/static/sass/style.scss */
  .row-fluid:after {
    display: table;
    content: "";
    line-height: 0;
    clear: both;
  }
  /* line 7765, ../../../blueidea/static/sass/style.scss */
  .row-fluid [class*="span"] {
    display: block;
    width: 100%;
    min-height: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    margin-left: 2.7624309392265194%;
    *margin-left: 2.709239449864817%;
  }
  /* line 7775, ../../../blueidea/static/sass/style.scss */
  .row-fluid [class*="span"]:first-child {
    margin-left: 0;
  }
  /* line 7779, ../../../blueidea/static/sass/style.scss */
  .row-fluid .controls-row [class*="span"] + [class*="span"] {
    margin-left: 2.7624309392265194%;
  }
  /* line 7782, ../../../blueidea/static/sass/style.scss */
  .row-fluid .span12 {
    width: 100%;
    *width: 99.94680851063829%;
  }
  /* line 7786, ../../../blueidea/static/sass/style.scss */
  .row-fluid .span11 {
    width: 91.43646408839778%;
    *width: 91.38327259903608%;
  }
  /* line 7790, ../../../blueidea/static/sass/style.scss */
  .row-fluid .span10 {
    width: 82.87292817679558%;
    *width: 82.81973668743387%;
  }
  /* line 7794, ../../../blueidea/static/sass/style.scss */
  .row-fluid .span9 {
    width: 74.30939226519337%;
    *width: 74.25620077583166%;
  }
  /* line 7798, ../../../blueidea/static/sass/style.scss */
  .row-fluid .span8 {
    width: 65.74585635359117%;
    *width: 65.69266486422946%;
  }
  /* line 7802, ../../../blueidea/static/sass/style.scss */
  .row-fluid .span7 {
    width: 57.18232044198895%;
    *width: 57.12912895262725%;
  }
  /* line 7806, ../../../blueidea/static/sass/style.scss */
  .row-fluid .span6 {
    width: 48.61878453038674%;
    *width: 48.56559304102504%;
  }
  /* line 7810, ../../../blueidea/static/sass/style.scss */
  .row-fluid .span5 {
    width: 40.05524861878453%;
    *width: 40.00205712942283%;
  }
  /* line 7814, ../../../blueidea/static/sass/style.scss */
  .row-fluid .span4 {
    width: 31.491712707182323%;
    *width: 31.43852121782062%;
  }
  /* line 7818, ../../../blueidea/static/sass/style.scss */
  .row-fluid .span3 {
    width: 22.92817679558011%;
    *width: 22.87498530621841%;
  }
  /* line 7822, ../../../blueidea/static/sass/style.scss */
  .row-fluid .span2 {
    width: 14.3646408839779%;
    *width: 14.311449394616199%;
  }
  /* line 7826, ../../../blueidea/static/sass/style.scss */
  .row-fluid .span1 {
    width: 5.801104972375691%;
    *width: 5.747913483013988%;
  }
  /* line 7830, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset12 {
    margin-left: 105.52486187845304%;
    *margin-left: 105.41847889972962%;
  }
  /* line 7833, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset12:first-child {
    margin-left: 102.76243093922652%;
    *margin-left: 102.6560479605031%;
  }
  /* line 7838, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset11 {
    margin-left: 96.96132596685082%;
    *margin-left: 96.8549429881274%;
  }
  /* line 7841, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset11:first-child {
    margin-left: 94.1988950276243%;
    *margin-left: 94.09251204890089%;
  }
  /* line 7846, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset10 {
    margin-left: 88.39779005524862%;
    *margin-left: 88.2914070765252%;
  }
  /* line 7849, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset10:first-child {
    margin-left: 85.6353591160221%;
    *margin-left: 85.52897613729868%;
  }
  /* line 7854, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset9 {
    margin-left: 79.8342541436464%;
    *margin-left: 79.72787116492299%;
  }
  /* line 7857, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset9:first-child {
    margin-left: 77.07182320441989%;
    *margin-left: 76.96544022569647%;
  }
  /* line 7862, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset8 {
    margin-left: 71.2707182320442%;
    *margin-left: 71.16433525332079%;
  }
  /* line 7865, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset8:first-child {
    margin-left: 68.50828729281768%;
    *margin-left: 68.40190431409427%;
  }
  /* line 7870, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset7 {
    margin-left: 62.70718232044199%;
    *margin-left: 62.600799341718584%;
  }
  /* line 7873, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset7:first-child {
    margin-left: 59.94475138121547%;
    *margin-left: 59.838368402492065%;
  }
  /* line 7878, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset6 {
    margin-left: 54.14364640883978%;
    *margin-left: 54.037263430116376%;
  }
  /* line 7881, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset6:first-child {
    margin-left: 51.38121546961326%;
    *margin-left: 51.27483249088986%;
  }
  /* line 7886, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset5 {
    margin-left: 45.58011049723757%;
    *margin-left: 45.47372751851417%;
  }
  /* line 7889, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset5:first-child {
    margin-left: 42.81767955801105%;
    *margin-left: 42.71129657928765%;
  }
  /* line 7894, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset4 {
    margin-left: 37.01657458563536%;
    *margin-left: 36.91019160691196%;
  }
  /* line 7897, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset4:first-child {
    margin-left: 34.25414364640884%;
    *margin-left: 34.14776066768544%;
  }
  /* line 7902, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset3 {
    margin-left: 28.45303867403315%;
    *margin-left: 28.346655695309746%;
  }
  /* line 7905, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset3:first-child {
    margin-left: 25.69060773480663%;
    *margin-left: 25.584224756083227%;
  }
  /* line 7910, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset2 {
    margin-left: 19.88950276243094%;
    *margin-left: 19.783119783707537%;
  }
  /* line 7913, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset2:first-child {
    margin-left: 17.12707182320442%;
    *margin-left: 17.02068884448102%;
  }
  /* line 7918, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset1 {
    margin-left: 11.32596685082873%;
    *margin-left: 11.219583872105325%;
  }
  /* line 7921, ../../../blueidea/static/sass/style.scss */
  .row-fluid .offset1:first-child {
    margin-left: 8.56353591160221%;
    *margin-left: 8.457152932878806%;
  }

  /* line 7927, ../../../blueidea/static/sass/style.scss */
  input, textarea, .uneditable-input {
    margin-left: 0;
  }

  /* line 7930, ../../../blueidea/static/sass/style.scss */
  .controls-row [class*="span"] + [class*="span"] {
    margin-left: 20px;
  }

  /* line 7933, ../../../blueidea/static/sass/style.scss */
  input.span12, textarea.span12, .uneditable-input.span12 {
    width: 710px;
  }

  /* line 7936, ../../../blueidea/static/sass/style.scss */
  input.span11, textarea.span11, .uneditable-input.span11 {
    width: 648px;
  }

  /* line 7939, ../../../blueidea/static/sass/style.scss */
  input.span10, textarea.span10, .uneditable-input.span10 {
    width: 586px;
  }

  /* line 7942, ../../../blueidea/static/sass/style.scss */
  input.span9, textarea.span9, .uneditable-input.span9 {
    width: 524px;
  }

  /* line 7945, ../../../blueidea/static/sass/style.scss */
  input.span8, textarea.span8, .uneditable-input.span8 {
    width: 462px;
  }

  /* line 7948, ../../../blueidea/static/sass/style.scss */
  input.span7, textarea.span7, .uneditable-input.span7 {
    width: 400px;
  }

  /* line 7951, ../../../blueidea/static/sass/style.scss */
  input.span6, textarea.span6, .uneditable-input.span6 {
    width: 338px;
  }

  /* line 7954, ../../../blueidea/static/sass/style.scss */
  input.span5, textarea.span5, .uneditable-input.span5 {
    width: 276px;
  }

  /* line 7957, ../../../blueidea/static/sass/style.scss */
  input.span4, textarea.span4, .uneditable-input.span4 {
    width: 214px;
  }

  /* line 7960, ../../../blueidea/static/sass/style.scss */
  input.span3, textarea.span3, .uneditable-input.span3 {
    width: 152px;
  }

  /* line 7963, ../../../blueidea/static/sass/style.scss */
  input.span2, textarea.span2, .uneditable-input.span2 {
    width: 90px;
  }

  /* line 7966, ../../../blueidea/static/sass/style.scss */
  input.span1, textarea.span1, .uneditable-input.span1 {
    width: 28px;
  }
}
@media (max-width: 767px) {
  /* line 7972, ../../../blueidea/static/sass/style.scss */
  body {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* line 7976, ../../../blueidea/static/sass/style.scss */
  .navbar-fixed-top, .navbar-fixed-bottom, .navbar-static-top {
    margin-left: -20px;
    margin-right: -20px;
  }

  /* line 7980, ../../../blueidea/static/sass/style.scss */
  .container-fluid {
    padding: 0;
  }

  /* line 7984, ../../../blueidea/static/sass/style.scss */
  .dl-horizontal dt {
    float: none;
    clear: none;
    width: auto;
    text-align: left;
  }
  /* line 7990, ../../../blueidea/static/sass/style.scss */
  .dl-horizontal dd {
    margin-left: 0;
  }

  /* line 7994, ../../../blueidea/static/sass/style.scss */
  .container {
    width: auto;
  }

  /* line 7997, ../../../blueidea/static/sass/style.scss */
  .row-fluid {
    width: 100%;
  }

  /* line 8000, ../../../blueidea/static/sass/style.scss */
  .row {
    margin-left: 0;
  }

  /* line 8003, ../../../blueidea/static/sass/style.scss */
  .thumbnails {
    margin-left: 0;
  }
  /* line 8005, ../../../blueidea/static/sass/style.scss */
  .thumbnails > li {
    float: none;
    margin-left: 0;
  }

  /* line 8010, ../../../blueidea/static/sass/style.scss */
  [class*="span"], .uneditable-input[class*="span"], .row-fluid [class*="span"] {
    float: none;
    display: block;
    width: 100%;
    margin-left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  /* line 8019, ../../../blueidea/static/sass/style.scss */
  .span12 {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  /* line 8026, ../../../blueidea/static/sass/style.scss */
  .row-fluid .span12 {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  /* line 8032, ../../../blueidea/static/sass/style.scss */
  .row-fluid [class*="offset"]:first-child {
    margin-left: 0;
  }

  /* line 8036, ../../../blueidea/static/sass/style.scss */
  .input-large, .input-xlarge, .input-xxlarge, input[class*="span"], select[class*="span"], textarea[class*="span"], .uneditable-input {
    display: block;
    width: 100%;
    min-height: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  /* line 8044, ../../../blueidea/static/sass/style.scss */
  .input-prepend input, .input-append input, .input-prepend input[class*="span"], .input-append input[class*="span"] {
    display: inline-block;
    width: auto;
  }

  /* line 8048, ../../../blueidea/static/sass/style.scss */
  .controls-row [class*="span"] + [class*="span"] {
    margin-left: 0;
  }

  /* line 8051, ../../../blueidea/static/sass/style.scss */
  .modal {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    margin: 0;
  }
  /* line 8058, ../../../blueidea/static/sass/style.scss */
  .modal.fade {
    top: -100px;
  }
  /* line 8060, ../../../blueidea/static/sass/style.scss */
  .modal.fade.in {
    top: 20px;
  }
}
@media (max-width: 480px) {
  /* line 8068, ../../../blueidea/static/sass/style.scss */
  .nav-collapse {
    -webkit-transform: translate3d(0, 0, 0);
  }

  /* line 8071, ../../../blueidea/static/sass/style.scss */
  .page-header h1 small {
    display: block;
    line-height: 20px;
  }

  /* line 8076, ../../../blueidea/static/sass/style.scss */
  input[type="checkbox"], input[type="radio"] {
    border: 1px solid #ccc;
  }

  /* line 8081, ../../../blueidea/static/sass/style.scss */
  .form-horizontal .control-label {
    float: none;
    width: auto;
    padding-top: 0;
    text-align: left;
  }
  /* line 8087, ../../../blueidea/static/sass/style.scss */
  .form-horizontal .controls {
    margin-left: 0;
  }
  /* line 8090, ../../../blueidea/static/sass/style.scss */
  .form-horizontal .control-list {
    padding-top: 0;
  }
  /* line 8093, ../../../blueidea/static/sass/style.scss */
  .form-horizontal .form-actions {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* line 8099, ../../../blueidea/static/sass/style.scss */
  .media .pull-left, .media .pull-right {
    float: none;
    display: block;
    margin-bottom: 10px;
  }

  /* line 8105, ../../../blueidea/static/sass/style.scss */
  .media-object {
    margin-right: 0;
    margin-left: 0;
  }

  /* line 8109, ../../../blueidea/static/sass/style.scss */
  .modal {
    top: 10px;
    left: 10px;
    right: 10px;
  }

  /* line 8114, ../../../blueidea/static/sass/style.scss */
  .modal-header .close {
    padding: 10px;
    margin: -10px;
  }

  /* line 8118, ../../../blueidea/static/sass/style.scss */
  .carousel-caption {
    position: static;
  }
}
@media (max-width: 979px) {
  /* line 8124, ../../../blueidea/static/sass/style.scss */
  body {
    padding-top: 0;
  }

  /* line 8127, ../../../blueidea/static/sass/style.scss */
  .navbar-fixed-top, .navbar-fixed-bottom {
    position: static;
  }

  /* line 8130, ../../../blueidea/static/sass/style.scss */
  .navbar-fixed-top {
    margin-bottom: 20px;
  }

  /* line 8133, ../../../blueidea/static/sass/style.scss */
  .navbar-fixed-bottom {
    margin-top: 20px;
  }

  /* line 8136, ../../../blueidea/static/sass/style.scss */
  .navbar-fixed-top .navbar-inner, .navbar-fixed-bottom .navbar-inner {
    padding: 5px;
  }

  /* line 8140, ../../../blueidea/static/sass/style.scss */
  .navbar .container {
    width: auto;
    padding: 0;
  }
  /* line 8144, ../../../blueidea/static/sass/style.scss */
  .navbar .brand {
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 0 0 -5px;
  }

  /* line 8150, ../../../blueidea/static/sass/style.scss */
  .nav-collapse {
    clear: both;
  }
  /* line 8152, ../../../blueidea/static/sass/style.scss */
  .nav-collapse .nav {
    float: none;
    margin: 0 0 10px;
  }
  /* line 8156, ../../../blueidea/static/sass/style.scss */
  .nav-collapse .nav > li {
    float: none;
  }
  /* line 8158, ../../../blueidea/static/sass/style.scss */
  .nav-collapse .nav > li > a {
    margin-bottom: 2px;
  }
  /* line 8162, ../../../blueidea/static/sass/style.scss */
  .nav-collapse .nav > .divider-vertical {
    display: none;
  }
  /* line 8166, ../../../blueidea/static/sass/style.scss */
  .nav-collapse .nav .nav-header {
    color: #777;
    text-shadow: none;
  }
  /* line 8170, ../../../blueidea/static/sass/style.scss */
  .nav-collapse .nav > li > a {
    padding: 9px 15px;
    font-weight: bold;
    color: #777;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
  }
  /* line 8180, ../../../blueidea/static/sass/style.scss */
  .nav-collapse .dropdown-menu a {
    padding: 9px 15px;
    font-weight: bold;
    color: #777;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
  }
  /* line 8189, ../../../blueidea/static/sass/style.scss */
  .nav-collapse .btn {
    padding: 4px 10px 4px;
    font-weight: normal;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
  }
  /* line 8197, ../../../blueidea/static/sass/style.scss */
  .nav-collapse .dropdown-menu li + li a {
    margin-bottom: 2px;
  }
  /* line 8201, ../../../blueidea/static/sass/style.scss */
  .nav-collapse .nav > li > a:hover, .nav-collapse .nav > li > a:focus {
    background-color: #f2f2f2;
  }
  /* line 8206, ../../../blueidea/static/sass/style.scss */
  .nav-collapse .dropdown-menu a:hover, .nav-collapse .dropdown-menu a:focus {
    background-color: #f2f2f2;
  }

  /* line 8212, ../../../blueidea/static/sass/style.scss */
  .navbar-inverse .nav-collapse .nav > li > a, .navbar-inverse .nav-collapse .dropdown-menu a {
    color: #999;
  }
  /* line 8216, ../../../blueidea/static/sass/style.scss */
  .navbar-inverse .nav-collapse .nav > li > a:hover, .navbar-inverse .nav-collapse .nav > li > a:focus {
    background-color: #111;
  }
  /* line 8221, ../../../blueidea/static/sass/style.scss */
  .navbar-inverse .nav-collapse .dropdown-menu a:hover, .navbar-inverse .nav-collapse .dropdown-menu a:focus {
    background-color: #111;
  }

  /* line 8227, ../../../blueidea/static/sass/style.scss */
  .nav-collapse.in .btn-group {
    margin-top: 5px;
    padding: 0;
  }
  /* line 8231, ../../../blueidea/static/sass/style.scss */
  .nav-collapse .dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    float: none;
    display: none;
    max-width: none;
    margin: 0 15px;
    padding: 0;
    background-color: transparent;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  /* line 8249, ../../../blueidea/static/sass/style.scss */
  .nav-collapse .open > .dropdown-menu {
    display: block;
  }
  /* line 8253, ../../../blueidea/static/sass/style.scss */
  .nav-collapse .dropdown-menu:before, .nav-collapse .dropdown-menu:after, .nav-collapse .dropdown-menu .divider {
    display: none;
  }
  /* line 8258, ../../../blueidea/static/sass/style.scss */
  .nav-collapse .nav > li > .dropdown-menu:before, .nav-collapse .nav > li > .dropdown-menu:after {
    display: none;
  }
  /* line 8262, ../../../blueidea/static/sass/style.scss */
  .nav-collapse .navbar-form, .nav-collapse .navbar-search {
    float: none;
    padding: 10px 15px;
    margin: 10px 0;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  /* line 8274, ../../../blueidea/static/sass/style.scss */
  .navbar-inverse .nav-collapse .navbar-form, .navbar-inverse .nav-collapse .navbar-search {
    border-top-color: #111;
    border-bottom-color: #111;
  }

  /* line 8279, ../../../blueidea/static/sass/style.scss */
  .navbar .nav-collapse .nav.pull-right {
    float: none;
    margin-left: 0;
  }

  /* line 8283, ../../../blueidea/static/sass/style.scss */
  .nav-collapse {
    overflow: hidden;
    height: 0;
  }
  /* line 8286, ../../../blueidea/static/sass/style.scss */
  .nav-collapse.collapse {
    overflow: hidden;
    height: 0;
  }

  /* line 8291, ../../../blueidea/static/sass/style.scss */
  .navbar .btn-navbar {
    display: block;
  }

  /* line 8294, ../../../blueidea/static/sass/style.scss */
  .navbar-static .navbar-inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 980px) {
  /* line 8301, ../../../blueidea/static/sass/style.scss */
  .nav-collapse.collapse {
    height: auto !important;
    overflow: visible !important;
  }
}
@font-face {
  font-family: 'FontAwesome';
  src: url("../components/font-awesome/font/fontawesome-webfont.eot?v=3.2.1");
  src: url("../components/font-awesome/font/fontawesome-webfont.eot?#iefix&v=3.2.1") format("embedded-opentype"), url("../components/font-awesome/font/fontawesome-webfont.woff?v=3.2.1") format("woff"), url("../components/font-awesome/font/fontawesome-webfont.ttf?v=3.2.1") format("truetype"), url("../components/font-awesome/font/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* line 8316, ../../../blueidea/static/sass/style.scss */
[class^="icon-"], [class*=" icon-"] {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  *margin-right: .3em;
}

/* line 8325, ../../../blueidea/static/sass/style.scss */
[class^="icon-"]:before, [class*=" icon-"]:before {
  text-decoration: inherit;
  display: inline-block;
  speak: none;
}

/* line 8331, ../../../blueidea/static/sass/style.scss */
.icon-large:before {
  vertical-align: -10%;
  font-size: 1.3333333333333333em;
}

/* line 8337, ../../../blueidea/static/sass/style.scss */
a [class^="icon-"], a [class*=" icon-"] {
  display: inline;
}

/* line 8342, ../../../blueidea/static/sass/style.scss */
[class^="icon-"].icon-fixed-width, [class*=" icon-"].icon-fixed-width {
  display: inline-block;
  width: 1.1428571428571428em;
  text-align: right;
  padding-right: .2857142857142857em;
}

/* line 8349, ../../../blueidea/static/sass/style.scss */
[class^="icon-"].icon-fixed-width.icon-large, [class*=" icon-"].icon-fixed-width.icon-large {
  width: 1.4285714285714286em;
}

/* line 8353, ../../../blueidea/static/sass/style.scss */
.icons-ul {
  margin-left: 2.142857142857143em;
  list-style-type: none;
}
/* line 8356, ../../../blueidea/static/sass/style.scss */
.icons-ul > li {
  position: relative;
}
/* line 8359, ../../../blueidea/static/sass/style.scss */
.icons-ul .icon-li {
  position: absolute;
  left: -2.14286em;
  width: 2.142857142857143em;
  text-align: center;
  line-height: inherit;
}

/* line 8368, ../../../blueidea/static/sass/style.scss */
[class^="icon-"].hide, [class*=" icon-"].hide {
  display: none;
}

/* line 8372, ../../../blueidea/static/sass/style.scss */
.icon-muted {
  color: #eee;
}

/* line 8376, ../../../blueidea/static/sass/style.scss */
.icon-light {
  color: #fff;
}

/* line 8380, ../../../blueidea/static/sass/style.scss */
.icon-dark {
  color: #333;
}

/* line 8384, ../../../blueidea/static/sass/style.scss */
.icon-border {
  border: solid 1px #eee;
  padding: .2em .25em .15em;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

/* line 8393, ../../../blueidea/static/sass/style.scss */
.icon-2x {
  font-size: 2em;
}
/* line 8395, ../../../blueidea/static/sass/style.scss */
.icon-2x.icon-border {
  border-width: 2px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

/* line 8404, ../../../blueidea/static/sass/style.scss */
.icon-3x {
  font-size: 3em;
}
/* line 8406, ../../../blueidea/static/sass/style.scss */
.icon-3x.icon-border {
  border-width: 3px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

/* line 8415, ../../../blueidea/static/sass/style.scss */
.icon-4x {
  font-size: 4em;
}
/* line 8417, ../../../blueidea/static/sass/style.scss */
.icon-4x.icon-border {
  border-width: 4px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

/* line 8426, ../../../blueidea/static/sass/style.scss */
.icon-5x {
  font-size: 5em;
}
/* line 8428, ../../../blueidea/static/sass/style.scss */
.icon-5x.icon-border {
  border-width: 5px;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}

/* line 8437, ../../../blueidea/static/sass/style.scss */
.pull-right {
  float: right;
}

/* line 8441, ../../../blueidea/static/sass/style.scss */
.pull-left {
  float: left;
}

/* line 8445, ../../../blueidea/static/sass/style.scss */
[class^="icon-"].pull-left, [class*=" icon-"].pull-left {
  margin-right: .3em;
}

/* line 8449, ../../../blueidea/static/sass/style.scss */
[class^="icon-"].pull-right, [class*=" icon-"].pull-right {
  margin-left: .3em;
}

/* line 8453, ../../../blueidea/static/sass/style.scss */
[class^="icon-"], [class*=" icon-"] {
  display: inline;
  width: auto;
  height: auto;
  line-height: normal;
  vertical-align: baseline;
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  margin-top: 0;
}

/* line 8465, ../../../blueidea/static/sass/style.scss */
.icon-white {
  background-image: none;
}

/* line 8470, ../../../blueidea/static/sass/style.scss */
.nav-pills > .active > a > [class^="icon-"], .nav-pills > .active > a > [class*=" icon-"] {
  background-image: none;
}

/* line 8476, ../../../blueidea/static/sass/style.scss */
.nav-list > .active > a > [class^="icon-"], .nav-list > .active > a > [class*=" icon-"] {
  background-image: none;
}

/* line 8482, ../../../blueidea/static/sass/style.scss */
.navbar-inverse .nav > .active > a > [class^="icon-"], .navbar-inverse .nav > .active > a > [class*=" icon-"] {
  background-image: none;
}

/* line 8489, ../../../blueidea/static/sass/style.scss */
.dropdown-menu > li > a:hover > [class^="icon-"], .dropdown-menu > li > a:hover > [class*=" icon-"] {
  background-image: none;
}
/* line 8494, ../../../blueidea/static/sass/style.scss */
.dropdown-menu > .active > a > [class^="icon-"], .dropdown-menu > .active > a > [class*=" icon-"] {
  background-image: none;
}

/* line 8501, ../../../blueidea/static/sass/style.scss */
.dropdown-submenu:hover > a > [class^="icon-"], .dropdown-submenu:hover > a > [class*=" icon-"] {
  background-image: none;
}

/* line 8506, ../../../blueidea/static/sass/style.scss */
.btn [class^="icon-"].icon-large, .nav [class^="icon-"].icon-large, .btn [class*=" icon-"].icon-large, .nav [class*=" icon-"].icon-large {
  line-height: .9em;
}

/* line 8510, ../../../blueidea/static/sass/style.scss */
.btn [class^="icon-"].icon-spin, .nav [class^="icon-"].icon-spin, .btn [class*=" icon-"].icon-spin, .nav [class*=" icon-"].icon-spin {
  display: inline-block;
}

/* line 8514, ../../../blueidea/static/sass/style.scss */
.nav-tabs [class^="icon-"], .nav-pills [class^="icon-"], .nav-tabs [class*=" icon-"], .nav-pills [class*=" icon-"], .nav-tabs [class^="icon-"].icon-large, .nav-pills [class^="icon-"].icon-large, .nav-tabs [class*=" icon-"].icon-large, .nav-pills [class*=" icon-"].icon-large {
  line-height: .9em;
}

/* line 8519, ../../../blueidea/static/sass/style.scss */
.btn [class^="icon-"].pull-left.icon-2x, .btn [class*=" icon-"].pull-left.icon-2x, .btn [class^="icon-"].pull-right.icon-2x, .btn [class*=" icon-"].pull-right.icon-2x {
  margin-top: .18em;
}
/* line 8522, ../../../blueidea/static/sass/style.scss */
.btn [class^="icon-"].icon-spin.icon-large, .btn [class*=" icon-"].icon-spin.icon-large {
  line-height: .8em;
}
/* line 8526, ../../../blueidea/static/sass/style.scss */
.btn.btn-small [class^="icon-"].pull-left.icon-2x, .btn.btn-small [class*=" icon-"].pull-left.icon-2x, .btn.btn-small [class^="icon-"].pull-right.icon-2x, .btn.btn-small [class*=" icon-"].pull-right.icon-2x {
  margin-top: .25em;
}
/* line 8531, ../../../blueidea/static/sass/style.scss */
.btn.btn-large [class^="icon-"], .btn.btn-large [class*=" icon-"] {
  margin-top: 0;
}
/* line 8534, ../../../blueidea/static/sass/style.scss */
.btn.btn-large [class^="icon-"].pull-left.icon-2x, .btn.btn-large [class*=" icon-"].pull-left.icon-2x, .btn.btn-large [class^="icon-"].pull-right.icon-2x, .btn.btn-large [class*=" icon-"].pull-right.icon-2x {
  margin-top: .05em;
}
/* line 8537, ../../../blueidea/static/sass/style.scss */
.btn.btn-large [class^="icon-"].pull-left.icon-2x, .btn.btn-large [class*=" icon-"].pull-left.icon-2x {
  margin-right: .2em;
}
/* line 8540, ../../../blueidea/static/sass/style.scss */
.btn.btn-large [class^="icon-"].pull-right.icon-2x, .btn.btn-large [class*=" icon-"].pull-right.icon-2x {
  margin-left: .2em;
}

/* line 8547, ../../../blueidea/static/sass/style.scss */
.nav-list [class^="icon-"], .nav-list [class*=" icon-"] {
  line-height: inherit;
}

/* line 8552, ../../../blueidea/static/sass/style.scss */
.icon-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: -35%;
}
/* line 8559, ../../../blueidea/static/sass/style.scss */
.icon-stack [class^="icon-"], .icon-stack [class*=" icon-"] {
  display: block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 1em;
  line-height: inherit;
  *line-height: 2em;
}
/* line 8569, ../../../blueidea/static/sass/style.scss */
.icon-stack .icon-stack-base {
  font-size: 2em;
  *line-height: 1em;
}

/* line 8575, ../../../blueidea/static/sass/style.scss */
.icon-spin {
  display: inline-block;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}

/* line 8584, ../../../blueidea/static/sass/style.scss */
a .icon-stack, a .icon-spin {
  display: inline-block;
  text-decoration: none;
}

@-moz-keyframes spin {
  /* line 8591, ../../../blueidea/static/sass/style.scss */
  0% {
    -moz-transform: rotate(0deg);
  }

  /* line 8594, ../../../blueidea/static/sass/style.scss */
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  /* line 8601, ../../../blueidea/static/sass/style.scss */
  0% {
    -webkit-transform: rotate(0deg);
  }

  /* line 8604, ../../../blueidea/static/sass/style.scss */
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  /* line 8611, ../../../blueidea/static/sass/style.scss */
  0% {
    -o-transform: rotate(0deg);
  }

  /* line 8614, ../../../blueidea/static/sass/style.scss */
  100% {
    -o-transform: rotate(359deg);
  }
}
@-ms-keyframes spin {
  /* line 8621, ../../../blueidea/static/sass/style.scss */
  0% {
    -ms-transform: rotate(0deg);
  }

  /* line 8624, ../../../blueidea/static/sass/style.scss */
  100% {
    -ms-transform: rotate(359deg);
  }
}
@keyframes spin {
  /* line 8631, ../../../blueidea/static/sass/style.scss */
  0% {
    transform: rotate(0deg);
  }

  /* line 8634, ../../../blueidea/static/sass/style.scss */
  100% {
    transform: rotate(359deg);
  }
}
/* line 8640, ../../../blueidea/static/sass/style.scss */
.icon-rotate-90:before {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}

/* line 8649, ../../../blueidea/static/sass/style.scss */
.icon-rotate-180:before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}

/* line 8658, ../../../blueidea/static/sass/style.scss */
.icon-rotate-270:before {
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

/* line 8667, ../../../blueidea/static/sass/style.scss */
.icon-flip-horizontal:before {
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

/* line 8675, ../../../blueidea/static/sass/style.scss */
.icon-flip-vertical:before {
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}

/* line 8684, ../../../blueidea/static/sass/style.scss */
a .icon-rotate-90:before, a .icon-rotate-180:before, a .icon-rotate-270:before, a .icon-flip-horizontal:before, a .icon-flip-vertical:before {
  display: inline-block;
}

/* line 8689, ../../../blueidea/static/sass/style.scss */
.icon-glass:before {
  content: "\f000";
}

/* line 8693, ../../../blueidea/static/sass/style.scss */
.icon-music:before {
  content: "\f001";
}

/* line 8697, ../../../blueidea/static/sass/style.scss */
.icon-search:before {
  content: "\f002";
}

/* line 8701, ../../../blueidea/static/sass/style.scss */
.icon-envelope-alt:before {
  content: "\f003";
}

/* line 8705, ../../../blueidea/static/sass/style.scss */
.icon-heart:before {
  content: "\f004";
}

/* line 8709, ../../../blueidea/static/sass/style.scss */
.icon-star:before {
  content: "\f005";
}

/* line 8713, ../../../blueidea/static/sass/style.scss */
.icon-star-empty:before {
  content: "\f006";
}

/* line 8717, ../../../blueidea/static/sass/style.scss */
.icon-user:before {
  content: "\f007";
}

/* line 8721, ../../../blueidea/static/sass/style.scss */
.icon-film:before {
  content: "\f008";
}

/* line 8725, ../../../blueidea/static/sass/style.scss */
.icon-th-large:before {
  content: "\f009";
}

/* line 8729, ../../../blueidea/static/sass/style.scss */
.icon-th:before {
  content: "\f00a";
}

/* line 8733, ../../../blueidea/static/sass/style.scss */
.icon-th-list:before {
  content: "\f00b";
}

/* line 8737, ../../../blueidea/static/sass/style.scss */
.icon-ok:before {
  content: "\f00c";
}

/* line 8741, ../../../blueidea/static/sass/style.scss */
.icon-remove:before {
  content: "\f00d";
}

/* line 8745, ../../../blueidea/static/sass/style.scss */
.icon-zoom-in:before {
  content: "\f00e";
}

/* line 8749, ../../../blueidea/static/sass/style.scss */
.icon-zoom-out:before {
  content: "\f010";
}

/* line 8753, ../../../blueidea/static/sass/style.scss */
.icon-power-off:before, .icon-off:before {
  content: "\f011";
}

/* line 8757, ../../../blueidea/static/sass/style.scss */
.icon-signal:before {
  content: "\f012";
}

/* line 8761, ../../../blueidea/static/sass/style.scss */
.icon-gear:before, .icon-cog:before {
  content: "\f013";
}

/* line 8765, ../../../blueidea/static/sass/style.scss */
.icon-trash:before {
  content: "\f014";
}

/* line 8769, ../../../blueidea/static/sass/style.scss */
.icon-home:before {
  content: "\f015";
}

/* line 8773, ../../../blueidea/static/sass/style.scss */
.icon-file-alt:before {
  content: "\f016";
}

/* line 8777, ../../../blueidea/static/sass/style.scss */
.icon-time:before {
  content: "\f017";
}

/* line 8781, ../../../blueidea/static/sass/style.scss */
.icon-road:before {
  content: "\f018";
}

/* line 8785, ../../../blueidea/static/sass/style.scss */
.icon-download-alt:before {
  content: "\f019";
}

/* line 8789, ../../../blueidea/static/sass/style.scss */
.icon-download:before {
  content: "\f01a";
}

/* line 8793, ../../../blueidea/static/sass/style.scss */
.icon-upload:before {
  content: "\f01b";
}

/* line 8797, ../../../blueidea/static/sass/style.scss */
.icon-inbox:before {
  content: "\f01c";
}

/* line 8801, ../../../blueidea/static/sass/style.scss */
.icon-play-circle:before {
  content: "\f01d";
}

/* line 8805, ../../../blueidea/static/sass/style.scss */
.icon-rotate-right:before, .icon-repeat:before {
  content: "\f01e";
}

/* line 8809, ../../../blueidea/static/sass/style.scss */
.icon-refresh:before {
  content: "\f021";
}

/* line 8813, ../../../blueidea/static/sass/style.scss */
.icon-list-alt:before {
  content: "\f022";
}

/* line 8817, ../../../blueidea/static/sass/style.scss */
.icon-lock:before {
  content: "\f023";
}

/* line 8821, ../../../blueidea/static/sass/style.scss */
.icon-flag:before {
  content: "\f024";
}

/* line 8825, ../../../blueidea/static/sass/style.scss */
.icon-headphones:before {
  content: "\f025";
}

/* line 8829, ../../../blueidea/static/sass/style.scss */
.icon-volume-off:before {
  content: "\f026";
}

/* line 8833, ../../../blueidea/static/sass/style.scss */
.icon-volume-down:before {
  content: "\f027";
}

/* line 8837, ../../../blueidea/static/sass/style.scss */
.icon-volume-up:before {
  content: "\f028";
}

/* line 8841, ../../../blueidea/static/sass/style.scss */
.icon-qrcode:before {
  content: "\f029";
}

/* line 8845, ../../../blueidea/static/sass/style.scss */
.icon-barcode:before {
  content: "\f02a";
}

/* line 8849, ../../../blueidea/static/sass/style.scss */
.icon-tag:before {
  content: "\f02b";
}

/* line 8853, ../../../blueidea/static/sass/style.scss */
.icon-tags:before {
  content: "\f02c";
}

/* line 8857, ../../../blueidea/static/sass/style.scss */
.icon-book:before {
  content: "\f02d";
}

/* line 8861, ../../../blueidea/static/sass/style.scss */
.icon-bookmark:before {
  content: "\f02e";
}

/* line 8865, ../../../blueidea/static/sass/style.scss */
.icon-print:before {
  content: "\f02f";
}

/* line 8869, ../../../blueidea/static/sass/style.scss */
.icon-camera:before {
  content: "\f030";
}

/* line 8873, ../../../blueidea/static/sass/style.scss */
.icon-font:before {
  content: "\f031";
}

/* line 8877, ../../../blueidea/static/sass/style.scss */
.icon-bold:before {
  content: "\f032";
}

/* line 8881, ../../../blueidea/static/sass/style.scss */
.icon-italic:before {
  content: "\f033";
}

/* line 8885, ../../../blueidea/static/sass/style.scss */
.icon-text-height:before {
  content: "\f034";
}

/* line 8889, ../../../blueidea/static/sass/style.scss */
.icon-text-width:before {
  content: "\f035";
}

/* line 8893, ../../../blueidea/static/sass/style.scss */
.icon-align-left:before {
  content: "\f036";
}

/* line 8897, ../../../blueidea/static/sass/style.scss */
.icon-align-center:before {
  content: "\f037";
}

/* line 8901, ../../../blueidea/static/sass/style.scss */
.icon-align-right:before {
  content: "\f038";
}

/* line 8905, ../../../blueidea/static/sass/style.scss */
.icon-align-justify:before {
  content: "\f039";
}

/* line 8909, ../../../blueidea/static/sass/style.scss */
.icon-list:before {
  content: "\f03a";
}

/* line 8913, ../../../blueidea/static/sass/style.scss */
.icon-indent-left:before {
  content: "\f03b";
}

/* line 8917, ../../../blueidea/static/sass/style.scss */
.icon-indent-right:before {
  content: "\f03c";
}

/* line 8921, ../../../blueidea/static/sass/style.scss */
.icon-facetime-video:before {
  content: "\f03d";
}

/* line 8925, ../../../blueidea/static/sass/style.scss */
.icon-picture:before {
  content: "\f03e";
}

/* line 8929, ../../../blueidea/static/sass/style.scss */
.icon-pencil:before {
  content: "\f040";
}

/* line 8933, ../../../blueidea/static/sass/style.scss */
.icon-map-marker:before {
  content: "\f041";
}

/* line 8937, ../../../blueidea/static/sass/style.scss */
.icon-adjust:before {
  content: "\f042";
}

/* line 8941, ../../../blueidea/static/sass/style.scss */
.icon-tint:before {
  content: "\f043";
}

/* line 8945, ../../../blueidea/static/sass/style.scss */
.icon-edit:before {
  content: "\f044";
}

/* line 8949, ../../../blueidea/static/sass/style.scss */
.icon-share:before {
  content: "\f045";
}

/* line 8953, ../../../blueidea/static/sass/style.scss */
.icon-check:before {
  content: "\f046";
}

/* line 8957, ../../../blueidea/static/sass/style.scss */
.icon-move:before {
  content: "\f047";
}

/* line 8961, ../../../blueidea/static/sass/style.scss */
.icon-step-backward:before {
  content: "\f048";
}

/* line 8965, ../../../blueidea/static/sass/style.scss */
.icon-fast-backward:before {
  content: "\f049";
}

/* line 8969, ../../../blueidea/static/sass/style.scss */
.icon-backward:before {
  content: "\f04a";
}

/* line 8973, ../../../blueidea/static/sass/style.scss */
.icon-play:before {
  content: "\f04b";
}

/* line 8977, ../../../blueidea/static/sass/style.scss */
.icon-pause:before {
  content: "\f04c";
}

/* line 8981, ../../../blueidea/static/sass/style.scss */
.icon-stop:before {
  content: "\f04d";
}

/* line 8985, ../../../blueidea/static/sass/style.scss */
.icon-forward:before {
  content: "\f04e";
}

/* line 8989, ../../../blueidea/static/sass/style.scss */
.icon-fast-forward:before {
  content: "\f050";
}

/* line 8993, ../../../blueidea/static/sass/style.scss */
.icon-step-forward:before {
  content: "\f051";
}

/* line 8997, ../../../blueidea/static/sass/style.scss */
.icon-eject:before {
  content: "\f052";
}

/* line 9001, ../../../blueidea/static/sass/style.scss */
.icon-chevron-left:before {
  content: "\f053";
}

/* line 9005, ../../../blueidea/static/sass/style.scss */
.icon-chevron-right:before {
  content: "\f054";
}

/* line 9009, ../../../blueidea/static/sass/style.scss */
.icon-plus-sign:before {
  content: "\f055";
}

/* line 9013, ../../../blueidea/static/sass/style.scss */
.icon-minus-sign:before {
  content: "\f056";
}

/* line 9017, ../../../blueidea/static/sass/style.scss */
.icon-remove-sign:before {
  content: "\f057";
}

/* line 9021, ../../../blueidea/static/sass/style.scss */
.icon-ok-sign:before {
  content: "\f058";
}

/* line 9025, ../../../blueidea/static/sass/style.scss */
.icon-question-sign:before {
  content: "\f059";
}

/* line 9029, ../../../blueidea/static/sass/style.scss */
.icon-info-sign:before {
  content: "\f05a";
}

/* line 9033, ../../../blueidea/static/sass/style.scss */
.icon-screenshot:before {
  content: "\f05b";
}

/* line 9037, ../../../blueidea/static/sass/style.scss */
.icon-remove-circle:before {
  content: "\f05c";
}

/* line 9041, ../../../blueidea/static/sass/style.scss */
.icon-ok-circle:before {
  content: "\f05d";
}

/* line 9045, ../../../blueidea/static/sass/style.scss */
.icon-ban-circle:before {
  content: "\f05e";
}

/* line 9049, ../../../blueidea/static/sass/style.scss */
.icon-arrow-left:before {
  content: "\f060";
}

/* line 9053, ../../../blueidea/static/sass/style.scss */
.icon-arrow-right:before {
  content: "\f061";
}

/* line 9057, ../../../blueidea/static/sass/style.scss */
.icon-arrow-up:before {
  content: "\f062";
}

/* line 9061, ../../../blueidea/static/sass/style.scss */
.icon-arrow-down:before {
  content: "\f063";
}

/* line 9065, ../../../blueidea/static/sass/style.scss */
.icon-mail-forward:before, .icon-share-alt:before {
  content: "\f064";
}

/* line 9069, ../../../blueidea/static/sass/style.scss */
.icon-resize-full:before {
  content: "\f065";
}

/* line 9073, ../../../blueidea/static/sass/style.scss */
.icon-resize-small:before {
  content: "\f066";
}

/* line 9077, ../../../blueidea/static/sass/style.scss */
.icon-plus:before {
  content: "\f067";
}

/* line 9081, ../../../blueidea/static/sass/style.scss */
.icon-minus:before {
  content: "\f068";
}

/* line 9085, ../../../blueidea/static/sass/style.scss */
.icon-asterisk:before {
  content: "\f069";
}

/* line 9089, ../../../blueidea/static/sass/style.scss */
.icon-exclamation-sign:before {
  content: "\f06a";
}

/* line 9093, ../../../blueidea/static/sass/style.scss */
.icon-gift:before {
  content: "\f06b";
}

/* line 9097, ../../../blueidea/static/sass/style.scss */
.icon-leaf:before {
  content: "\f06c";
}

/* line 9101, ../../../blueidea/static/sass/style.scss */
.icon-fire:before {
  content: "\f06d";
}

/* line 9105, ../../../blueidea/static/sass/style.scss */
.icon-eye-open:before {
  content: "\f06e";
}

/* line 9109, ../../../blueidea/static/sass/style.scss */
.icon-eye-close:before {
  content: "\f070";
}

/* line 9113, ../../../blueidea/static/sass/style.scss */
.icon-warning-sign:before {
  content: "\f071";
}

/* line 9117, ../../../blueidea/static/sass/style.scss */
.icon-plane:before {
  content: "\f072";
}

/* line 9121, ../../../blueidea/static/sass/style.scss */
.icon-calendar:before {
  content: "\f073";
}

/* line 9125, ../../../blueidea/static/sass/style.scss */
.icon-random:before {
  content: "\f074";
}

/* line 9129, ../../../blueidea/static/sass/style.scss */
.icon-comment:before {
  content: "\f075";
}

/* line 9133, ../../../blueidea/static/sass/style.scss */
.icon-magnet:before {
  content: "\f076";
}

/* line 9137, ../../../blueidea/static/sass/style.scss */
.icon-chevron-up:before {
  content: "\f077";
}

/* line 9141, ../../../blueidea/static/sass/style.scss */
.icon-chevron-down:before {
  content: "\f078";
}

/* line 9145, ../../../blueidea/static/sass/style.scss */
.icon-retweet:before {
  content: "\f079";
}

/* line 9149, ../../../blueidea/static/sass/style.scss */
.icon-shopping-cart:before {
  content: "\f07a";
}

/* line 9153, ../../../blueidea/static/sass/style.scss */
.icon-folder-close:before {
  content: "\f07b";
}

/* line 9157, ../../../blueidea/static/sass/style.scss */
.icon-folder-open:before {
  content: "\f07c";
}

/* line 9161, ../../../blueidea/static/sass/style.scss */
.icon-resize-vertical:before {
  content: "\f07d";
}

/* line 9165, ../../../blueidea/static/sass/style.scss */
.icon-resize-horizontal:before {
  content: "\f07e";
}

/* line 9169, ../../../blueidea/static/sass/style.scss */
.icon-bar-chart:before {
  content: "\f080";
}

/* line 9173, ../../../blueidea/static/sass/style.scss */
.icon-twitter-sign:before {
  content: "\f081";
}

/* line 9177, ../../../blueidea/static/sass/style.scss */
.icon-facebook-sign:before {
  content: "\f082";
}

/* line 9181, ../../../blueidea/static/sass/style.scss */
.icon-camera-retro:before {
  content: "\f083";
}

/* line 9185, ../../../blueidea/static/sass/style.scss */
.icon-key:before {
  content: "\f084";
}

/* line 9189, ../../../blueidea/static/sass/style.scss */
.icon-gears:before, .icon-cogs:before {
  content: "\f085";
}

/* line 9193, ../../../blueidea/static/sass/style.scss */
.icon-comments:before {
  content: "\f086";
}

/* line 9197, ../../../blueidea/static/sass/style.scss */
.icon-thumbs-up-alt:before {
  content: "\f087";
}

/* line 9201, ../../../blueidea/static/sass/style.scss */
.icon-thumbs-down-alt:before {
  content: "\f088";
}

/* line 9205, ../../../blueidea/static/sass/style.scss */
.icon-star-half:before {
  content: "\f089";
}

/* line 9209, ../../../blueidea/static/sass/style.scss */
.icon-heart-empty:before {
  content: "\f08a";
}

/* line 9213, ../../../blueidea/static/sass/style.scss */
.icon-signout:before {
  content: "\f08b";
}

/* line 9217, ../../../blueidea/static/sass/style.scss */
.icon-linkedin-sign:before {
  content: "\f08c";
}

/* line 9221, ../../../blueidea/static/sass/style.scss */
.icon-pushpin:before {
  content: "\f08d";
}

/* line 9225, ../../../blueidea/static/sass/style.scss */
.icon-external-link:before {
  content: "\f08e";
}

/* line 9229, ../../../blueidea/static/sass/style.scss */
.icon-signin:before {
  content: "\f090";
}

/* line 9233, ../../../blueidea/static/sass/style.scss */
.icon-trophy:before {
  content: "\f091";
}

/* line 9237, ../../../blueidea/static/sass/style.scss */
.icon-github-sign:before {
  content: "\f092";
}

/* line 9241, ../../../blueidea/static/sass/style.scss */
.icon-upload-alt:before {
  content: "\f093";
}

/* line 9245, ../../../blueidea/static/sass/style.scss */
.icon-lemon:before {
  content: "\f094";
}

/* line 9249, ../../../blueidea/static/sass/style.scss */
.icon-phone:before {
  content: "\f095";
}

/* line 9253, ../../../blueidea/static/sass/style.scss */
.icon-unchecked:before, .icon-check-empty:before {
  content: "\f096";
}

/* line 9257, ../../../blueidea/static/sass/style.scss */
.icon-bookmark-empty:before {
  content: "\f097";
}

/* line 9261, ../../../blueidea/static/sass/style.scss */
.icon-phone-sign:before {
  content: "\f098";
}

/* line 9265, ../../../blueidea/static/sass/style.scss */
.icon-twitter:before {
  content: "\f099";
}

/* line 9269, ../../../blueidea/static/sass/style.scss */
.icon-facebook:before {
  content: "\f09a";
}

/* line 9273, ../../../blueidea/static/sass/style.scss */
.icon-github:before {
  content: "\f09b";
}

/* line 9277, ../../../blueidea/static/sass/style.scss */
.icon-unlock:before {
  content: "\f09c";
}

/* line 9281, ../../../blueidea/static/sass/style.scss */
.icon-credit-card:before {
  content: "\f09d";
}

/* line 9285, ../../../blueidea/static/sass/style.scss */
.icon-rss:before {
  content: "\f09e";
}

/* line 9289, ../../../blueidea/static/sass/style.scss */
.icon-hdd:before {
  content: "\f0a0";
}

/* line 9293, ../../../blueidea/static/sass/style.scss */
.icon-bullhorn:before {
  content: "\f0a1";
}

/* line 9297, ../../../blueidea/static/sass/style.scss */
.icon-bell:before {
  content: "\f0a2";
}

/* line 9301, ../../../blueidea/static/sass/style.scss */
.icon-certificate:before {
  content: "\f0a3";
}

/* line 9305, ../../../blueidea/static/sass/style.scss */
.icon-hand-right:before {
  content: "\f0a4";
}

/* line 9309, ../../../blueidea/static/sass/style.scss */
.icon-hand-left:before {
  content: "\f0a5";
}

/* line 9313, ../../../blueidea/static/sass/style.scss */
.icon-hand-up:before {
  content: "\f0a6";
}

/* line 9317, ../../../blueidea/static/sass/style.scss */
.icon-hand-down:before {
  content: "\f0a7";
}

/* line 9321, ../../../blueidea/static/sass/style.scss */
.icon-circle-arrow-left:before {
  content: "\f0a8";
}

/* line 9325, ../../../blueidea/static/sass/style.scss */
.icon-circle-arrow-right:before {
  content: "\f0a9";
}

/* line 9329, ../../../blueidea/static/sass/style.scss */
.icon-circle-arrow-up:before {
  content: "\f0aa";
}

/* line 9333, ../../../blueidea/static/sass/style.scss */
.icon-circle-arrow-down:before {
  content: "\f0ab";
}

/* line 9337, ../../../blueidea/static/sass/style.scss */
.icon-globe:before {
  content: "\f0ac";
}

/* line 9341, ../../../blueidea/static/sass/style.scss */
.icon-wrench:before {
  content: "\f0ad";
}

/* line 9345, ../../../blueidea/static/sass/style.scss */
.icon-tasks:before {
  content: "\f0ae";
}

/* line 9349, ../../../blueidea/static/sass/style.scss */
.icon-filter:before {
  content: "\f0b0";
}

/* line 9353, ../../../blueidea/static/sass/style.scss */
.icon-briefcase:before {
  content: "\f0b1";
}

/* line 9357, ../../../blueidea/static/sass/style.scss */
.icon-fullscreen:before {
  content: "\f0b2";
}

/* line 9361, ../../../blueidea/static/sass/style.scss */
.icon-group:before {
  content: "\f0c0";
}

/* line 9365, ../../../blueidea/static/sass/style.scss */
.icon-link:before {
  content: "\f0c1";
}

/* line 9369, ../../../blueidea/static/sass/style.scss */
.icon-cloud:before {
  content: "\f0c2";
}

/* line 9373, ../../../blueidea/static/sass/style.scss */
.icon-beaker:before {
  content: "\f0c3";
}

/* line 9377, ../../../blueidea/static/sass/style.scss */
.icon-cut:before {
  content: "\f0c4";
}

/* line 9381, ../../../blueidea/static/sass/style.scss */
.icon-copy:before {
  content: "\f0c5";
}

/* line 9385, ../../../blueidea/static/sass/style.scss */
.icon-paperclip:before, .icon-paper-clip:before {
  content: "\f0c6";
}

/* line 9389, ../../../blueidea/static/sass/style.scss */
.icon-save:before {
  content: "\f0c7";
}

/* line 9393, ../../../blueidea/static/sass/style.scss */
.icon-sign-blank:before {
  content: "\f0c8";
}

/* line 9397, ../../../blueidea/static/sass/style.scss */
.icon-reorder:before {
  content: "\f0c9";
}

/* line 9401, ../../../blueidea/static/sass/style.scss */
.icon-list-ul:before {
  content: "\f0ca";
}

/* line 9405, ../../../blueidea/static/sass/style.scss */
.icon-list-ol:before {
  content: "\f0cb";
}

/* line 9409, ../../../blueidea/static/sass/style.scss */
.icon-strikethrough:before {
  content: "\f0cc";
}

/* line 9413, ../../../blueidea/static/sass/style.scss */
.icon-underline:before {
  content: "\f0cd";
}

/* line 9417, ../../../blueidea/static/sass/style.scss */
.icon-table:before {
  content: "\f0ce";
}

/* line 9421, ../../../blueidea/static/sass/style.scss */
.icon-magic:before {
  content: "\f0d0";
}

/* line 9425, ../../../blueidea/static/sass/style.scss */
.icon-truck:before {
  content: "\f0d1";
}

/* line 9429, ../../../blueidea/static/sass/style.scss */
.icon-pinterest:before {
  content: "\f0d2";
}

/* line 9433, ../../../blueidea/static/sass/style.scss */
.icon-pinterest-sign:before {
  content: "\f0d3";
}

/* line 9437, ../../../blueidea/static/sass/style.scss */
.icon-google-plus-sign:before {
  content: "\f0d4";
}

/* line 9441, ../../../blueidea/static/sass/style.scss */
.icon-google-plus:before {
  content: "\f0d5";
}

/* line 9445, ../../../blueidea/static/sass/style.scss */
.icon-money:before {
  content: "\f0d6";
}

/* line 9449, ../../../blueidea/static/sass/style.scss */
.icon-caret-down:before {
  content: "\f0d7";
}

/* line 9453, ../../../blueidea/static/sass/style.scss */
.icon-caret-up:before {
  content: "\f0d8";
}

/* line 9457, ../../../blueidea/static/sass/style.scss */
.icon-caret-left:before {
  content: "\f0d9";
}

/* line 9461, ../../../blueidea/static/sass/style.scss */
.icon-caret-right:before {
  content: "\f0da";
}

/* line 9465, ../../../blueidea/static/sass/style.scss */
.icon-columns:before {
  content: "\f0db";
}

/* line 9469, ../../../blueidea/static/sass/style.scss */
.icon-sort:before {
  content: "\f0dc";
}

/* line 9473, ../../../blueidea/static/sass/style.scss */
.icon-sort-down:before {
  content: "\f0dd";
}

/* line 9477, ../../../blueidea/static/sass/style.scss */
.icon-sort-up:before {
  content: "\f0de";
}

/* line 9481, ../../../blueidea/static/sass/style.scss */
.icon-envelope:before {
  content: "\f0e0";
}

/* line 9485, ../../../blueidea/static/sass/style.scss */
.icon-linkedin:before {
  content: "\f0e1";
}

/* line 9489, ../../../blueidea/static/sass/style.scss */
.icon-rotate-left:before, .icon-undo:before {
  content: "\f0e2";
}

/* line 9493, ../../../blueidea/static/sass/style.scss */
.icon-legal:before {
  content: "\f0e3";
}

/* line 9497, ../../../blueidea/static/sass/style.scss */
.icon-dashboard:before {
  content: "\f0e4";
}

/* line 9501, ../../../blueidea/static/sass/style.scss */
.icon-comment-alt:before {
  content: "\f0e5";
}

/* line 9505, ../../../blueidea/static/sass/style.scss */
.icon-comments-alt:before {
  content: "\f0e6";
}

/* line 9509, ../../../blueidea/static/sass/style.scss */
.icon-bolt:before {
  content: "\f0e7";
}

/* line 9513, ../../../blueidea/static/sass/style.scss */
.icon-sitemap:before {
  content: "\f0e8";
}

/* line 9517, ../../../blueidea/static/sass/style.scss */
.icon-umbrella:before {
  content: "\f0e9";
}

/* line 9521, ../../../blueidea/static/sass/style.scss */
.icon-paste:before {
  content: "\f0ea";
}

/* line 9525, ../../../blueidea/static/sass/style.scss */
.icon-lightbulb:before {
  content: "\f0eb";
}

/* line 9529, ../../../blueidea/static/sass/style.scss */
.icon-exchange:before {
  content: "\f0ec";
}

/* line 9533, ../../../blueidea/static/sass/style.scss */
.icon-cloud-download:before {
  content: "\f0ed";
}

/* line 9537, ../../../blueidea/static/sass/style.scss */
.icon-cloud-upload:before {
  content: "\f0ee";
}

/* line 9541, ../../../blueidea/static/sass/style.scss */
.icon-user-md:before {
  content: "\f0f0";
}

/* line 9545, ../../../blueidea/static/sass/style.scss */
.icon-stethoscope:before {
  content: "\f0f1";
}

/* line 9549, ../../../blueidea/static/sass/style.scss */
.icon-suitcase:before {
  content: "\f0f2";
}

/* line 9553, ../../../blueidea/static/sass/style.scss */
.icon-bell-alt:before {
  content: "\f0f3";
}

/* line 9557, ../../../blueidea/static/sass/style.scss */
.icon-coffee:before {
  content: "\f0f4";
}

/* line 9561, ../../../blueidea/static/sass/style.scss */
.icon-food:before {
  content: "\f0f5";
}

/* line 9565, ../../../blueidea/static/sass/style.scss */
.icon-file-text-alt:before {
  content: "\f0f6";
}

/* line 9569, ../../../blueidea/static/sass/style.scss */
.icon-building:before {
  content: "\f0f7";
}

/* line 9573, ../../../blueidea/static/sass/style.scss */
.icon-hospital:before {
  content: "\f0f8";
}

/* line 9577, ../../../blueidea/static/sass/style.scss */
.icon-ambulance:before {
  content: "\f0f9";
}

/* line 9581, ../../../blueidea/static/sass/style.scss */
.icon-medkit:before {
  content: "\f0fa";
}

/* line 9585, ../../../blueidea/static/sass/style.scss */
.icon-fighter-jet:before {
  content: "\f0fb";
}

/* line 9589, ../../../blueidea/static/sass/style.scss */
.icon-beer:before {
  content: "\f0fc";
}

/* line 9593, ../../../blueidea/static/sass/style.scss */
.icon-h-sign:before {
  content: "\f0fd";
}

/* line 9597, ../../../blueidea/static/sass/style.scss */
.icon-plus-sign-alt:before {
  content: "\f0fe";
}

/* line 9601, ../../../blueidea/static/sass/style.scss */
.icon-double-angle-left:before {
  content: "\f100";
}

/* line 9605, ../../../blueidea/static/sass/style.scss */
.icon-double-angle-right:before {
  content: "\f101";
}

/* line 9609, ../../../blueidea/static/sass/style.scss */
.icon-double-angle-up:before {
  content: "\f102";
}

/* line 9613, ../../../blueidea/static/sass/style.scss */
.icon-double-angle-down:before {
  content: "\f103";
}

/* line 9617, ../../../blueidea/static/sass/style.scss */
.icon-angle-left:before {
  content: "\f104";
}

/* line 9621, ../../../blueidea/static/sass/style.scss */
.icon-angle-right:before {
  content: "\f105";
}

/* line 9625, ../../../blueidea/static/sass/style.scss */
.icon-angle-up:before {
  content: "\f106";
}

/* line 9629, ../../../blueidea/static/sass/style.scss */
.icon-angle-down:before {
  content: "\f107";
}

/* line 9633, ../../../blueidea/static/sass/style.scss */
.icon-desktop:before {
  content: "\f108";
}

/* line 9637, ../../../blueidea/static/sass/style.scss */
.icon-laptop:before {
  content: "\f109";
}

/* line 9641, ../../../blueidea/static/sass/style.scss */
.icon-tablet:before {
  content: "\f10a";
}

/* line 9645, ../../../blueidea/static/sass/style.scss */
.icon-mobile-phone:before {
  content: "\f10b";
}

/* line 9649, ../../../blueidea/static/sass/style.scss */
.icon-circle-blank:before {
  content: "\f10c";
}

/* line 9653, ../../../blueidea/static/sass/style.scss */
.icon-quote-left:before {
  content: "\f10d";
}

/* line 9657, ../../../blueidea/static/sass/style.scss */
.icon-quote-right:before {
  content: "\f10e";
}

/* line 9661, ../../../blueidea/static/sass/style.scss */
.icon-spinner:before {
  content: "\f110";
}

/* line 9665, ../../../blueidea/static/sass/style.scss */
.icon-circle:before {
  content: "\f111";
}

/* line 9669, ../../../blueidea/static/sass/style.scss */
.icon-mail-reply:before, .icon-reply:before {
  content: "\f112";
}

/* line 9673, ../../../blueidea/static/sass/style.scss */
.icon-github-alt:before {
  content: "\f113";
}

/* line 9677, ../../../blueidea/static/sass/style.scss */
.icon-folder-close-alt:before {
  content: "\f114";
}

/* line 9681, ../../../blueidea/static/sass/style.scss */
.icon-folder-open-alt:before {
  content: "\f115";
}

/* line 9685, ../../../blueidea/static/sass/style.scss */
.icon-expand-alt:before {
  content: "\f116";
}

/* line 9689, ../../../blueidea/static/sass/style.scss */
.icon-collapse-alt:before {
  content: "\f117";
}

/* line 9693, ../../../blueidea/static/sass/style.scss */
.icon-smile:before {
  content: "\f118";
}

/* line 9697, ../../../blueidea/static/sass/style.scss */
.icon-frown:before {
  content: "\f119";
}

/* line 9701, ../../../blueidea/static/sass/style.scss */
.icon-meh:before {
  content: "\f11a";
}

/* line 9705, ../../../blueidea/static/sass/style.scss */
.icon-gamepad:before {
  content: "\f11b";
}

/* line 9709, ../../../blueidea/static/sass/style.scss */
.icon-keyboard:before {
  content: "\f11c";
}

/* line 9713, ../../../blueidea/static/sass/style.scss */
.icon-flag-alt:before {
  content: "\f11d";
}

/* line 9717, ../../../blueidea/static/sass/style.scss */
.icon-flag-checkered:before {
  content: "\f11e";
}

/* line 9721, ../../../blueidea/static/sass/style.scss */
.icon-terminal:before {
  content: "\f120";
}

/* line 9725, ../../../blueidea/static/sass/style.scss */
.icon-code:before {
  content: "\f121";
}

/* line 9729, ../../../blueidea/static/sass/style.scss */
.icon-reply-all:before, .icon-mail-reply-all:before {
  content: "\f122";
}

/* line 9733, ../../../blueidea/static/sass/style.scss */
.icon-star-half-full:before, .icon-star-half-empty:before {
  content: "\f123";
}

/* line 9737, ../../../blueidea/static/sass/style.scss */
.icon-location-arrow:before {
  content: "\f124";
}

/* line 9741, ../../../blueidea/static/sass/style.scss */
.icon-crop:before {
  content: "\f125";
}

/* line 9745, ../../../blueidea/static/sass/style.scss */
.icon-code-fork:before {
  content: "\f126";
}

/* line 9749, ../../../blueidea/static/sass/style.scss */
.icon-unlink:before {
  content: "\f127";
}

/* line 9753, ../../../blueidea/static/sass/style.scss */
.icon-question:before {
  content: "\f128";
}

/* line 9757, ../../../blueidea/static/sass/style.scss */
.icon-info:before {
  content: "\f129";
}

/* line 9761, ../../../blueidea/static/sass/style.scss */
.icon-exclamation:before {
  content: "\f12a";
}

/* line 9765, ../../../blueidea/static/sass/style.scss */
.icon-superscript:before {
  content: "\f12b";
}

/* line 9769, ../../../blueidea/static/sass/style.scss */
.icon-subscript:before {
  content: "\f12c";
}

/* line 9773, ../../../blueidea/static/sass/style.scss */
.icon-eraser:before {
  content: "\f12d";
}

/* line 9777, ../../../blueidea/static/sass/style.scss */
.icon-puzzle-piece:before {
  content: "\f12e";
}

/* line 9781, ../../../blueidea/static/sass/style.scss */
.icon-microphone:before {
  content: "\f130";
}

/* line 9785, ../../../blueidea/static/sass/style.scss */
.icon-microphone-off:before {
  content: "\f131";
}

/* line 9789, ../../../blueidea/static/sass/style.scss */
.icon-shield:before {
  content: "\f132";
}

/* line 9793, ../../../blueidea/static/sass/style.scss */
.icon-calendar-empty:before {
  content: "\f133";
}

/* line 9797, ../../../blueidea/static/sass/style.scss */
.icon-fire-extinguisher:before {
  content: "\f134";
}

/* line 9801, ../../../blueidea/static/sass/style.scss */
.icon-rocket:before {
  content: "\f135";
}

/* line 9805, ../../../blueidea/static/sass/style.scss */
.icon-maxcdn:before {
  content: "\f136";
}

/* line 9809, ../../../blueidea/static/sass/style.scss */
.icon-chevron-sign-left:before {
  content: "\f137";
}

/* line 9813, ../../../blueidea/static/sass/style.scss */
.icon-chevron-sign-right:before {
  content: "\f138";
}

/* line 9817, ../../../blueidea/static/sass/style.scss */
.icon-chevron-sign-up:before {
  content: "\f139";
}

/* line 9821, ../../../blueidea/static/sass/style.scss */
.icon-chevron-sign-down:before {
  content: "\f13a";
}

/* line 9825, ../../../blueidea/static/sass/style.scss */
.icon-html5:before {
  content: "\f13b";
}

/* line 9829, ../../../blueidea/static/sass/style.scss */
.icon-css3:before {
  content: "\f13c";
}

/* line 9833, ../../../blueidea/static/sass/style.scss */
.icon-anchor:before {
  content: "\f13d";
}

/* line 9837, ../../../blueidea/static/sass/style.scss */
.icon-unlock-alt:before {
  content: "\f13e";
}

/* line 9841, ../../../blueidea/static/sass/style.scss */
.icon-bullseye:before {
  content: "\f140";
}

/* line 9845, ../../../blueidea/static/sass/style.scss */
.icon-ellipsis-horizontal:before {
  content: "\f141";
}

/* line 9849, ../../../blueidea/static/sass/style.scss */
.icon-ellipsis-vertical:before {
  content: "\f142";
}

/* line 9853, ../../../blueidea/static/sass/style.scss */
.icon-rss-sign:before {
  content: "\f143";
}

/* line 9857, ../../../blueidea/static/sass/style.scss */
.icon-play-sign:before {
  content: "\f144";
}

/* line 9861, ../../../blueidea/static/sass/style.scss */
.icon-ticket:before {
  content: "\f145";
}

/* line 9865, ../../../blueidea/static/sass/style.scss */
.icon-minus-sign-alt:before {
  content: "\f146";
}

/* line 9869, ../../../blueidea/static/sass/style.scss */
.icon-check-minus:before {
  content: "\f147";
}

/* line 9873, ../../../blueidea/static/sass/style.scss */
.icon-level-up:before {
  content: "\f148";
}

/* line 9877, ../../../blueidea/static/sass/style.scss */
.icon-level-down:before {
  content: "\f149";
}

/* line 9881, ../../../blueidea/static/sass/style.scss */
.icon-check-sign:before {
  content: "\f14a";
}

/* line 9885, ../../../blueidea/static/sass/style.scss */
.icon-edit-sign:before {
  content: "\f14b";
}

/* line 9889, ../../../blueidea/static/sass/style.scss */
.icon-external-link-sign:before {
  content: "\f14c";
}

/* line 9893, ../../../blueidea/static/sass/style.scss */
.icon-share-sign:before {
  content: "\f14d";
}

/* line 9897, ../../../blueidea/static/sass/style.scss */
.icon-compass:before {
  content: "\f14e";
}

/* line 9901, ../../../blueidea/static/sass/style.scss */
.icon-collapse:before {
  content: "\f150";
}

/* line 9905, ../../../blueidea/static/sass/style.scss */
.icon-collapse-top:before {
  content: "\f151";
}

/* line 9909, ../../../blueidea/static/sass/style.scss */
.icon-expand:before {
  content: "\f152";
}

/* line 9913, ../../../blueidea/static/sass/style.scss */
.icon-euro:before, .icon-eur:before {
  content: "\f153";
}

/* line 9917, ../../../blueidea/static/sass/style.scss */
.icon-gbp:before {
  content: "\f154";
}

/* line 9921, ../../../blueidea/static/sass/style.scss */
.icon-dollar:before, .icon-usd:before {
  content: "\f155";
}

/* line 9925, ../../../blueidea/static/sass/style.scss */
.icon-rupee:before, .icon-inr:before {
  content: "\f156";
}

/* line 9929, ../../../blueidea/static/sass/style.scss */
.icon-yen:before, .icon-jpy:before {
  content: "\f157";
}

/* line 9933, ../../../blueidea/static/sass/style.scss */
.icon-renminbi:before, .icon-cny:before {
  content: "\f158";
}

/* line 9937, ../../../blueidea/static/sass/style.scss */
.icon-won:before, .icon-krw:before {
  content: "\f159";
}

/* line 9941, ../../../blueidea/static/sass/style.scss */
.icon-bitcoin:before, .icon-btc:before {
  content: "\f15a";
}

/* line 9945, ../../../blueidea/static/sass/style.scss */
.icon-file:before {
  content: "\f15b";
}

/* line 9949, ../../../blueidea/static/sass/style.scss */
.icon-file-text:before {
  content: "\f15c";
}

/* line 9953, ../../../blueidea/static/sass/style.scss */
.icon-sort-by-alphabet:before {
  content: "\f15d";
}

/* line 9957, ../../../blueidea/static/sass/style.scss */
.icon-sort-by-alphabet-alt:before {
  content: "\f15e";
}

/* line 9961, ../../../blueidea/static/sass/style.scss */
.icon-sort-by-attributes:before {
  content: "\f160";
}

/* line 9965, ../../../blueidea/static/sass/style.scss */
.icon-sort-by-attributes-alt:before {
  content: "\f161";
}

/* line 9969, ../../../blueidea/static/sass/style.scss */
.icon-sort-by-order:before {
  content: "\f162";
}

/* line 9973, ../../../blueidea/static/sass/style.scss */
.icon-sort-by-order-alt:before {
  content: "\f163";
}

/* line 9977, ../../../blueidea/static/sass/style.scss */
.icon-thumbs-up:before {
  content: "\f164";
}

/* line 9981, ../../../blueidea/static/sass/style.scss */
.icon-thumbs-down:before {
  content: "\f165";
}

/* line 9985, ../../../blueidea/static/sass/style.scss */
.icon-youtube-sign:before {
  content: "\f166";
}

/* line 9989, ../../../blueidea/static/sass/style.scss */
.icon-youtube:before {
  content: "\f167";
}

/* line 9993, ../../../blueidea/static/sass/style.scss */
.icon-xing:before {
  content: "\f168";
}

/* line 9997, ../../../blueidea/static/sass/style.scss */
.icon-xing-sign:before {
  content: "\f169";
}

/* line 10001, ../../../blueidea/static/sass/style.scss */
.icon-youtube-play:before {
  content: "\f16a";
}

/* line 10005, ../../../blueidea/static/sass/style.scss */
.icon-dropbox:before {
  content: "\f16b";
}

/* line 10009, ../../../blueidea/static/sass/style.scss */
.icon-stackexchange:before {
  content: "\f16c";
}

/* line 10013, ../../../blueidea/static/sass/style.scss */
.icon-instagram:before {
  content: "\f16d";
}

/* line 10017, ../../../blueidea/static/sass/style.scss */
.icon-flickr:before {
  content: "\f16e";
}

/* line 10021, ../../../blueidea/static/sass/style.scss */
.icon-adn:before {
  content: "\f170";
}

/* line 10025, ../../../blueidea/static/sass/style.scss */
.icon-bitbucket:before {
  content: "\f171";
}

/* line 10029, ../../../blueidea/static/sass/style.scss */
.icon-bitbucket-sign:before {
  content: "\f172";
}

/* line 10033, ../../../blueidea/static/sass/style.scss */
.icon-tumblr:before {
  content: "\f173";
}

/* line 10037, ../../../blueidea/static/sass/style.scss */
.icon-tumblr-sign:before {
  content: "\f174";
}

/* line 10041, ../../../blueidea/static/sass/style.scss */
.icon-long-arrow-down:before {
  content: "\f175";
}

/* line 10045, ../../../blueidea/static/sass/style.scss */
.icon-long-arrow-up:before {
  content: "\f176";
}

/* line 10049, ../../../blueidea/static/sass/style.scss */
.icon-long-arrow-left:before {
  content: "\f177";
}

/* line 10053, ../../../blueidea/static/sass/style.scss */
.icon-long-arrow-right:before {
  content: "\f178";
}

/* line 10057, ../../../blueidea/static/sass/style.scss */
.icon-apple:before {
  content: "\f179";
}

/* line 10061, ../../../blueidea/static/sass/style.scss */
.icon-windows:before {
  content: "\f17a";
}

/* line 10065, ../../../blueidea/static/sass/style.scss */
.icon-android:before {
  content: "\f17b";
}

/* line 10069, ../../../blueidea/static/sass/style.scss */
.icon-linux:before {
  content: "\f17c";
}

/* line 10073, ../../../blueidea/static/sass/style.scss */
.icon-dribbble:before {
  content: "\f17d";
}

/* line 10077, ../../../blueidea/static/sass/style.scss */
.icon-skype:before {
  content: "\f17e";
}

/* line 10081, ../../../blueidea/static/sass/style.scss */
.icon-foursquare:before {
  content: "\f180";
}

/* line 10085, ../../../blueidea/static/sass/style.scss */
.icon-trello:before {
  content: "\f181";
}

/* line 10089, ../../../blueidea/static/sass/style.scss */
.icon-female:before {
  content: "\f182";
}

/* line 10093, ../../../blueidea/static/sass/style.scss */
.icon-male:before {
  content: "\f183";
}

/* line 10097, ../../../blueidea/static/sass/style.scss */
.icon-gittip:before {
  content: "\f184";
}

/* line 10101, ../../../blueidea/static/sass/style.scss */
.icon-sun:before {
  content: "\f185";
}

/* line 10105, ../../../blueidea/static/sass/style.scss */
.icon-moon:before {
  content: "\f186";
}

/* line 10109, ../../../blueidea/static/sass/style.scss */
.icon-archive:before {
  content: "\f187";
}

/* line 10113, ../../../blueidea/static/sass/style.scss */
.icon-bug:before {
  content: "\f188";
}

/* line 10117, ../../../blueidea/static/sass/style.scss */
.icon-vk:before {
  content: "\f189";
}

/* line 10121, ../../../blueidea/static/sass/style.scss */
.icon-weibo:before {
  content: "\f18a";
}

/* line 10125, ../../../blueidea/static/sass/style.scss */
.icon-renren:before {
  content: "\f18b";
}

/* line 10129, ../../../blueidea/static/sass/style.scss */
code {
  color: #000;
}

/* line 10133, ../../../blueidea/static/sass/style.scss */
pre {
  font-size: inherit;
  line-height: inherit;
}

/* line 10138, ../../../blueidea/static/sass/style.scss */
.border-box-sizing {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/* line 10144, ../../../blueidea/static/sass/style.scss */
.corner-all {
  border-radius: 4px;
}

/* line 10148, ../../../blueidea/static/sass/style.scss */
.hbox {
  display: -webkit-box;
  -webkit-box-orient: horizontal;
  -webkit-box-align: stretch;
  display: -moz-box;
  -moz-box-orient: horizontal;
  -moz-box-align: stretch;
  display: box;
  box-orient: horizontal;
  box-align: stretch;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
/* line 10161, ../../../blueidea/static/sass/style.scss */
.hbox > * {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  flex: none;
}

/* line 10169, ../../../blueidea/static/sass/style.scss */
.vbox {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-box-align: stretch;
  display: -moz-box;
  -moz-box-orient: vertical;
  -moz-box-align: stretch;
  display: box;
  box-orient: vertical;
  box-align: stretch;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
/* line 10182, ../../../blueidea/static/sass/style.scss */
.vbox > * {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  flex: none;
}

/* line 10190, ../../../blueidea/static/sass/style.scss */
.hbox.reverse, .vbox.reverse, .reverse {
  -webkit-box-direction: reverse;
  -moz-box-direction: reverse;
  box-direction: reverse;
  flex-direction: row-reverse;
}

/* line 10197, ../../../blueidea/static/sass/style.scss */
.hbox.box-flex0, .vbox.box-flex0, .box-flex0 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  flex: none;
  width: auto;
}

/* line 10205, ../../../blueidea/static/sass/style.scss */
.hbox.box-flex1, .vbox.box-flex1, .box-flex1, .hbox.box-flex, .vbox.box-flex, .box-flex {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  flex: 1;
}

/* line 10212, ../../../blueidea/static/sass/style.scss */
.hbox.box-flex2, .vbox.box-flex2, .box-flex2 {
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  box-flex: 2;
  flex: 2;
}

/* line 10219, ../../../blueidea/static/sass/style.scss */
.box-group1 {
  -webkit-box-flex-group: 1;
  -moz-box-flex-group: 1;
  box-flex-group: 1;
}

/* line 10225, ../../../blueidea/static/sass/style.scss */
.box-group2 {
  -webkit-box-flex-group: 2;
  -moz-box-flex-group: 2;
  box-flex-group: 2;
}

/* line 10231, ../../../blueidea/static/sass/style.scss */
.hbox.start, .vbox.start, .start {
  -webkit-box-pack: start;
  -moz-box-pack: start;
  box-pack: start;
  justify-content: flex-start;
}

/* line 10238, ../../../blueidea/static/sass/style.scss */
.hbox.end, .vbox.end, .end {
  -webkit-box-pack: end;
  -moz-box-pack: end;
  box-pack: end;
  justify-content: flex-end;
}

/* line 10245, ../../../blueidea/static/sass/style.scss */
.hbox.center, .vbox.center, .center {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  box-pack: center;
  justify-content: center;
}

/* line 10252, ../../../blueidea/static/sass/style.scss */
.hbox.align-start, .vbox.align-start, .align-start {
  -webkit-box-align: start;
  -moz-box-align: start;
  box-align: start;
  align-items: flex-start;
}

/* line 10259, ../../../blueidea/static/sass/style.scss */
.hbox.align-end, .vbox.align-end, .align-end {
  -webkit-box-align: end;
  -moz-box-align: end;
  box-align: end;
  align-items: flex-end;
}

/* line 10266, ../../../blueidea/static/sass/style.scss */
.hbox.align-center, .vbox.align-center, .align-center {
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  align-items: center;
}

/* line 10274, ../../../blueidea/static/sass/style.scss */
div.error {
  margin: 2em;
  text-align: center;
}
/* line 10278, ../../../blueidea/static/sass/style.scss */
div.error > h1 {
  font-size: 500%;
  line-height: normal;
}
/* line 10282, ../../../blueidea/static/sass/style.scss */
div.error > p {
  font-size: 200%;
  line-height: normal;
}
/* line 10288, ../../../blueidea/static/sass/style.scss */
div.traceback-wrapper {
  text-align: left;
  max-width: 800px;
  margin: auto;
}

/* line 10295, ../../../blueidea/static/sass/style.scss */
body {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: visible;
}

/* line 10304, ../../../blueidea/static/sass/style.scss */
div#header {
  display: none;
}

/* line 10308, ../../../blueidea/static/sass/style.scss */
#ipython_notebook {
  padding-left: 16px;
}

/* line 10312, ../../../blueidea/static/sass/style.scss */
#noscript {
  width: auto;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
  font-size: 22px;
  color: #f00;
  font-weight: bold;
}

/* line 10322, ../../../blueidea/static/sass/style.scss */
#ipython_notebook img {
  font-family: Verdana,"Helvetica Neue",Arial,Helvetica,Geneva,sans-serif;
  height: 24px;
  text-decoration: none;
  color: #000;
}

/* line 10329, ../../../blueidea/static/sass/style.scss */
#site {
  width: 100%;
  display: none;
}

/* line 10334, ../../../blueidea/static/sass/style.scss */
.ui-button .ui-button-text {
  padding: .2em .8em;
  font-size: 77%;
}

/* line 10339, ../../../blueidea/static/sass/style.scss */
input.ui-button {
  padding: .3em .9em;
}

/* line 10343, ../../../blueidea/static/sass/style.scss */
.navbar span {
  margin-top: 3px;
}

/* line 10347, ../../../blueidea/static/sass/style.scss */
span#login_widget {
  float: right;
}

/* line 10351, ../../../blueidea/static/sass/style.scss */
.nav-header {
  text-transform: none;
}

/* line 10355, ../../../blueidea/static/sass/style.scss */
.navbar-nobg {
  background-color: transparent;
  background-image: none;
}

/* line 10360, ../../../blueidea/static/sass/style.scss */
#header > span {
  margin-top: 10px;
}

/* line 10364, ../../../blueidea/static/sass/style.scss */
.modal_stretch {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-box-align: stretch;
  display: -moz-box;
  -moz-box-orient: vertical;
  -moz-box-align: stretch;
  display: box;
  box-orient: vertical;
  box-align: stretch;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 80%;
}
/* line 10378, ../../../blueidea/static/sass/style.scss */
.modal_stretch .modal-body {
  max-height: none;
  flex: 1;
}

@media (min-width: 768px) {
  /* line 10385, ../../../blueidea/static/sass/style.scss */
  .modal {
    width: 700px;
    margin-left: -350px;
  }
}
/* line 10391, ../../../blueidea/static/sass/style.scss */
.center-nav {
  display: inline-block;
  margin-bottom: -4px;
}

/* line 10396, ../../../blueidea/static/sass/style.scss */
.alternate_upload {
  background-color: none;
  display: inline;
}
/* line 10399, ../../../blueidea/static/sass/style.scss */
.alternate_upload.form {
  padding: 0;
  margin: 0;
}
/* line 10403, ../../../blueidea/static/sass/style.scss */
.alternate_upload input.fileinput {
  background-color: #f00;
  position: relative;
  opacity: 0;
  z-index: 2;
  width: 295px;
  margin-left: 163px;
  cursor: pointer;
  height: 26px;
}

/* line 10416, ../../../blueidea/static/sass/style.scss */
ul#tabs {
  margin-bottom: 4px;
}
/* line 10418, ../../../blueidea/static/sass/style.scss */
ul#tabs a {
  padding-top: 4px;
  padding-bottom: 4px;
}
/* line 10425, ../../../blueidea/static/sass/style.scss */
ul.breadcrumb a:focus, ul.breadcrumb a:hover {
  text-decoration: none;
}
/* line 10429, ../../../blueidea/static/sass/style.scss */
ul.breadcrumb i.icon-home {
  font-size: 16px;
  margin-right: 4px;
}
/* line 10433, ../../../blueidea/static/sass/style.scss */
ul.breadcrumb span {
  color: #5e5e5e;
}

/* line 10439, ../../../blueidea/static/sass/style.scss */
.list_toolbar {
  padding: 4px 0 4px 0;
}
/* line 10441, ../../../blueidea/static/sass/style.scss */
.list_toolbar [class*="span"] {
  min-height: 26px;
}

/* line 10446, ../../../blueidea/static/sass/style.scss */
.list_header {
  font-weight: bold;
}

/* line 10450, ../../../blueidea/static/sass/style.scss */
.list_container {
  margin-top: 4px;
  margin-bottom: 20px;
  border: 1px solid #ababab;
  border-radius: 4px;
}
/* line 10455, ../../../blueidea/static/sass/style.scss */
.list_container > div {
  border-bottom: 1px solid #ababab;
}
/* line 10457, ../../../blueidea/static/sass/style.scss */
.list_container > div:hover .list-item {
  background-color: #f00;
}
/* line 10460, ../../../blueidea/static/sass/style.scss */
.list_container > div:last-child {
  border: none;
}

/* line 10467, ../../../blueidea/static/sass/style.scss */
.list_item:hover .list_item {
  background-color: #ddd;
}
/* line 10470, ../../../blueidea/static/sass/style.scss */
.list_item a {
  text-decoration: none;
}

/* line 10475, ../../../blueidea/static/sass/style.scss */
.list_header > div, .list_item > div {
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 7px;
  padding-right: 7px;
  height: 22px;
  line-height: 22px;
}

/* line 10484, ../../../blueidea/static/sass/style.scss */
.item_name {
  line-height: 22px;
  height: 26px;
}

/* line 10489, ../../../blueidea/static/sass/style.scss */
.item_icon {
  font-size: 14px;
  color: #5e5e5e;
  margin-right: 7px;
}

/* line 10495, ../../../blueidea/static/sass/style.scss */
.item_buttons {
  line-height: 1em;
}

/* line 10499, ../../../blueidea/static/sass/style.scss */
.toolbar_info {
  height: 26px;
  line-height: 26px;
}

/* line 10505, ../../../blueidea/static/sass/style.scss */
input.nbname_input {
  padding-top: 3px;
  padding-bottom: 3px;
  height: 14px;
  line-height: 14px;
  margin: 0;
}
/* line 10512, ../../../blueidea/static/sass/style.scss */
input.engine_num_input {
  padding-top: 3px;
  padding-bottom: 3px;
  height: 14px;
  line-height: 14px;
  margin: 0;
  width: 60px;
}

/* line 10522, ../../../blueidea/static/sass/style.scss */
.highlight_text {
  color: #00f;
}

/* line 10526, ../../../blueidea/static/sass/style.scss */
#project_name > .breadcrumb {
  padding: 0;
  margin-bottom: 0;
  background-color: transparent;
  font-weight: bold;
}

/* line 10533, ../../../blueidea/static/sass/style.scss */
.folder_icon:before {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  *margin-right: .3em;
  content: "\f114";
}

/* line 10543, ../../../blueidea/static/sass/style.scss */
.notebook_icon:before {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  *margin-right: .3em;
  content: "\f02d";
}

/* line 10553, ../../../blueidea/static/sass/style.scss */
.ansibold {
  font-weight: bold;
}

/* line 10557, ../../../blueidea/static/sass/style.scss */
.ansiblack {
  color: #000;
}

/* line 10561, ../../../blueidea/static/sass/style.scss */
.ansired {
  color: #8b0000;
}

/* line 10565, ../../../blueidea/static/sass/style.scss */
.ansigreen {
  color: #006400;
}

/* line 10569, ../../../blueidea/static/sass/style.scss */
.ansiyellow {
  color: #a52a2a;
}

/* line 10573, ../../../blueidea/static/sass/style.scss */
.ansiblue {
  color: #00008b;
}

/* line 10577, ../../../blueidea/static/sass/style.scss */
.ansipurple {
  color: #9400d3;
}

/* line 10581, ../../../blueidea/static/sass/style.scss */
.ansicyan {
  color: #4682b4;
}

/* line 10585, ../../../blueidea/static/sass/style.scss */
.ansigray {
  color: #808080;
}

/* line 10589, ../../../blueidea/static/sass/style.scss */
.ansibgblack {
  background-color: #000;
}

/* line 10593, ../../../blueidea/static/sass/style.scss */
.ansibgred {
  background-color: #f00;
}

/* line 10597, ../../../blueidea/static/sass/style.scss */
.ansibggreen {
  background-color: #008000;
}

/* line 10601, ../../../blueidea/static/sass/style.scss */
.ansibgyellow {
  background-color: #ff0;
}

/* line 10605, ../../../blueidea/static/sass/style.scss */
.ansibgblue {
  background-color: #00f;
}

/* line 10609, ../../../blueidea/static/sass/style.scss */
.ansibgpurple {
  background-color: #f0f;
}

/* line 10613, ../../../blueidea/static/sass/style.scss */
.ansibgcyan {
  background-color: #0ff;
}

/* line 10617, ../../../blueidea/static/sass/style.scss */
.ansibggray {
  background-color: #808080;
}

/* line 10622, ../../../blueidea/static/sass/style.scss */
div.cell {
  border: 1px solid transparent;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-box-align: stretch;
  display: -moz-box;
  -moz-box-orient: vertical;
  -moz-box-align: stretch;
  display: box;
  box-orient: vertical;
  box-align: stretch;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 5px 5px 5px 0;
  margin: 0;
  outline: none;
}
/* line 10636, ../../../blueidea/static/sass/style.scss */
div.cell.selected {
  border-radius: 4px;
  border: thin #ababab solid;
}
/* line 10640, ../../../blueidea/static/sass/style.scss */
div.cell.edit_mode {
  border-radius: 4px;
  border: thin #008000 solid;
}
/* line 10649, ../../../blueidea/static/sass/style.scss */
div.prompt {
  min-width: 11ex;
  padding: .4em;
  margin: 0;
  font-family: monospace;
  text-align: right;
  line-height: 1.21429em;
}
/* line 10657, ../../../blueidea/static/sass/style.scss */
div.inner_cell {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-box-align: stretch;
  display: -moz-box;
  -moz-box-orient: vertical;
  -moz-box-align: stretch;
  display: box;
  box-orient: vertical;
  box-align: stretch;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  flex: 1;
}
/* line 10675, ../../../blueidea/static/sass/style.scss */
div.input_area {
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  background: #f7f7f7;
  line-height: 1.21429em;
}
/* line 10681, ../../../blueidea/static/sass/style.scss */
div.prompt:empty {
  padding-top: 0;
  padding-bottom: 0;
}
/* line 10685, ../../../blueidea/static/sass/style.scss */
div.input {
  page-break-inside: avoid;
  display: -webkit-box;
  -webkit-box-orient: horizontal;
  -webkit-box-align: stretch;
  display: -moz-box;
  -moz-box-orient: horizontal;
  -moz-box-align: stretch;
  display: box;
  box-orient: horizontal;
  box-align: stretch;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
/* line 10700, ../../../blueidea/static/sass/style.scss */
div.input_prompt {
  color: #000080;
  border-top: 1px solid transparent;
}
/* line 10704, ../../../blueidea/static/sass/style.scss */
div.input_area > div.highlight {
  margin: .4em;
  border: none;
  padding: 0;
  background-color: transparent;
}
/* line 10709, ../../../blueidea/static/sass/style.scss */
div.input_area > div.highlight > pre {
  margin: 0;
  border: none;
  padding: 0;
  background-color: transparent;
}

@media (max-width: 480px) {
  /* line 10719, ../../../blueidea/static/sass/style.scss */
  div.prompt {
    text-align: left;
  }
}
@media (max-width: 480px) {
  /* line 10725, ../../../blueidea/static/sass/style.scss */
  div.input {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-box-align: stretch;
    display: -moz-box;
    -moz-box-orient: vertical;
    -moz-box-align: stretch;
    display: box;
    box-orient: vertical;
    box-align: stretch;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
/* line 10741, ../../../blueidea/static/sass/style.scss */
.CodeMirror {
  line-height: 1.21429em;
  height: auto;
  background: none;
}

/* line 10747, ../../../blueidea/static/sass/style.scss */
.CodeMirror-scroll {
  overflow-y: hidden;
  overflow-x: auto;
}

/* line 10752, ../../../blueidea/static/sass/style.scss */
.CodeMirror-lines {
  padding: .4em;
}

/* line 10756, ../../../blueidea/static/sass/style.scss */
.CodeMirror-linenumber {
  padding: 0 8px 0 4px;
}

/* line 10760, ../../../blueidea/static/sass/style.scss */
.CodeMirror-gutters {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

/* line 10765, ../../../blueidea/static/sass/style.scss */
.CodeMirror pre {
  padding: 0;
  border: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

/* line 10774, ../../../blueidea/static/sass/style.scss */
pre code {
  display: block;
  padding: .5em;
}

/* line 10779, ../../../blueidea/static/sass/style.scss */
.highlight-base {
  color: #000;
}

/* line 10784, ../../../blueidea/static/sass/style.scss */
pre code, pre .subst, pre .tag .title, pre .lisp .title, pre .clojure .built_in, pre .nginx .title {
  color: #000;
}

/* line 10789, ../../../blueidea/static/sass/style.scss */
.highlight-string {
  color: #ba2121;
}

/* line 10794, ../../../blueidea/static/sass/style.scss */
pre .string, pre .constant, pre .parent, pre .tag .value {
  color: #ba2121;
}
/* line 10797, ../../../blueidea/static/sass/style.scss */
pre .rules .value {
  color: #ba2121;
}
/* line 10799, ../../../blueidea/static/sass/style.scss */
pre .rules .value .number {
  color: #ba2121;
}
/* line 10803, ../../../blueidea/static/sass/style.scss */
pre .preprocessor {
  color: #ba2121;
}
/* line 10806, ../../../blueidea/static/sass/style.scss */
pre .ruby .symbol {
  color: #ba2121;
}
/* line 10808, ../../../blueidea/static/sass/style.scss */
pre .ruby .symbol .string {
  color: #ba2121;
}
/* line 10812, ../../../blueidea/static/sass/style.scss */
pre .aggregate, pre .template_tag, pre .django .variable, pre .smalltalk .class, pre .addition, pre .flow, pre .stream, pre .bash .variable {
  color: #ba2121;
}
/* line 10816, ../../../blueidea/static/sass/style.scss */
pre .apache .tag, pre .apache .cbracket {
  color: #ba2121;
}
/* line 10821, ../../../blueidea/static/sass/style.scss */
pre .tex .command, pre .tex .special {
  color: #ba2121;
}
/* line 10825, ../../../blueidea/static/sass/style.scss */
pre .erlang_repl .function_or_atom, pre .markdown .header {
  color: #ba2121;
}

/* line 10830, ../../../blueidea/static/sass/style.scss */
.highlight-comment {
  color: #408080;
  font-style: italic;
}

/* line 10836, ../../../blueidea/static/sass/style.scss */
pre .comment, pre .annotation, pre .template_comment, pre .diff .header, pre .chunk, pre .markdown .blockquote {
  color: #408080;
  font-style: italic;
}

/* line 10842, ../../../blueidea/static/sass/style.scss */
.highlight-number {
  color: #080;
}

/* line 10847, ../../../blueidea/static/sass/style.scss */
pre .number, pre .date, pre .regexp, pre .literal {
  color: #080;
}
/* line 10851, ../../../blueidea/static/sass/style.scss */
pre .smalltalk .symbol, pre .smalltalk .char {
  color: #080;
}
/* line 10855, ../../../blueidea/static/sass/style.scss */
pre .go .constant, pre .change {
  color: #080;
}
/* line 10859, ../../../blueidea/static/sass/style.scss */
pre .markdown .bullet, pre .markdown .link_url {
  color: #080;
}
/* line 10863, ../../../blueidea/static/sass/style.scss */
pre .label, pre .javadoc, pre .ruby .string, pre .decorator, pre .filter .argument, pre .localvars, pre .array, pre .attr_selector, pre .important, pre .pseudo, pre .pi, pre .doctype, pre .deletion, pre .envvar, pre .shebang, pre .apache .sqbracket, pre .nginx .built_in, pre .tex .formula, pre .erlang_repl .reserved, pre .prompt, pre .markdown .link_label, pre .vhdl .attribute, pre .clojure .attribute, pre .coffeescript .property {
  color: #88f;
}

/* line 10868, ../../../blueidea/static/sass/style.scss */
.highlight-keyword {
  color: #008000;
  font-weight: bold;
}

/* line 10874, ../../../blueidea/static/sass/style.scss */
pre .keyword, pre .id, pre .phpdoc, pre .aggregate, pre .css .tag, pre .javadoctag, pre .phpdoc, pre .yardoctag, pre .smalltalk .class, pre .winutils, pre .bash .variable, pre .apache .tag, pre .go .typename, pre .tex .command, pre .markdown .strong, pre .request, pre .status {
  color: #008000;
  font-weight: bold;
}

/* line 10880, ../../../blueidea/static/sass/style.scss */
.highlight-builtin {
  color: #008000;
}

/* line 10885, ../../../blueidea/static/sass/style.scss */
pre .built_in {
  color: #008000;
}
/* line 10888, ../../../blueidea/static/sass/style.scss */
pre .markdown .emphasis {
  font-style: italic;
}
/* line 10891, ../../../blueidea/static/sass/style.scss */
pre .nginx .built_in {
  font-weight: normal;
}
/* line 10894, ../../../blueidea/static/sass/style.scss */
pre .coffeescript .javascript, pre .javascript .xml, pre .tex .formula {
  opacity: .5;
}
/* line 10898, ../../../blueidea/static/sass/style.scss */
pre .xml .javascript, pre .xml .vbscript, pre .xml .css, pre .xml .cdata {
  opacity: .5;
}

/* line 10905, ../../../blueidea/static/sass/style.scss */
.cm-s-ipython span.cm-variable {
  color: #000;
}
/* line 10908, ../../../blueidea/static/sass/style.scss */
.cm-s-ipython span.cm-keyword {
  color: #008000;
  font-weight: bold;
}
/* line 10912, ../../../blueidea/static/sass/style.scss */
.cm-s-ipython span.cm-number {
  color: #080;
}
/* line 10915, ../../../blueidea/static/sass/style.scss */
.cm-s-ipython span.cm-comment {
  color: #408080;
  font-style: italic;
}
/* line 10919, ../../../blueidea/static/sass/style.scss */
.cm-s-ipython span.cm-string {
  color: #ba2121;
}
/* line 10922, ../../../blueidea/static/sass/style.scss */
.cm-s-ipython span.cm-builtin {
  color: #008000;
}
/* line 10925, ../../../blueidea/static/sass/style.scss */
.cm-s-ipython span.cm-error {
  color: #f00;
}
/* line 10928, ../../../blueidea/static/sass/style.scss */
.cm-s-ipython span.cm-operator {
  color: #a2f;
  font-weight: bold;
}
/* line 10932, ../../../blueidea/static/sass/style.scss */
.cm-s-ipython span.cm-meta {
  color: #a2f;
}
/* line 10935, ../../../blueidea/static/sass/style.scss */
.cm-s-ipython span.cm-tab {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
  background-position: right;
  background-repeat: no-repeat;
}

/* line 10943, ../../../blueidea/static/sass/style.scss */
div.output_wrapper {
  position: relative;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-box-align: stretch;
  display: -moz-box;
  -moz-box-orient: vertical;
  -moz-box-align: stretch;
  display: box;
  box-orient: vertical;
  box-align: stretch;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
/* line 10958, ../../../blueidea/static/sass/style.scss */
div.output_scroll {
  height: 24em;
  width: 100%;
  overflow: auto;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
  display: block;
}
/* line 10968, ../../../blueidea/static/sass/style.scss */
div.output_collapsed {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-box-align: stretch;
  display: -moz-box;
  -moz-box-orient: vertical;
  -moz-box-align: stretch;
  display: box;
  box-orient: vertical;
  box-align: stretch;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
/* line 10984, ../../../blueidea/static/sass/style.scss */
div.out_prompt_overlay {
  height: 100%;
  padding: 0 .4em;
  position: absolute;
  border-radius: 4px;
}
/* line 10989, ../../../blueidea/static/sass/style.scss */
div.out_prompt_overlay:hover {
  -webkit-box-shadow: inset 0 0 1px #000;
  -moz-box-shadow: inset 0 0 1px #000;
  box-shadow: inset 0 0 1px #000;
  background: rgba(240, 240, 240, 0.5);
}
/* line 10996, ../../../blueidea/static/sass/style.scss */
div.output_prompt {
  color: #8b0000;
}
/* line 10999, ../../../blueidea/static/sass/style.scss */
div.output_area {
  padding: 0;
  page-break-inside: avoid;
  display: -webkit-box;
  -webkit-box-orient: horizontal;
  -webkit-box-align: stretch;
  display: -moz-box;
  -moz-box-orient: horizontal;
  -moz-box-align: stretch;
  display: box;
  box-orient: horizontal;
  box-align: stretch;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
/* line 11014, ../../../blueidea/static/sass/style.scss */
div.output_area .MathJax_Display {
  text-align: left !important;
}
/* line 11018, ../../../blueidea/static/sass/style.scss */
div.output_area .rendered_html table, div.output_area .rendered_html img {
  margin-left: 0;
  margin-right: 0;
}

/* line 11026, ../../../blueidea/static/sass/style.scss */
.output {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-box-align: stretch;
  display: -moz-box;
  -moz-box-orient: vertical;
  -moz-box-align: stretch;
  display: box;
  box-orient: vertical;
  box-align: stretch;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

@media (max-width: 480px) {
  /* line 11042, ../../../blueidea/static/sass/style.scss */
  div.output_area {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-box-align: stretch;
    display: -moz-box;
    -moz-box-orient: vertical;
    -moz-box-align: stretch;
    display: box;
    box-orient: vertical;
    box-align: stretch;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
/* line 11059, ../../../blueidea/static/sass/style.scss */
div.output_area pre {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  color: #000;
  background-color: transparent;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
/* line 11071, ../../../blueidea/static/sass/style.scss */
div.output_subarea {
  padding: .4em .4em 0 .4em;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  flex: 1;
}
/* line 11078, ../../../blueidea/static/sass/style.scss */
div.output_text {
  text-align: left;
  color: #000;
  line-height: 1.21429em;
}
/* line 11083, ../../../blueidea/static/sass/style.scss */
div.output_stderr {
  background: #fdd;
}
/* line 11086, ../../../blueidea/static/sass/style.scss */
div.output_latex {
  text-align: left;
}
/* line 11089, ../../../blueidea/static/sass/style.scss */
div.output_javascript:empty {
  padding: 0;
}

/* line 11094, ../../../blueidea/static/sass/style.scss */
.js-error {
  color: #8b0000;
}

/* line 11098, ../../../blueidea/static/sass/style.scss */
div.raw_input_container {
  font-family: monospace;
  padding-top: 5px;
}

/* line 11105, ../../../blueidea/static/sass/style.scss */
input.raw_input {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  width: auto;
  vertical-align: baseline;
  padding: 0 .25em;
  margin: 0 .25em;
}
/* line 11113, ../../../blueidea/static/sass/style.scss */
input.raw_input:focus {
  box-shadow: none;
}

/* line 11118, ../../../blueidea/static/sass/style.scss */
p.p-space {
  margin-bottom: 10px;
}

/* line 11122, ../../../blueidea/static/sass/style.scss */
.rendered_html {
  color: #000;
}
/* line 11124, ../../../blueidea/static/sass/style.scss */
.rendered_html em {
  font-style: italic;
}
/* line 11127, ../../../blueidea/static/sass/style.scss */
.rendered_html strong {
  font-weight: bold;
}
/* line 11130, ../../../blueidea/static/sass/style.scss */
.rendered_html u, .rendered_html :link, .rendered_html :visited {
  text-decoration: underline;
}
/* line 11133, ../../../blueidea/static/sass/style.scss */
.rendered_html h1 {
  font-size: 185.7%;
  margin: 1.08em 0 0 0;
  font-weight: bold;
  line-height: 1;
}
/* line 11139, ../../../blueidea/static/sass/style.scss */
.rendered_html h2 {
  font-size: 157.1%;
  margin: 1.27em 0 0 0;
  font-weight: bold;
  line-height: 1;
}
/* line 11145, ../../../blueidea/static/sass/style.scss */
.rendered_html h3 {
  font-size: 128.6%;
  margin: 1.55em 0 0 0;
  font-weight: bold;
  line-height: 1;
}
/* line 11151, ../../../blueidea/static/sass/style.scss */
.rendered_html h4 {
  font-size: 100%;
  margin: 2em 0 0 0;
  font-weight: bold;
  line-height: 1;
}
/* line 11157, ../../../blueidea/static/sass/style.scss */
.rendered_html h5, .rendered_html h6 {
  font-size: 100%;
  margin: 2em 0 0 0;
  font-weight: bold;
  line-height: 1;
  font-style: italic;
}
/* line 11164, ../../../blueidea/static/sass/style.scss */
.rendered_html h1:first-child {
  margin-top: .538em;
}
/* line 11167, ../../../blueidea/static/sass/style.scss */
.rendered_html h2:first-child {
  margin-top: .636em;
}
/* line 11170, ../../../blueidea/static/sass/style.scss */
.rendered_html h3:first-child {
  margin-top: .777em;
}
/* line 11173, ../../../blueidea/static/sass/style.scss */
.rendered_html h4:first-child, .rendered_html h5:first-child, .rendered_html h6:first-child {
  margin-top: 1em;
}
/* line 11176, ../../../blueidea/static/sass/style.scss */
.rendered_html ul {
  list-style: disc;
  margin: 0 2em;
}
/* line 11179, ../../../blueidea/static/sass/style.scss */
.rendered_html ul ul {
  list-style: square;
  margin: 0 2em;
}
/* line 11182, ../../../blueidea/static/sass/style.scss */
.rendered_html ul ul ul {
  list-style: circle;
  margin: 0 2em;
}
/* line 11188, ../../../blueidea/static/sass/style.scss */
.rendered_html ol {
  list-style: decimal;
  margin: 0 2em;
}
/* line 11191, ../../../blueidea/static/sass/style.scss */
.rendered_html ol ol {
  list-style: upper-alpha;
  margin: 0 2em;
}
/* line 11194, ../../../blueidea/static/sass/style.scss */
.rendered_html ol ol ol {
  list-style: lower-alpha;
  margin: 0 2em;
}
/* line 11197, ../../../blueidea/static/sass/style.scss */
.rendered_html ol ol ol ol {
  list-style: lower-roman;
  margin: 0 2em;
}
/* line 11200, ../../../blueidea/static/sass/style.scss */
.rendered_html ol ol ol ol ol {
  list-style: decimal;
  margin: 0 2em;
}
/* line 11209, ../../../blueidea/static/sass/style.scss */
.rendered_html * + ul, .rendered_html * + ol {
  margin-top: 1em;
}
/* line 11213, ../../../blueidea/static/sass/style.scss */
.rendered_html hr {
  color: #000;
  background-color: #000;
}
/* line 11217, ../../../blueidea/static/sass/style.scss */
.rendered_html pre {
  margin: 1em 2em;
  border: 0;
  background-color: #fff;
  color: #000;
  font-size: 100%;
  padding: 0;
}
/* line 11225, ../../../blueidea/static/sass/style.scss */
.rendered_html code {
  border: 0;
  background-color: #fff;
  color: #000;
  font-size: 100%;
  padding: 0;
}
/* line 11232, ../../../blueidea/static/sass/style.scss */
.rendered_html blockquote {
  margin: 1em 2em;
}
/* line 11235, ../../../blueidea/static/sass/style.scss */
.rendered_html table {
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #000;
  border-collapse: collapse;
}
/* line 11241, ../../../blueidea/static/sass/style.scss */
.rendered_html tr, .rendered_html th {
  border: 1px solid #000;
  border-collapse: collapse;
  margin: 1em 2em;
}
/* line 11246, ../../../blueidea/static/sass/style.scss */
.rendered_html td {
  border: 1px solid #000;
  border-collapse: collapse;
  margin: 1em 2em;
  text-align: left;
  vertical-align: middle;
  padding: 4px;
}
/* line 11254, ../../../blueidea/static/sass/style.scss */
.rendered_html th {
  text-align: left;
  vertical-align: middle;
  padding: 4px;
  font-weight: bold;
}
/* line 11260, ../../../blueidea/static/sass/style.scss */
.rendered_html * + table {
  margin-top: 1em;
}
/* line 11263, ../../../blueidea/static/sass/style.scss */
.rendered_html p {
  text-align: justify;
}
/* line 11266, ../../../blueidea/static/sass/style.scss */
.rendered_html * + p {
  margin-top: 1em;
}
/* line 11269, ../../../blueidea/static/sass/style.scss */
.rendered_html img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* line 11274, ../../../blueidea/static/sass/style.scss */
.rendered_html * + img {
  margin-top: 1em;
}

/* line 11280, ../../../blueidea/static/sass/style.scss */
div.text_cell {
  padding: 5px 5px 5px 0;
  display: -webkit-box;
  -webkit-box-orient: horizontal;
  -webkit-box-align: stretch;
  display: -moz-box;
  -moz-box-orient: horizontal;
  -moz-box-align: stretch;
  display: box;
  box-orient: horizontal;
  box-align: stretch;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
/* line 11295, ../../../blueidea/static/sass/style.scss */
div.text_cell_render {
  outline: none;
  resize: none;
  width: inherit;
  border-style: none;
  padding: .5em .5em .5em .4em;
  color: #000;
}

@media (max-width: 480px) {
  /* line 11306, ../../../blueidea/static/sass/style.scss */
  div.text_cell > div.prompt {
    display: none;
  }
}
/* line 11311, ../../../blueidea/static/sass/style.scss */
a.anchor-link:link {
  text-decoration: none;
  padding: 0 20px;
  visibility: hidden;
}

/* line 11317, ../../../blueidea/static/sass/style.scss */
h1:hover .anchor-link, h2:hover .anchor-link, h3:hover .anchor-link, h4:hover .anchor-link, h5:hover .anchor-link, h6:hover .anchor-link {
  visibility: visible;
}

/* line 11321, ../../../blueidea/static/sass/style.scss */
div.cell.text_cell.rendered {
  padding: 0;
}

/* line 11325, ../../../blueidea/static/sass/style.scss */
.widget-area {
  page-break-inside: avoid;
  display: -webkit-box;
  -webkit-box-orient: horizontal;
  -webkit-box-align: stretch;
  display: -moz-box;
  -moz-box-orient: horizontal;
  -moz-box-align: stretch;
  display: box;
  box-orient: horizontal;
  box-align: stretch;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
/* line 11339, ../../../blueidea/static/sass/style.scss */
.widget-area .widget-subarea {
  padding: .44em .4em .4em 1px;
  margin-left: 6px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-box-align: stretch;
  display: -moz-box;
  -moz-box-orient: vertical;
  -moz-box-align: stretch;
  display: box;
  box-orient: vertical;
  box-align: stretch;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  box-flex: 2;
  flex: 2;
  -webkit-box-align: start;
  -moz-box-align: start;
  box-align: start;
  align-items: flex-start;
}

/* line 11368, ../../../blueidea/static/sass/style.scss */
.widget-hlabel {
  min-width: 10ex;
  padding-right: 8px;
  padding-top: 3px;
  text-align: right;
  vertical-align: text-top;
}

/* line 11376, ../../../blueidea/static/sass/style.scss */
.widget-vlabel {
  padding-bottom: 5px;
  text-align: center;
  vertical-align: text-bottom;
}

/* line 11382, ../../../blueidea/static/sass/style.scss */
.widget-hreadout {
  padding-left: 8px;
  padding-top: 3px;
  text-align: left;
  vertical-align: text-top;
}

/* line 11389, ../../../blueidea/static/sass/style.scss */
.widget-vreadout {
  padding-top: 5px;
  text-align: center;
  vertical-align: text-top;
}

/* line 11395, ../../../blueidea/static/sass/style.scss */
.slide-track {
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 4px;
}

/* line 11401, ../../../blueidea/static/sass/style.scss */
.widget-hslider {
  padding-left: 8px;
  padding-right: 5px;
  overflow: visible;
  width: 348px;
  height: 5px;
  max-height: 5px;
  margin-top: 11px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 4px;
  display: -webkit-box;
  -webkit-box-orient: horizontal;
  -webkit-box-align: stretch;
  display: -moz-box;
  -moz-box-orient: horizontal;
  -moz-box-align: stretch;
  display: box;
  box-orient: horizontal;
  box-align: stretch;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
/* line 11425, ../../../blueidea/static/sass/style.scss */
.widget-hslider .ui-slider {
  border: 0 !important;
  background: none !important;
  display: -webkit-box;
  -webkit-box-orient: horizontal;
  -webkit-box-align: stretch;
  display: -moz-box;
  -moz-box-orient: horizontal;
  -moz-box-align: stretch;
  display: box;
  box-orient: horizontal;
  box-align: stretch;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  flex: 1;
}
/* line 11444, ../../../blueidea/static/sass/style.scss */
.widget-hslider .ui-slider .ui-slider-handle {
  width: 14px !important;
  height: 28px !important;
  margin-top: -8px !important;
}

/* line 11452, ../../../blueidea/static/sass/style.scss */
.widget-vslider {
  padding-bottom: 8px;
  overflow: visible;
  width: 5px;
  max-width: 5px;
  height: 250px;
  margin-left: 12px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 4px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-box-align: stretch;
  display: -moz-box;
  -moz-box-orient: vertical;
  -moz-box-align: stretch;
  display: box;
  box-orient: vertical;
  box-align: stretch;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
/* line 11474, ../../../blueidea/static/sass/style.scss */
.widget-vslider .ui-slider {
  border: 0 !important;
  background: none !important;
  margin-left: -4px;
  margin-top: 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-box-align: stretch;
  display: -moz-box;
  -moz-box-orient: vertical;
  -moz-box-align: stretch;
  display: box;
  box-orient: vertical;
  box-align: stretch;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  flex: 1;
}
/* line 11495, ../../../blueidea/static/sass/style.scss */
.widget-vslider .ui-slider .ui-slider-handle {
  width: 28px !important;
  height: 14px !important;
  margin-left: -9px;
}

/* line 11503, ../../../blueidea/static/sass/style.scss */
.widget-text {
  width: 350px;
  margin: 0 !important;
}

/* line 11508, ../../../blueidea/static/sass/style.scss */
.widget-listbox {
  width: 364px;
  margin-bottom: 0;
}

/* line 11513, ../../../blueidea/static/sass/style.scss */
.widget-numeric-text {
  width: 150px;
  margin: 0 !important;
}

/* line 11518, ../../../blueidea/static/sass/style.scss */
.widget-progress {
  width: 363px;
}
/* line 11520, ../../../blueidea/static/sass/style.scss */
.widget-progress .bar {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}

/* line 11529, ../../../blueidea/static/sass/style.scss */
.widget-combo-btn {
  min-width: 138px;
}

/* line 11533, ../../../blueidea/static/sass/style.scss */
.widget-box {
  margin: 5px;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  box-pack: start;
  justify-content: flex-start;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-box-align: start;
  -moz-box-align: start;
  box-align: start;
  align-items: flex-start;
}

/* line 11548, ../../../blueidea/static/sass/style.scss */
.widget-hbox {
  margin: 5px;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  box-pack: start;
  justify-content: flex-start;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-box-align: start;
  -moz-box-align: start;
  box-align: start;
  align-items: flex-start;
  display: -webkit-box;
  -webkit-box-orient: horizontal;
  -webkit-box-align: stretch;
  display: -moz-box;
  -moz-box-orient: horizontal;
  -moz-box-align: stretch;
  display: box;
  box-orient: horizontal;
  box-align: stretch;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

/* line 11575, ../../../blueidea/static/sass/style.scss */
.widget-hbox-single {
  margin: 5px;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  box-pack: start;
  justify-content: flex-start;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-box-align: start;
  -moz-box-align: start;
  box-align: start;
  align-items: flex-start;
  display: -webkit-box;
  -webkit-box-orient: horizontal;
  -webkit-box-align: stretch;
  display: -moz-box;
  -moz-box-orient: horizontal;
  -moz-box-align: stretch;
  display: box;
  box-orient: horizontal;
  box-align: stretch;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  height: 30px;
}

/* line 11603, ../../../blueidea/static/sass/style.scss */
.widget-vbox {
  margin: 5px;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  box-pack: start;
  justify-content: flex-start;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-box-align: start;
  -moz-box-align: start;
  box-align: start;
  align-items: flex-start;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-box-align: stretch;
  display: -moz-box;
  -moz-box-orient: vertical;
  -moz-box-align: stretch;
  display: box;
  box-orient: vertical;
  box-align: stretch;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* line 11630, ../../../blueidea/static/sass/style.scss */
.widget-vbox-single {
  margin: 5px;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  box-pack: start;
  justify-content: flex-start;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-box-align: start;
  -moz-box-align: start;
  box-align: start;
  align-items: flex-start;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-box-align: stretch;
  display: -moz-box;
  -moz-box-orient: vertical;
  -moz-box-align: stretch;
  display: box;
  box-orient: vertical;
  box-align: stretch;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 30px;
}

/* line 11658, ../../../blueidea/static/sass/style.scss */
.widget-modal {
  overflow: hidden;
  position: absolute !important;
  top: 0;
  left: 0;
  margin-left: 0 !important;
}

/* line 11666, ../../../blueidea/static/sass/style.scss */
.widget-modal-body {
  max-height: none !important;
}

/* line 11670, ../../../blueidea/static/sass/style.scss */
.widget-container {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-box-align: start;
  -moz-box-align: start;
  box-align: start;
  align-items: flex-start;
}

/* line 11680, ../../../blueidea/static/sass/style.scss */
.widget-radio-box {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-box-align: stretch;
  display: -moz-box;
  -moz-box-orient: vertical;
  -moz-box-align: stretch;
  display: box;
  box-orient: vertical;
  box-align: stretch;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding-top: 4px;
}

/* line 11699, ../../../blueidea/static/sass/style.scss */
.docked-widget-modal {
  overflow: hidden;
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  margin-left: 0 !important;
}

/* line 11707, ../../../blueidea/static/sass/style.scss */
body.notebook_app {
  overflow: hidden;
}

@media (max-width: 767px) {
  /* line 11712, ../../../blueidea/static/sass/style.scss */
  body.notebook_app {
    padding-left: 0;
    padding-right: 0;
  }
}
/* line 11718, ../../../blueidea/static/sass/style.scss */
span#notebook_name {
  height: 1em;
  line-height: 1em;
  padding: 3px;
  border: none;
  font-size: 146.5%;
}

/* line 11727, ../../../blueidea/static/sass/style.scss */
div#notebook_panel {
  margin: 0 0 0 0;
  padding: 0;
  -webkit-box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
}
/* line 11734, ../../../blueidea/static/sass/style.scss */
div#notebook {
  font-size: 14px;
  line-height: 20px;
  overflow-y: scroll;
  overflow-x: auto;
  width: 100%;
  padding: 1em 0 1em 0;
  margin: 0;
  border-top: 1px solid #ababab;
  outline: none;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
/* line 11748, ../../../blueidea/static/sass/style.scss */
div.ui-widget-content {
  border: 1px solid #ababab;
  outline: none;
}

/* line 11754, ../../../blueidea/static/sass/style.scss */
pre.dialog {
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: .4em;
  padding-left: 2em;
}

/* line 11762, ../../../blueidea/static/sass/style.scss */
p.dialog {
  padding: .2em;
}

/* line 11766, ../../../blueidea/static/sass/style.scss */
pre, code, kbd, samp {
  white-space: pre-wrap;
}

/* line 11770, ../../../blueidea/static/sass/style.scss */
#fonttest {
  font-family: monospace;
}

/* line 11774, ../../../blueidea/static/sass/style.scss */
p {
  margin-bottom: 0;
  text-align: justify;
}

/* line 11779, ../../../blueidea/static/sass/style.scss */
.end_space {
  height: 200px;
}

/* line 11783, ../../../blueidea/static/sass/style.scss */
.celltoolbar {
  border: thin solid #cfcfcf;
  border-bottom: none;
  background: #eee;
  border-radius: 3px 3px 0 0;
  width: 100%;
  -webkit-box-pack: end;
  height: 22px;
  display: -webkit-box;
  -webkit-box-orient: horizontal;
  -webkit-box-align: stretch;
  display: -moz-box;
  -moz-box-orient: horizontal;
  -moz-box-align: stretch;
  display: box;
  box-orient: horizontal;
  box-align: stretch;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  -webkit-box-direction: reverse;
  -moz-box-direction: reverse;
  box-direction: reverse;
  flex-direction: row-reverse;
}

/* line 11809, ../../../blueidea/static/sass/style.scss */
.ctb_hideshow {
  display: none;
  vertical-align: bottom;
  padding-right: 2px;
}

/* line 11815, ../../../blueidea/static/sass/style.scss */
.celltoolbar > div {
  padding-top: 0;
}

/* line 11820, ../../../blueidea/static/sass/style.scss */
.ctb_global_show .ctb_show.ctb_hideshow {
  display: block;
}
/* line 11824, ../../../blueidea/static/sass/style.scss */
.ctb_global_show .ctb_show + .input_area, .ctb_global_show .ctb_show + div.text_cell_input {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 11832, ../../../blueidea/static/sass/style.scss */
.celltoolbar .button_container select {
  margin: 10px;
  margin-top: 1px;
  margin-bottom: 0;
  padding: 0;
  font-size: 87%;
  width: auto;
  display: inline-block;
  height: 18px;
  line-height: 18px;
  vertical-align: top;
}
/* line 11844, ../../../blueidea/static/sass/style.scss */
.celltoolbar label {
  display: inline-block;
  height: 15px;
  line-height: 15px;
  vertical-align: top;
}
/* line 11849, ../../../blueidea/static/sass/style.scss */
.celltoolbar label span {
  font-size: 85%;
}
/* line 11853, ../../../blueidea/static/sass/style.scss */
.celltoolbar input[type=checkbox] {
  margin: 0;
  margin-left: 4px;
  margin-right: 4px;
}
/* line 11858, ../../../blueidea/static/sass/style.scss */
.celltoolbar .ui-button {
  border: none;
  vertical-align: top;
  height: 20px;
  min-width: 30px;
}

/* line 11866, ../../../blueidea/static/sass/style.scss */
.completions {
  position: absolute;
  z-index: 10;
  overflow: hidden;
  border: 1px solid #ababab;
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 10px -1px #adadad;
  -moz-box-shadow: 0 6px 10px -1px #adadad;
  box-shadow: 0 6px 10px -1px #adadad;
}
/* line 11875, ../../../blueidea/static/sass/style.scss */
.completions select {
  background: #fff;
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
  overflow: auto;
  font-family: monospace;
  font-size: 110%;
  color: #000;
  width: auto;
}
/* line 11886, ../../../blueidea/static/sass/style.scss */
.completions select option.context {
  color: #0064cd;
}

/* line 11893, ../../../blueidea/static/sass/style.scss */
#menubar .navbar-inner {
  min-height: 28px;
  border-top: 1px;
  border-radius: 0 0 4px 4px;
}
/* line 11898, ../../../blueidea/static/sass/style.scss */
#menubar .navbar {
  margin-bottom: 8px;
}

/* line 11903, ../../../blueidea/static/sass/style.scss */
.nav-wrapper {
  border-bottom: 1px solid #d4d4d4;
}

/* line 11907, ../../../blueidea/static/sass/style.scss */
#menubar li.dropdown {
  line-height: 12px;
}

/* line 11911, ../../../blueidea/static/sass/style.scss */
i.menu-icon {
  padding-top: 4px;
}

/* line 11915, ../../../blueidea/static/sass/style.scss */
ul#help_menu li a {
  overflow: hidden;
  padding-right: 2.2em;
}
/* line 11918, ../../../blueidea/static/sass/style.scss */
ul#help_menu li a i {
  margin-right: -1.2em;
}

/* line 11923, ../../../blueidea/static/sass/style.scss */
#notification_area {
  z-index: 10;
}

/* line 11927, ../../../blueidea/static/sass/style.scss */
.indicator_area {
  color: #777;
  padding: 4px 3px;
  margin: 0;
  width: 11px;
  z-index: 10;
  text-align: center;
}

/* line 11936, ../../../blueidea/static/sass/style.scss */
#kernel_indicator {
  margin-right: -16px;
}

/* line 11940, ../../../blueidea/static/sass/style.scss */
.edit_mode_icon:before {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  *margin-right: .3em;
  content: "\f040";
}

/* line 11950, ../../../blueidea/static/sass/style.scss */
.command_mode_icon:before {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  *margin-right: .3em;
  content: ' ';
}

/* line 11960, ../../../blueidea/static/sass/style.scss */
.kernel_idle_icon:before {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  *margin-right: .3em;
  content: "\f10c";
}

/* line 11970, ../../../blueidea/static/sass/style.scss */
.kernel_busy_icon:before {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  *margin-right: .3em;
  content: "\f111";
}

/* line 11980, ../../../blueidea/static/sass/style.scss */
.notification_widget {
  color: #777;
  padding: 1px 12px;
  margin: 2px 4px;
  z-index: 10;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: rgba(240, 240, 240, 0.5);
}
/* line 11988, ../../../blueidea/static/sass/style.scss */
.notification_widget.span {
  padding-right: 2px;
}

/* line 11993, ../../../blueidea/static/sass/style.scss */
div#pager_splitter {
  height: 8px;
}

/* line 11997, ../../../blueidea/static/sass/style.scss */
#pager-container {
  position: relative;
  padding: 15px 0;
}

/* line 12002, ../../../blueidea/static/sass/style.scss */
div#pager {
  font-size: 14px;
  line-height: 20px;
  overflow: auto;
  display: none;
}
/* line 12007, ../../../blueidea/static/sass/style.scss */
div#pager pre {
  line-height: 1.21429em;
  color: #000;
  background-color: #f7f7f7;
  padding: .4em;
}

/* line 12015, ../../../blueidea/static/sass/style.scss */
.quickhelp {
  display: -webkit-box;
  -webkit-box-orient: horizontal;
  -webkit-box-align: stretch;
  display: -moz-box;
  -moz-box-orient: horizontal;
  -moz-box-align: stretch;
  display: box;
  box-orient: horizontal;
  box-align: stretch;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

/* line 12030, ../../../blueidea/static/sass/style.scss */
.shortcut_key {
  display: inline-block;
  width: 20ex;
  text-align: right;
  font-family: monospace;
}

/* line 12037, ../../../blueidea/static/sass/style.scss */
.shortcut_descr {
  display: inline-block;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  flex: 1;
}

/* line 12046, ../../../blueidea/static/sass/style.scss */
span#save_widget {
  padding: 0 5px;
  margin-top: 12px;
}
/* line 12050, ../../../blueidea/static/sass/style.scss */
span#checkpoint_status, span#autosave_status {
  font-size: small;
}

@media (max-width: 767px) {
  /* line 12057, ../../../blueidea/static/sass/style.scss */
  span#save_widget {
    font-size: small;
  }
  /* line 12060, ../../../blueidea/static/sass/style.scss */
  span#checkpoint_status, span#autosave_status {
    font-size: x-small;
  }
}
@media (max-width: 767px) {
  /* line 12068, ../../../blueidea/static/sass/style.scss */
  span#checkpoint_status, span#autosave_status {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  /* line 12076, ../../../blueidea/static/sass/style.scss */
  span#checkpoint_status {
    display: none;
  }
  /* line 12079, ../../../blueidea/static/sass/style.scss */
  span#autosave_status {
    font-size: x-small;
  }
}
/* line 12085, ../../../blueidea/static/sass/style.scss */
.toolbar {
  padding: 0 10px;
  margin-top: -5px;
}
/* line 12088, ../../../blueidea/static/sass/style.scss */
.toolbar select, .toolbar label {
  width: auto;
  height: 26px;
  vertical-align: middle;
  margin-right: 2px;
  margin-bottom: 0;
  display: inline;
  font-size: 92%;
  margin-left: .3em;
  margin-right: .3em;
  padding: 0;
  padding-top: 3px;
}
/* line 12101, ../../../blueidea/static/sass/style.scss */
.toolbar .btn {
  padding: 2px 8px;
}
/* line 12104, ../../../blueidea/static/sass/style.scss */
.toolbar .btn-group {
  margin-top: 0;
}

/* line 12109, ../../../blueidea/static/sass/style.scss */
.toolbar-inner {
  border: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}

/* line 12116, ../../../blueidea/static/sass/style.scss */
#maintoolbar {
  margin-bottom: 0;
}

@-moz-keyframes fadeOut {
  /* line 12121, ../../../blueidea/static/sass/style.scss */
  from {
    opacity: 1;
  }

  /* line 12124, ../../../blueidea/static/sass/style.scss */
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOut {
  /* line 12131, ../../../blueidea/static/sass/style.scss */
  from {
    opacity: 1;
  }

  /* line 12134, ../../../blueidea/static/sass/style.scss */
  to {
    opacity: 0;
  }
}
@-moz-keyframes fadeIn {
  /* line 12141, ../../../blueidea/static/sass/style.scss */
  from {
    opacity: 0;
  }

  /* line 12144, ../../../blueidea/static/sass/style.scss */
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  /* line 12151, ../../../blueidea/static/sass/style.scss */
  from {
    opacity: 0;
  }

  /* line 12154, ../../../blueidea/static/sass/style.scss */
  to {
    opacity: 1;
  }
}
/* line 12160, ../../../blueidea/static/sass/style.scss */
.bigtooltip {
  overflow: auto;
  height: 200px;
  -webkit-transition-property: height;
  -webkit-transition-duration: 500ms;
  -moz-transition-property: height;
  -moz-transition-duration: 500ms;
  transition-property: height;
  transition-duration: 500ms;
}

/* line 12171, ../../../blueidea/static/sass/style.scss */
.smalltooltip {
  -webkit-transition-property: height;
  -webkit-transition-duration: 500ms;
  -moz-transition-property: height;
  -moz-transition-duration: 500ms;
  transition-property: height;
  transition-duration: 500ms;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 80px;
}

/* line 12183, ../../../blueidea/static/sass/style.scss */
.tooltipbuttons {
  position: absolute;
  padding-right: 15px;
  top: 0;
  right: 0;
}

/* line 12190, ../../../blueidea/static/sass/style.scss */
.tooltiptext {
  padding-right: 30px;
}

/* line 12194, ../../../blueidea/static/sass/style.scss */
.ipython_tooltip {
  max-width: 700px;
  -webkit-animation: fadeOut 400ms;
  -moz-animation: fadeOut 400ms;
  animation: fadeOut 400ms;
  -webkit-animation: fadeIn 400ms;
  -moz-animation: fadeIn 400ms;
  animation: fadeIn 400ms;
  vertical-align: middle;
  background-color: #f7f7f7;
  overflow: visible;
  border: #ababab 1px solid;
  outline: none;
  padding: 3px;
  margin: 0;
  padding-left: 7px;
  font-family: monospace;
  min-height: 50px;
  -moz-box-shadow: 0 6px 10px -1px #adadad;
  -webkit-box-shadow: 0 6px 10px -1px #adadad;
  box-shadow: 0 6px 10px -1px #adadad;
  border-radius: 4px;
  position: absolute;
  z-index: 2;
}
/* line 12218, ../../../blueidea/static/sass/style.scss */
.ipython_tooltip a {
  float: right;
}
/* line 12221, ../../../blueidea/static/sass/style.scss */
.ipython_tooltip .tooltiptext pre {
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  font-size: 100%;
  background-color: #f7f7f7;
}

/* line 12231, ../../../blueidea/static/sass/style.scss */
.pretooltiparrow {
  left: 0;
  margin: 0;
  top: -16px;
  width: 40px;
  height: 16px;
  overflow: hidden;
  position: absolute;
}
/* line 12239, ../../../blueidea/static/sass/style.scss */
.pretooltiparrow:before {
  background-color: #f7f7f7;
  border: 1px #ababab solid;
  z-index: 11;
  content: "";
  position: absolute;
  left: 15px;
  top: 10px;
  width: 25px;
  height: 25px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

/* line 12256, ../../../blueidea/static/sass/style.scss */
.highlight {
  background: #f8f8f8;
}
/* line 12257, ../../../blueidea/static/sass/style.scss */
.highlight .hll {
  background-color: #ffffcc;
}
/* line 12261, ../../../blueidea/static/sass/style.scss */
.highlight .c {
  color: #408080;
  font-style: italic;
}
/* line 12265, ../../../blueidea/static/sass/style.scss */
.highlight .err {
  border: 1px solid #FF0000;
}
/* line 12268, ../../../blueidea/static/sass/style.scss */
.highlight .k {
  color: #008000;
  font-weight: bold;
}
/* line 12272, ../../../blueidea/static/sass/style.scss */
.highlight .o {
  color: #666666;
}
/* line 12275, ../../../blueidea/static/sass/style.scss */
.highlight .cm {
  color: #408080;
  font-style: italic;
}
/* line 12279, ../../../blueidea/static/sass/style.scss */
.highlight .cp {
  color: #BC7A00;
}
/* line 12282, ../../../blueidea/static/sass/style.scss */
.highlight .c1, .highlight .cs {
  color: #408080;
  font-style: italic;
}
/* line 12286, ../../../blueidea/static/sass/style.scss */
.highlight .gd {
  color: #A00000;
}
/* line 12289, ../../../blueidea/static/sass/style.scss */
.highlight .ge {
  font-style: italic;
}
/* line 12292, ../../../blueidea/static/sass/style.scss */
.highlight .gr {
  color: #FF0000;
}
/* line 12295, ../../../blueidea/static/sass/style.scss */
.highlight .gh {
  color: #000080;
  font-weight: bold;
}
/* line 12299, ../../../blueidea/static/sass/style.scss */
.highlight .gi {
  color: #00A000;
}
/* line 12302, ../../../blueidea/static/sass/style.scss */
.highlight .go {
  color: #888888;
}
/* line 12305, ../../../blueidea/static/sass/style.scss */
.highlight .gp {
  color: #000080;
  font-weight: bold;
}
/* line 12309, ../../../blueidea/static/sass/style.scss */
.highlight .gs {
  font-weight: bold;
}
/* line 12312, ../../../blueidea/static/sass/style.scss */
.highlight .gu {
  color: #800080;
  font-weight: bold;
}
/* line 12316, ../../../blueidea/static/sass/style.scss */
.highlight .gt {
  color: #0044DD;
}
/* line 12319, ../../../blueidea/static/sass/style.scss */
.highlight .kc, .highlight .kd, .highlight .kn {
  color: #008000;
  font-weight: bold;
}
/* line 12323, ../../../blueidea/static/sass/style.scss */
.highlight .kp {
  color: #008000;
}
/* line 12326, ../../../blueidea/static/sass/style.scss */
.highlight .kr {
  color: #008000;
  font-weight: bold;
}
/* line 12330, ../../../blueidea/static/sass/style.scss */
.highlight .kt {
  color: #B00040;
}
/* line 12333, ../../../blueidea/static/sass/style.scss */
.highlight .m {
  color: #666666;
}
/* line 12336, ../../../blueidea/static/sass/style.scss */
.highlight .s {
  color: #BA2121;
}
/* line 12339, ../../../blueidea/static/sass/style.scss */
.highlight .na {
  color: #7D9029;
}
/* line 12342, ../../../blueidea/static/sass/style.scss */
.highlight .nb {
  color: #008000;
}
/* line 12345, ../../../blueidea/static/sass/style.scss */
.highlight .nc {
  color: #0000FF;
  font-weight: bold;
}
/* line 12349, ../../../blueidea/static/sass/style.scss */
.highlight .no {
  color: #880000;
}
/* line 12352, ../../../blueidea/static/sass/style.scss */
.highlight .nd {
  color: #AA22FF;
}
/* line 12355, ../../../blueidea/static/sass/style.scss */
.highlight .ni {
  color: #999999;
  font-weight: bold;
}
/* line 12359, ../../../blueidea/static/sass/style.scss */
.highlight .ne {
  color: #D2413A;
  font-weight: bold;
}
/* line 12363, ../../../blueidea/static/sass/style.scss */
.highlight .nf {
  color: #0000FF;
}
/* line 12366, ../../../blueidea/static/sass/style.scss */
.highlight .nl {
  color: #A0A000;
}
/* line 12369, ../../../blueidea/static/sass/style.scss */
.highlight .nn {
  color: #0000FF;
  font-weight: bold;
}
/* line 12373, ../../../blueidea/static/sass/style.scss */
.highlight .nt {
  color: #008000;
  font-weight: bold;
}
/* line 12377, ../../../blueidea/static/sass/style.scss */
.highlight .nv {
  color: #19177C;
}
/* line 12380, ../../../blueidea/static/sass/style.scss */
.highlight .ow {
  color: #AA22FF;
  font-weight: bold;
}
/* line 12384, ../../../blueidea/static/sass/style.scss */
.highlight .w {
  color: #bbbbbb;
}
/* line 12387, ../../../blueidea/static/sass/style.scss */
.highlight .mf, .highlight .mh, .highlight .mi, .highlight .mo {
  color: #666666;
}
/* line 12390, ../../../blueidea/static/sass/style.scss */
.highlight .sb, .highlight .sc {
  color: #BA2121;
}
/* line 12393, ../../../blueidea/static/sass/style.scss */
.highlight .sd {
  color: #BA2121;
  font-style: italic;
}
/* line 12397, ../../../blueidea/static/sass/style.scss */
.highlight .s2 {
  color: #BA2121;
}
/* line 12400, ../../../blueidea/static/sass/style.scss */
.highlight .se {
  color: #BB6622;
  font-weight: bold;
}
/* line 12404, ../../../blueidea/static/sass/style.scss */
.highlight .sh {
  color: #BA2121;
}
/* line 12407, ../../../blueidea/static/sass/style.scss */
.highlight .si {
  color: #BB6688;
  font-weight: bold;
}
/* line 12411, ../../../blueidea/static/sass/style.scss */
.highlight .sx {
  color: #008000;
}
/* line 12414, ../../../blueidea/static/sass/style.scss */
.highlight .sr {
  color: #BB6688;
}
/* line 12417, ../../../blueidea/static/sass/style.scss */
.highlight .s1 {
  color: #BA2121;
}
/* line 12420, ../../../blueidea/static/sass/style.scss */
.highlight .ss {
  color: #19177C;
}
/* line 12423, ../../../blueidea/static/sass/style.scss */
.highlight .bp {
  color: #008000;
}
/* line 12426, ../../../blueidea/static/sass/style.scss */
.highlight .vc, .highlight .vg, .highlight .vi {
  color: #19177C;
}
/* line 12429, ../../../blueidea/static/sass/style.scss */
.highlight .il {
  color: #666666;
}

/* Comment */
/* Error */
/* Keyword */
/* Operator */
/* Comment.Multiline */
/* Comment.Preproc */
/* Comment.Single */
/* Comment.Special */
/* Generic.Deleted */
/* Generic.Emph */
/* Generic.Error */
/* Generic.Heading */
/* Generic.Inserted */
/* Generic.Output */
/* Generic.Prompt */
/* Generic.Strong */
/* Generic.Subheading */
/* Generic.Traceback */
/* Keyword.Constant */
/* Keyword.Declaration */
/* Keyword.Namespace */
/* Keyword.Pseudo */
/* Keyword.Reserved */
/* Keyword.Type */
/* Literal.Number */
/* Literal.String */
/* Name.Attribute */
/* Name.Builtin */
/* Name.Class */
/* Name.Constant */
/* Name.Decorator */
/* Name.Entity */
/* Name.Exception */
/* Name.Function */
/* Name.Label */
/* Name.Namespace */
/* Name.Tag */
/* Name.Variable */
/* Operator.Word */
/* Text.Whitespace */
/* Literal.Number.Float */
/* Literal.Number.Hex */
/* Literal.Number.Integer */
/* Literal.Number.Oct */
/* Literal.String.Backtick */
/* Literal.String.Char */
/* Literal.String.Doc */
/* Literal.String.Double */
/* Literal.String.Escape */
/* Literal.String.Heredoc */
/* Literal.String.Interpol */
/* Literal.String.Other */
/* Literal.String.Regex */
/* Literal.String.Single */
/* Literal.String.Symbol */
/* Name.Builtin.Pseudo */
/* Name.Variable.Class */
/* Name.Variable.Global */
/* Name.Variable.Instance */
/* Literal.Number.Integer.Long */
/* Overrides of notebook CSS for static HTML export */
/* line 12497, ../../../blueidea/static/sass/style.scss */
div.entry-content {
  overflow: visible;
  padding: 8px;
}

/* line 12502, ../../../blueidea/static/sass/style.scss */
.input_area {
  padding: 0.2em;
}

/* line 12506, ../../../blueidea/static/sass/style.scss */
a.heading-anchor {
  white-space: normal;
}

/* line 12510, ../../../blueidea/static/sass/style.scss */
.rendered_html code {
  font-size: .8em;
}

/* line 12514, ../../../blueidea/static/sass/style.scss */
pre.ipynb {
  color: black;
  background: #f7f7f7;
  border: none;
  box-shadow: none;
  margin-bottom: 0;
  padding: 0;
  margin: 0px;
  font-size: 13px;
}

/* remove the prompt div from text cells */
/* line 12528, ../../../blueidea/static/sass/style.scss */
div.text_cell .prompt {
  display: none;
}
/* line 12531, ../../../blueidea/static/sass/style.scss */
div.text_cell_render {
  padding: 0.5em 0em;
}

/* remove horizontal padding from text cells, */
/* so it aligns with outer body text */
/* line 12539, ../../../blueidea/static/sass/style.scss */
img.anim_icon {
  padding: 0;
  border: 0;
  vertical-align: middle;
  -webkit-box-shadow: none;
  -box-shadow: none;
}

/* line 12547, ../../../blueidea/static/sass/style.scss */
div.collapseheader {
  width: 100%;
  background-color: #d3d3d3;
  padding: 2px;
  cursor: pointer;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

/* line 12555, ../../../blueidea/static/sass/style.scss */
.read-more {
  float: right;
}
