.tr-ng-grid .tr-ng-grid-footer .pagination{margin:0}.tr-ng-grid>thead>tr>th{text-align:center;vertical-align:top}.tr-ng-grid>thead>tr>th,.tr-ng-grid>tbody>tr>td,.tr-ng-grid>thead>tr>th>.tr-ng-cell,.tr-ng-grid>tbody>tr>td>.tr-ng-cell{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.tr-ng-grid>tbody>tr>td>.tr-ng-cell{overflow:visible}.tr-ng-grid .tr-ng-sort{cursor:pointer;position:absolute;top:0;left:0;width:100%;height:100%}.tr-ng-grid .tr-ng-sort .tr-ng-sort-active,.tr-ng-grid .tr-ng-sort .tr-ng-sort-inactive{position:absolute;top:1px;right:1px;width:.8em;height:.8em}.tr-ng-grid .tr-ng-column-header .tr-ng-title{padding-top:.8em;position:relative}.tr-ng-grid .tr-ng-column-header .tr-ng-column-filter{margin-top:.5em;margin-bottom:.1em}@media screen\0{.tr-ng-grid .tr-ng-sort{background:#fff;filter:alpha(opacity=1)}}
/***
Spectrum Colorpicker v1.7.0
https://github.com/bgrins/spectrum
Author: Brian Grinstead
License: MIT
***/

.sp-container {
    position:absolute;
    top:0;
    left:0;
    display:inline-block;
    *display: inline;
    *zoom: 1;
    /* https://github.com/bgrins/spectrum/issues/40 */
    z-index: 9999994;
    overflow: hidden;
}
.sp-container.sp-flat {
    position: relative;
}

/* Fix for * { box-sizing: border-box; } */
.sp-container,
.sp-container * {
    -webkit-box-sizing: content-box;
       -moz-box-sizing: content-box;
            box-sizing: content-box;
}

/* http://ansciath.tumblr.com/post/7347495869/css-aspect-ratio */
.sp-top {
  position:relative;
  width: 100%;
  display:inline-block;
}
.sp-top-inner {
   position:absolute;
   top:0;
   left:0;
   bottom:0;
   right:0;
}
.sp-color {
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:20%;
}
.sp-hue {
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    left:84%;
    height: 100%;
}

.sp-clear-enabled .sp-hue {
    top:33px;
    height: 77.5%;
}

.sp-fill {
    padding-top: 80%;
}
.sp-sat, .sp-val {
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
}

.sp-alpha-enabled .sp-top {
    margin-bottom: 18px;
}
.sp-alpha-enabled .sp-alpha {
    display: block;
}
.sp-alpha-handle {
    position:absolute;
    top:-4px;
    bottom: -4px;
    width: 6px;
    left: 50%;
    cursor: pointer;
    border: 1px solid black;
    background: white;
    opacity: .8;
}
.sp-alpha {
    display: none;
    position: absolute;
    bottom: -14px;
    right: 0;
    left: 0;
    height: 8px;
}
.sp-alpha-inner {
    border: solid 1px #333;
}

.sp-clear {
    display: none;
}

.sp-clear.sp-clear-display {
    background-position: center;
}

.sp-clear-enabled .sp-clear {
    display: block;
    position:absolute;
    top:0px;
    right:0;
    bottom:0;
    left:84%;
    height: 28px;
}

/* Don't allow text selection */
.sp-container, .sp-replacer, .sp-preview, .sp-dragger, .sp-slider, .sp-alpha, .sp-clear, .sp-alpha-handle, .sp-container.sp-dragging .sp-input, .sp-container button  {
    -webkit-user-select:none;
    -moz-user-select: -moz-none;
    -o-user-select:none;
    user-select: none;
}

.sp-container.sp-input-disabled .sp-input-container {
    display: none;
}
.sp-container.sp-buttons-disabled .sp-button-container {
    display: none;
}
.sp-container.sp-palette-buttons-disabled .sp-palette-button-container {
    display: none;
}
.sp-palette-only .sp-picker-container {
    display: none;
}
.sp-palette-disabled .sp-palette-container {
    display: none;
}

.sp-initial-disabled .sp-initial {
    display: none;
}


/* Gradients for hue, saturation and value instead of images.  Not pretty... but it works */
.sp-sat {
    background-image: -webkit-gradient(linear,  0 0, 100% 0, from(#FFF), to(rgba(204, 154, 129, 0)));
    background-image: -webkit-linear-gradient(left, #FFF, rgba(204, 154, 129, 0));
    background-image: -moz-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
    background-image: -o-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
    background-image: -ms-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
    background-image: linear-gradient(to right, #fff, rgba(204, 154, 129, 0));
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr=#FFFFFFFF, endColorstr=#00CC9A81)";
    filter : progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr='#FFFFFFFF', endColorstr='#00CC9A81');
}
.sp-val {
    background-image: -webkit-gradient(linear, 0 100%, 0 0, from(#000000), to(rgba(204, 154, 129, 0)));
    background-image: -webkit-linear-gradient(bottom, #000000, rgba(204, 154, 129, 0));
    background-image: -moz-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
    background-image: -o-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
    background-image: -ms-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
    background-image: linear-gradient(to top, #000, rgba(204, 154, 129, 0));
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00CC9A81, endColorstr=#FF000000)";
    filter : progid:DXImageTransform.Microsoft.gradient(startColorstr='#00CC9A81', endColorstr='#FF000000');
}

.sp-hue {
    background: -moz-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
    background: -ms-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
    background: -o-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#ff0000), color-stop(0.17, #ffff00), color-stop(0.33, #00ff00), color-stop(0.5, #00ffff), color-stop(0.67, #0000ff), color-stop(0.83, #ff00ff), to(#ff0000));
    background: -webkit-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
    background: linear-gradient(to bottom, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
}

/* IE filters do not support multiple color stops.
   Generate 6 divs, line them up, and do two color gradients for each.
   Yes, really.
 */
.sp-1 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0000', endColorstr='#ffff00');
}
.sp-2 {
    height:16%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff00', endColorstr='#00ff00');
}
.sp-3 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ff00', endColorstr='#00ffff');
}
.sp-4 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffff', endColorstr='#0000ff');
}
.sp-5 {
    height:16%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0000ff', endColorstr='#ff00ff');
}
.sp-6 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff00ff', endColorstr='#ff0000');
}

.sp-hidden {
    display: none !important;
}

/* Clearfix hack */
.sp-cf:before, .sp-cf:after { content: ""; display: table; }
.sp-cf:after { clear: both; }
.sp-cf { *zoom: 1; }

/* Mobile devices, make hue slider bigger so it is easier to slide */
@media (max-device-width: 480px) {
    .sp-color { right: 40%; }
    .sp-hue { left: 63%; }
    .sp-fill { padding-top: 60%; }
}
.sp-dragger {
   border-radius: 5px;
   height: 5px;
   width: 5px;
   border: 1px solid #fff;
   background: #000;
   cursor: pointer;
   position:absolute;
   top:0;
   left: 0;
}
.sp-slider {
    position: absolute;
    top:0;
    cursor:pointer;
    height: 3px;
    left: -1px;
    right: -1px;
    border: 1px solid #000;
    background: white;
    opacity: .8;
}

/*
Theme authors:
Here are the basic themeable display options (colors, fonts, global widths).
See http://bgrins.github.io/spectrum/themes/ for instructions.
*/

.sp-container {
    border-radius: 0;
    background-color: #ECECEC;
    border: solid 1px #f0c49B;
    padding: 0;
}
.sp-container, .sp-container button, .sp-container input, .sp-color, .sp-hue, .sp-clear {
    font: normal 12px "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.sp-top {
    margin-bottom: 3px;
}
.sp-color, .sp-hue, .sp-clear {
    border: solid 1px #666;
}

/* Input */
.sp-input-container {
    float:right;
    width: 100px;
    margin-bottom: 4px;
}
.sp-initial-disabled  .sp-input-container {
    width: 100%;
}
.sp-input {
   font-size: 12px !important;
   border: 1px inset;
   padding: 4px 5px;
   margin: 0;
   width: 100%;
   background:transparent;
   border-radius: 3px;
   color: #222;
}
.sp-input:focus  {
    border: 1px solid orange;
}
.sp-input.sp-validation-error {
    border: 1px solid red;
    background: #fdd;
}
.sp-picker-container , .sp-palette-container {
    float:left;
    position: relative;
    padding: 10px;
    padding-bottom: 300px;
    margin-bottom: -290px;
}
.sp-picker-container {
    width: 172px;
    border-left: solid 1px #fff;
}

/* Palettes */
.sp-palette-container {
    border-right: solid 1px #ccc;
}

.sp-palette-only .sp-palette-container {
    border: 0;
}

.sp-palette .sp-thumb-el {
    display: block;
    position:relative;
    float:left;
    width: 24px;
    height: 15px;
    margin: 3px;
    cursor: pointer;
    border:solid 2px transparent;
}
.sp-palette .sp-thumb-el:hover, .sp-palette .sp-thumb-el.sp-thumb-active {
    border-color: orange;
}
.sp-thumb-el {
    position:relative;
}

/* Initial */
.sp-initial {
    float: left;
    border: solid 1px #333;
}
.sp-initial span {
    width: 30px;
    height: 25px;
    border:none;
    display:block;
    float:left;
    margin:0;
}

.sp-initial .sp-clear-display {
    background-position: center;
}

/* Buttons */
.sp-palette-button-container,
.sp-button-container {
    float: right;
}

/* Replacer (the little preview div that shows up instead of the <input>) */
.sp-replacer {
    margin:0;
    overflow:hidden;
    cursor:pointer;
    padding: 4px;
    display:inline-block;
    *zoom: 1;
    *display: inline;
    border: solid 1px #91765d;
    background: #eee;
    color: #333;
    vertical-align: middle;
}
.sp-replacer:hover, .sp-replacer.sp-active {
    border-color: #F0C49B;
    color: #111;
}
.sp-replacer.sp-disabled {
    cursor:default;
    border-color: silver;
    color: silver;
}
.sp-dd {
    padding: 2px 0;
    height: 16px;
    line-height: 16px;
    float:left;
    font-size:10px;
}
.sp-preview {
    position:relative;
    width:25px;
    height: 20px;
    border: solid 1px #222;
    margin-right: 5px;
    float:left;
    z-index: 0;
}

.sp-palette {
    *width: 220px;
    max-width: 220px;
}
.sp-palette .sp-thumb-el {
    width:16px;
    height: 16px;
    margin:2px 1px;
    border: solid 1px #d0d0d0;
}

.sp-container {
    padding-bottom:0;
}


/* Buttons: http://hellohappy.org/css3-buttons/ */
.sp-container button {
  background-color: #eeeeee;
  background-image: -webkit-linear-gradient(top, #eeeeee, #cccccc);
  background-image: -moz-linear-gradient(top, #eeeeee, #cccccc);
  background-image: -ms-linear-gradient(top, #eeeeee, #cccccc);
  background-image: -o-linear-gradient(top, #eeeeee, #cccccc);
  background-image: linear-gradient(to bottom, #eeeeee, #cccccc);
  border: 1px solid #ccc;
  border-bottom: 1px solid #bbb;
  border-radius: 3px;
  color: #333;
  font-size: 14px;
  line-height: 1;
  padding: 5px 4px;
  text-align: center;
  text-shadow: 0 1px 0 #eee;
  vertical-align: middle;
}
.sp-container button:hover {
    background-color: #dddddd;
    background-image: -webkit-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: -moz-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: -ms-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: -o-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: linear-gradient(to bottom, #dddddd, #bbbbbb);
    border: 1px solid #bbb;
    border-bottom: 1px solid #999;
    cursor: pointer;
    text-shadow: 0 1px 0 #ddd;
}
.sp-container button:active {
    border: 1px solid #aaa;
    border-bottom: 1px solid #888;
    -webkit-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    -moz-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    -ms-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    -o-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
}
.sp-cancel {
    font-size: 11px;
    color: #d93f3f !important;
    margin:0;
    padding:2px;
    margin-right: 5px;
    vertical-align: middle;
    text-decoration:none;

}
.sp-cancel:hover {
    color: #d93f3f !important;
    text-decoration: underline;
}


.sp-palette span:hover, .sp-palette span.sp-thumb-active {
    border-color: #000;
}

.sp-preview, .sp-alpha, .sp-thumb-el {
    position:relative;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);
}
.sp-preview-inner, .sp-alpha-inner, .sp-thumb-inner {
    display:block;
    position:absolute;
    top:0;left:0;bottom:0;right:0;
}

.sp-palette .sp-thumb-inner {
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.sp-palette .sp-thumb-light.sp-thumb-active .sp-thumb-inner {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIVJREFUeNpiYBhsgJFMffxAXABlN5JruT4Q3wfi/0DsT64h8UD8HmpIPCWG/KemIfOJCUB+Aoacx6EGBZyHBqI+WsDCwuQ9mhxeg2A210Ntfo8klk9sOMijaURm7yc1UP2RNCMbKE9ODK1HM6iegYLkfx8pligC9lCD7KmRof0ZhjQACDAAceovrtpVBRkAAAAASUVORK5CYII=);
}

.sp-palette .sp-thumb-dark.sp-thumb-active .sp-thumb-inner {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAAAMdJREFUOE+tkgsNwzAMRMugEAahEAahEAZhEAqlEAZhEAohEAYh81X2dIm8fKpEspLGvudPOsUYpxE2BIJCroJmEW9qJ+MKaBFhEMNabSy9oIcIPwrB+afvAUFoK4H0tMaQ3XtlrggDhOVVMuT4E5MMG0FBbCEYzjYT7OxLEvIHQLY2zWwQ3D+9luyOQTfKDiFD3iUIfPk8VqrKjgAiSfGFPecrg6HN6m/iBcwiDAo7WiBeawa+Kwh7tZoSCGLMqwlSAzVDhoK+6vH4G0P5wdkAAAAASUVORK5CYII=);
}

.sp-clear-display {
    background-repeat:no-repeat;
    background-position: center;
    background-image: url(data:image/gif;base64,R0lGODlhFAAUAPcAAAAAAJmZmZ2dnZ6enqKioqOjo6SkpKWlpaampqenp6ioqKmpqaqqqqurq/Hx8fLy8vT09PX19ff39/j4+Pn5+fr6+vv7+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAP8ALAAAAAAUABQAAAihAP9FoPCvoMGDBy08+EdhQAIJCCMybCDAAYUEARBAlFiQQoMABQhKUJBxY0SPICEYHBnggEmDKAuoPMjS5cGYMxHW3IiT478JJA8M/CjTZ0GgLRekNGpwAsYABHIypcAgQMsITDtWJYBR6NSqMico9cqR6tKfY7GeBCuVwlipDNmefAtTrkSzB1RaIAoXodsABiZAEFB06gIBWC1mLVgBa0AAOw==);
}

/*!
 * Bootstrap v3.3.6 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

// Core variables and mixins
@import "bootstrap/variables";
@import "bootstrap/mixins";

// Reset and dependencies
@import "bootstrap/normalize";
@import "bootstrap/print";
@import "bootstrap/glyphicons";

// Core CSS
@import "bootstrap/scaffolding";
@import "bootstrap/type";
@import "bootstrap/code";
@import "bootstrap/grid";
@import "bootstrap/tables";
@import "bootstrap/forms";
@import "bootstrap/buttons";

// Components
@import "bootstrap/component-animations";
@import "bootstrap/dropdowns";
@import "bootstrap/button-groups";
@import "bootstrap/input-groups";
@import "bootstrap/navs";
@import "bootstrap/navbar";
@import "bootstrap/breadcrumbs";
@import "bootstrap/pagination";
@import "bootstrap/pager";
@import "bootstrap/labels";
@import "bootstrap/badges";
@import "bootstrap/jumbotron";
@import "bootstrap/thumbnails";
@import "bootstrap/alerts";
@import "bootstrap/progress-bars";
@import "bootstrap/media";
@import "bootstrap/list-group";
@import "bootstrap/panels";
@import "bootstrap/responsive-embed";
@import "bootstrap/wells";
@import "bootstrap/close";

// Components w/ JavaScript
@import "bootstrap/modals";
@import "bootstrap/tooltip";
@import "bootstrap/popovers";
@import "bootstrap/carousel";

// Utility classes
@import "bootstrap/utilities";
@import "bootstrap/responsive-utilities";

/*!
 *  Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot?v=4.2.0');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}

/*!
 * FullCalendar v2.4.0 Stylesheet
 * Docs & License: http://fullcalendar.io/
 * (c) 2015 Adam Shaw
 */


.fc {
	direction: ltr;
	text-align: left;
}

.fc-rtl {
	text-align: right;
}

body .fc { /* extra precedence to overcome jqui */
	font-size: 1em;
}


/* Colors
--------------------------------------------------------------------------------------------------*/

.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-row,
.fc-unthemed .fc-popover {
	border-color: #ddd;
}

.fc-unthemed .fc-popover {
	background-color: #fff;
}

.fc-unthemed .fc-divider,
.fc-unthemed .fc-popover .fc-header {
	background: #eee;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
	color: #666;
}

.fc-unthemed .fc-today {
	background: #fcf8e3;
}

.fc-highlight { /* when user is selecting cells */
	background: #bce8f1;
	opacity: .3;
	filter: alpha(opacity=30); /* for IE */
}

.fc-bgevent { /* default look for background events */
	background: rgb(143, 223, 130);
	opacity: .3;
	filter: alpha(opacity=30); /* for IE */
}

.fc-nonbusiness { /* default look for non-business-hours areas */
	/* will inherit .fc-bgevent's styles */
	background: #d7d7d7;
}


/* Icons (inline elements with styled text that mock arrow icons)
--------------------------------------------------------------------------------------------------*/

.fc-icon {
	display: inline-block;
	width: 1em;
	height: 1em;
	line-height: 1em;
	font-size: 1em;
	text-align: center;
	overflow: hidden;
	font-family: "Courier New", Courier, monospace;

	/* don't allow browser text-selection */
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	}

/*
Acceptable font-family overrides for individual icons:
	"Arial", sans-serif
	"Times New Roman", serif

NOTE: use percentage font sizes or else old IE chokes
*/

.fc-icon:after {
	position: relative;
	margin: 0 -1em; /* ensures character will be centered, regardless of width */
}

.fc-icon-left-single-arrow:after {
	content: "\02039";
	font-weight: bold;
	font-size: 200%;
	top: -7%;
	left: 3%;
}

.fc-icon-right-single-arrow:after {
	content: "\0203A";
	font-weight: bold;
	font-size: 200%;
	top: -7%;
	left: -3%;
}

.fc-icon-left-double-arrow:after {
	content: "\000AB";
	font-size: 160%;
	top: -7%;
}

.fc-icon-right-double-arrow:after {
	content: "\000BB";
	font-size: 160%;
	top: -7%;
}

.fc-icon-left-triangle:after {
	content: "\25C4";
	font-size: 125%;
	top: 3%;
	left: -2%;
}

.fc-icon-right-triangle:after {
	content: "\25BA";
	font-size: 125%;
	top: 3%;
	left: 2%;
}

.fc-icon-down-triangle:after {
	content: "\25BC";
	font-size: 125%;
	top: 2%;
}

.fc-icon-x:after {
	content: "\000D7";
	font-size: 200%;
	top: 6%;
}


/* Buttons (styled <button> tags, normalized to work cross-browser)
--------------------------------------------------------------------------------------------------*/

.fc button {
	/* force height to include the border and padding */
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;

	/* dimensions */
	margin: 0;
	height: 2.1em;
	padding: 0 .6em;

	/* text & cursor */
	font-size: 1em; /* normalize */
	white-space: nowrap;
	cursor: pointer;
}

/* Firefox has an annoying inner border */
.fc button::-moz-focus-inner { margin: 0; padding: 0; }
	
.fc-state-default { /* non-theme */
	border: 1px solid;
}

.fc-state-default.fc-corner-left { /* non-theme */
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

.fc-state-default.fc-corner-right { /* non-theme */
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}

/* icons in buttons */

.fc button .fc-icon { /* non-theme */
	position: relative;
	top: -0.05em; /* seems to be a good adjustment across browsers */
	margin: 0 .2em;
	vertical-align: middle;
}
	
/*
  button states
  borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/)
*/

.fc-state-default {
	background-color: #f5f5f5;
	background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
	background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
	background-repeat: repeat-x;
	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);
	color: #333;
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-hover,
.fc-state-down,
.fc-state-active,
.fc-state-disabled {
	color: #333333;
	background-color: #e6e6e6;
}

.fc-state-hover {
	color: #333333;
	text-decoration: none;
	background-position: 0 -15px;
	-webkit-transition: background-position 0.1s linear;
	   -moz-transition: background-position 0.1s linear;
	     -o-transition: background-position 0.1s linear;
	        transition: background-position 0.1s linear;
}

.fc-state-down,
.fc-state-active {
	background-color: #cccccc;
	background-image: none;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-disabled {
	cursor: default;
	background-image: none;
	opacity: 0.65;
	filter: alpha(opacity=65);
	box-shadow: none;
}


/* Buttons Groups
--------------------------------------------------------------------------------------------------*/

.fc-button-group {
	display: inline-block;
}

/*
every button that is not first in a button group should scootch over one pixel and cover the
previous button's border...
*/

.fc .fc-button-group > * { /* extra precedence b/c buttons have margin set to zero */
	float: left;
	margin: 0 0 0 -1px;
}

.fc .fc-button-group > :first-child { /* same */
	margin-left: 0;
}


/* Popover
--------------------------------------------------------------------------------------------------*/

.fc-popover {
	position: absolute;
	box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

.fc-popover .fc-header { /* TODO: be more consistent with fc-head/fc-body */
	padding: 2px 4px;
}

.fc-popover .fc-header .fc-title {
	margin: 0 2px;
}

.fc-popover .fc-header .fc-close {
	cursor: pointer;
}

.fc-ltr .fc-popover .fc-header .fc-title,
.fc-rtl .fc-popover .fc-header .fc-close {
	float: left;
}

.fc-rtl .fc-popover .fc-header .fc-title,
.fc-ltr .fc-popover .fc-header .fc-close {
	float: right;
}

/* unthemed */

.fc-unthemed .fc-popover {
	border-width: 1px;
	border-style: solid;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
	font-size: .9em;
	margin-top: 2px;
}

/* jqui themed */

.fc-popover > .ui-widget-header + .ui-widget-content {
	border-top: 0; /* where they meet, let the header have the border */
}


/* Misc Reusable Components
--------------------------------------------------------------------------------------------------*/

.fc-divider {
	border-style: solid;
	border-width: 1px;
}

hr.fc-divider {
	height: 0;
	margin: 0;
	padding: 0 0 2px; /* height is unreliable across browsers, so use padding */
	border-width: 1px 0;
}

.fc-clear {
	clear: both;
}

.fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-helper-skeleton {
	/* these element should always cling to top-left/right corners */
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.fc-bg {
	bottom: 0; /* strech bg to bottom edge */
}

.fc-bg table {
	height: 100%; /* strech bg to bottom edge */
}


/* Tables
--------------------------------------------------------------------------------------------------*/

.fc table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 1em; /* normalize cross-browser */
}

.fc th {
	text-align: center;
}

.fc th,
.fc td {
	border-style: solid;
	border-width: 1px;
	padding: 0;
	vertical-align: top;
}

.fc td.fc-today {
	border-style: double; /* overcome neighboring borders */
}


/* Fake Table Rows
--------------------------------------------------------------------------------------------------*/

.fc .fc-row { /* extra precedence to overcome themes w/ .ui-widget-content forcing a 1px border */
	/* no visible border by default. but make available if need be (scrollbar width compensation) */
	border-style: solid;
	border-width: 0;
}

.fc-row table {
	/* don't put left/right border on anything within a fake row.
	   the outer tbody will worry about this */
	border-left: 0 hidden transparent;
	border-right: 0 hidden transparent;

	/* no bottom borders on rows */
	border-bottom: 0 hidden transparent; 
}

.fc-row:first-child table {
	border-top: 0 hidden transparent; /* no top border on first row */
}


/* Day Row (used within the header and the DayGrid)
--------------------------------------------------------------------------------------------------*/

.fc-row {
	position: relative;
}

.fc-row .fc-bg {
	z-index: 1;
}

/* highlighting cells & background event skeleton */

.fc-row .fc-bgevent-skeleton,
.fc-row .fc-highlight-skeleton {
	bottom: 0; /* stretch skeleton to bottom of row */
}

.fc-row .fc-bgevent-skeleton table,
.fc-row .fc-highlight-skeleton table {
	height: 100%; /* stretch skeleton to bottom of row */
}

.fc-row .fc-highlight-skeleton td,
.fc-row .fc-bgevent-skeleton td {
	border-color: transparent;
}

.fc-row .fc-bgevent-skeleton {
	z-index: 2;

}

.fc-row .fc-highlight-skeleton {
	z-index: 3;
}

/*
row content (which contains day/week numbers and events) as well as "helper" (which contains
temporary rendered events).
*/

.fc-row .fc-content-skeleton {
	position: relative;
	z-index: 4;
	padding-bottom: 2px; /* matches the space above the events */
}

.fc-row .fc-helper-skeleton {
	z-index: 5;
}

.fc-row .fc-content-skeleton td,
.fc-row .fc-helper-skeleton td {
	/* see-through to the background below */
	background: none; /* in case <td>s are globally styled */
	border-color: transparent;

	/* don't put a border between events and/or the day number */
	border-bottom: 0;
}

.fc-row .fc-content-skeleton tbody td, /* cells with events inside (so NOT the day number cell) */
.fc-row .fc-helper-skeleton tbody td {
	/* don't put a border between event cells */
	border-top: 0;
}


/* Scrolling Container
--------------------------------------------------------------------------------------------------*/

.fc-scroller { /* this class goes on elements for guaranteed vertical scrollbars */
	overflow-y: scroll;
	overflow-x: hidden;
}

.fc-scroller > * { /* we expect an immediate inner element */
	position: relative; /* re-scope all positions */
	width: 100%; /* hack to force re-sizing this inner element when scrollbars appear/disappear */
	overflow: hidden; /* don't let negative margins or absolute positioning create further scroll */
}


/* Global Event Styles
--------------------------------------------------------------------------------------------------*/

.fc-event {
	position: relative; /* for resize handle and other inner positioning */
	display: block; /* make the <a> tag block */
	font-size: .85em;
	line-height: 1.3;
	border-radius: 3px;
	border: 1px solid #3a87ad; /* default BORDER color */
	background-color: #3a87ad; /* default BACKGROUND color */
	font-weight: normal; /* undo jqui's ui-widget-header bold */
}

/* overpower some of bootstrap's and jqui's styles on <a> tags */
.fc-event,
.fc-event:hover,
.ui-widget .fc-event {
	color: #fff; /* default TEXT color */
	text-decoration: none; /* if <a> has an href */
}

.fc-event[href],
.fc-event.fc-draggable {
	cursor: pointer; /* give events with links and draggable events a hand mouse pointer */
}

.fc-not-allowed, /* causes a "warning" cursor. applied on body */
.fc-not-allowed .fc-event { /* to override an event's custom cursor */
	cursor: not-allowed;
}

.fc-event .fc-bg { /* the generic .fc-bg already does position */
	z-index: 1;
	background: #fff;
	opacity: .25;
	filter: alpha(opacity=25); /* for IE */
}

.fc-event .fc-content {
	position: relative;
	z-index: 2;
}

.fc-event .fc-resizer {
	position: absolute;
	z-index: 3;
}


/* Horizontal Events
--------------------------------------------------------------------------------------------------*/

/* events that are continuing to/from another week. kill rounded corners and butt up against edge */

.fc-ltr .fc-h-event.fc-not-start,
.fc-rtl .fc-h-event.fc-not-end {
	margin-left: 0;
	border-left-width: 0;
	padding-left: 1px; /* replace the border with padding */
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.fc-ltr .fc-h-event.fc-not-end,
.fc-rtl .fc-h-event.fc-not-start {
	margin-right: 0;
	border-right-width: 0;
	padding-right: 1px; /* replace the border with padding */
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

/* resizer */

.fc-h-event .fc-resizer { /* positioned it to overcome the event's borders */
	top: -1px;
	bottom: -1px;
	left: -1px;
	right: -1px;
	width: 5px;
}

/* left resizer  */
.fc-ltr .fc-h-event .fc-start-resizer,
.fc-ltr .fc-h-event .fc-start-resizer:before,
.fc-ltr .fc-h-event .fc-start-resizer:after,
.fc-rtl .fc-h-event .fc-end-resizer,
.fc-rtl .fc-h-event .fc-end-resizer:before,
.fc-rtl .fc-h-event .fc-end-resizer:after {
	right: auto; /* ignore the right and only use the left */
	cursor: w-resize;
}

/* right resizer */
.fc-ltr .fc-h-event .fc-end-resizer,
.fc-ltr .fc-h-event .fc-end-resizer:before,
.fc-ltr .fc-h-event .fc-end-resizer:after,
.fc-rtl .fc-h-event .fc-start-resizer,
.fc-rtl .fc-h-event .fc-start-resizer:before,
.fc-rtl .fc-h-event .fc-start-resizer:after {
	left: auto; /* ignore the left and only use the right */
	cursor: e-resize;
}


/* DayGrid events
----------------------------------------------------------------------------------------------------
We use the full "fc-day-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/

.fc-day-grid-event {
	margin: 1px 2px 0; /* spacing between events and edges */
	padding: 0 1px;
}


.fc-day-grid-event .fc-content { /* force events to be one-line tall */
	white-space: nowrap;
	overflow: hidden;
}

.fc-day-grid-event .fc-time {
	font-weight: bold;
}

.fc-day-grid-event .fc-resizer { /* enlarge the default hit area */
	left: -3px;
	right: -3px;
	width: 7px;
}


/* Event Limiting
--------------------------------------------------------------------------------------------------*/

/* "more" link that represents hidden events */

a.fc-more {
	margin: 1px 3px;
	font-size: .85em;
	cursor: pointer;
	text-decoration: none;
}

a.fc-more:hover {
	text-decoration: underline;
}

.fc-limited { /* rows and cells that are hidden because of a "more" link */
	display: none;
}

/* popover that appears when "more" link is clicked */

.fc-day-grid .fc-row {
	z-index: 1; /* make the "more" popover one higher than this */
}

.fc-more-popover {
	z-index: 2;
	width: 220px;
}

.fc-more-popover .fc-event-container {
	padding: 10px;
}

/* Toolbar
--------------------------------------------------------------------------------------------------*/

.fc-toolbar {
	text-align: center;
	margin-bottom: 1em;
}

.fc-toolbar .fc-left {
	float: left;
}

.fc-toolbar .fc-right {
	float: right;
}

.fc-toolbar .fc-center {
	display: inline-block;
}

/* the things within each left/right/center section */
.fc .fc-toolbar > * > * { /* extra precedence to override button border margins */
	float: left;
	margin-left: .75em;
}

/* the first thing within each left/center/right section */
.fc .fc-toolbar > * > :first-child { /* extra precedence to override button border margins */
	margin-left: 0;
}
	
/* title text */

.fc-toolbar h2 {
	margin: 0;
}

/* button layering (for border precedence) */

.fc-toolbar button {
	position: relative;
}

.fc-toolbar .fc-state-hover,
.fc-toolbar .ui-state-hover {
	z-index: 2;
}
	
.fc-toolbar .fc-state-down {
	z-index: 3;
}

.fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active {
	z-index: 4;
}

.fc-toolbar button:focus {
	z-index: 5;
}


/* View Structure
--------------------------------------------------------------------------------------------------*/

/* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */
/* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */
.fc-view-container *,
.fc-view-container *:before,
.fc-view-container *:after {
	-webkit-box-sizing: content-box;
	   -moz-box-sizing: content-box;
	        box-sizing: content-box;
}

.fc-view, /* scope positioning and z-index's for everything within the view */
.fc-view > table { /* so dragged elements can be above the view's main element */
	position: relative;
	z-index: 1;
}

/* BasicView
--------------------------------------------------------------------------------------------------*/

/* day row structure */

.fc-basicWeek-view .fc-content-skeleton,
.fc-basicDay-view .fc-content-skeleton {
	/* we are sure there are no day numbers in these views, so... */
	padding-top: 1px; /* add a pixel to make sure there are 2px padding above events */
	padding-bottom: 1em; /* ensure a space at bottom of cell for user selecting/clicking */
}

.fc-basic-view .fc-body .fc-row {
	min-height: 4em; /* ensure that all rows are at least this tall */
}

/* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */

.fc-row.fc-rigid {
	overflow: hidden;
}

.fc-row.fc-rigid .fc-content-skeleton {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

/* week and day number styling */

.fc-basic-view .fc-week-number,
.fc-basic-view .fc-day-number {
	padding: 0 2px;
}

.fc-basic-view td.fc-week-number span,
.fc-basic-view td.fc-day-number {
	padding-top: 2px;
	padding-bottom: 2px;
}

.fc-basic-view .fc-week-number {
	text-align: center;
}

.fc-basic-view .fc-week-number span {
	/* work around the way we do column resizing and ensure a minimum width */
	display: inline-block;
	min-width: 1.25em;
}

.fc-ltr .fc-basic-view .fc-day-number {
	text-align: right;
}

.fc-rtl .fc-basic-view .fc-day-number {
	text-align: left;
}

.fc-day-number.fc-other-month {
	opacity: 0.3;
	filter: alpha(opacity=30); /* for IE */
	/* opacity with small font can sometimes look too faded
	   might want to set the 'color' property instead
	   making day-numbers bold also fixes the problem */
}

/* AgendaView all-day area
--------------------------------------------------------------------------------------------------*/

.fc-agenda-view .fc-day-grid {
	position: relative;
	z-index: 2; /* so the "more.." popover will be over the time grid */
}

.fc-agenda-view .fc-day-grid .fc-row {
	min-height: 3em; /* all-day section will never get shorter than this */
}

.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
	padding-top: 1px; /* add a pixel to make sure there are 2px padding above events */
	padding-bottom: 1em; /* give space underneath events for clicking/selecting days */
}


/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/

.fc .fc-axis { /* .fc to overcome default cell styles */
	vertical-align: middle;
	padding: 0 4px;
	white-space: nowrap;
}

.fc-ltr .fc-axis {
	text-align: right;
}

.fc-rtl .fc-axis {
	text-align: left;
}

.ui-widget td.fc-axis {
	font-weight: normal; /* overcome jqui theme making it bold */
}


/* TimeGrid Structure
--------------------------------------------------------------------------------------------------*/

.fc-time-grid-container, /* so scroll container's z-index is below all-day */
.fc-time-grid { /* so slats/bg/content/etc positions get scoped within here */
	position: relative;
	z-index: 1;
}

.fc-time-grid {
	min-height: 100%; /* so if height setting is 'auto', .fc-bg stretches to fill height */
}

.fc-time-grid table { /* don't put outer borders on slats/bg/content/etc */
	border: 0 hidden transparent;
}

.fc-time-grid > .fc-bg {
	z-index: 1;
}

.fc-time-grid .fc-slats,
.fc-time-grid > hr { /* the <hr> AgendaView injects when grid is shorter than scroller */
	position: relative;
	z-index: 2;
}

.fc-time-grid .fc-bgevent-skeleton,
.fc-time-grid .fc-content-skeleton {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.fc-time-grid .fc-bgevent-skeleton {
	z-index: 3;
}

.fc-time-grid .fc-highlight-skeleton {
	z-index: 4;
}

.fc-time-grid .fc-content-skeleton {
	z-index: 5;
}

.fc-time-grid .fc-helper-skeleton {
	z-index: 6;
}


/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/

.fc-time-grid .fc-slats td {
	height: 1.5em;
	border-bottom: 0; /* each cell is responsible for its top border */
}

.fc-time-grid .fc-slats .fc-minor td {
	border-top-style: dotted;
}

.fc-time-grid .fc-slats .ui-widget-content { /* for jqui theme */
	background: none; /* see through to fc-bg */
}


/* TimeGrid Highlighting Slots
--------------------------------------------------------------------------------------------------*/

.fc-time-grid .fc-highlight-container { /* a div within a cell within the fc-highlight-skeleton */
	position: relative; /* scopes the left/right of the fc-highlight to be in the column */
}

.fc-time-grid .fc-highlight {
	position: absolute;
	left: 0;
	right: 0;
	/* top and bottom will be in by JS */
}


/* TimeGrid Event Containment
--------------------------------------------------------------------------------------------------*/

.fc-time-grid .fc-event-container, /* a div within a cell within the fc-content-skeleton */
.fc-time-grid .fc-bgevent-container { /* a div within a cell within the fc-bgevent-skeleton */
	position: relative;
}

.fc-ltr .fc-time-grid .fc-event-container { /* space on the sides of events for LTR (default) */
	margin: 0 2.5% 0 2px;
}

.fc-rtl .fc-time-grid .fc-event-container { /* space on the sides of events for RTL */
	margin: 0 2px 0 2.5%;
}

.fc-time-grid .fc-event,
.fc-time-grid .fc-bgevent {
	position: absolute;
	z-index: 1; /* scope inner z-index's */
}

.fc-time-grid .fc-bgevent {
	/* background events always span full width */
	left: 0;
	right: 0;
}


/* Generic Vertical Event
--------------------------------------------------------------------------------------------------*/

.fc-v-event.fc-not-start { /* events that are continuing from another day */
	/* replace space made by the top border with padding */
	border-top-width: 0;
	padding-top: 1px;

	/* remove top rounded corners */
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.fc-v-event.fc-not-end {
	/* replace space made by the top border with padding */
	border-bottom-width: 0;
	padding-bottom: 1px;

	/* remove bottom rounded corners */
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}


/* TimeGrid Event Styling
----------------------------------------------------------------------------------------------------
We use the full "fc-time-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/

.fc-time-grid-event {
	overflow: hidden; /* don't let the bg flow over rounded corners */
}

.fc-time-grid-event .fc-time,
.fc-time-grid-event .fc-title {
	padding: 0 1px;
}

.fc-time-grid-event .fc-time {
	font-size: .85em;
	white-space: nowrap;
}

/* short mode, where time and title are on the same line */

.fc-time-grid-event.fc-short .fc-content {
	/* don't wrap to second line (now that contents will be inline) */
	white-space: nowrap;
}

.fc-time-grid-event.fc-short .fc-time,
.fc-time-grid-event.fc-short .fc-title {
	/* put the time and title on the same line */
	display: inline-block;
	vertical-align: top;
}

.fc-time-grid-event.fc-short .fc-time span {
	display: none; /* don't display the full time text... */
}

.fc-time-grid-event.fc-short .fc-time:before {
	content: attr(data-start); /* ...instead, display only the start time */
}

.fc-time-grid-event.fc-short .fc-time:after {
	content: "\000A0-\000A0"; /* seperate with a dash, wrapped in nbsp's */
}

.fc-time-grid-event.fc-short .fc-title {
	font-size: .85em; /* make the title text the same size as the time */
	padding: 0; /* undo padding from above */
}

/* resizer */

.fc-time-grid-event .fc-resizer {
	left: 0;
	right: 0;
	bottom: 0;
	height: 8px;
	overflow: hidden;
	line-height: 8px;
	font-size: 11px;
	font-family: monospace;
	text-align: center;
	cursor: s-resize;
}

.fc-time-grid-event .fc-resizer:after {
	content: "=";
}

/**
 * 	Angular RangeSlider SCSS
 * 
 *	Version: 0.0.14
 *
 * 	Author: Daniel Crisp, danielcrisp.com
 *
 * 	The rangeSlider has been styled to match the default styling
 * 	of form elements styled using Twitter's Bootstrap
 * 
 * 	Originally forked from https://github.com/leongersen/noUiSlider
 *

	This code is released under the MIT Licence - http://opensource.org/licenses/MIT

	Copyright (c) 2013 Daniel Crisp

	Permission is hereby granted, free of charge, to any person obtaining a copy
	of this software and associated documentation files (the "Software"), to deal
	in the Software without restriction, including without limitation the rights
	to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
	copies of the Software, and to permit persons to whom the Software is
	furnished to do so, subject to the following conditions:

	The above copyright notice and this permission notice shall be included in
	all copies or substantial portions of the Software.

	THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
	IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
	FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
	AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
	LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
	OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
	THE SOFTWARE.

 */
/*------------------------------------*\
    COMPASS IMPORTS
\*------------------------------------*/
/*------------------------------------*\
    SETTINGS
\*------------------------------------*/
/*------------------------------------*\
    THE CSS
\*------------------------------------*/
/* line 25, scss/_rangeSlider.scss */
.ngrs-range-slider {
  position: relative;
  margin: 10px 0 30px;
  padding: 4px;
  border: 1px solid #ccc;
  background: #fff;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-transition: border 0.2s linear, box-shadow 0.2s linear;
  -o-transition: border 0.2s linear, box-shadow 0.2s linear;
  -webkit-transition: border 0.2s linear, box-shadow 0.2s linear;
  transition: border 0.2s linear, box-shadow 0.2s linear;
  -webkit-tap-highlight-color: transparent;
  /*------------------------------------*\
      RUNNER
  \*------------------------------------*/
  /*------------------------------------*\
      JOIN (connects the two handles)
  \*------------------------------------*/
  /*------------------------------------*\
      HANDLE
  \*------------------------------------*/
  /*------------------------------------*\
      HANDLE SPECIFICS
  \*------------------------------------*/
  /*------------------------------------*\
      VALUE LABELS
  \*------------------------------------*/
  /*------------------------------------*\
      ATTACHED VALUE RUNNER
  \*------------------------------------*/
  /*------------------------------------*\
      VERTICAL SLIDER
  \*------------------------------------*/
  /*------------------------------------*\
      FOCUS STATE
  \*------------------------------------*/
  /*------------------------------------*\
      DISABLED STATE
  \*------------------------------------*/
}
/* line 28, scss/_rangeSlider.scss */
.ngrs-range-slider, .ngrs-range-slider * {
  display: block;
  cursor: default;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
/* line 53, scss/_rangeSlider.scss */
.ngrs-range-slider .ngrs-runner {
  position: relative;
  margin: 0 9px;
  height: 18px;
}
/* line 63, scss/_rangeSlider.scss */
.ngrs-range-slider .ngrs-join {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  right: 100%;
  height: 8px;
  margin: -4px 0 0 0;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-color: #2f96b4;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzViYzBkZSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzJmOTZiNCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #5bc0de), color-stop(100%, #2f96b4));
  background-image: -moz-linear-gradient(#5bc0de, #2f96b4);
  background-image: -webkit-linear-gradient(#5bc0de, #2f96b4);
  background-image: linear-gradient(#5bc0de, #2f96b4);
}
/* line 81, scss/_rangeSlider.scss */
.ngrs-range-slider .ngrs-handle {
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 18px;
  margin: 0 0 0 -9px;
  background: #efefef;
  border: 1px solid #ccc;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  /*------------------------------------*\
      HANDLE ICON
  \*------------------------------------*/
}
/* line 95, scss/_rangeSlider.scss */
.ngrs-range-slider .ngrs-handle i {
  display: block;
  width: 100%;
  height: 100%;
  background: no-repeat -9999px -9999px;
  cursor: pointer;
}
/* line 104, scss/_rangeSlider.scss */
.ngrs-range-slider .ngrs-handle.ngrs-over i {
  background-position: 50% 50%;
}
/* line 109, scss/_rangeSlider.scss */
.ngrs-range-slider .ngrs-handle.ngrs-down {
  -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
/* line 120, scss/_rangeSlider.scss */
.ngrs-range-slider .ngrs-handle-min i {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFNJREFUeNpiYMAEXEDsA+OwoEnKALETEHOgK2AEYhMgNkQ3DqSAB6pLAot1DExIJmAFzED8C4hvQdnIppyFKYCBp0D8CohloVafxWUqN7I3AQIMAKw6B24pOi8lAAAAAElFTkSuQmCC");
}
/* line 127, scss/_rangeSlider.scss */
.ngrs-range-slider .ngrs-handle-max i {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFdJREFUeNpiYEAAHyDmYkADzEhsByBWA+K3QPwJmwJjIGYBYlUgZgLi59gUwIAkEEsD8VMmBtyAkQFqJDZwAYjPAPE/dAU/gHg/ED/GpgvkTW50QYAAAwADfwrM5sqplgAAAABJRU5ErkJggg==");
}
/* line 137, scss/_rangeSlider.scss */
.ngrs-range-slider .ngrs-value {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 5px 0 0 0;
  font-size: 12px;
  color: #999;
}
/* line 145, scss/_rangeSlider.scss */
.ngrs-range-slider .ngrs-value.ngrs-value-max {
  left: auto;
  right: 0;
  text-align: right;
}
/* line 152, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-handle-min-down .ngrs-value-min, .ngrs-range-slider.ngrs-handle-max-down .ngrs-value-max {
  color: #333;
}
/* line 160, scss/_rangeSlider.scss */
.ngrs-range-slider .ngrs-attached-handles {
  margin: 0 9px;
  position: relative;
  /*------------------------------------*\
      ATTACHED VALUE RUNNER LABELS
  \*------------------------------------*/
}
/* line 167, scss/_rangeSlider.scss */
.ngrs-range-slider .ngrs-attached-handles .ngrs-value {
  text-align: left;
}
/* line 172, scss/_rangeSlider.scss */
.ngrs-range-slider .ngrs-attached-handles .ngrs-value > div {
  margin: 0 0 0 -50%;
}
/* line 181, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical {
  width: 28px;
  margin: 10px auto;
  /*------------------------------------*\
      RUNNER
  \*------------------------------------*/
  /*------------------------------------*\
      ATTACHED VALUE RUNNER
  \*------------------------------------*/
  /*------------------------------------*\
      JOIN
  \*------------------------------------*/
  /*------------------------------------*\
      HANDLE
  \*------------------------------------*/
  /*------------------------------------*\
      HANDLE SPECIFICS
  \*------------------------------------*/
  /*------------------------------------*\
      VALUE LABELS
  \*------------------------------------*/
  /*------------------------------------*\
      VERTICAL LEFT SLIDER
  \*------------------------------------*/
  /*------------------------------------*\
      VERTICAL RIGHT SLIDER
  \*------------------------------------*/
}
/* line 189, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical .ngrs-runner {
  margin: 9px 0;
  height: 300px;
  width: 18px;
}
/* line 199, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical .ngrs-value-runner.ngrs-attached-handles {
  position: absolute;
  top: 0;
  left: 100%;
  bottom: 0;
  margin: 9px 0;
}
/* line 212, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical .ngrs-join {
  width: 8px;
  height: auto;
  top: 0;
  bottom: 100%;
  left: 50%;
  right: auto;
  margin: 0 0 0 -4px;
}
/* line 226, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical .ngrs-handle {
  width: 100%;
  height: 18px;
  margin: -9px 0 0 0;
}
/* line 237, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical .ngrs-handle-min i {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFFJREFUeNpiYEAFPFAMB0xIbEYgdoJiRpggM5ICUyBWhZoA0vgMWYEsENsg6ZQE4ldA/AmkkguIHZGNhQKQGBfIBHcgFmTABCxALMJAMQAIMAAcNgVQJ7t7JQAAAABJRU5ErkJggg==");
}
/* line 244, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical .ngrs-handle-max i {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFZJREFUeNpiYKAUMAKxDxBL4ZB/xgQk9gHxDyySILF9zEDiNxC/A2JVNAW7gfgtM5TzCYhZgFgCyr8IxNdADGZk+4BYGoi/APEBIP6PzVE8UAwHAAEGAArIDvzRFIA6AAAAAElFTkSuQmCC");
}
/* line 254, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical .ngrs-value {
  top: 0;
  left: 100%;
  padding: 0 0 0 5px;
}
/* line 259, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical .ngrs-value.ngrs-value-max {
  top: auto;
  bottom: 0;
  right: auto;
  text-align: left;
}
/* line 269, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical .ngrs-attached-handles .ngrs-value > div {
  margin: -50% 0 0 0;
}
/* line 279, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical.ngrs-left {
  margin: 10px 0;
}
/* line 287, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical.ngrs-right {
  margin: 10px 0 10px auto;
  /*------------------------------------*\
      VALUE LABELS
  \*------------------------------------*/
}
/* line 294, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical.ngrs-right .ngrs-value {
  left: auto;
  right: 100%;
  padding: 0 5px 0 0;
  text-align: right;
}
/* line 300, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical.ngrs-right .ngrs-value.ngrs-value-max {
  text-align: right;
}
/* line 306, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-vertical.ngrs-right .ngrs-value-runner.ngrs-attached-handles {
  left: 0;
}
/* line 318, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-focus {
  border-color: rgba(82, 168, 236, 0.8);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  -webkit-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 329, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-disabled, .ngrs-range-slider.ngrs-disabled.ngrs-focus {
  border-color: #ddd;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 335, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-disabled .ngrs-handle {
  background: #fff;
  border-color: #ddd;
}
/* line 339, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-disabled .ngrs-handle i {
  background: none !important;
  cursor: default;
}
/* line 345, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-disabled .ngrs-join {
  background: #ddd;
}
/* line 349, scss/_rangeSlider.scss */
.ngrs-range-slider.ngrs-disabled .ngrs-value {
  color: #ddd;
}

/*------------------------------------*\
    TOUCH STATE
\*------------------------------------*/
/* line 361, scss/_rangeSlider.scss */
body.ngrs-touching {
  -ms-touch-action: none;
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* Slider */

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;

    &:focus {
        outline: none;
    }

    &.dragging {
        cursor: pointer;
        cursor: hand;
    }
}
.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;

    &:before,
    &:after {
        content: "";
        display: table;
    }

    &:after {
        clear: both;
    }

    .slick-loading & {
        visibility: hidden;
    }
}
.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    [dir="rtl"] & {
        float: right;
    }
    img {
        display: block;
    }
    &.slick-loading img {
        display: none;
    }

    display: none;

    &.dragging img {
        pointer-events: none;
    }

    .slick-initialized & {
        display: block;
    }

    .slick-loading & {
        visibility: hidden;
    }

    .slick-vertical & {
        display: block;
        height: auto;
        border: 1px solid transparent;
    }
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

[pricepicker] {
  position: relative; }
  [pricepicker] input {
    padding-left: 22px; }
  [pricepicker] span {
    position: absolute;
    padding: 7px 12px;
    pointer-events: none; }

img.loader {
  margin: auto;
  display: block; }

div.loader {
  margin: auto;
  display: block;
  background: url("images/BB_wait.gif"); }

.modal-content div.loader {
  width: 100px;
  height: 100px; }

[bb-loading-spinner] div.loader-wrapper {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: white; }
  [bb-loading-spinner] div.loader-wrapper .loader {
    width: 100px;
    height: 100px; }

@charset "UTF-8";
#bb {
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ }
  #bb html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%; }
  #bb body {
    margin: 0; }
  #bb article,
  #bb aside,
  #bb details,
  #bb figcaption,
  #bb figure,
  #bb footer,
  #bb header,
  #bb hgroup,
  #bb main,
  #bb menu,
  #bb nav,
  #bb section,
  #bb summary {
    display: block; }
  #bb audio,
  #bb canvas,
  #bb progress,
  #bb video {
    display: inline-block;
    vertical-align: baseline; }
  #bb audio:not([controls]) {
    display: none;
    height: 0; }
  #bb [hidden],
  #bb template {
    display: none; }
  #bb a {
    background-color: transparent; }
  #bb a:active,
  #bb a:hover {
    outline: 0; }
  #bb abbr[title] {
    border-bottom: 1px dotted; }
  #bb b,
  #bb strong {
    font-weight: bold; }
  #bb dfn {
    font-style: italic; }
  #bb h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #bb mark {
    background: #ff0;
    color: #000; }
  #bb small {
    font-size: 80%; }
  #bb sub,
  #bb sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #bb sup {
    top: -0.5em; }
  #bb sub {
    bottom: -0.25em; }
  #bb img {
    border: 0; }
  #bb svg:not(:root) {
    overflow: hidden; }
  #bb figure {
    margin: 1em 40px; }
  #bb hr {
    box-sizing: content-box;
    height: 0; }
  #bb pre {
    overflow: auto; }
  #bb code,
  #bb kbd,
  #bb pre,
  #bb samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #bb button,
  #bb input,
  #bb optgroup,
  #bb select,
  #bb textarea {
    color: inherit;
    font: inherit;
    margin: 0; }
  #bb button {
    overflow: visible; }
  #bb button,
  #bb select {
    text-transform: none; }
  #bb button,
  #bb html input[type="button"],
  #bb input[type="reset"],
  #bb input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer; }
  #bb button[disabled],
  #bb html input[disabled] {
    cursor: default; }
  #bb button::-moz-focus-inner,
  #bb input::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #bb input {
    line-height: normal; }
  #bb input[type="checkbox"],
  #bb input[type="radio"] {
    box-sizing: border-box;
    padding: 0; }
  #bb input[type="number"]::-webkit-inner-spin-button,
  #bb input[type="number"]::-webkit-outer-spin-button {
    height: auto; }
  #bb input[type="search"] {
    -webkit-appearance: textfield;
    box-sizing: content-box; }
  #bb input[type="search"]::-webkit-search-cancel-button,
  #bb input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none; }
  #bb fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #bb legend {
    border: 0;
    padding: 0; }
  #bb textarea {
    overflow: auto; }
  #bb optgroup {
    font-weight: bold; }
  #bb table {
    border-collapse: collapse;
    border-spacing: 0; }
  #bb td,
  #bb th {
    padding: 0; }

#bb {
  /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ }
  @media print {
    #bb *,
    #bb *:before,
    #bb *:after {
      background: transparent !important;
      color: #000 !important;
      box-shadow: none !important;
      text-shadow: none !important; }
    #bb a,
    #bb a:visited {
      text-decoration: underline; }
    #bb a[href]:after {
      content: " (" attr(href) ")"; }
    #bb abbr[title]:after {
      content: " (" attr(title) ")"; }
    #bb a[href^="#"]:after,
    #bb a[href^="javascript:"]:after {
      content: ""; }
    #bb pre,
    #bb blockquote {
      border: 1px solid #999;
      page-break-inside: avoid; }
    #bb thead {
      display: table-header-group; }
    #bb tr,
    #bb img {
      page-break-inside: avoid; }
    #bb p,
    #bb h2,
    #bb h3 {
      orphans: 3;
      widows: 3; }
    #bb h2,
    #bb h3 {
      page-break-after: avoid; }
    #bb .navbar {
      display: none; }
    #bb .btn > .caret,
    #bb .dropup > .btn > .caret {
      border-top-color: #000 !important; }
    #bb .label {
      border: 1px solid #000; }
    #bb .table {
      border-collapse: collapse !important; }
      #bb .table td,
      #bb .table th {
        background-color: #fff !important; }
    #bb .table-bordered th,
    #bb .table-bordered td {
      border: 1px solid #ddd !important; }
    #bb .angular-google-map-container div a {
      display: none !important; } }

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url("fonts/glyphicons-halflings-regular.eot");
  src: url("fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("fonts/glyphicons-halflings-regular.woff2") format("woff2"), url("fonts/glyphicons-halflings-regular.woff") format("woff"), url("fonts/glyphicons-halflings-regular.ttf") format("truetype"), url("fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg"); }

#bb .glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

#bb .glyphicon-asterisk:before {
  content: "\002a"; }

#bb .glyphicon-plus:before {
  content: "\002b"; }

#bb .glyphicon-euro:before,
#bb .glyphicon-eur:before {
  content: "\20ac"; }

#bb .glyphicon-minus:before {
  content: "\2212"; }

#bb .glyphicon-cloud:before {
  content: "\2601"; }

#bb .glyphicon-envelope:before {
  content: "\2709"; }

#bb .glyphicon-pencil:before {
  content: "\270f"; }

#bb .glyphicon-glass:before {
  content: "\e001"; }

#bb .glyphicon-music:before {
  content: "\e002"; }

#bb .glyphicon-search:before {
  content: "\e003"; }

#bb .glyphicon-heart:before {
  content: "\e005"; }

#bb .glyphicon-star:before {
  content: "\e006"; }

#bb .glyphicon-star-empty:before {
  content: "\e007"; }

#bb .glyphicon-user:before {
  content: "\e008"; }

#bb .glyphicon-film:before {
  content: "\e009"; }

#bb .glyphicon-th-large:before {
  content: "\e010"; }

#bb .glyphicon-th:before {
  content: "\e011"; }

#bb .glyphicon-th-list:before {
  content: "\e012"; }

#bb .glyphicon-ok:before {
  content: "\e013"; }

#bb .glyphicon-remove:before {
  content: "\e014"; }

#bb .glyphicon-zoom-in:before {
  content: "\e015"; }

#bb .glyphicon-zoom-out:before {
  content: "\e016"; }

#bb .glyphicon-off:before {
  content: "\e017"; }

#bb .glyphicon-signal:before {
  content: "\e018"; }

#bb .glyphicon-cog:before {
  content: "\e019"; }

#bb .glyphicon-trash:before {
  content: "\e020"; }

#bb .glyphicon-home:before {
  content: "\e021"; }

#bb .glyphicon-file:before {
  content: "\e022"; }

#bb .glyphicon-time:before {
  content: "\e023"; }

#bb .glyphicon-road:before {
  content: "\e024"; }

#bb .glyphicon-download-alt:before {
  content: "\e025"; }

#bb .glyphicon-download:before {
  content: "\e026"; }

#bb .glyphicon-upload:before {
  content: "\e027"; }

#bb .glyphicon-inbox:before {
  content: "\e028"; }

#bb .glyphicon-play-circle:before {
  content: "\e029"; }

#bb .glyphicon-repeat:before {
  content: "\e030"; }

#bb .glyphicon-refresh:before {
  content: "\e031"; }

#bb .glyphicon-list-alt:before {
  content: "\e032"; }

#bb .glyphicon-lock:before {
  content: "\e033"; }

#bb .glyphicon-flag:before {
  content: "\e034"; }

#bb .glyphicon-headphones:before {
  content: "\e035"; }

#bb .glyphicon-volume-off:before {
  content: "\e036"; }

#bb .glyphicon-volume-down:before {
  content: "\e037"; }

#bb .glyphicon-volume-up:before {
  content: "\e038"; }

#bb .glyphicon-qrcode:before {
  content: "\e039"; }

#bb .glyphicon-barcode:before {
  content: "\e040"; }

#bb .glyphicon-tag:before {
  content: "\e041"; }

#bb .glyphicon-tags:before {
  content: "\e042"; }

#bb .glyphicon-book:before {
  content: "\e043"; }

#bb .glyphicon-bookmark:before {
  content: "\e044"; }

#bb .glyphicon-print:before {
  content: "\e045"; }

#bb .glyphicon-camera:before {
  content: "\e046"; }

#bb .glyphicon-font:before {
  content: "\e047"; }

#bb .glyphicon-bold:before {
  content: "\e048"; }

#bb .glyphicon-italic:before {
  content: "\e049"; }

#bb .glyphicon-text-height:before {
  content: "\e050"; }

#bb .glyphicon-text-width:before {
  content: "\e051"; }

#bb .glyphicon-align-left:before {
  content: "\e052"; }

#bb .glyphicon-align-center:before {
  content: "\e053"; }

#bb .glyphicon-align-right:before {
  content: "\e054"; }

#bb .glyphicon-align-justify:before {
  content: "\e055"; }

#bb .glyphicon-list:before {
  content: "\e056"; }

#bb .glyphicon-indent-left:before {
  content: "\e057"; }

#bb .glyphicon-indent-right:before {
  content: "\e058"; }

#bb .glyphicon-facetime-video:before {
  content: "\e059"; }

#bb .glyphicon-picture:before {
  content: "\e060"; }

#bb .glyphicon-map-marker:before {
  content: "\e062"; }

#bb .glyphicon-adjust:before {
  content: "\e063"; }

#bb .glyphicon-tint:before {
  content: "\e064"; }

#bb .glyphicon-edit:before {
  content: "\e065"; }

#bb .glyphicon-share:before {
  content: "\e066"; }

#bb .glyphicon-check:before {
  content: "\e067"; }

#bb .glyphicon-move:before {
  content: "\e068"; }

#bb .glyphicon-step-backward:before {
  content: "\e069"; }

#bb .glyphicon-fast-backward:before {
  content: "\e070"; }

#bb .glyphicon-backward:before {
  content: "\e071"; }

#bb .glyphicon-play:before {
  content: "\e072"; }

#bb .glyphicon-pause:before {
  content: "\e073"; }

#bb .glyphicon-stop:before {
  content: "\e074"; }

#bb .glyphicon-forward:before {
  content: "\e075"; }

#bb .glyphicon-fast-forward:before {
  content: "\e076"; }

#bb .glyphicon-step-forward:before {
  content: "\e077"; }

#bb .glyphicon-eject:before {
  content: "\e078"; }

#bb .glyphicon-chevron-left:before {
  content: "\e079"; }

#bb .glyphicon-chevron-right:before {
  content: "\e080"; }

#bb .glyphicon-plus-sign:before {
  content: "\e081"; }

#bb .glyphicon-minus-sign:before {
  content: "\e082"; }

#bb .glyphicon-remove-sign:before {
  content: "\e083"; }

#bb .glyphicon-ok-sign:before {
  content: "\e084"; }

#bb .glyphicon-question-sign:before {
  content: "\e085"; }

#bb .glyphicon-info-sign:before {
  content: "\e086"; }

#bb .glyphicon-screenshot:before {
  content: "\e087"; }

#bb .glyphicon-remove-circle:before {
  content: "\e088"; }

#bb .glyphicon-ok-circle:before {
  content: "\e089"; }

#bb .glyphicon-ban-circle:before {
  content: "\e090"; }

#bb .glyphicon-arrow-left:before {
  content: "\e091"; }

#bb .glyphicon-arrow-right:before {
  content: "\e092"; }

#bb .glyphicon-arrow-up:before {
  content: "\e093"; }

#bb .glyphicon-arrow-down:before {
  content: "\e094"; }

#bb .glyphicon-share-alt:before {
  content: "\e095"; }

#bb .glyphicon-resize-full:before {
  content: "\e096"; }

#bb .glyphicon-resize-small:before {
  content: "\e097"; }

#bb .glyphicon-exclamation-sign:before {
  content: "\e101"; }

#bb .glyphicon-gift:before {
  content: "\e102"; }

#bb .glyphicon-leaf:before {
  content: "\e103"; }

#bb .glyphicon-fire:before {
  content: "\e104"; }

#bb .glyphicon-eye-open:before {
  content: "\e105"; }

#bb .glyphicon-eye-close:before {
  content: "\e106"; }

#bb .glyphicon-warning-sign:before {
  content: "\e107"; }

#bb .glyphicon-plane:before {
  content: "\e108"; }

#bb .glyphicon-calendar:before {
  content: "\e109"; }

#bb .glyphicon-random:before {
  content: "\e110"; }

#bb .glyphicon-comment:before {
  content: "\e111"; }

#bb .glyphicon-magnet:before {
  content: "\e112"; }

#bb .glyphicon-chevron-up:before {
  content: "\e113"; }

#bb .glyphicon-chevron-down:before {
  content: "\e114"; }

#bb .glyphicon-retweet:before {
  content: "\e115"; }

#bb .glyphicon-shopping-cart:before {
  content: "\e116"; }

#bb .glyphicon-folder-close:before {
  content: "\e117"; }

#bb .glyphicon-folder-open:before {
  content: "\e118"; }

#bb .glyphicon-resize-vertical:before {
  content: "\e119"; }

#bb .glyphicon-resize-horizontal:before {
  content: "\e120"; }

#bb .glyphicon-hdd:before {
  content: "\e121"; }

#bb .glyphicon-bullhorn:before {
  content: "\e122"; }

#bb .glyphicon-bell:before {
  content: "\e123"; }

#bb .glyphicon-certificate:before {
  content: "\e124"; }

#bb .glyphicon-thumbs-up:before {
  content: "\e125"; }

#bb .glyphicon-thumbs-down:before {
  content: "\e126"; }

#bb .glyphicon-hand-right:before {
  content: "\e127"; }

#bb .glyphicon-hand-left:before {
  content: "\e128"; }

#bb .glyphicon-hand-up:before {
  content: "\e129"; }

#bb .glyphicon-hand-down:before {
  content: "\e130"; }

#bb .glyphicon-circle-arrow-right:before {
  content: "\e131"; }

#bb .glyphicon-circle-arrow-left:before {
  content: "\e132"; }

#bb .glyphicon-circle-arrow-up:before {
  content: "\e133"; }

#bb .glyphicon-circle-arrow-down:before {
  content: "\e134"; }

#bb .glyphicon-globe:before {
  content: "\e135"; }

#bb .glyphicon-wrench:before {
  content: "\e136"; }

#bb .glyphicon-tasks:before {
  content: "\e137"; }

#bb .glyphicon-filter:before {
  content: "\e138"; }

#bb .glyphicon-briefcase:before {
  content: "\e139"; }

#bb .glyphicon-fullscreen:before {
  content: "\e140"; }

#bb .glyphicon-dashboard:before {
  content: "\e141"; }

#bb .glyphicon-paperclip:before {
  content: "\e142"; }

#bb .glyphicon-heart-empty:before {
  content: "\e143"; }

#bb .glyphicon-link:before {
  content: "\e144"; }

#bb .glyphicon-phone:before {
  content: "\e145"; }

#bb .glyphicon-pushpin:before {
  content: "\e146"; }

#bb .glyphicon-usd:before {
  content: "\e148"; }

#bb .glyphicon-gbp:before {
  content: "\e149"; }

#bb .glyphicon-sort:before {
  content: "\e150"; }

#bb .glyphicon-sort-by-alphabet:before {
  content: "\e151"; }

#bb .glyphicon-sort-by-alphabet-alt:before {
  content: "\e152"; }

#bb .glyphicon-sort-by-order:before {
  content: "\e153"; }

#bb .glyphicon-sort-by-order-alt:before {
  content: "\e154"; }

#bb .glyphicon-sort-by-attributes:before {
  content: "\e155"; }

#bb .glyphicon-sort-by-attributes-alt:before {
  content: "\e156"; }

#bb .glyphicon-unchecked:before {
  content: "\e157"; }

#bb .glyphicon-expand:before {
  content: "\e158"; }

#bb .glyphicon-collapse-down:before {
  content: "\e159"; }

#bb .glyphicon-collapse-up:before {
  content: "\e160"; }

#bb .glyphicon-log-in:before {
  content: "\e161"; }

#bb .glyphicon-flash:before {
  content: "\e162"; }

#bb .glyphicon-log-out:before {
  content: "\e163"; }

#bb .glyphicon-new-window:before {
  content: "\e164"; }

#bb .glyphicon-record:before {
  content: "\e165"; }

#bb .glyphicon-save:before {
  content: "\e166"; }

#bb .glyphicon-open:before {
  content: "\e167"; }

#bb .glyphicon-saved:before {
  content: "\e168"; }

#bb .glyphicon-import:before {
  content: "\e169"; }

#bb .glyphicon-export:before {
  content: "\e170"; }

#bb .glyphicon-send:before {
  content: "\e171"; }

#bb .glyphicon-floppy-disk:before {
  content: "\e172"; }

#bb .glyphicon-floppy-saved:before {
  content: "\e173"; }

#bb .glyphicon-floppy-remove:before {
  content: "\e174"; }

#bb .glyphicon-floppy-save:before {
  content: "\e175"; }

#bb .glyphicon-floppy-open:before {
  content: "\e176"; }

#bb .glyphicon-credit-card:before {
  content: "\e177"; }

#bb .glyphicon-transfer:before {
  content: "\e178"; }

#bb .glyphicon-cutlery:before {
  content: "\e179"; }

#bb .glyphicon-header:before {
  content: "\e180"; }

#bb .glyphicon-compressed:before {
  content: "\e181"; }

#bb .glyphicon-earphone:before {
  content: "\e182"; }

#bb .glyphicon-phone-alt:before {
  content: "\e183"; }

#bb .glyphicon-tower:before {
  content: "\e184"; }

#bb .glyphicon-stats:before {
  content: "\e185"; }

#bb .glyphicon-sd-video:before {
  content: "\e186"; }

#bb .glyphicon-hd-video:before {
  content: "\e187"; }

#bb .glyphicon-subtitles:before {
  content: "\e188"; }

#bb .glyphicon-sound-stereo:before {
  content: "\e189"; }

#bb .glyphicon-sound-dolby:before {
  content: "\e190"; }

#bb .glyphicon-sound-5-1:before {
  content: "\e191"; }

#bb .glyphicon-sound-6-1:before {
  content: "\e192"; }

#bb .glyphicon-sound-7-1:before {
  content: "\e193"; }

#bb .glyphicon-copyright-mark:before {
  content: "\e194"; }

#bb .glyphicon-registration-mark:before {
  content: "\e195"; }

#bb .glyphicon-cloud-download:before {
  content: "\e197"; }

#bb .glyphicon-cloud-upload:before {
  content: "\e198"; }

#bb .glyphicon-tree-conifer:before {
  content: "\e199"; }

#bb .glyphicon-tree-deciduous:before {
  content: "\e200"; }

#bb .glyphicon-cd:before {
  content: "\e201"; }

#bb .glyphicon-save-file:before {
  content: "\e202"; }

#bb .glyphicon-open-file:before {
  content: "\e203"; }

#bb .glyphicon-level-up:before {
  content: "\e204"; }

#bb .glyphicon-copy:before {
  content: "\e205"; }

#bb .glyphicon-paste:before {
  content: "\e206"; }

#bb .glyphicon-alert:before {
  content: "\e209"; }

#bb .glyphicon-equalizer:before {
  content: "\e210"; }

#bb .glyphicon-king:before {
  content: "\e211"; }

#bb .glyphicon-queen:before {
  content: "\e212"; }

#bb .glyphicon-pawn:before {
  content: "\e213"; }

#bb .glyphicon-bishop:before {
  content: "\e214"; }

#bb .glyphicon-knight:before {
  content: "\e215"; }

#bb .glyphicon-baby-formula:before {
  content: "\e216"; }

#bb .glyphicon-tent:before {
  content: "\26fa"; }

#bb .glyphicon-blackboard:before {
  content: "\e218"; }

#bb .glyphicon-bed:before {
  content: "\e219"; }

#bb .glyphicon-apple:before {
  content: "\f8ff"; }

#bb .glyphicon-erase:before {
  content: "\e221"; }

#bb .glyphicon-hourglass:before {
  content: "\231b"; }

#bb .glyphicon-lamp:before {
  content: "\e223"; }

#bb .glyphicon-duplicate:before {
  content: "\e224"; }

#bb .glyphicon-piggy-bank:before {
  content: "\e225"; }

#bb .glyphicon-scissors:before {
  content: "\e226"; }

#bb .glyphicon-bitcoin:before {
  content: "\e227"; }

#bb .glyphicon-btc:before {
  content: "\e227"; }

#bb .glyphicon-xbt:before {
  content: "\e227"; }

#bb .glyphicon-yen:before {
  content: "\00a5"; }

#bb .glyphicon-jpy:before {
  content: "\00a5"; }

#bb .glyphicon-ruble:before {
  content: "\20bd"; }

#bb .glyphicon-rub:before {
  content: "\20bd"; }

#bb .glyphicon-scale:before {
  content: "\e230"; }

#bb .glyphicon-ice-lolly:before {
  content: "\e231"; }

#bb .glyphicon-ice-lolly-tasted:before {
  content: "\e232"; }

#bb .glyphicon-education:before {
  content: "\e233"; }

#bb .glyphicon-option-horizontal:before {
  content: "\e234"; }

#bb .glyphicon-option-vertical:before {
  content: "\e235"; }

#bb .glyphicon-menu-hamburger:before {
  content: "\e236"; }

#bb .glyphicon-modal-window:before {
  content: "\e237"; }

#bb .glyphicon-oil:before {
  content: "\e238"; }

#bb .glyphicon-grain:before {
  content: "\e239"; }

#bb .glyphicon-sunglasses:before {
  content: "\e240"; }

#bb .glyphicon-text-size:before {
  content: "\e241"; }

#bb .glyphicon-text-color:before {
  content: "\e242"; }

#bb .glyphicon-text-background:before {
  content: "\e243"; }

#bb .glyphicon-object-align-top:before {
  content: "\e244"; }

#bb .glyphicon-object-align-bottom:before {
  content: "\e245"; }

#bb .glyphicon-object-align-horizontal:before {
  content: "\e246"; }

#bb .glyphicon-object-align-left:before {
  content: "\e247"; }

#bb .glyphicon-object-align-vertical:before {
  content: "\e248"; }

#bb .glyphicon-object-align-right:before {
  content: "\e249"; }

#bb .glyphicon-triangle-right:before {
  content: "\e250"; }

#bb .glyphicon-triangle-left:before {
  content: "\e251"; }

#bb .glyphicon-triangle-bottom:before {
  content: "\e252"; }

#bb .glyphicon-triangle-top:before {
  content: "\e253"; }

#bb .glyphicon-console:before {
  content: "\e254"; }

#bb .glyphicon-superscript:before {
  content: "\e255"; }

#bb .glyphicon-subscript:before {
  content: "\e256"; }

#bb .glyphicon-menu-left:before {
  content: "\e257"; }

#bb .glyphicon-menu-right:before {
  content: "\e258"; }

#bb .glyphicon-menu-down:before {
  content: "\e259"; }

#bb .glyphicon-menu-up:before {
  content: "\e260"; }

#bb * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#bb *:before,
#bb *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#bb html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent; }

#bb body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857;
  color: #333333;
  background-color: #fff; }

#bb input,
#bb button,
#bb select,
#bb textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

#bb a {
  color: #337ab7;
  text-decoration: none; }
  #bb a:hover, #bb a:focus {
    color: #23527c;
    text-decoration: underline; }
  #bb a:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }

#bb figure {
  margin: 0; }

#bb img {
  vertical-align: middle; }

#bb .img-responsive {
  display: block;
  max-width: 100%;
  height: auto; }

#bb .img-rounded {
  border-radius: 6px; }

#bb .img-thumbnail {
  padding: 4px;
  line-height: 1.42857;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto; }

#bb .img-circle {
  border-radius: 50%; }

#bb hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee; }

#bb .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

#bb .sr-only-focusable:active, #bb .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

#bb [role="button"] {
  cursor: pointer; }

#bb h1, #bb h2, #bb h3, #bb h4, #bb h5, #bb h6,
#bb .h1, #bb .h2, #bb .h3, #bb .h4, #bb .h5, #bb .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit; }
  #bb h1 small,
  #bb h1 .small, #bb h2 small,
  #bb h2 .small, #bb h3 small,
  #bb h3 .small, #bb h4 small,
  #bb h4 .small, #bb h5 small,
  #bb h5 .small, #bb h6 small,
  #bb h6 .small,
  #bb .h1 small,
  #bb .h1 .small, #bb .h2 small,
  #bb .h2 .small, #bb .h3 small,
  #bb .h3 .small, #bb .h4 small,
  #bb .h4 .small, #bb .h5 small,
  #bb .h5 .small, #bb .h6 small,
  #bb .h6 .small {
    font-weight: normal;
    line-height: 1;
    color: #777777; }

#bb h1, #bb .h1,
#bb h2, #bb .h2,
#bb h3, #bb .h3 {
  margin-top: 20px;
  margin-bottom: 10px; }
  #bb h1 small,
  #bb h1 .small, #bb .h1 small,
  #bb .h1 .small,
  #bb h2 small,
  #bb h2 .small, #bb .h2 small,
  #bb .h2 .small,
  #bb h3 small,
  #bb h3 .small, #bb .h3 small,
  #bb .h3 .small {
    font-size: 65%; }

#bb h4, #bb .h4,
#bb h5, #bb .h5,
#bb h6, #bb .h6 {
  margin-top: 10px;
  margin-bottom: 10px; }
  #bb h4 small,
  #bb h4 .small, #bb .h4 small,
  #bb .h4 .small,
  #bb h5 small,
  #bb h5 .small, #bb .h5 small,
  #bb .h5 .small,
  #bb h6 small,
  #bb h6 .small, #bb .h6 small,
  #bb .h6 .small {
    font-size: 75%; }

#bb h1, #bb .h1 {
  font-size: 36px; }

#bb h2, #bb .h2 {
  font-size: 30px; }

#bb h3, #bb .h3 {
  font-size: 24px; }

#bb h4, #bb .h4 {
  font-size: 18px; }

#bb h5, #bb .h5 {
  font-size: 14px; }

#bb h6, #bb .h6 {
  font-size: 12px; }

#bb p {
  margin: 0 0 10px; }

#bb .lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4; }
  @media (min-width: 768px) {
    #bb .lead {
      font-size: 21px; } }

#bb small,
#bb .small {
  font-size: 85%; }

#bb mark,
#bb .mark {
  background-color: #fcf8e3;
  padding: .2em; }

#bb .text-left {
  text-align: left; }

#bb .text-right {
  text-align: right; }

#bb .text-center {
  text-align: center; }

#bb .text-justify {
  text-align: justify; }

#bb .text-nowrap {
  white-space: nowrap; }

#bb .text-lowercase {
  text-transform: lowercase; }

#bb .text-uppercase, #bb .initialism {
  text-transform: uppercase; }

#bb .text-capitalize {
  text-transform: capitalize; }

#bb .text-muted {
  color: #777777; }

#bb .text-primary {
  color: #337ab7; }

#bb a.text-primary:hover,
#bb a.text-primary:focus {
  color: #286090; }

#bb .text-success {
  color: #3c763d; }

#bb a.text-success:hover,
#bb a.text-success:focus {
  color: #2b542c; }

#bb .text-info {
  color: #31708f; }

#bb a.text-info:hover,
#bb a.text-info:focus {
  color: #245269; }

#bb .text-warning {
  color: #8a6d3b; }

#bb a.text-warning:hover,
#bb a.text-warning:focus {
  color: #66512c; }

#bb .text-danger {
  color: #a94442; }

#bb a.text-danger:hover,
#bb a.text-danger:focus {
  color: #843534; }

#bb .bg-primary {
  color: #fff; }

#bb .bg-primary {
  background-color: #337ab7; }

#bb a.bg-primary:hover,
#bb a.bg-primary:focus {
  background-color: #286090; }

#bb .bg-success {
  background-color: #dff0d8; }

#bb a.bg-success:hover,
#bb a.bg-success:focus {
  background-color: #c1e2b3; }

#bb .bg-info {
  background-color: #d9edf7; }

#bb a.bg-info:hover,
#bb a.bg-info:focus {
  background-color: #afd9ee; }

#bb .bg-warning {
  background-color: #fcf8e3; }

#bb a.bg-warning:hover,
#bb a.bg-warning:focus {
  background-color: #f7ecb5; }

#bb .bg-danger {
  background-color: #f2dede; }

#bb a.bg-danger:hover,
#bb a.bg-danger:focus {
  background-color: #e4b9b9; }

#bb .page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee; }

#bb ul,
#bb ol {
  margin-top: 0;
  margin-bottom: 10px; }
  #bb ul ul,
  #bb ul ol,
  #bb ol ul,
  #bb ol ol {
    margin-bottom: 0; }

#bb .list-unstyled {
  padding-left: 0;
  list-style: none; }

#bb .list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px; }
  #bb .list-inline > li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px; }

#bb dl {
  margin-top: 0;
  margin-bottom: 20px; }

#bb dt,
#bb dd {
  line-height: 1.42857; }

#bb dt {
  font-weight: bold; }

#bb dd {
  margin-left: 0; }

#bb .dl-horizontal dd:before, #bb .dl-horizontal dd:after {
  content: " ";
  display: table; }

#bb .dl-horizontal dd:after {
  clear: both; }

@media (min-width: 768px) {
  #bb .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  #bb .dl-horizontal dd {
    margin-left: 180px; } }

#bb abbr[title],
#bb abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777; }

#bb .initialism {
  font-size: 90%; }

#bb blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee; }
  #bb blockquote p:last-child,
  #bb blockquote ul:last-child,
  #bb blockquote ol:last-child {
    margin-bottom: 0; }
  #bb blockquote footer,
  #bb blockquote small,
  #bb blockquote .small {
    display: block;
    font-size: 80%;
    line-height: 1.42857;
    color: #777777; }
    #bb blockquote footer:before,
    #bb blockquote small:before,
    #bb blockquote .small:before {
      content: '\2014 \00A0'; }

#bb .blockquote-reverse,
#bb blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right; }
  #bb .blockquote-reverse footer:before,
  #bb .blockquote-reverse small:before,
  #bb .blockquote-reverse .small:before,
  #bb blockquote.pull-right footer:before,
  #bb blockquote.pull-right small:before,
  #bb blockquote.pull-right .small:before {
    content: ''; }
  #bb .blockquote-reverse footer:after,
  #bb .blockquote-reverse small:after,
  #bb .blockquote-reverse .small:after,
  #bb blockquote.pull-right footer:after,
  #bb blockquote.pull-right small:after,
  #bb blockquote.pull-right .small:after {
    content: '\00A0 \2014'; }

#bb address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857; }

#bb code,
#bb kbd,
#bb pre,
#bb samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace; }

#bb code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px; }

#bb kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); }
  #bb kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: bold;
    box-shadow: none; }

#bb pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px; }
  #bb pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0; }

#bb .pre-scrollable {
  max-height: 340px;
  overflow-y: scroll; }

#bb .container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }
  #bb .container:before, #bb .container:after {
    content: " ";
    display: table; }
  #bb .container:after {
    clear: both; }
  @media (min-width: 768px) {
    #bb .container {
      width: 750px; } }
  @media (min-width: 992px) {
    #bb .container {
      width: 970px; } }
  @media (min-width: 1200px) {
    #bb .container {
      width: 1170px; } }

#bb .container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }
  #bb .container-fluid:before, #bb .container-fluid:after {
    content: " ";
    display: table; }
  #bb .container-fluid:after {
    clear: both; }

#bb .row {
  margin-left: -15px;
  margin-right: -15px; }
  #bb .row:before, #bb .row:after {
    content: " ";
    display: table; }
  #bb .row:after {
    clear: both; }

#bb .col-xs-1, #bb .col-sm-1, #bb .col-md-1, #bb .col-lg-1, #bb .col-xs-2, #bb .col-sm-2, #bb .col-md-2, #bb .col-lg-2, #bb .col-xs-3, #bb .col-sm-3, #bb .col-md-3, #bb .col-lg-3, #bb .col-xs-4, #bb .col-sm-4, #bb .col-md-4, #bb .col-lg-4, #bb .col-xs-5, #bb .col-sm-5, #bb .col-md-5, #bb .col-lg-5, #bb .col-xs-6, #bb .col-sm-6, #bb .col-md-6, #bb .col-lg-6, #bb .col-xs-7, #bb .col-sm-7, #bb .col-md-7, #bb .col-lg-7, #bb .col-xs-8, #bb .col-sm-8, #bb .col-md-8, #bb .col-lg-8, #bb .col-xs-9, #bb .col-sm-9, #bb .col-md-9, #bb .col-lg-9, #bb .col-xs-10, #bb .col-sm-10, #bb .col-md-10, #bb .col-lg-10, #bb .col-xs-11, #bb .col-sm-11, #bb .col-md-11, #bb .col-lg-11, #bb .col-xs-12, #bb .col-sm-12, #bb .col-md-12, #bb .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }

#bb .col-xs-1, #bb .col-xs-2, #bb .col-xs-3, #bb .col-xs-4, #bb .col-xs-5, #bb .col-xs-6, #bb .col-xs-7, #bb .col-xs-8, #bb .col-xs-9, #bb .col-xs-10, #bb .col-xs-11, #bb .col-xs-12 {
  float: left; }

#bb .col-xs-1 {
  width: 8.33333%; }

#bb .col-xs-2 {
  width: 16.66667%; }

#bb .col-xs-3 {
  width: 25%; }

#bb .col-xs-4 {
  width: 33.33333%; }

#bb .col-xs-5 {
  width: 41.66667%; }

#bb .col-xs-6 {
  width: 50%; }

#bb .col-xs-7 {
  width: 58.33333%; }

#bb .col-xs-8 {
  width: 66.66667%; }

#bb .col-xs-9 {
  width: 75%; }

#bb .col-xs-10 {
  width: 83.33333%; }

#bb .col-xs-11 {
  width: 91.66667%; }

#bb .col-xs-12 {
  width: 100%; }

#bb .col-xs-pull-0 {
  right: auto; }

#bb .col-xs-pull-1 {
  right: 8.33333%; }

#bb .col-xs-pull-2 {
  right: 16.66667%; }

#bb .col-xs-pull-3 {
  right: 25%; }

#bb .col-xs-pull-4 {
  right: 33.33333%; }

#bb .col-xs-pull-5 {
  right: 41.66667%; }

#bb .col-xs-pull-6 {
  right: 50%; }

#bb .col-xs-pull-7 {
  right: 58.33333%; }

#bb .col-xs-pull-8 {
  right: 66.66667%; }

#bb .col-xs-pull-9 {
  right: 75%; }

#bb .col-xs-pull-10 {
  right: 83.33333%; }

#bb .col-xs-pull-11 {
  right: 91.66667%; }

#bb .col-xs-pull-12 {
  right: 100%; }

#bb .col-xs-push-0 {
  left: auto; }

#bb .col-xs-push-1 {
  left: 8.33333%; }

#bb .col-xs-push-2 {
  left: 16.66667%; }

#bb .col-xs-push-3 {
  left: 25%; }

#bb .col-xs-push-4 {
  left: 33.33333%; }

#bb .col-xs-push-5 {
  left: 41.66667%; }

#bb .col-xs-push-6 {
  left: 50%; }

#bb .col-xs-push-7 {
  left: 58.33333%; }

#bb .col-xs-push-8 {
  left: 66.66667%; }

#bb .col-xs-push-9 {
  left: 75%; }

#bb .col-xs-push-10 {
  left: 83.33333%; }

#bb .col-xs-push-11 {
  left: 91.66667%; }

#bb .col-xs-push-12 {
  left: 100%; }

#bb .col-xs-offset-0 {
  margin-left: 0%; }

#bb .col-xs-offset-1 {
  margin-left: 8.33333%; }

#bb .col-xs-offset-2 {
  margin-left: 16.66667%; }

#bb .col-xs-offset-3 {
  margin-left: 25%; }

#bb .col-xs-offset-4 {
  margin-left: 33.33333%; }

#bb .col-xs-offset-5 {
  margin-left: 41.66667%; }

#bb .col-xs-offset-6 {
  margin-left: 50%; }

#bb .col-xs-offset-7 {
  margin-left: 58.33333%; }

#bb .col-xs-offset-8 {
  margin-left: 66.66667%; }

#bb .col-xs-offset-9 {
  margin-left: 75%; }

#bb .col-xs-offset-10 {
  margin-left: 83.33333%; }

#bb .col-xs-offset-11 {
  margin-left: 91.66667%; }

#bb .col-xs-offset-12 {
  margin-left: 100%; }

@media (min-width: 768px) {
  #bb .col-sm-1, #bb .col-sm-2, #bb .col-sm-3, #bb .col-sm-4, #bb .col-sm-5, #bb .col-sm-6, #bb .col-sm-7, #bb .col-sm-8, #bb .col-sm-9, #bb .col-sm-10, #bb .col-sm-11, #bb .col-sm-12 {
    float: left; }
  #bb .col-sm-1 {
    width: 8.33333%; }
  #bb .col-sm-2 {
    width: 16.66667%; }
  #bb .col-sm-3 {
    width: 25%; }
  #bb .col-sm-4 {
    width: 33.33333%; }
  #bb .col-sm-5 {
    width: 41.66667%; }
  #bb .col-sm-6 {
    width: 50%; }
  #bb .col-sm-7 {
    width: 58.33333%; }
  #bb .col-sm-8 {
    width: 66.66667%; }
  #bb .col-sm-9 {
    width: 75%; }
  #bb .col-sm-10 {
    width: 83.33333%; }
  #bb .col-sm-11 {
    width: 91.66667%; }
  #bb .col-sm-12 {
    width: 100%; }
  #bb .col-sm-pull-0 {
    right: auto; }
  #bb .col-sm-pull-1 {
    right: 8.33333%; }
  #bb .col-sm-pull-2 {
    right: 16.66667%; }
  #bb .col-sm-pull-3 {
    right: 25%; }
  #bb .col-sm-pull-4 {
    right: 33.33333%; }
  #bb .col-sm-pull-5 {
    right: 41.66667%; }
  #bb .col-sm-pull-6 {
    right: 50%; }
  #bb .col-sm-pull-7 {
    right: 58.33333%; }
  #bb .col-sm-pull-8 {
    right: 66.66667%; }
  #bb .col-sm-pull-9 {
    right: 75%; }
  #bb .col-sm-pull-10 {
    right: 83.33333%; }
  #bb .col-sm-pull-11 {
    right: 91.66667%; }
  #bb .col-sm-pull-12 {
    right: 100%; }
  #bb .col-sm-push-0 {
    left: auto; }
  #bb .col-sm-push-1 {
    left: 8.33333%; }
  #bb .col-sm-push-2 {
    left: 16.66667%; }
  #bb .col-sm-push-3 {
    left: 25%; }
  #bb .col-sm-push-4 {
    left: 33.33333%; }
  #bb .col-sm-push-5 {
    left: 41.66667%; }
  #bb .col-sm-push-6 {
    left: 50%; }
  #bb .col-sm-push-7 {
    left: 58.33333%; }
  #bb .col-sm-push-8 {
    left: 66.66667%; }
  #bb .col-sm-push-9 {
    left: 75%; }
  #bb .col-sm-push-10 {
    left: 83.33333%; }
  #bb .col-sm-push-11 {
    left: 91.66667%; }
  #bb .col-sm-push-12 {
    left: 100%; }
  #bb .col-sm-offset-0 {
    margin-left: 0%; }
  #bb .col-sm-offset-1 {
    margin-left: 8.33333%; }
  #bb .col-sm-offset-2 {
    margin-left: 16.66667%; }
  #bb .col-sm-offset-3 {
    margin-left: 25%; }
  #bb .col-sm-offset-4 {
    margin-left: 33.33333%; }
  #bb .col-sm-offset-5 {
    margin-left: 41.66667%; }
  #bb .col-sm-offset-6 {
    margin-left: 50%; }
  #bb .col-sm-offset-7 {
    margin-left: 58.33333%; }
  #bb .col-sm-offset-8 {
    margin-left: 66.66667%; }
  #bb .col-sm-offset-9 {
    margin-left: 75%; }
  #bb .col-sm-offset-10 {
    margin-left: 83.33333%; }
  #bb .col-sm-offset-11 {
    margin-left: 91.66667%; }
  #bb .col-sm-offset-12 {
    margin-left: 100%; } }

@media (min-width: 992px) {
  #bb .col-md-1, #bb .col-md-2, #bb .col-md-3, #bb .col-md-4, #bb .col-md-5, #bb .col-md-6, #bb .col-md-7, #bb .col-md-8, #bb .col-md-9, #bb .col-md-10, #bb .col-md-11, #bb .col-md-12 {
    float: left; }
  #bb .col-md-1 {
    width: 8.33333%; }
  #bb .col-md-2 {
    width: 16.66667%; }
  #bb .col-md-3 {
    width: 25%; }
  #bb .col-md-4 {
    width: 33.33333%; }
  #bb .col-md-5 {
    width: 41.66667%; }
  #bb .col-md-6 {
    width: 50%; }
  #bb .col-md-7 {
    width: 58.33333%; }
  #bb .col-md-8 {
    width: 66.66667%; }
  #bb .col-md-9 {
    width: 75%; }
  #bb .col-md-10 {
    width: 83.33333%; }
  #bb .col-md-11 {
    width: 91.66667%; }
  #bb .col-md-12 {
    width: 100%; }
  #bb .col-md-pull-0 {
    right: auto; }
  #bb .col-md-pull-1 {
    right: 8.33333%; }
  #bb .col-md-pull-2 {
    right: 16.66667%; }
  #bb .col-md-pull-3 {
    right: 25%; }
  #bb .col-md-pull-4 {
    right: 33.33333%; }
  #bb .col-md-pull-5 {
    right: 41.66667%; }
  #bb .col-md-pull-6 {
    right: 50%; }
  #bb .col-md-pull-7 {
    right: 58.33333%; }
  #bb .col-md-pull-8 {
    right: 66.66667%; }
  #bb .col-md-pull-9 {
    right: 75%; }
  #bb .col-md-pull-10 {
    right: 83.33333%; }
  #bb .col-md-pull-11 {
    right: 91.66667%; }
  #bb .col-md-pull-12 {
    right: 100%; }
  #bb .col-md-push-0 {
    left: auto; }
  #bb .col-md-push-1 {
    left: 8.33333%; }
  #bb .col-md-push-2 {
    left: 16.66667%; }
  #bb .col-md-push-3 {
    left: 25%; }
  #bb .col-md-push-4 {
    left: 33.33333%; }
  #bb .col-md-push-5 {
    left: 41.66667%; }
  #bb .col-md-push-6 {
    left: 50%; }
  #bb .col-md-push-7 {
    left: 58.33333%; }
  #bb .col-md-push-8 {
    left: 66.66667%; }
  #bb .col-md-push-9 {
    left: 75%; }
  #bb .col-md-push-10 {
    left: 83.33333%; }
  #bb .col-md-push-11 {
    left: 91.66667%; }
  #bb .col-md-push-12 {
    left: 100%; }
  #bb .col-md-offset-0 {
    margin-left: 0%; }
  #bb .col-md-offset-1 {
    margin-left: 8.33333%; }
  #bb .col-md-offset-2 {
    margin-left: 16.66667%; }
  #bb .col-md-offset-3 {
    margin-left: 25%; }
  #bb .col-md-offset-4 {
    margin-left: 33.33333%; }
  #bb .col-md-offset-5 {
    margin-left: 41.66667%; }
  #bb .col-md-offset-6 {
    margin-left: 50%; }
  #bb .col-md-offset-7 {
    margin-left: 58.33333%; }
  #bb .col-md-offset-8 {
    margin-left: 66.66667%; }
  #bb .col-md-offset-9 {
    margin-left: 75%; }
  #bb .col-md-offset-10 {
    margin-left: 83.33333%; }
  #bb .col-md-offset-11 {
    margin-left: 91.66667%; }
  #bb .col-md-offset-12 {
    margin-left: 100%; } }

@media (min-width: 1200px) {
  #bb .col-lg-1, #bb .col-lg-2, #bb .col-lg-3, #bb .col-lg-4, #bb .col-lg-5, #bb .col-lg-6, #bb .col-lg-7, #bb .col-lg-8, #bb .col-lg-9, #bb .col-lg-10, #bb .col-lg-11, #bb .col-lg-12 {
    float: left; }
  #bb .col-lg-1 {
    width: 8.33333%; }
  #bb .col-lg-2 {
    width: 16.66667%; }
  #bb .col-lg-3 {
    width: 25%; }
  #bb .col-lg-4 {
    width: 33.33333%; }
  #bb .col-lg-5 {
    width: 41.66667%; }
  #bb .col-lg-6 {
    width: 50%; }
  #bb .col-lg-7 {
    width: 58.33333%; }
  #bb .col-lg-8 {
    width: 66.66667%; }
  #bb .col-lg-9 {
    width: 75%; }
  #bb .col-lg-10 {
    width: 83.33333%; }
  #bb .col-lg-11 {
    width: 91.66667%; }
  #bb .col-lg-12 {
    width: 100%; }
  #bb .col-lg-pull-0 {
    right: auto; }
  #bb .col-lg-pull-1 {
    right: 8.33333%; }
  #bb .col-lg-pull-2 {
    right: 16.66667%; }
  #bb .col-lg-pull-3 {
    right: 25%; }
  #bb .col-lg-pull-4 {
    right: 33.33333%; }
  #bb .col-lg-pull-5 {
    right: 41.66667%; }
  #bb .col-lg-pull-6 {
    right: 50%; }
  #bb .col-lg-pull-7 {
    right: 58.33333%; }
  #bb .col-lg-pull-8 {
    right: 66.66667%; }
  #bb .col-lg-pull-9 {
    right: 75%; }
  #bb .col-lg-pull-10 {
    right: 83.33333%; }
  #bb .col-lg-pull-11 {
    right: 91.66667%; }
  #bb .col-lg-pull-12 {
    right: 100%; }
  #bb .col-lg-push-0 {
    left: auto; }
  #bb .col-lg-push-1 {
    left: 8.33333%; }
  #bb .col-lg-push-2 {
    left: 16.66667%; }
  #bb .col-lg-push-3 {
    left: 25%; }
  #bb .col-lg-push-4 {
    left: 33.33333%; }
  #bb .col-lg-push-5 {
    left: 41.66667%; }
  #bb .col-lg-push-6 {
    left: 50%; }
  #bb .col-lg-push-7 {
    left: 58.33333%; }
  #bb .col-lg-push-8 {
    left: 66.66667%; }
  #bb .col-lg-push-9 {
    left: 75%; }
  #bb .col-lg-push-10 {
    left: 83.33333%; }
  #bb .col-lg-push-11 {
    left: 91.66667%; }
  #bb .col-lg-push-12 {
    left: 100%; }
  #bb .col-lg-offset-0 {
    margin-left: 0%; }
  #bb .col-lg-offset-1 {
    margin-left: 8.33333%; }
  #bb .col-lg-offset-2 {
    margin-left: 16.66667%; }
  #bb .col-lg-offset-3 {
    margin-left: 25%; }
  #bb .col-lg-offset-4 {
    margin-left: 33.33333%; }
  #bb .col-lg-offset-5 {
    margin-left: 41.66667%; }
  #bb .col-lg-offset-6 {
    margin-left: 50%; }
  #bb .col-lg-offset-7 {
    margin-left: 58.33333%; }
  #bb .col-lg-offset-8 {
    margin-left: 66.66667%; }
  #bb .col-lg-offset-9 {
    margin-left: 75%; }
  #bb .col-lg-offset-10 {
    margin-left: 83.33333%; }
  #bb .col-lg-offset-11 {
    margin-left: 91.66667%; }
  #bb .col-lg-offset-12 {
    margin-left: 100%; } }

#bb table {
  background-color: transparent; }

#bb caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left; }

#bb th {
  text-align: left; }

#bb .table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px; }
  #bb .table > thead > tr > th,
  #bb .table > thead > tr > td,
  #bb .table > tbody > tr > th,
  #bb .table > tbody > tr > td,
  #bb .table > tfoot > tr > th,
  #bb .table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.42857;
    vertical-align: top;
    border-top: 1px solid #ddd; }
  #bb .table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd; }
  #bb .table > caption + thead > tr:first-child > th,
  #bb .table > caption + thead > tr:first-child > td,
  #bb .table > colgroup + thead > tr:first-child > th,
  #bb .table > colgroup + thead > tr:first-child > td,
  #bb .table > thead:first-child > tr:first-child > th,
  #bb .table > thead:first-child > tr:first-child > td {
    border-top: 0; }
  #bb .table > tbody + tbody {
    border-top: 2px solid #ddd; }
  #bb .table .table {
    background-color: #fff; }

#bb .table-condensed > thead > tr > th,
#bb .table-condensed > thead > tr > td,
#bb .table-condensed > tbody > tr > th,
#bb .table-condensed > tbody > tr > td,
#bb .table-condensed > tfoot > tr > th,
#bb .table-condensed > tfoot > tr > td {
  padding: 5px; }

#bb .table-bordered {
  border: 1px solid #ddd; }
  #bb .table-bordered > thead > tr > th,
  #bb .table-bordered > thead > tr > td,
  #bb .table-bordered > tbody > tr > th,
  #bb .table-bordered > tbody > tr > td,
  #bb .table-bordered > tfoot > tr > th,
  #bb .table-bordered > tfoot > tr > td {
    border: 1px solid #ddd; }
  #bb .table-bordered > thead > tr > th,
  #bb .table-bordered > thead > tr > td {
    border-bottom-width: 2px; }

#bb .table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9; }

#bb .table-hover > tbody > tr:hover {
  background-color: #f5f5f5; }

#bb table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column; }

#bb table td[class*="col-"],
#bb table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell; }

#bb .table > thead > tr > td.active,
#bb .table > thead > tr > th.active,
#bb .table > thead > tr.active > td,
#bb .table > thead > tr.active > th,
#bb .table > tbody > tr > td.active,
#bb .table > tbody > tr > th.active,
#bb .table > tbody > tr.active > td,
#bb .table > tbody > tr.active > th,
#bb .table > tfoot > tr > td.active,
#bb .table > tfoot > tr > th.active,
#bb .table > tfoot > tr.active > td,
#bb .table > tfoot > tr.active > th {
  background-color: #f5f5f5; }

#bb .table-hover > tbody > tr > td.active:hover,
#bb .table-hover > tbody > tr > th.active:hover,
#bb .table-hover > tbody > tr.active:hover > td,
#bb .table-hover > tbody > tr:hover > .active,
#bb .table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8; }

#bb .table > thead > tr > td.success,
#bb .table > thead > tr > th.success,
#bb .table > thead > tr.success > td,
#bb .table > thead > tr.success > th,
#bb .table > tbody > tr > td.success,
#bb .table > tbody > tr > th.success,
#bb .table > tbody > tr.success > td,
#bb .table > tbody > tr.success > th,
#bb .table > tfoot > tr > td.success,
#bb .table > tfoot > tr > th.success,
#bb .table > tfoot > tr.success > td,
#bb .table > tfoot > tr.success > th {
  background-color: #dff0d8; }

#bb .table-hover > tbody > tr > td.success:hover,
#bb .table-hover > tbody > tr > th.success:hover,
#bb .table-hover > tbody > tr.success:hover > td,
#bb .table-hover > tbody > tr:hover > .success,
#bb .table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6; }

#bb .table > thead > tr > td.info,
#bb .table > thead > tr > th.info,
#bb .table > thead > tr.info > td,
#bb .table > thead > tr.info > th,
#bb .table > tbody > tr > td.info,
#bb .table > tbody > tr > th.info,
#bb .table > tbody > tr.info > td,
#bb .table > tbody > tr.info > th,
#bb .table > tfoot > tr > td.info,
#bb .table > tfoot > tr > th.info,
#bb .table > tfoot > tr.info > td,
#bb .table > tfoot > tr.info > th {
  background-color: #d9edf7; }

#bb .table-hover > tbody > tr > td.info:hover,
#bb .table-hover > tbody > tr > th.info:hover,
#bb .table-hover > tbody > tr.info:hover > td,
#bb .table-hover > tbody > tr:hover > .info,
#bb .table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3; }

#bb .table > thead > tr > td.warning,
#bb .table > thead > tr > th.warning,
#bb .table > thead > tr.warning > td,
#bb .table > thead > tr.warning > th,
#bb .table > tbody > tr > td.warning,
#bb .table > tbody > tr > th.warning,
#bb .table > tbody > tr.warning > td,
#bb .table > tbody > tr.warning > th,
#bb .table > tfoot > tr > td.warning,
#bb .table > tfoot > tr > th.warning,
#bb .table > tfoot > tr.warning > td,
#bb .table > tfoot > tr.warning > th {
  background-color: #fcf8e3; }

#bb .table-hover > tbody > tr > td.warning:hover,
#bb .table-hover > tbody > tr > th.warning:hover,
#bb .table-hover > tbody > tr.warning:hover > td,
#bb .table-hover > tbody > tr:hover > .warning,
#bb .table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc; }

#bb .table > thead > tr > td.danger,
#bb .table > thead > tr > th.danger,
#bb .table > thead > tr.danger > td,
#bb .table > thead > tr.danger > th,
#bb .table > tbody > tr > td.danger,
#bb .table > tbody > tr > th.danger,
#bb .table > tbody > tr.danger > td,
#bb .table > tbody > tr.danger > th,
#bb .table > tfoot > tr > td.danger,
#bb .table > tfoot > tr > th.danger,
#bb .table > tfoot > tr.danger > td,
#bb .table > tfoot > tr.danger > th {
  background-color: #f2dede; }

#bb .table-hover > tbody > tr > td.danger:hover,
#bb .table-hover > tbody > tr > th.danger:hover,
#bb .table-hover > tbody > tr.danger:hover > td,
#bb .table-hover > tbody > tr:hover > .danger,
#bb .table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc; }

#bb .table-responsive {
  overflow-x: auto;
  min-height: 0.01%; }
  @media screen and (max-width: 767px) {
    #bb .table-responsive {
      width: 100%;
      margin-bottom: 15px;
      overflow-y: hidden;
      -ms-overflow-style: -ms-autohiding-scrollbar;
      border: 1px solid #ddd; }
      #bb .table-responsive > .table {
        margin-bottom: 0; }
        #bb .table-responsive > .table > thead > tr > th,
        #bb .table-responsive > .table > thead > tr > td,
        #bb .table-responsive > .table > tbody > tr > th,
        #bb .table-responsive > .table > tbody > tr > td,
        #bb .table-responsive > .table > tfoot > tr > th,
        #bb .table-responsive > .table > tfoot > tr > td {
          white-space: nowrap; }
      #bb .table-responsive > .table-bordered {
        border: 0; }
        #bb .table-responsive > .table-bordered > thead > tr > th:first-child,
        #bb .table-responsive > .table-bordered > thead > tr > td:first-child,
        #bb .table-responsive > .table-bordered > tbody > tr > th:first-child,
        #bb .table-responsive > .table-bordered > tbody > tr > td:first-child,
        #bb .table-responsive > .table-bordered > tfoot > tr > th:first-child,
        #bb .table-responsive > .table-bordered > tfoot > tr > td:first-child {
          border-left: 0; }
        #bb .table-responsive > .table-bordered > thead > tr > th:last-child,
        #bb .table-responsive > .table-bordered > thead > tr > td:last-child,
        #bb .table-responsive > .table-bordered > tbody > tr > th:last-child,
        #bb .table-responsive > .table-bordered > tbody > tr > td:last-child,
        #bb .table-responsive > .table-bordered > tfoot > tr > th:last-child,
        #bb .table-responsive > .table-bordered > tfoot > tr > td:last-child {
          border-right: 0; }
        #bb .table-responsive > .table-bordered > tbody > tr:last-child > th,
        #bb .table-responsive > .table-bordered > tbody > tr:last-child > td,
        #bb .table-responsive > .table-bordered > tfoot > tr:last-child > th,
        #bb .table-responsive > .table-bordered > tfoot > tr:last-child > td {
          border-bottom: 0; } }

#bb fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0; }

#bb legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5; }

#bb label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold; }

#bb input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#bb input[type="radio"],
#bb input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal; }

#bb input[type="file"] {
  display: block; }

#bb input[type="range"] {
  display: block;
  width: 100%; }

#bb select[multiple],
#bb select[size] {
  height: auto; }

#bb input[type="file"]:focus,
#bb input[type="radio"]:focus,
#bb input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

#bb output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555555; }

#bb .form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-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-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }
  #bb .form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }
  #bb .form-control::-moz-placeholder {
    color: #999;
    opacity: 1; }
  #bb .form-control:-ms-input-placeholder {
    color: #999; }
  #bb .form-control::-webkit-input-placeholder {
    color: #999; }
  #bb .form-control::-ms-expand {
    border: 0;
    background-color: transparent; }
  #bb .form-control[disabled], #bb .form-control[readonly],
  fieldset[disabled] #bb .form-control {
    background-color: #eeeeee;
    opacity: 1; }
  #bb .form-control[disabled],
  fieldset[disabled] #bb .form-control {
    cursor: not-allowed; }

#bb textarea.form-control {
  height: auto; }

#bb input[type="search"] {
  -webkit-appearance: none; }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  #bb input[type="date"].form-control,
  #bb input[type="time"].form-control,
  #bb input[type="datetime-local"].form-control,
  #bb input[type="month"].form-control {
    line-height: 34px; }
  #bb input[type="date"].input-sm, #bb .input-group-sm > input[type="date"].form-control, #bb .input-group-sm > input[type="date"].input-group-addon, #bb .input-group-sm > .input-group-btn > input[type="date"].btn,
  .input-group-sm #bb input[type="date"],
  #bb input[type="time"].input-sm, #bb .input-group-sm > input[type="time"].form-control, #bb .input-group-sm > input[type="time"].input-group-addon, #bb .input-group-sm > .input-group-btn > input[type="time"].btn,
  .input-group-sm
  #bb input[type="time"],
  #bb input[type="datetime-local"].input-sm, #bb .input-group-sm > input[type="datetime-local"].form-control, #bb .input-group-sm > input[type="datetime-local"].input-group-addon, #bb .input-group-sm > .input-group-btn > input[type="datetime-local"].btn,
  .input-group-sm
  #bb input[type="datetime-local"],
  #bb input[type="month"].input-sm, #bb .input-group-sm > input[type="month"].form-control, #bb .input-group-sm > input[type="month"].input-group-addon, #bb .input-group-sm > .input-group-btn > input[type="month"].btn,
  .input-group-sm
  #bb input[type="month"] {
    line-height: 30px; }
  #bb input[type="date"].input-lg, #bb .input-group-lg > input[type="date"].form-control, #bb .input-group-lg > input[type="date"].input-group-addon, #bb .input-group-lg > .input-group-btn > input[type="date"].btn,
  .input-group-lg #bb input[type="date"],
  #bb input[type="time"].input-lg, #bb .input-group-lg > input[type="time"].form-control, #bb .input-group-lg > input[type="time"].input-group-addon, #bb .input-group-lg > .input-group-btn > input[type="time"].btn,
  .input-group-lg
  #bb input[type="time"],
  #bb input[type="datetime-local"].input-lg, #bb .input-group-lg > input[type="datetime-local"].form-control, #bb .input-group-lg > input[type="datetime-local"].input-group-addon, #bb .input-group-lg > .input-group-btn > input[type="datetime-local"].btn,
  .input-group-lg
  #bb input[type="datetime-local"],
  #bb input[type="month"].input-lg, #bb .input-group-lg > input[type="month"].form-control, #bb .input-group-lg > input[type="month"].input-group-addon, #bb .input-group-lg > .input-group-btn > input[type="month"].btn,
  .input-group-lg
  #bb input[type="month"] {
    line-height: 46px; } }

#bb .form-group {
  margin-bottom: 15px; }

#bb .radio,
#bb .checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px; }
  #bb .radio label,
  #bb .checkbox label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer; }

#bb .radio input[type="radio"],
#bb .radio-inline input[type="radio"],
#bb .checkbox input[type="checkbox"],
#bb .checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9; }

#bb .radio + .radio,
#bb .checkbox + .checkbox {
  margin-top: -5px; }

#bb .radio-inline,
#bb .checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer; }

#bb .radio-inline + .radio-inline,
#bb .checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px; }

#bb input[type="radio"][disabled], #bb input[type="radio"].disabled,
fieldset[disabled] #bb input[type="radio"],
#bb input[type="checkbox"][disabled],
#bb input[type="checkbox"].disabled,
fieldset[disabled]
#bb input[type="checkbox"] {
  cursor: not-allowed; }

#bb .radio-inline.disabled,
fieldset[disabled] #bb .radio-inline,
#bb .checkbox-inline.disabled,
fieldset[disabled]
#bb .checkbox-inline {
  cursor: not-allowed; }

#bb .radio.disabled label,
fieldset[disabled] #bb .radio label,
#bb .checkbox.disabled label,
fieldset[disabled]
#bb .checkbox label {
  cursor: not-allowed; }

#bb .form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 34px; }
  #bb .form-control-static.input-lg, #bb .input-group-lg > .form-control-static.form-control, #bb .input-group-lg > .form-control-static.input-group-addon, #bb .input-group-lg > .input-group-btn > .form-control-static.btn, #bb .form-control-static.input-sm, #bb .input-group-sm > .form-control-static.form-control, #bb .input-group-sm > .form-control-static.input-group-addon, #bb .input-group-sm > .input-group-btn > .form-control-static.btn {
    padding-left: 0;
    padding-right: 0; }

#bb .input-sm, #bb .input-group-sm > .form-control, #bb .input-group-sm > .input-group-addon, #bb .input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

#bb select.input-sm, #bb .input-group-sm > select.form-control, #bb .input-group-sm > select.input-group-addon, #bb .input-group-sm > .input-group-btn > select.btn {
  height: 30px;
  line-height: 30px; }

#bb textarea.input-sm, #bb .input-group-sm > textarea.form-control, #bb .input-group-sm > textarea.input-group-addon, #bb .input-group-sm > .input-group-btn > textarea.btn,
#bb select[multiple].input-sm, #bb .input-group-sm > select[multiple].form-control, #bb .input-group-sm > select[multiple].input-group-addon, #bb .input-group-sm > .input-group-btn > select[multiple].btn {
  height: auto; }

#bb .form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

#bb .form-group-sm select.form-control {
  height: 30px;
  line-height: 30px; }

#bb .form-group-sm textarea.form-control,
#bb .form-group-sm select[multiple].form-control {
  height: auto; }

#bb .form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5; }

#bb .input-lg, #bb .input-group-lg > .form-control, #bb .input-group-lg > .input-group-addon, #bb .input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px; }

#bb select.input-lg, #bb .input-group-lg > select.form-control, #bb .input-group-lg > select.input-group-addon, #bb .input-group-lg > .input-group-btn > select.btn {
  height: 46px;
  line-height: 46px; }

#bb textarea.input-lg, #bb .input-group-lg > textarea.form-control, #bb .input-group-lg > textarea.input-group-addon, #bb .input-group-lg > .input-group-btn > textarea.btn,
#bb select[multiple].input-lg, #bb .input-group-lg > select[multiple].form-control, #bb .input-group-lg > select[multiple].input-group-addon, #bb .input-group-lg > .input-group-btn > select[multiple].btn {
  height: auto; }

#bb .form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px; }

#bb .form-group-lg select.form-control {
  height: 46px;
  line-height: 46px; }

#bb .form-group-lg textarea.form-control,
#bb .form-group-lg select[multiple].form-control {
  height: auto; }

#bb .form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.33333; }

#bb .has-feedback {
  position: relative; }
  #bb .has-feedback .form-control {
    padding-right: 42.5px; }

#bb .form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none; }

#bb .input-lg + .form-control-feedback, #bb .input-group-lg > .form-control + .form-control-feedback, #bb .input-group-lg > .input-group-addon + .form-control-feedback, #bb .input-group-lg > .input-group-btn > .btn + .form-control-feedback,
#bb .input-group-lg + .form-control-feedback,
#bb .form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px; }

#bb .input-sm + .form-control-feedback, #bb .input-group-sm > .form-control + .form-control-feedback, #bb .input-group-sm > .input-group-addon + .form-control-feedback, #bb .input-group-sm > .input-group-btn > .btn + .form-control-feedback,
#bb .input-group-sm + .form-control-feedback,
#bb .form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px; }

#bb .has-success .help-block,
#bb .has-success .control-label,
#bb .has-success .radio,
#bb .has-success .checkbox,
#bb .has-success .radio-inline,
#bb .has-success .checkbox-inline,
#bb .has-success.radio label,
#bb .has-success.checkbox label,
#bb .has-success.radio-inline label,
#bb .has-success.checkbox-inline label {
  color: #3c763d; }

#bb .has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  #bb .has-success .form-control:focus {
    border-color: #2b542c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; }

#bb .has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8; }

#bb .has-success .form-control-feedback {
  color: #3c763d; }

#bb .has-warning .help-block,
#bb .has-warning .control-label,
#bb .has-warning .radio,
#bb .has-warning .checkbox,
#bb .has-warning .radio-inline,
#bb .has-warning .checkbox-inline,
#bb .has-warning.radio label,
#bb .has-warning.checkbox label,
#bb .has-warning.radio-inline label,
#bb .has-warning.checkbox-inline label {
  color: #8a6d3b; }

#bb .has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  #bb .has-warning .form-control:focus {
    border-color: #66512c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; }

#bb .has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3; }

#bb .has-warning .form-control-feedback {
  color: #8a6d3b; }

#bb .has-error .help-block,
#bb .has-error .control-label,
#bb .has-error .radio,
#bb .has-error .checkbox,
#bb .has-error .radio-inline,
#bb .has-error .checkbox-inline,
#bb .has-error.radio label,
#bb .has-error.checkbox label,
#bb .has-error.radio-inline label,
#bb .has-error.checkbox-inline label {
  color: #a94442; }

#bb .has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  #bb .has-error .form-control:focus {
    border-color: #843534;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; }

#bb .has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede; }

#bb .has-error .form-control-feedback {
  color: #a94442; }

#bb .has-feedback label ~ .form-control-feedback {
  top: 25px; }

#bb .has-feedback label.sr-only ~ .form-control-feedback {
  top: 0; }

#bb .help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373; }

@media (min-width: 768px) {
  #bb .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }
  #bb .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  #bb .form-inline .form-control-static {
    display: inline-block; }
  #bb .form-inline .input-group {
    display: inline-table;
    vertical-align: middle; }
    #bb .form-inline .input-group .input-group-addon,
    #bb .form-inline .input-group .input-group-btn,
    #bb .form-inline .input-group .form-control {
      width: auto; }
  #bb .form-inline .input-group > .form-control {
    width: 100%; }
  #bb .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  #bb .form-inline .radio,
  #bb .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
    #bb .form-inline .radio label,
    #bb .form-inline .checkbox label {
      padding-left: 0; }
  #bb .form-inline .radio input[type="radio"],
  #bb .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0; }
  #bb .form-inline .has-feedback .form-control-feedback {
    top: 0; } }

#bb .form-horizontal .radio,
#bb .form-horizontal .checkbox,
#bb .form-horizontal .radio-inline,
#bb .form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px; }

#bb .form-horizontal .radio,
#bb .form-horizontal .checkbox {
  min-height: 27px; }

#bb .form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px; }
  #bb .form-horizontal .form-group:before, #bb .form-horizontal .form-group:after {
    content: " ";
    display: table; }
  #bb .form-horizontal .form-group:after {
    clear: both; }

@media (min-width: 768px) {
  #bb .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px; } }

#bb .form-horizontal .has-feedback .form-control-feedback {
  right: 15px; }

@media (min-width: 768px) {
  #bb .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px; } }

@media (min-width: 768px) {
  #bb .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px; } }

#bb .btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  #bb .btn:focus, #bb .btn.focus, #bb .btn:active:focus, #bb .btn:active.focus, #bb .btn.active:focus, #bb .btn.active.focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
  #bb .btn:hover, #bb .btn:focus, #bb .btn.focus {
    color: #333;
    text-decoration: none; }
  #bb .btn:active, #bb .btn.active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
  #bb .btn.disabled, #bb .btn[disabled],
  fieldset[disabled] #bb .btn {
    cursor: not-allowed;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none; }

#bb a.btn.disabled,
fieldset[disabled] #bb a.btn {
  pointer-events: none; }

#bb .btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc; }
  #bb .btn-default:focus, #bb .btn-default.focus {
    color: #333;
    background-color: #e6e6e6;
    border-color: #8c8c8c; }
  #bb .btn-default:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad; }
  #bb .btn-default:active, #bb .btn-default.active,
  .open > #bb .btn-default.dropdown-toggle {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad; }
    #bb .btn-default:active:hover, #bb .btn-default:active:focus, #bb .btn-default:active.focus, #bb .btn-default.active:hover, #bb .btn-default.active:focus, #bb .btn-default.active.focus,
    .open > #bb .btn-default.dropdown-toggle:hover,
    .open > #bb .btn-default.dropdown-toggle:focus,
    .open > #bb .btn-default.dropdown-toggle.focus {
      color: #333;
      background-color: #d4d4d4;
      border-color: #8c8c8c; }
  #bb .btn-default:active, #bb .btn-default.active,
  .open > #bb .btn-default.dropdown-toggle {
    background-image: none; }
  #bb .btn-default.disabled:hover, #bb .btn-default.disabled:focus, #bb .btn-default.disabled.focus, #bb .btn-default[disabled]:hover, #bb .btn-default[disabled]:focus, #bb .btn-default[disabled].focus,
  fieldset[disabled] #bb .btn-default:hover,
  fieldset[disabled] #bb .btn-default:focus,
  fieldset[disabled] #bb .btn-default.focus {
    background-color: #fff;
    border-color: #ccc; }
  #bb .btn-default .badge {
    color: #fff;
    background-color: #333; }

#bb .btn-primary, #bb #bb-event-list .date-list-item .btn-secondary.selected, #bb [bb-events] .date-list-item .btn-secondary.selected, #bb [bb-multi-company-events] .date-list-item .btn-secondary.selected {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4; }
  #bb .btn-primary:focus, #bb #bb-event-list .date-list-item .btn-secondary.selected:focus, #bb [bb-events] .date-list-item .btn-secondary.selected:focus, #bb [bb-multi-company-events] .date-list-item .btn-secondary.selected:focus, #bb .btn-primary.focus, #bb #bb-event-list .date-list-item .focus.btn-secondary.selected, #bb [bb-events] .date-list-item .focus.btn-secondary.selected, #bb [bb-multi-company-events] .date-list-item .focus.btn-secondary.selected {
    color: #fff;
    background-color: #286090;
    border-color: #122b40; }
  #bb .btn-primary:hover, #bb #bb-event-list .date-list-item .btn-secondary.selected:hover, #bb [bb-events] .date-list-item .btn-secondary.selected:hover, #bb [bb-multi-company-events] .date-list-item .btn-secondary.selected:hover {
    color: #fff;
    background-color: #286090;
    border-color: #204d74; }
  #bb .btn-primary:active, #bb #bb-event-list .date-list-item .btn-secondary.selected:active, #bb [bb-events] .date-list-item .btn-secondary.selected:active, #bb [bb-multi-company-events] .date-list-item .btn-secondary.selected:active, #bb .btn-primary.active, #bb #bb-event-list .date-list-item .active.btn-secondary.selected, #bb [bb-events] .date-list-item .active.btn-secondary.selected, #bb [bb-multi-company-events] .date-list-item .active.btn-secondary.selected,
  .open > #bb .btn-primary.dropdown-toggle, .open > #bb #bb-event-list .date-list-item .dropdown-toggle.btn-secondary.selected, .open > #bb [bb-events] .date-list-item .dropdown-toggle.btn-secondary.selected, .open > #bb [bb-multi-company-events] .date-list-item .dropdown-toggle.btn-secondary.selected {
    color: #fff;
    background-color: #286090;
    border-color: #204d74; }
    #bb .btn-primary:active:hover, #bb #bb-event-list .date-list-item .btn-secondary.selected:active:hover, #bb [bb-events] .date-list-item .btn-secondary.selected:active:hover, #bb [bb-multi-company-events] .date-list-item .btn-secondary.selected:active:hover, #bb .btn-primary:active:focus, #bb #bb-event-list .date-list-item .btn-secondary.selected:active:focus, #bb [bb-events] .date-list-item .btn-secondary.selected:active:focus, #bb [bb-multi-company-events] .date-list-item .btn-secondary.selected:active:focus, #bb .btn-primary:active.focus, #bb #bb-event-list .date-list-item .btn-secondary.selected:active.focus, #bb [bb-events] .date-list-item .btn-secondary.selected:active.focus, #bb [bb-multi-company-events] .date-list-item .btn-secondary.selected:active.focus, #bb .btn-primary.active:hover, #bb #bb-event-list .date-list-item .active.btn-secondary.selected:hover, #bb [bb-events] .date-list-item .active.btn-secondary.selected:hover, #bb [bb-multi-company-events] .date-list-item .active.btn-secondary.selected:hover, #bb .btn-primary.active:focus, #bb #bb-event-list .date-list-item .active.btn-secondary.selected:focus, #bb [bb-events] .date-list-item .active.btn-secondary.selected:focus, #bb [bb-multi-company-events] .date-list-item .active.btn-secondary.selected:focus, #bb .btn-primary.active.focus, #bb #bb-event-list .date-list-item .active.focus.btn-secondary.selected, #bb [bb-events] .date-list-item .active.focus.btn-secondary.selected, #bb [bb-multi-company-events] .date-list-item .active.focus.btn-secondary.selected,
    .open > #bb .btn-primary.dropdown-toggle:hover, .open > #bb #bb-event-list .date-list-item .dropdown-toggle.btn-secondary.selected:hover, .open > #bb [bb-events] .date-list-item .dropdown-toggle.btn-secondary.selected:hover, .open > #bb [bb-multi-company-events] .date-list-item .dropdown-toggle.btn-secondary.selected:hover,
    .open > #bb .btn-primary.dropdown-toggle:focus, .open > #bb #bb-event-list .date-list-item .dropdown-toggle.btn-secondary.selected:focus, .open > #bb [bb-events] .date-list-item .dropdown-toggle.btn-secondary.selected:focus, .open > #bb [bb-multi-company-events] .date-list-item .dropdown-toggle.btn-secondary.selected:focus,
    .open > #bb .btn-primary.dropdown-toggle.focus, .open > #bb #bb-event-list .date-list-item .dropdown-toggle.focus.btn-secondary.selected, .open > #bb [bb-events] .date-list-item .dropdown-toggle.focus.btn-secondary.selected, .open > #bb [bb-multi-company-events] .date-list-item .dropdown-toggle.focus.btn-secondary.selected {
      color: #fff;
      background-color: #204d74;
      border-color: #122b40; }
  #bb .btn-primary:active, #bb #bb-event-list .date-list-item .btn-secondary.selected:active, #bb [bb-events] .date-list-item .btn-secondary.selected:active, #bb [bb-multi-company-events] .date-list-item .btn-secondary.selected:active, #bb .btn-primary.active, #bb #bb-event-list .date-list-item .active.btn-secondary.selected, #bb [bb-events] .date-list-item .active.btn-secondary.selected, #bb [bb-multi-company-events] .date-list-item .active.btn-secondary.selected,
  .open > #bb .btn-primary.dropdown-toggle, .open > #bb #bb-event-list .date-list-item .dropdown-toggle.btn-secondary.selected, .open > #bb [bb-events] .date-list-item .dropdown-toggle.btn-secondary.selected, .open > #bb [bb-multi-company-events] .date-list-item .dropdown-toggle.btn-secondary.selected {
    background-image: none; }
  #bb .btn-primary.disabled:hover, #bb #bb-event-list .date-list-item .disabled.btn-secondary.selected:hover, #bb [bb-events] .date-list-item .disabled.btn-secondary.selected:hover, #bb [bb-multi-company-events] .date-list-item .disabled.btn-secondary.selected:hover, #bb .btn-primary.disabled:focus, #bb #bb-event-list .date-list-item .disabled.btn-secondary.selected:focus, #bb [bb-events] .date-list-item .disabled.btn-secondary.selected:focus, #bb [bb-multi-company-events] .date-list-item .disabled.btn-secondary.selected:focus, #bb .btn-primary.disabled.focus, #bb #bb-event-list .date-list-item .disabled.focus.btn-secondary.selected, #bb [bb-events] .date-list-item .disabled.focus.btn-secondary.selected, #bb [bb-multi-company-events] .date-list-item .disabled.focus.btn-secondary.selected, #bb .btn-primary[disabled]:hover, #bb #bb-event-list .date-list-item [disabled].btn-secondary.selected:hover, #bb [bb-events] .date-list-item [disabled].btn-secondary.selected:hover, #bb [bb-multi-company-events] .date-list-item [disabled].btn-secondary.selected:hover, #bb .btn-primary[disabled]:focus, #bb #bb-event-list .date-list-item [disabled].btn-secondary.selected:focus, #bb [bb-events] .date-list-item [disabled].btn-secondary.selected:focus, #bb [bb-multi-company-events] .date-list-item [disabled].btn-secondary.selected:focus, #bb .btn-primary[disabled].focus, #bb #bb-event-list .date-list-item [disabled].focus.btn-secondary.selected, #bb [bb-events] .date-list-item [disabled].focus.btn-secondary.selected, #bb [bb-multi-company-events] .date-list-item [disabled].focus.btn-secondary.selected,
  fieldset[disabled] #bb .btn-primary:hover,
  fieldset[disabled] #bb #bb-event-list .date-list-item .btn-secondary.selected:hover,
  fieldset[disabled] #bb [bb-events] .date-list-item .btn-secondary.selected:hover,
  fieldset[disabled] #bb [bb-multi-company-events] .date-list-item .btn-secondary.selected:hover,
  fieldset[disabled] #bb .btn-primary:focus,
  fieldset[disabled] #bb #bb-event-list .date-list-item .btn-secondary.selected:focus,
  fieldset[disabled] #bb [bb-events] .date-list-item .btn-secondary.selected:focus,
  fieldset[disabled] #bb [bb-multi-company-events] .date-list-item .btn-secondary.selected:focus,
  fieldset[disabled] #bb .btn-primary.focus,
  fieldset[disabled] #bb #bb-event-list .date-list-item .focus.btn-secondary.selected,
  fieldset[disabled] #bb [bb-events] .date-list-item .focus.btn-secondary.selected,
  fieldset[disabled] #bb [bb-multi-company-events] .date-list-item .focus.btn-secondary.selected {
    background-color: #337ab7;
    border-color: #2e6da4; }
  #bb .btn-primary .badge, #bb #bb-event-list .date-list-item .btn-secondary.selected .badge, #bb [bb-events] .date-list-item .btn-secondary.selected .badge, #bb [bb-multi-company-events] .date-list-item .btn-secondary.selected .badge {
    color: #337ab7;
    background-color: #fff; }

#bb .btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c; }
  #bb .btn-success:focus, #bb .btn-success.focus {
    color: #fff;
    background-color: #449d44;
    border-color: #255625; }
  #bb .btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #398439; }
  #bb .btn-success:active, #bb .btn-success.active,
  .open > #bb .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #449d44;
    border-color: #398439; }
    #bb .btn-success:active:hover, #bb .btn-success:active:focus, #bb .btn-success:active.focus, #bb .btn-success.active:hover, #bb .btn-success.active:focus, #bb .btn-success.active.focus,
    .open > #bb .btn-success.dropdown-toggle:hover,
    .open > #bb .btn-success.dropdown-toggle:focus,
    .open > #bb .btn-success.dropdown-toggle.focus {
      color: #fff;
      background-color: #398439;
      border-color: #255625; }
  #bb .btn-success:active, #bb .btn-success.active,
  .open > #bb .btn-success.dropdown-toggle {
    background-image: none; }
  #bb .btn-success.disabled:hover, #bb .btn-success.disabled:focus, #bb .btn-success.disabled.focus, #bb .btn-success[disabled]:hover, #bb .btn-success[disabled]:focus, #bb .btn-success[disabled].focus,
  fieldset[disabled] #bb .btn-success:hover,
  fieldset[disabled] #bb .btn-success:focus,
  fieldset[disabled] #bb .btn-success.focus {
    background-color: #5cb85c;
    border-color: #4cae4c; }
  #bb .btn-success .badge {
    color: #5cb85c;
    background-color: #fff; }

#bb .btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da; }
  #bb .btn-info:focus, #bb .btn-info.focus {
    color: #fff;
    background-color: #31b0d5;
    border-color: #1b6d85; }
  #bb .btn-info:hover {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc; }
  #bb .btn-info:active, #bb .btn-info.active,
  .open > #bb .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc; }
    #bb .btn-info:active:hover, #bb .btn-info:active:focus, #bb .btn-info:active.focus, #bb .btn-info.active:hover, #bb .btn-info.active:focus, #bb .btn-info.active.focus,
    .open > #bb .btn-info.dropdown-toggle:hover,
    .open > #bb .btn-info.dropdown-toggle:focus,
    .open > #bb .btn-info.dropdown-toggle.focus {
      color: #fff;
      background-color: #269abc;
      border-color: #1b6d85; }
  #bb .btn-info:active, #bb .btn-info.active,
  .open > #bb .btn-info.dropdown-toggle {
    background-image: none; }
  #bb .btn-info.disabled:hover, #bb .btn-info.disabled:focus, #bb .btn-info.disabled.focus, #bb .btn-info[disabled]:hover, #bb .btn-info[disabled]:focus, #bb .btn-info[disabled].focus,
  fieldset[disabled] #bb .btn-info:hover,
  fieldset[disabled] #bb .btn-info:focus,
  fieldset[disabled] #bb .btn-info.focus {
    background-color: #5bc0de;
    border-color: #46b8da; }
  #bb .btn-info .badge {
    color: #5bc0de;
    background-color: #fff; }

#bb .btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236; }
  #bb .btn-warning:focus, #bb .btn-warning.focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #985f0d; }
  #bb .btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512; }
  #bb .btn-warning:active, #bb .btn-warning.active,
  .open > #bb .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512; }
    #bb .btn-warning:active:hover, #bb .btn-warning:active:focus, #bb .btn-warning:active.focus, #bb .btn-warning.active:hover, #bb .btn-warning.active:focus, #bb .btn-warning.active.focus,
    .open > #bb .btn-warning.dropdown-toggle:hover,
    .open > #bb .btn-warning.dropdown-toggle:focus,
    .open > #bb .btn-warning.dropdown-toggle.focus {
      color: #fff;
      background-color: #d58512;
      border-color: #985f0d; }
  #bb .btn-warning:active, #bb .btn-warning.active,
  .open > #bb .btn-warning.dropdown-toggle {
    background-image: none; }
  #bb .btn-warning.disabled:hover, #bb .btn-warning.disabled:focus, #bb .btn-warning.disabled.focus, #bb .btn-warning[disabled]:hover, #bb .btn-warning[disabled]:focus, #bb .btn-warning[disabled].focus,
  fieldset[disabled] #bb .btn-warning:hover,
  fieldset[disabled] #bb .btn-warning:focus,
  fieldset[disabled] #bb .btn-warning.focus {
    background-color: #f0ad4e;
    border-color: #eea236; }
  #bb .btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff; }

#bb .btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a; }
  #bb .btn-danger:focus, #bb .btn-danger.focus {
    color: #fff;
    background-color: #c9302c;
    border-color: #761c19; }
  #bb .btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925; }
  #bb .btn-danger:active, #bb .btn-danger.active,
  .open > #bb .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925; }
    #bb .btn-danger:active:hover, #bb .btn-danger:active:focus, #bb .btn-danger:active.focus, #bb .btn-danger.active:hover, #bb .btn-danger.active:focus, #bb .btn-danger.active.focus,
    .open > #bb .btn-danger.dropdown-toggle:hover,
    .open > #bb .btn-danger.dropdown-toggle:focus,
    .open > #bb .btn-danger.dropdown-toggle.focus {
      color: #fff;
      background-color: #ac2925;
      border-color: #761c19; }
  #bb .btn-danger:active, #bb .btn-danger.active,
  .open > #bb .btn-danger.dropdown-toggle {
    background-image: none; }
  #bb .btn-danger.disabled:hover, #bb .btn-danger.disabled:focus, #bb .btn-danger.disabled.focus, #bb .btn-danger[disabled]:hover, #bb .btn-danger[disabled]:focus, #bb .btn-danger[disabled].focus,
  fieldset[disabled] #bb .btn-danger:hover,
  fieldset[disabled] #bb .btn-danger:focus,
  fieldset[disabled] #bb .btn-danger.focus {
    background-color: #d9534f;
    border-color: #d43f3a; }
  #bb .btn-danger .badge {
    color: #d9534f;
    background-color: #fff; }

#bb .btn-link {
  color: #337ab7;
  font-weight: normal;
  border-radius: 0; }
  #bb .btn-link, #bb .btn-link:active, #bb .btn-link.active, #bb .btn-link[disabled],
  fieldset[disabled] #bb .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none; }
  #bb .btn-link, #bb .btn-link:hover, #bb .btn-link:focus, #bb .btn-link:active {
    border-color: transparent; }
  #bb .btn-link:hover, #bb .btn-link:focus {
    color: #23527c;
    text-decoration: underline;
    background-color: transparent; }
  #bb .btn-link[disabled]:hover, #bb .btn-link[disabled]:focus,
  fieldset[disabled] #bb .btn-link:hover,
  fieldset[disabled] #bb .btn-link:focus {
    color: #777777;
    text-decoration: none; }

#bb .btn-lg, #bb .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px; }

#bb .btn-sm, #bb .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

#bb .btn-xs, #bb .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

#bb .btn-block {
  display: block;
  width: 100%; }

#bb .btn-block + .btn-block {
  margin-top: 5px; }

#bb input[type="submit"].btn-block,
#bb input[type="reset"].btn-block,
#bb input[type="button"].btn-block {
  width: 100%; }

#bb .fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear; }
  #bb .fade.in {
    opacity: 1; }

#bb .collapse {
  display: none; }
  #bb .collapse.in {
    display: block; }

#bb tr.collapse.in {
  display: table-row; }

#bb tbody.collapse.in {
  display: table-row-group; }

#bb .collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease; }

#bb .caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent; }

#bb .dropup,
#bb .dropdown {
  position: relative; }

#bb .dropdown-toggle:focus {
  outline: 0; }

#bb .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;
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box; }
  #bb .dropdown-menu.pull-right {
    right: 0;
    left: auto; }
  #bb .dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5; }
  #bb .dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857;
    color: #333333;
    white-space: nowrap; }

#bb .dropdown-menu > li > a:hover, #bb .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5; }

#bb .dropdown-menu > .active > a, #bb .dropdown-menu > .active > a:hover, #bb .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #337ab7; }

#bb .dropdown-menu > .disabled > a, #bb .dropdown-menu > .disabled > a:hover, #bb .dropdown-menu > .disabled > a:focus {
  color: #777777; }

#bb .dropdown-menu > .disabled > a:hover, #bb .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed; }

#bb .open > .dropdown-menu {
  display: block; }

#bb .open > a {
  outline: 0; }

#bb .dropdown-menu-right {
  left: auto;
  right: 0; }

#bb .dropdown-menu-left {
  left: 0;
  right: auto; }

#bb .dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857;
  color: #777777;
  white-space: nowrap; }

#bb .dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990; }

#bb .pull-right > .dropdown-menu {
  right: 0;
  left: auto; }

#bb .dropup .caret,
#bb .navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: ""; }

#bb .dropup .dropdown-menu,
#bb .navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px; }

@media (min-width: 768px) {
  #bb .navbar-right .dropdown-menu {
    right: 0;
    left: auto; }
  #bb .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto; } }

#bb .btn-group,
#bb .btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle; }
  #bb .btn-group > .btn,
  #bb .btn-group-vertical > .btn {
    position: relative;
    float: left; }
    #bb .btn-group > .btn:hover, #bb .btn-group > .btn:focus, #bb .btn-group > .btn:active, #bb .btn-group > .btn.active,
    #bb .btn-group-vertical > .btn:hover,
    #bb .btn-group-vertical > .btn:focus,
    #bb .btn-group-vertical > .btn:active,
    #bb .btn-group-vertical > .btn.active {
      z-index: 2; }

#bb .btn-group .btn + .btn,
#bb .btn-group .btn + .btn-group,
#bb .btn-group .btn-group + .btn,
#bb .btn-group .btn-group + .btn-group {
  margin-left: -1px; }

#bb .btn-toolbar {
  margin-left: -5px; }
  #bb .btn-toolbar:before, #bb .btn-toolbar:after {
    content: " ";
    display: table; }
  #bb .btn-toolbar:after {
    clear: both; }
  #bb .btn-toolbar .btn,
  #bb .btn-toolbar .btn-group,
  #bb .btn-toolbar .input-group {
    float: left; }
  #bb .btn-toolbar > .btn,
  #bb .btn-toolbar > .btn-group,
  #bb .btn-toolbar > .input-group {
    margin-left: 5px; }

#bb .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0; }

#bb .btn-group > .btn:first-child {
  margin-left: 0; }
  #bb .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0; }

#bb .btn-group > .btn:last-child:not(:first-child),
#bb .btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

#bb .btn-group > .btn-group {
  float: left; }

#bb .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0; }

#bb .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
#bb .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

#bb .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

#bb .btn-group .dropdown-toggle:active,
#bb .btn-group.open .dropdown-toggle {
  outline: 0; }

#bb .btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px; }

#bb .btn-group > .btn-lg + .dropdown-toggle, #bb .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px; }

#bb .btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
  #bb .btn-group.open .dropdown-toggle.btn-link {
    -webkit-box-shadow: none;
    box-shadow: none; }

#bb .btn .caret {
  margin-left: 0; }

#bb .btn-lg .caret, #bb .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0; }

#bb .dropup .btn-lg .caret, #bb .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px; }

#bb .btn-group-vertical > .btn,
#bb .btn-group-vertical > .btn-group,
#bb .btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%; }

#bb .btn-group-vertical > .btn-group:before, #bb .btn-group-vertical > .btn-group:after {
  content: " ";
  display: table; }

#bb .btn-group-vertical > .btn-group:after {
  clear: both; }

#bb .btn-group-vertical > .btn-group > .btn {
  float: none; }

#bb .btn-group-vertical > .btn + .btn,
#bb .btn-group-vertical > .btn + .btn-group,
#bb .btn-group-vertical > .btn-group + .btn,
#bb .btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0; }

#bb .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0; }

#bb .btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

#bb .btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px; }

#bb .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0; }

#bb .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
#bb .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

#bb .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

#bb .btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate; }
  #bb .btn-group-justified > .btn,
  #bb .btn-group-justified > .btn-group {
    float: none;
    display: table-cell;
    width: 1%; }
  #bb .btn-group-justified > .btn-group .btn {
    width: 100%; }
  #bb .btn-group-justified > .btn-group .dropdown-menu {
    left: auto; }

#bb [data-toggle="buttons"] > .btn input[type="radio"],
#bb [data-toggle="buttons"] > .btn input[type="checkbox"],
#bb [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
#bb [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none; }

#bb .input-group {
  position: relative;
  display: table;
  border-collapse: separate; }
  #bb .input-group[class*="col-"] {
    float: none;
    padding-left: 0;
    padding-right: 0; }
  #bb .input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0; }
    #bb .input-group .form-control:focus {
      z-index: 3; }

#bb .input-group-addon,
#bb .input-group-btn,
#bb .input-group .form-control {
  display: table-cell; }
  #bb .input-group-addon:not(:first-child):not(:last-child),
  #bb .input-group-btn:not(:first-child):not(:last-child),
  #bb .input-group .form-control:not(:first-child):not(:last-child) {
    border-radius: 0; }

#bb .input-group-addon,
#bb .input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle; }

#bb .input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 4px; }
  #bb .input-group-addon.input-sm, #bb .input-group-sm > .input-group-addon, #bb .input-group-sm > .input-group-btn > .input-group-addon.btn {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px; }
  #bb .input-group-addon.input-lg, #bb .input-group-lg > .input-group-addon, #bb .input-group-lg > .input-group-btn > .input-group-addon.btn {
    padding: 10px 16px;
    font-size: 18px;
    border-radius: 6px; }
  #bb .input-group-addon input[type="radio"],
  #bb .input-group-addon input[type="checkbox"] {
    margin-top: 0; }

#bb .input-group .form-control:first-child,
#bb .input-group-addon:first-child,
#bb .input-group-btn:first-child > .btn,
#bb .input-group-btn:first-child > .btn-group > .btn,
#bb .input-group-btn:first-child > .dropdown-toggle,
#bb .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
#bb .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

#bb .input-group-addon:first-child {
  border-right: 0; }

#bb .input-group .form-control:last-child,
#bb .input-group-addon:last-child,
#bb .input-group-btn:last-child > .btn,
#bb .input-group-btn:last-child > .btn-group > .btn,
#bb .input-group-btn:last-child > .dropdown-toggle,
#bb .input-group-btn:first-child > .btn:not(:first-child),
#bb .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

#bb .input-group-addon:last-child {
  border-left: 0; }

#bb .input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap; }
  #bb .input-group-btn > .btn {
    position: relative; }
    #bb .input-group-btn > .btn + .btn {
      margin-left: -1px; }
    #bb .input-group-btn > .btn:hover, #bb .input-group-btn > .btn:focus, #bb .input-group-btn > .btn:active {
      z-index: 2; }
  #bb .input-group-btn:first-child > .btn,
  #bb .input-group-btn:first-child > .btn-group {
    margin-right: -1px; }
  #bb .input-group-btn:last-child > .btn,
  #bb .input-group-btn:last-child > .btn-group {
    z-index: 2;
    margin-left: -1px; }

#bb .nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none; }
  #bb .nav:before, #bb .nav:after {
    content: " ";
    display: table; }
  #bb .nav:after {
    clear: both; }
  #bb .nav > li {
    position: relative;
    display: block; }
    #bb .nav > li > a {
      position: relative;
      display: block;
      padding: 10px 15px; }
      #bb .nav > li > a:hover, #bb .nav > li > a:focus {
        text-decoration: none;
        background-color: #eeeeee; }
    #bb .nav > li.disabled > a {
      color: #777777; }
      #bb .nav > li.disabled > a:hover, #bb .nav > li.disabled > a:focus {
        color: #777777;
        text-decoration: none;
        background-color: transparent;
        cursor: not-allowed; }
  #bb .nav .open > a, #bb .nav .open > a:hover, #bb .nav .open > a:focus {
    background-color: #eeeeee;
    border-color: #337ab7; }
  #bb .nav .nav-divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5; }
  #bb .nav > li > a > img {
    max-width: none; }

#bb .nav-tabs {
  border-bottom: 1px solid #ddd; }
  #bb .nav-tabs > li {
    float: left;
    margin-bottom: -1px; }
    #bb .nav-tabs > li > a {
      margin-right: 2px;
      line-height: 1.42857;
      border: 1px solid transparent;
      border-radius: 4px 4px 0 0; }
      #bb .nav-tabs > li > a:hover {
        border-color: #eeeeee #eeeeee #ddd; }
    #bb .nav-tabs > li.active > a, #bb .nav-tabs > li.active > a:hover, #bb .nav-tabs > li.active > a:focus {
      color: #555555;
      background-color: #fff;
      border: 1px solid #ddd;
      border-bottom-color: transparent;
      cursor: default; }

#bb .nav-pills > li {
  float: left; }
  #bb .nav-pills > li > a {
    border-radius: 4px; }
  #bb .nav-pills > li + li {
    margin-left: 2px; }
  #bb .nav-pills > li.active > a, #bb .nav-pills > li.active > a:hover, #bb .nav-pills > li.active > a:focus {
    color: #fff;
    background-color: #337ab7; }

#bb .nav-stacked > li {
  float: none; }
  #bb .nav-stacked > li + li {
    margin-top: 2px;
    margin-left: 0; }

#bb .nav-justified, #bb .nav-tabs.nav-justified {
  width: 100%; }
  #bb .nav-justified > li, #bb .nav-tabs.nav-justified > li {
    float: none; }
    #bb .nav-justified > li > a, #bb .nav-tabs.nav-justified > li > a {
      text-align: center;
      margin-bottom: 5px; }
  #bb .nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto; }
  @media (min-width: 768px) {
    #bb .nav-justified > li, #bb .nav-tabs.nav-justified > li {
      display: table-cell;
      width: 1%; }
      #bb .nav-justified > li > a, #bb .nav-tabs.nav-justified > li > a {
        margin-bottom: 0; } }

#bb .nav-tabs-justified, #bb .nav-tabs.nav-justified {
  border-bottom: 0; }
  #bb .nav-tabs-justified > li > a, #bb .nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 4px; }
  #bb .nav-tabs-justified > .active > a, #bb .nav-tabs.nav-justified > .active > a,
  #bb .nav-tabs-justified > .active > a:hover, #bb .nav-tabs.nav-justified > .active > a:hover,
  #bb .nav-tabs-justified > .active > a:focus, #bb .nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #ddd; }
  @media (min-width: 768px) {
    #bb .nav-tabs-justified > li > a, #bb .nav-tabs.nav-justified > li > a {
      border-bottom: 1px solid #ddd;
      border-radius: 4px 4px 0 0; }
    #bb .nav-tabs-justified > .active > a, #bb .nav-tabs.nav-justified > .active > a,
    #bb .nav-tabs-justified > .active > a:hover, #bb .nav-tabs.nav-justified > .active > a:hover,
    #bb .nav-tabs-justified > .active > a:focus, #bb .nav-tabs.nav-justified > .active > a:focus {
      border-bottom-color: #fff; } }

#bb .tab-content > .tab-pane {
  display: none; }

#bb .tab-content > .active {
  display: block; }

#bb .nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

#bb .navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent; }
  #bb .navbar:before, #bb .navbar:after {
    content: " ";
    display: table; }
  #bb .navbar:after {
    clear: both; }
  @media (min-width: 768px) {
    #bb .navbar {
      border-radius: 4px; } }

#bb .navbar-header:before, #bb .navbar-header:after {
  content: " ";
  display: table; }

#bb .navbar-header:after {
  clear: both; }

@media (min-width: 768px) {
  #bb .navbar-header {
    float: left; } }

#bb .navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch; }
  #bb .navbar-collapse:before, #bb .navbar-collapse:after {
    content: " ";
    display: table; }
  #bb .navbar-collapse:after {
    clear: both; }
  #bb .navbar-collapse.in {
    overflow-y: auto; }
  @media (min-width: 768px) {
    #bb .navbar-collapse {
      width: auto;
      border-top: 0;
      box-shadow: none; }
      #bb .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important; }
      #bb .navbar-collapse.in {
        overflow-y: visible; }
      .navbar-fixed-top #bb .navbar-collapse,
      .navbar-static-top #bb .navbar-collapse,
      .navbar-fixed-bottom #bb .navbar-collapse {
        padding-left: 0;
        padding-right: 0; } }

#bb .navbar-fixed-top .navbar-collapse,
#bb .navbar-fixed-bottom .navbar-collapse {
  max-height: 340px; }
  @media (max-device-width: 480px) and (orientation: landscape) {
    #bb .navbar-fixed-top .navbar-collapse,
    #bb .navbar-fixed-bottom .navbar-collapse {
      max-height: 200px; } }

#bb .container > .navbar-header,
#bb .container > .navbar-collapse,
#bb .container-fluid > .navbar-header,
#bb .container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px; }
  @media (min-width: 768px) {
    #bb .container > .navbar-header,
    #bb .container > .navbar-collapse,
    #bb .container-fluid > .navbar-header,
    #bb .container-fluid > .navbar-collapse {
      margin-right: 0;
      margin-left: 0; } }

#bb .navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px; }
  @media (min-width: 768px) {
    #bb .navbar-static-top {
      border-radius: 0; } }

#bb .navbar-fixed-top,
#bb .navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030; }
  @media (min-width: 768px) {
    #bb .navbar-fixed-top,
    #bb .navbar-fixed-bottom {
      border-radius: 0; } }

#bb .navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px; }

#bb .navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0; }

#bb .navbar-brand {
  float: left;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
  height: 50px; }
  #bb .navbar-brand:hover, #bb .navbar-brand:focus {
    text-decoration: none; }
  #bb .navbar-brand > img {
    display: block; }
  @media (min-width: 768px) {
    .navbar > .container #bb .navbar-brand,
    .navbar > .container-fluid #bb .navbar-brand {
      margin-left: -15px; } }

#bb .navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px; }
  #bb .navbar-toggle:focus {
    outline: 0; }
  #bb .navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px; }
  #bb .navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px; }
  @media (min-width: 768px) {
    #bb .navbar-toggle {
      display: none; } }

#bb .navbar-nav {
  margin: 7.5px -15px; }
  #bb .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px; }
  @media (max-width: 767px) {
    #bb .navbar-nav .open .dropdown-menu {
      position: static;
      float: none;
      width: auto;
      margin-top: 0;
      background-color: transparent;
      border: 0;
      box-shadow: none; }
      #bb .navbar-nav .open .dropdown-menu > li > a,
      #bb .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 25px; }
      #bb .navbar-nav .open .dropdown-menu > li > a {
        line-height: 20px; }
        #bb .navbar-nav .open .dropdown-menu > li > a:hover, #bb .navbar-nav .open .dropdown-menu > li > a:focus {
          background-image: none; } }
  @media (min-width: 768px) {
    #bb .navbar-nav {
      float: left;
      margin: 0; }
      #bb .navbar-nav > li {
        float: left; }
        #bb .navbar-nav > li > a {
          padding-top: 15px;
          padding-bottom: 15px; } }

#bb .navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-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);
  margin-top: 8px;
  margin-bottom: 8px; }
  @media (min-width: 768px) {
    #bb .navbar-form .form-group {
      display: inline-block;
      margin-bottom: 0;
      vertical-align: middle; }
    #bb .navbar-form .form-control {
      display: inline-block;
      width: auto;
      vertical-align: middle; }
    #bb .navbar-form .form-control-static {
      display: inline-block; }
    #bb .navbar-form .input-group {
      display: inline-table;
      vertical-align: middle; }
      #bb .navbar-form .input-group .input-group-addon,
      #bb .navbar-form .input-group .input-group-btn,
      #bb .navbar-form .input-group .form-control {
        width: auto; }
    #bb .navbar-form .input-group > .form-control {
      width: 100%; }
    #bb .navbar-form .control-label {
      margin-bottom: 0;
      vertical-align: middle; }
    #bb .navbar-form .radio,
    #bb .navbar-form .checkbox {
      display: inline-block;
      margin-top: 0;
      margin-bottom: 0;
      vertical-align: middle; }
      #bb .navbar-form .radio label,
      #bb .navbar-form .checkbox label {
        padding-left: 0; }
    #bb .navbar-form .radio input[type="radio"],
    #bb .navbar-form .checkbox input[type="checkbox"] {
      position: relative;
      margin-left: 0; }
    #bb .navbar-form .has-feedback .form-control-feedback {
      top: 0; } }
  @media (max-width: 767px) {
    #bb .navbar-form .form-group {
      margin-bottom: 5px; }
      #bb .navbar-form .form-group:last-child {
        margin-bottom: 0; } }
  @media (min-width: 768px) {
    #bb .navbar-form {
      width: auto;
      border: 0;
      margin-left: 0;
      margin-right: 0;
      padding-top: 0;
      padding-bottom: 0;
      -webkit-box-shadow: none;
      box-shadow: none; } }

#bb .navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

#bb .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

#bb .navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px; }
  #bb .navbar-btn.btn-sm, #bb .btn-group-sm > .navbar-btn.btn {
    margin-top: 10px;
    margin-bottom: 10px; }
  #bb .navbar-btn.btn-xs, #bb .btn-group-xs > .navbar-btn.btn {
    margin-top: 14px;
    margin-bottom: 14px; }

#bb .navbar-text {
  margin-top: 15px;
  margin-bottom: 15px; }
  @media (min-width: 768px) {
    #bb .navbar-text {
      float: left;
      margin-left: 15px;
      margin-right: 15px; } }

@media (min-width: 768px) {
  #bb .navbar-left {
    float: left !important; }
  #bb .navbar-right {
    float: right !important;
    margin-right: -15px; }
    #bb .navbar-right ~ .navbar-right {
      margin-right: 0; } }

#bb .navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7; }
  #bb .navbar-default .navbar-brand {
    color: #777; }
    #bb .navbar-default .navbar-brand:hover, #bb .navbar-default .navbar-brand:focus {
      color: #5e5e5e;
      background-color: transparent; }
  #bb .navbar-default .navbar-text {
    color: #777; }
  #bb .navbar-default .navbar-nav > li > a {
    color: #777; }
    #bb .navbar-default .navbar-nav > li > a:hover, #bb .navbar-default .navbar-nav > li > a:focus {
      color: #333;
      background-color: transparent; }
  #bb .navbar-default .navbar-nav > .active > a, #bb .navbar-default .navbar-nav > .active > a:hover, #bb .navbar-default .navbar-nav > .active > a:focus {
    color: #555;
    background-color: #e7e7e7; }
  #bb .navbar-default .navbar-nav > .disabled > a, #bb .navbar-default .navbar-nav > .disabled > a:hover, #bb .navbar-default .navbar-nav > .disabled > a:focus {
    color: #ccc;
    background-color: transparent; }
  #bb .navbar-default .navbar-toggle {
    border-color: #ddd; }
    #bb .navbar-default .navbar-toggle:hover, #bb .navbar-default .navbar-toggle:focus {
      background-color: #ddd; }
    #bb .navbar-default .navbar-toggle .icon-bar {
      background-color: #888; }
  #bb .navbar-default .navbar-collapse,
  #bb .navbar-default .navbar-form {
    border-color: #e7e7e7; }
  #bb .navbar-default .navbar-nav > .open > a, #bb .navbar-default .navbar-nav > .open > a:hover, #bb .navbar-default .navbar-nav > .open > a:focus {
    background-color: #e7e7e7;
    color: #555; }
  @media (max-width: 767px) {
    #bb .navbar-default .navbar-nav .open .dropdown-menu > li > a {
      color: #777; }
      #bb .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, #bb .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #333;
        background-color: transparent; }
    #bb .navbar-default .navbar-nav .open .dropdown-menu > .active > a, #bb .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, #bb .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
      color: #555;
      background-color: #e7e7e7; }
    #bb .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, #bb .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, #bb .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
      color: #ccc;
      background-color: transparent; } }
  #bb .navbar-default .navbar-link {
    color: #777; }
    #bb .navbar-default .navbar-link:hover {
      color: #333; }
  #bb .navbar-default .btn-link {
    color: #777; }
    #bb .navbar-default .btn-link:hover, #bb .navbar-default .btn-link:focus {
      color: #333; }
    #bb .navbar-default .btn-link[disabled]:hover, #bb .navbar-default .btn-link[disabled]:focus,
    fieldset[disabled] #bb .navbar-default .btn-link:hover,
    fieldset[disabled] #bb .navbar-default .btn-link:focus {
      color: #ccc; }

#bb .navbar-inverse {
  background-color: #222;
  border-color: #090909; }
  #bb .navbar-inverse .navbar-brand {
    color: #9d9d9d; }
    #bb .navbar-inverse .navbar-brand:hover, #bb .navbar-inverse .navbar-brand:focus {
      color: #fff;
      background-color: transparent; }
  #bb .navbar-inverse .navbar-text {
    color: #9d9d9d; }
  #bb .navbar-inverse .navbar-nav > li > a {
    color: #9d9d9d; }
    #bb .navbar-inverse .navbar-nav > li > a:hover, #bb .navbar-inverse .navbar-nav > li > a:focus {
      color: #fff;
      background-color: transparent; }
  #bb .navbar-inverse .navbar-nav > .active > a, #bb .navbar-inverse .navbar-nav > .active > a:hover, #bb .navbar-inverse .navbar-nav > .active > a:focus {
    color: #fff;
    background-color: #090909; }
  #bb .navbar-inverse .navbar-nav > .disabled > a, #bb .navbar-inverse .navbar-nav > .disabled > a:hover, #bb .navbar-inverse .navbar-nav > .disabled > a:focus {
    color: #444;
    background-color: transparent; }
  #bb .navbar-inverse .navbar-toggle {
    border-color: #333; }
    #bb .navbar-inverse .navbar-toggle:hover, #bb .navbar-inverse .navbar-toggle:focus {
      background-color: #333; }
    #bb .navbar-inverse .navbar-toggle .icon-bar {
      background-color: #fff; }
  #bb .navbar-inverse .navbar-collapse,
  #bb .navbar-inverse .navbar-form {
    border-color: #101010; }
  #bb .navbar-inverse .navbar-nav > .open > a, #bb .navbar-inverse .navbar-nav > .open > a:hover, #bb .navbar-inverse .navbar-nav > .open > a:focus {
    background-color: #090909;
    color: #fff; }
  @media (max-width: 767px) {
    #bb .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
      border-color: #090909; }
    #bb .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
      background-color: #090909; }
    #bb .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
      color: #9d9d9d; }
      #bb .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, #bb .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #fff;
        background-color: transparent; }
    #bb .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, #bb .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, #bb .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
      color: #fff;
      background-color: #090909; }
    #bb .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, #bb .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, #bb .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
      color: #444;
      background-color: transparent; } }
  #bb .navbar-inverse .navbar-link {
    color: #9d9d9d; }
    #bb .navbar-inverse .navbar-link:hover {
      color: #fff; }
  #bb .navbar-inverse .btn-link {
    color: #9d9d9d; }
    #bb .navbar-inverse .btn-link:hover, #bb .navbar-inverse .btn-link:focus {
      color: #fff; }
    #bb .navbar-inverse .btn-link[disabled]:hover, #bb .navbar-inverse .btn-link[disabled]:focus,
    fieldset[disabled] #bb .navbar-inverse .btn-link:hover,
    fieldset[disabled] #bb .navbar-inverse .btn-link:focus {
      color: #444; }

#bb .breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px; }
  #bb .breadcrumb > li {
    display: inline-block; }
    #bb .breadcrumb > li + li:before {
      content: "/ ";
      padding: 0 5px;
      color: #ccc; }
  #bb .breadcrumb > .active {
    color: #777777; }

#bb .pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px; }
  #bb .pagination > li {
    display: inline; }
    #bb .pagination > li > a,
    #bb .pagination > li > span {
      position: relative;
      float: left;
      padding: 6px 12px;
      line-height: 1.42857;
      text-decoration: none;
      color: #337ab7;
      background-color: #fff;
      border: 1px solid #ddd;
      margin-left: -1px; }
    #bb .pagination > li:first-child > a,
    #bb .pagination > li:first-child > span {
      margin-left: 0;
      border-bottom-left-radius: 4px;
      border-top-left-radius: 4px; }
    #bb .pagination > li:last-child > a,
    #bb .pagination > li:last-child > span {
      border-bottom-right-radius: 4px;
      border-top-right-radius: 4px; }
  #bb .pagination > li > a:hover, #bb .pagination > li > a:focus,
  #bb .pagination > li > span:hover,
  #bb .pagination > li > span:focus {
    z-index: 2;
    color: #23527c;
    background-color: #eeeeee;
    border-color: #ddd; }
  #bb .pagination > .active > a, #bb .pagination > .active > a:hover, #bb .pagination > .active > a:focus,
  #bb .pagination > .active > span,
  #bb .pagination > .active > span:hover,
  #bb .pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7;
    cursor: default; }
  #bb .pagination > .disabled > span,
  #bb .pagination > .disabled > span:hover,
  #bb .pagination > .disabled > span:focus,
  #bb .pagination > .disabled > a,
  #bb .pagination > .disabled > a:hover,
  #bb .pagination > .disabled > a:focus {
    color: #777777;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed; }

#bb .pagination-lg > li > a,
#bb .pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333; }

#bb .pagination-lg > li:first-child > a,
#bb .pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px; }

#bb .pagination-lg > li:last-child > a,
#bb .pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px; }

#bb .pagination-sm > li > a,
#bb .pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5; }

#bb .pagination-sm > li:first-child > a,
#bb .pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px; }

#bb .pagination-sm > li:last-child > a,
#bb .pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px; }

#bb .pager {
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
  text-align: center; }
  #bb .pager:before, #bb .pager:after {
    content: " ";
    display: table; }
  #bb .pager:after {
    clear: both; }
  #bb .pager li {
    display: inline; }
    #bb .pager li > a,
    #bb .pager li > span {
      display: inline-block;
      padding: 5px 14px;
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 15px; }
    #bb .pager li > a:hover,
    #bb .pager li > a:focus {
      text-decoration: none;
      background-color: #eeeeee; }
  #bb .pager .next > a,
  #bb .pager .next > span {
    float: right; }
  #bb .pager .previous > a,
  #bb .pager .previous > span {
    float: left; }
  #bb .pager .disabled > a,
  #bb .pager .disabled > a:hover,
  #bb .pager .disabled > a:focus,
  #bb .pager .disabled > span {
    color: #777777;
    background-color: #fff;
    cursor: not-allowed; }

#bb .label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em; }
  #bb .label:empty {
    display: none; }
  .btn #bb .label {
    position: relative;
    top: -1px; }

#bb a.label:hover, #bb a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

#bb .label-default {
  background-color: #777777; }
  #bb .label-default[href]:hover, #bb .label-default[href]:focus {
    background-color: #5e5e5e; }

#bb .label-primary {
  background-color: #337ab7; }
  #bb .label-primary[href]:hover, #bb .label-primary[href]:focus {
    background-color: #286090; }

#bb .label-success {
  background-color: #5cb85c; }
  #bb .label-success[href]:hover, #bb .label-success[href]:focus {
    background-color: #449d44; }

#bb .label-info {
  background-color: #5bc0de; }
  #bb .label-info[href]:hover, #bb .label-info[href]:focus {
    background-color: #31b0d5; }

#bb .label-warning {
  background-color: #f0ad4e; }
  #bb .label-warning[href]:hover, #bb .label-warning[href]:focus {
    background-color: #ec971f; }

#bb .label-danger {
  background-color: #d9534f; }
  #bb .label-danger[href]:hover, #bb .label-danger[href]:focus {
    background-color: #c9302c; }

#bb .badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #777777;
  border-radius: 10px; }
  #bb .badge:empty {
    display: none; }
  .btn #bb .badge {
    position: relative;
    top: -1px; }
  .btn-xs #bb .badge, #bb .btn-group-xs > .btn #bb .badge,
  .btn-group-xs > .btn #bb .badge {
    top: 0;
    padding: 1px 5px; }
  .list-group-item.active > #bb .badge,
  .nav-pills > .active > a > #bb .badge {
    color: #337ab7;
    background-color: #fff; }
  .list-group-item > #bb .badge {
    float: right; }
  .list-group-item > #bb .badge + #bb .badge {
    margin-right: 5px; }
  .nav-pills > li > a > #bb .badge {
    margin-left: 3px; }

#bb a.badge:hover, #bb a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

#bb .jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee; }
  #bb .jumbotron h1,
  #bb .jumbotron .h1 {
    color: inherit; }
  #bb .jumbotron p {
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 200; }
  #bb .jumbotron > hr {
    border-top-color: #d5d5d5; }
  .container #bb .jumbotron,
  .container-fluid #bb .jumbotron {
    border-radius: 6px;
    padding-left: 15px;
    padding-right: 15px; }
  #bb .jumbotron .container {
    max-width: 100%; }
  @media screen and (min-width: 768px) {
    #bb .jumbotron {
      padding-top: 48px;
      padding-bottom: 48px; }
      .container #bb .jumbotron,
      .container-fluid #bb .jumbotron {
        padding-left: 60px;
        padding-right: 60px; }
      #bb .jumbotron h1,
      #bb .jumbotron .h1 {
        font-size: 63px; } }

#bb .thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out; }
  #bb .thumbnail > img,
  #bb .thumbnail a > img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto; }
  #bb .thumbnail .caption {
    padding: 9px;
    color: #333333; }

#bb a.thumbnail:hover,
#bb a.thumbnail:focus,
#bb a.thumbnail.active {
  border-color: #337ab7; }

#bb .alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px; }
  #bb .alert h4 {
    margin-top: 0;
    color: inherit; }
  #bb .alert .alert-link {
    font-weight: bold; }
  #bb .alert > p,
  #bb .alert > ul {
    margin-bottom: 0; }
  #bb .alert > p + p {
    margin-top: 5px; }

#bb .alert-dismissable,
#bb .alert-dismissible {
  padding-right: 35px; }
  #bb .alert-dismissable .close,
  #bb .alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit; }

#bb .alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d; }
  #bb .alert-success hr {
    border-top-color: #c9e2b3; }
  #bb .alert-success .alert-link {
    color: #2b542c; }

#bb .alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f; }
  #bb .alert-info hr {
    border-top-color: #a6e1ec; }
  #bb .alert-info .alert-link {
    color: #245269; }

#bb .alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b; }
  #bb .alert-warning hr {
    border-top-color: #f7e1b5; }
  #bb .alert-warning .alert-link {
    color: #66512c; }

#bb .alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442; }
  #bb .alert-danger hr {
    border-top-color: #e4b9c0; }
  #bb .alert-danger .alert-link {
    color: #843534; }

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

#bb .progress {
  overflow: hidden;
  height: 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }

#bb .progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-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-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease; }

#bb .progress-striped .progress-bar,
#bb .progress-bar-striped {
  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: -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%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px; }

#bb .progress.active .progress-bar,
#bb .progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite; }

#bb .progress-bar-success {
  background-color: #5cb85c; }
  .progress-striped #bb .progress-bar-success {
    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: -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%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

#bb .progress-bar-info {
  background-color: #5bc0de; }
  .progress-striped #bb .progress-bar-info {
    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: -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%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

#bb .progress-bar-warning {
  background-color: #f0ad4e; }
  .progress-striped #bb .progress-bar-warning {
    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: -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%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

#bb .progress-bar-danger {
  background-color: #d9534f; }
  .progress-striped #bb .progress-bar-danger {
    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: -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%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

#bb .media {
  margin-top: 15px; }
  #bb .media:first-child {
    margin-top: 0; }

#bb .media,
#bb .media-body {
  zoom: 1;
  overflow: hidden; }

#bb .media-body {
  width: 10000px; }

#bb .media-object {
  display: block; }
  #bb .media-object.img-thumbnail {
    max-width: none; }

#bb .media-right,
#bb .media > .pull-right {
  padding-left: 10px; }

#bb .media-left,
#bb .media > .pull-left {
  padding-right: 10px; }

#bb .media-left,
#bb .media-right,
#bb .media-body {
  display: table-cell;
  vertical-align: top; }

#bb .media-middle {
  vertical-align: middle; }

#bb .media-bottom {
  vertical-align: bottom; }

#bb .media-heading {
  margin-top: 0;
  margin-bottom: 5px; }

#bb .media-list {
  padding-left: 0;
  list-style: none; }

#bb .list-group {
  margin-bottom: 20px;
  padding-left: 0; }

#bb .list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd; }
  #bb .list-group-item:first-child {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px; }
  #bb .list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px; }

#bb a.list-group-item,
#bb button.list-group-item {
  color: #555; }
  #bb a.list-group-item .list-group-item-heading,
  #bb button.list-group-item .list-group-item-heading {
    color: #333; }
  #bb a.list-group-item:hover, #bb a.list-group-item:focus,
  #bb button.list-group-item:hover,
  #bb button.list-group-item:focus {
    text-decoration: none;
    color: #555;
    background-color: #f5f5f5; }

#bb button.list-group-item {
  width: 100%;
  text-align: left; }

#bb .list-group-item.disabled, #bb .list-group-item.disabled:hover, #bb .list-group-item.disabled:focus {
  background-color: #eeeeee;
  color: #777777;
  cursor: not-allowed; }
  #bb .list-group-item.disabled .list-group-item-heading, #bb .list-group-item.disabled:hover .list-group-item-heading, #bb .list-group-item.disabled:focus .list-group-item-heading {
    color: inherit; }
  #bb .list-group-item.disabled .list-group-item-text, #bb .list-group-item.disabled:hover .list-group-item-text, #bb .list-group-item.disabled:focus .list-group-item-text {
    color: #777777; }

#bb .list-group-item.active, #bb .list-group-item.active:hover, #bb .list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7; }
  #bb .list-group-item.active .list-group-item-heading,
  #bb .list-group-item.active .list-group-item-heading > small,
  #bb .list-group-item.active .list-group-item-heading > .small, #bb .list-group-item.active:hover .list-group-item-heading,
  #bb .list-group-item.active:hover .list-group-item-heading > small,
  #bb .list-group-item.active:hover .list-group-item-heading > .small, #bb .list-group-item.active:focus .list-group-item-heading,
  #bb .list-group-item.active:focus .list-group-item-heading > small,
  #bb .list-group-item.active:focus .list-group-item-heading > .small {
    color: inherit; }
  #bb .list-group-item.active .list-group-item-text, #bb .list-group-item.active:hover .list-group-item-text, #bb .list-group-item.active:focus .list-group-item-text {
    color: #c7ddef; }

#bb .list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8; }

#bb a.list-group-item-success,
#bb button.list-group-item-success {
  color: #3c763d; }
  #bb a.list-group-item-success .list-group-item-heading,
  #bb button.list-group-item-success .list-group-item-heading {
    color: inherit; }
  #bb a.list-group-item-success:hover, #bb a.list-group-item-success:focus,
  #bb button.list-group-item-success:hover,
  #bb button.list-group-item-success:focus {
    color: #3c763d;
    background-color: #d0e9c6; }
  #bb a.list-group-item-success.active, #bb a.list-group-item-success.active:hover, #bb a.list-group-item-success.active:focus,
  #bb button.list-group-item-success.active,
  #bb button.list-group-item-success.active:hover,
  #bb button.list-group-item-success.active:focus {
    color: #fff;
    background-color: #3c763d;
    border-color: #3c763d; }

#bb .list-group-item-info {
  color: #31708f;
  background-color: #d9edf7; }

#bb a.list-group-item-info,
#bb button.list-group-item-info {
  color: #31708f; }
  #bb a.list-group-item-info .list-group-item-heading,
  #bb button.list-group-item-info .list-group-item-heading {
    color: inherit; }
  #bb a.list-group-item-info:hover, #bb a.list-group-item-info:focus,
  #bb button.list-group-item-info:hover,
  #bb button.list-group-item-info:focus {
    color: #31708f;
    background-color: #c4e3f3; }
  #bb a.list-group-item-info.active, #bb a.list-group-item-info.active:hover, #bb a.list-group-item-info.active:focus,
  #bb button.list-group-item-info.active,
  #bb button.list-group-item-info.active:hover,
  #bb button.list-group-item-info.active:focus {
    color: #fff;
    background-color: #31708f;
    border-color: #31708f; }

#bb .list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3; }

#bb a.list-group-item-warning,
#bb button.list-group-item-warning {
  color: #8a6d3b; }
  #bb a.list-group-item-warning .list-group-item-heading,
  #bb button.list-group-item-warning .list-group-item-heading {
    color: inherit; }
  #bb a.list-group-item-warning:hover, #bb a.list-group-item-warning:focus,
  #bb button.list-group-item-warning:hover,
  #bb button.list-group-item-warning:focus {
    color: #8a6d3b;
    background-color: #faf2cc; }
  #bb a.list-group-item-warning.active, #bb a.list-group-item-warning.active:hover, #bb a.list-group-item-warning.active:focus,
  #bb button.list-group-item-warning.active,
  #bb button.list-group-item-warning.active:hover,
  #bb button.list-group-item-warning.active:focus {
    color: #fff;
    background-color: #8a6d3b;
    border-color: #8a6d3b; }

#bb .list-group-item-danger {
  color: #a94442;
  background-color: #f2dede; }

#bb a.list-group-item-danger,
#bb button.list-group-item-danger {
  color: #a94442; }
  #bb a.list-group-item-danger .list-group-item-heading,
  #bb button.list-group-item-danger .list-group-item-heading {
    color: inherit; }
  #bb a.list-group-item-danger:hover, #bb a.list-group-item-danger:focus,
  #bb button.list-group-item-danger:hover,
  #bb button.list-group-item-danger:focus {
    color: #a94442;
    background-color: #ebcccc; }
  #bb a.list-group-item-danger.active, #bb a.list-group-item-danger.active:hover, #bb a.list-group-item-danger.active:focus,
  #bb button.list-group-item-danger.active,
  #bb button.list-group-item-danger.active:hover,
  #bb button.list-group-item-danger.active:focus {
    color: #fff;
    background-color: #a94442;
    border-color: #a94442; }

#bb .list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px; }

#bb .list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3; }

#bb .panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }

#bb .panel-body {
  padding: 15px; }
  #bb .panel-body:before, #bb .panel-body:after {
    content: " ";
    display: table; }
  #bb .panel-body:after {
    clear: both; }

#bb .panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px; }
  #bb .panel-heading > .dropdown .dropdown-toggle {
    color: inherit; }

#bb .panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit; }
  #bb .panel-title > a,
  #bb .panel-title > small,
  #bb .panel-title > .small,
  #bb .panel-title > small > a,
  #bb .panel-title > .small > a {
    color: inherit; }

#bb .panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }

#bb .panel > .list-group,
#bb .panel > .panel-collapse > .list-group {
  margin-bottom: 0; }
  #bb .panel > .list-group .list-group-item,
  #bb .panel > .panel-collapse > .list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0; }
  #bb .panel > .list-group:first-child .list-group-item:first-child,
  #bb .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
    border-top: 0;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px; }
  #bb .panel > .list-group:last-child .list-group-item:last-child,
  #bb .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
    border-bottom: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px; }

#bb .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

#bb .panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0; }

#bb .list-group + .panel-footer {
  border-top-width: 0; }

#bb .panel > .table,
#bb .panel > .table-responsive > .table,
#bb .panel > .panel-collapse > .table {
  margin-bottom: 0; }
  #bb .panel > .table caption,
  #bb .panel > .table-responsive > .table caption,
  #bb .panel > .panel-collapse > .table caption {
    padding-left: 15px;
    padding-right: 15px; }

#bb .panel > .table:first-child,
#bb .panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px; }
  #bb .panel > .table:first-child > thead:first-child > tr:first-child,
  #bb .panel > .table:first-child > tbody:first-child > tr:first-child,
  #bb .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
  #bb .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px; }
    #bb .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
    #bb .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
    #bb .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
    #bb .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
    #bb .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
    #bb .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
    #bb .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
    #bb .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
      border-top-left-radius: 3px; }
    #bb .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
    #bb .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
    #bb .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
    #bb .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
    #bb .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
    #bb .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
    #bb .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
    #bb .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
      border-top-right-radius: 3px; }

#bb .panel > .table:last-child,
#bb .panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }
  #bb .panel > .table:last-child > tbody:last-child > tr:last-child,
  #bb .panel > .table:last-child > tfoot:last-child > tr:last-child,
  #bb .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
  #bb .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px; }
    #bb .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
    #bb .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
    #bb .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
    #bb .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
    #bb .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
    #bb .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
    #bb .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
    #bb .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
      border-bottom-left-radius: 3px; }
    #bb .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
    #bb .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
    #bb .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
    #bb .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
    #bb .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
    #bb .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
    #bb .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
    #bb .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
      border-bottom-right-radius: 3px; }

#bb .panel > .panel-body + .table,
#bb .panel > .panel-body + .table-responsive,
#bb .panel > .table + .panel-body,
#bb .panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd; }

#bb .panel > .table > tbody:first-child > tr:first-child th,
#bb .panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0; }

#bb .panel > .table-bordered,
#bb .panel > .table-responsive > .table-bordered {
  border: 0; }
  #bb .panel > .table-bordered > thead > tr > th:first-child,
  #bb .panel > .table-bordered > thead > tr > td:first-child,
  #bb .panel > .table-bordered > tbody > tr > th:first-child,
  #bb .panel > .table-bordered > tbody > tr > td:first-child,
  #bb .panel > .table-bordered > tfoot > tr > th:first-child,
  #bb .panel > .table-bordered > tfoot > tr > td:first-child,
  #bb .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
  #bb .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
  #bb .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
  #bb .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
  #bb .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  #bb .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0; }
  #bb .panel > .table-bordered > thead > tr > th:last-child,
  #bb .panel > .table-bordered > thead > tr > td:last-child,
  #bb .panel > .table-bordered > tbody > tr > th:last-child,
  #bb .panel > .table-bordered > tbody > tr > td:last-child,
  #bb .panel > .table-bordered > tfoot > tr > th:last-child,
  #bb .panel > .table-bordered > tfoot > tr > td:last-child,
  #bb .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
  #bb .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
  #bb .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
  #bb .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
  #bb .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  #bb .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0; }
  #bb .panel > .table-bordered > thead > tr:first-child > td,
  #bb .panel > .table-bordered > thead > tr:first-child > th,
  #bb .panel > .table-bordered > tbody > tr:first-child > td,
  #bb .panel > .table-bordered > tbody > tr:first-child > th,
  #bb .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
  #bb .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
  #bb .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
  #bb .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
    border-bottom: 0; }
  #bb .panel > .table-bordered > tbody > tr:last-child > td,
  #bb .panel > .table-bordered > tbody > tr:last-child > th,
  #bb .panel > .table-bordered > tfoot > tr:last-child > td,
  #bb .panel > .table-bordered > tfoot > tr:last-child > th,
  #bb .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
  #bb .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
  #bb .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
  #bb .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: 0; }

#bb .panel > .table-responsive {
  border: 0;
  margin-bottom: 0; }

#bb .panel-group {
  margin-bottom: 20px; }
  #bb .panel-group .panel {
    margin-bottom: 0;
    border-radius: 4px; }
    #bb .panel-group .panel + .panel {
      margin-top: 5px; }
  #bb .panel-group .panel-heading {
    border-bottom: 0; }
    #bb .panel-group .panel-heading + .panel-collapse > .panel-body,
    #bb .panel-group .panel-heading + .panel-collapse > .list-group {
      border-top: 1px solid #ddd; }
  #bb .panel-group .panel-footer {
    border-top: 0; }
    #bb .panel-group .panel-footer + .panel-collapse .panel-body {
      border-bottom: 1px solid #ddd; }

#bb .panel-default {
  border-color: #ddd; }
  #bb .panel-default > .panel-heading {
    color: #333333;
    background-color: #f5f5f5;
    border-color: #ddd; }
    #bb .panel-default > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #ddd; }
    #bb .panel-default > .panel-heading .badge {
      color: #f5f5f5;
      background-color: #333333; }
  #bb .panel-default > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ddd; }

#bb .panel-primary {
  border-color: #337ab7; }
  #bb .panel-primary > .panel-heading {
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7; }
    #bb .panel-primary > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #337ab7; }
    #bb .panel-primary > .panel-heading .badge {
      color: #337ab7;
      background-color: #fff; }
  #bb .panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #337ab7; }

#bb .panel-success {
  border-color: #d6e9c6; }
  #bb .panel-success > .panel-heading {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6; }
    #bb .panel-success > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #d6e9c6; }
    #bb .panel-success > .panel-heading .badge {
      color: #dff0d8;
      background-color: #3c763d; }
  #bb .panel-success > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #d6e9c6; }

#bb .panel-info {
  border-color: #bce8f1; }
  #bb .panel-info > .panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1; }
    #bb .panel-info > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #bce8f1; }
    #bb .panel-info > .panel-heading .badge {
      color: #d9edf7;
      background-color: #31708f; }
  #bb .panel-info > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #bce8f1; }

#bb .panel-warning {
  border-color: #faebcc; }
  #bb .panel-warning > .panel-heading {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc; }
    #bb .panel-warning > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #faebcc; }
    #bb .panel-warning > .panel-heading .badge {
      color: #fcf8e3;
      background-color: #8a6d3b; }
  #bb .panel-warning > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #faebcc; }

#bb .panel-danger {
  border-color: #ebccd1; }
  #bb .panel-danger > .panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1; }
    #bb .panel-danger > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #ebccd1; }
    #bb .panel-danger > .panel-heading .badge {
      color: #f2dede;
      background-color: #a94442; }
  #bb .panel-danger > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ebccd1; }

#bb .embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden; }
  #bb .embed-responsive .embed-responsive-item,
  #bb .embed-responsive iframe,
  #bb .embed-responsive embed,
  #bb .embed-responsive object,
  #bb .embed-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0; }

#bb .embed-responsive-16by9 {
  padding-bottom: 56.25%; }

#bb .embed-responsive-4by3 {
  padding-bottom: 75%; }

#bb .well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); }
  #bb .well blockquote {
    border-color: #ddd;
    border-color: rgba(0, 0, 0, 0.15); }

#bb .well-lg {
  padding: 24px;
  border-radius: 6px; }

#bb .well-sm {
  padding: 9px;
  border-radius: 3px; }

#bb .close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20); }
  #bb .close:hover, #bb .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.5;
    filter: alpha(opacity=50); }

#bb button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none; }

#bb .modal-open {
  overflow: hidden; }

#bb .modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0; }
  #bb .modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out; }
  #bb .modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0); }

#bb .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

#bb .modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

#bb .modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0; }

#bb .modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000; }
  #bb .modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0); }
  #bb .modal-backdrop.in {
    opacity: 0.5;
    filter: alpha(opacity=50); }

#bb .modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5; }
  #bb .modal-header:before, #bb .modal-header:after {
    content: " ";
    display: table; }
  #bb .modal-header:after {
    clear: both; }

#bb .modal-header .close {
  margin-top: -2px; }

#bb .modal-title {
  margin: 0;
  line-height: 1.42857; }

#bb .modal-body {
  position: relative;
  padding: 15px; }

#bb .modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5; }
  #bb .modal-footer:before, #bb .modal-footer:after {
    content: " ";
    display: table; }
  #bb .modal-footer:after {
    clear: both; }
  #bb .modal-footer .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0; }
  #bb .modal-footer .btn-group .btn + .btn {
    margin-left: -1px; }
  #bb .modal-footer .btn-block + .btn-block {
    margin-left: 0; }

#bb .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 768px) {
  #bb .modal-dialog {
    width: 600px;
    margin: 30px auto; }
  #bb .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
  #bb .modal-sm {
    width: 300px; } }

@media (min-width: 992px) {
  #bb .modal-lg {
    width: 900px; } }

#bb .tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 12px;
  opacity: 0;
  filter: alpha(opacity=0); }
  #bb .tooltip.in {
    opacity: 0.9;
    filter: alpha(opacity=90); }
  #bb .tooltip.top {
    margin-top: -3px;
    padding: 5px 0; }
  #bb .tooltip.right {
    margin-left: 3px;
    padding: 0 5px; }
  #bb .tooltip.bottom {
    margin-top: 3px;
    padding: 5px 0; }
  #bb .tooltip.left {
    margin-left: -3px;
    padding: 0 5px; }

#bb .tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px; }

#bb .tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

#bb .tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

#bb .tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

#bb .tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

#bb .tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000; }

#bb .tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000; }

#bb .tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

#bb .tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

#bb .tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

#bb .popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 14px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }
  #bb .popover.top {
    margin-top: -10px; }
  #bb .popover.right {
    margin-left: 10px; }
  #bb .popover.bottom {
    margin-top: 10px; }
  #bb .popover.left {
    margin-left: -10px; }

#bb .popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0; }

#bb .popover-content {
  padding: 9px 14px; }

#bb .popover > .arrow, #bb .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

#bb .popover > .arrow {
  border-width: 11px; }

#bb .popover > .arrow:after {
  border-width: 10px;
  content: ""; }

#bb .popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px; }
  #bb .popover.top > .arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: #fff; }

#bb .popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25); }
  #bb .popover.right > .arrow:after {
    content: " ";
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: #fff; }

#bb .popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px; }
  #bb .popover.bottom > .arrow:after {
    content: " ";
    top: 1px;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: #fff; }

#bb .popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25); }
  #bb .popover.left > .arrow:after {
    content: " ";
    right: 1px;
    border-right-width: 0;
    border-left-color: #fff;
    bottom: -10px; }

#bb .carousel {
  position: relative; }

#bb .carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%; }
  #bb .carousel-inner > .item {
    display: none;
    position: relative;
    -webkit-transition: 0.6s ease-in-out left;
    -o-transition: 0.6s ease-in-out left;
    transition: 0.6s ease-in-out left; }
    #bb .carousel-inner > .item > img,
    #bb .carousel-inner > .item > a > img {
      display: block;
      max-width: 100%;
      height: auto;
      line-height: 1; }
    @media all and (transform-3d), (-webkit-transform-3d) {
      #bb .carousel-inner > .item {
        -webkit-transition: -webkit-transform 0.6s ease-in-out;
        -moz-transition: -moz-transform 0.6s ease-in-out;
        -o-transition: -o-transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        -moz-perspective: 1000px;
        perspective: 1000px; }
        #bb .carousel-inner > .item.next, #bb .carousel-inner > .item.active.right {
          -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
          left: 0; }
        #bb .carousel-inner > .item.prev, #bb .carousel-inner > .item.active.left {
          -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
          left: 0; }
        #bb .carousel-inner > .item.next.left, #bb .carousel-inner > .item.prev.right, #bb .carousel-inner > .item.active {
          -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
          left: 0; } }
  #bb .carousel-inner > .active,
  #bb .carousel-inner > .next,
  #bb .carousel-inner > .prev {
    display: block; }
  #bb .carousel-inner > .active {
    left: 0; }
  #bb .carousel-inner > .next,
  #bb .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%; }
  #bb .carousel-inner > .next {
    left: 100%; }
  #bb .carousel-inner > .prev {
    left: -100%; }
  #bb .carousel-inner > .next.left,
  #bb .carousel-inner > .prev.right {
    left: 0; }
  #bb .carousel-inner > .active.left {
    left: -100%; }
  #bb .carousel-inner > .active.right {
    left: 100%; }

#bb .carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: transparent; }
  #bb .carousel-control.left {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); }
  #bb .carousel-control.right {
    left: auto;
    right: 0;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); }
  #bb .carousel-control:hover, #bb .carousel-control:focus {
    outline: 0;
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    filter: alpha(opacity=90); }
  #bb .carousel-control .icon-prev,
  #bb .carousel-control .icon-next,
  #bb .carousel-control .glyphicon-chevron-left,
  #bb .carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    z-index: 5;
    display: inline-block; }
  #bb .carousel-control .icon-prev,
  #bb .carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px; }
  #bb .carousel-control .icon-next,
  #bb .carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px; }
  #bb .carousel-control .icon-prev,
  #bb .carousel-control .icon-next {
    width: 20px;
    height: 20px;
    line-height: 1;
    font-family: serif; }
  #bb .carousel-control .icon-prev:before {
    content: '\2039'; }
  #bb .carousel-control .icon-next:before {
    content: '\203a'; }

#bb .carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center; }
  #bb .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #fff;
    border-radius: 10px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: transparent; }
  #bb .carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #fff; }

#bb .carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  #bb .carousel-caption .btn {
    text-shadow: none; }

@media screen and (min-width: 768px) {
  #bb .carousel-control .glyphicon-chevron-left,
  #bb .carousel-control .glyphicon-chevron-right,
  #bb .carousel-control .icon-prev,
  #bb .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px; }
  #bb .carousel-control .glyphicon-chevron-left,
  #bb .carousel-control .icon-prev {
    margin-left: -10px; }
  #bb .carousel-control .glyphicon-chevron-right,
  #bb .carousel-control .icon-next {
    margin-right: -10px; }
  #bb .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px; }
  #bb .carousel-indicators {
    bottom: 20px; } }

#bb .clearfix:before, #bb .clearfix:after {
  content: " ";
  display: table; }

#bb .clearfix:after {
  clear: both; }

#bb .center-block {
  display: block;
  margin-left: auto;
  margin-right: auto; }

#bb .pull-right {
  float: right !important; }

#bb .pull-left {
  float: left !important; }

#bb .hide {
  display: none !important; }

#bb .show {
  display: block !important; }

#bb .invisible {
  visibility: hidden; }

#bb .text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

#bb .hidden {
  display: none !important; }

#bb .affix {
  position: fixed; }

@-ms-viewport {
  width: device-width; }

#bb .visible-xs {
  display: none !important; }

#bb .visible-sm {
  display: none !important; }

#bb .visible-md {
  display: none !important; }

#bb .visible-lg {
  display: none !important; }

#bb .visible-xs-block,
#bb .visible-xs-inline,
#bb .visible-xs-inline-block,
#bb .visible-sm-block,
#bb .visible-sm-inline,
#bb .visible-sm-inline-block,
#bb .visible-md-block,
#bb .visible-md-inline,
#bb .visible-md-inline-block,
#bb .visible-lg-block,
#bb .visible-lg-inline,
#bb .visible-lg-inline-block {
  display: none !important; }

@media (max-width: 767px) {
  #bb .visible-xs {
    display: block !important; }
  #bb table.visible-xs {
    display: table !important; }
  #bb tr.visible-xs {
    display: table-row !important; }
  #bb th.visible-xs,
  #bb td.visible-xs {
    display: table-cell !important; } }

@media (max-width: 767px) {
  #bb .visible-xs-block {
    display: block !important; } }

@media (max-width: 767px) {
  #bb .visible-xs-inline {
    display: inline !important; } }

@media (max-width: 767px) {
  #bb .visible-xs-inline-block {
    display: inline-block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  #bb .visible-sm {
    display: block !important; }
  #bb table.visible-sm {
    display: table !important; }
  #bb tr.visible-sm {
    display: table-row !important; }
  #bb th.visible-sm,
  #bb td.visible-sm {
    display: table-cell !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  #bb .visible-sm-block {
    display: block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  #bb .visible-sm-inline {
    display: inline !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  #bb .visible-sm-inline-block {
    display: inline-block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  #bb .visible-md {
    display: block !important; }
  #bb table.visible-md {
    display: table !important; }
  #bb tr.visible-md {
    display: table-row !important; }
  #bb th.visible-md,
  #bb td.visible-md {
    display: table-cell !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  #bb .visible-md-block {
    display: block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  #bb .visible-md-inline {
    display: inline !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  #bb .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 1200px) {
  #bb .visible-lg {
    display: block !important; }
  #bb table.visible-lg {
    display: table !important; }
  #bb tr.visible-lg {
    display: table-row !important; }
  #bb th.visible-lg,
  #bb td.visible-lg {
    display: table-cell !important; } }

@media (min-width: 1200px) {
  #bb .visible-lg-block {
    display: block !important; } }

@media (min-width: 1200px) {
  #bb .visible-lg-inline {
    display: inline !important; } }

@media (min-width: 1200px) {
  #bb .visible-lg-inline-block {
    display: inline-block !important; } }

@media (max-width: 767px) {
  #bb .hidden-xs {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  #bb .hidden-sm {
    display: none !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  #bb .hidden-md {
    display: none !important; } }

@media (min-width: 1200px) {
  #bb .hidden-lg {
    display: none !important; } }

#bb .visible-print {
  display: none !important; }

@media print {
  #bb .visible-print {
    display: block !important; }
  #bb table.visible-print {
    display: table !important; }
  #bb tr.visible-print {
    display: table-row !important; }
  #bb th.visible-print,
  #bb td.visible-print {
    display: table-cell !important; } }

#bb .visible-print-block {
  display: none !important; }
  @media print {
    #bb .visible-print-block {
      display: block !important; } }

#bb .visible-print-inline {
  display: none !important; }
  @media print {
    #bb .visible-print-inline {
      display: inline !important; } }

#bb .visible-print-inline-block {
  display: none !important; }
  @media print {
    #bb .visible-print-inline-block {
      display: inline-block !important; } }

@media print {
  #bb .hidden-print {
    display: none !important; } }

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom; }

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

.flash {
  -webkit-animation-name: flash;
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand; }

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }

@keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }

.shake {
  -webkit-animation-name: shake;
  animation-name: shake; }

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing; }

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.tada {
  -webkit-animation-name: tada;
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  100% {
    -webkit-transform: none;
    transform: none; } }

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble; }

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown; }

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft; }

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight; }

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp; }

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown; }

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft; }

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight; }

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp; }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

@keyframes fadeOutDown {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown; }

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes fadeOutDownBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig; }

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes fadeOutLeft {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft; }

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig; }

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes fadeOutRight {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes fadeOutRightBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig; }

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes fadeOutUp {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp; }

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes fadeOutUpBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig; }

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip; }

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX; }

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY; }

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

@keyframes lightSpeedOut {
  0% {
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn; }

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft; }

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight; }

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft; }

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight; }

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut; }

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft; }

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight; }

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft; }

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight; }

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

@keyframes rollOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut; }

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn; }

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown; }

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft; }

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight; }

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp; }

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  100% {
    opacity: 0; } }

@keyframes zoomOut {
  0% {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  100% {
    opacity: 0; } }

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut; }

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown; }

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft; }

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight; }

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp; }

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown; }

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft; }

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight; }

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp; }

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%); } }

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%); } }

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown; }

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft; }

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%); } }

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%); } }

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight; }

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); } }

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); } }

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp; }

@font-face {
  font-family: 'bb-icons';
  src: url("fonts/bb-icons.eot"); }

@font-face {
  font-family: 'bb-icons';
  src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SAzAAAAC8AAAAYGNtYXAaVcxdAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZmYHR0QAAAFwAAAFAGhlYWQE11YLAAAGcAAAADZoaGVhB8IDzAAABqgAAAAkaG10eB4AA4wAAAbMAAAALGxvY2EFSAaAAAAG+AAAABhtYXhwABIAdAAABxAAAAAgbmFtZdfnx1QAAAcwAAABTnBvc3QAAwAAAAAIgAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmBgPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYG//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAABACrACsDVQNVACcANABBAEYAABMUFhcVFBY7ATI2PQEhFRQWOwEyNj0BPgE1ETQmJy4BIyIGBw4BFREXIiY1NDYzMhYVFAYjISImNTQ2MzIWFRQGIxMhNSEVqxcTGRIrERkBVhkRKxIZExc1Ly58R0d8Li81lRslJRsbJSUbAYAbJSUbGyUlG0D+AAIAAQAcMRJMERkZESsrERkZEUwSMRwBqzhDEhILCxISQzj+VSsmGhslJRsaJiYaGyUlGxomAQDW1gAAAAAGAAAAAAQAA3cADAAlADIASwBkAHEAAAEyNjU0JiMiBhUUFjMTIgYHDgEVFBYXHgEzMjY3PgE1NCYnLgEjESImNTQ2MzIWFRQGIwMzNSMnLgEjIgYPAQ4BFRQWHwEVMxEnNxcFIgYHDgEVFBYXHgEzMjY3PgE1NCYnLgEjESImNTQ2MzIWFRQGIwKrHy0tHyAtLSCALE4dHSIiHR1OLCxOHB0iIh0cTiw+WFg+PldXPrS0iVIKIRQPGgqeCgsTEY9NYGNJ/l4sThwdIiIdHE4sLE4dHSIiHR1OLD5XVz4+WFg+At4tICAsLCAgLf7NIh0dTiwsThwdIiIdHE4sLE4dHSL+lVc+PlhYPj5XAcBNixAUDAqdChsPFCAKV9UBFEdkalUiHR1OLCxOHB0iIh0cTiwsTh0dIv6VVz4+WFg+PlcAAAACAQAAAAMrA6IADAAmAAABMjY1NCYjIgYVFBYzEzM1IycuASMiBg8BFTM1NwMzExcVMxEnNxcCVSAtLSAgLCwgBdGbVQohFAULBedNWqdNemRMaiAtAwksICAtLSAgLP73TY4QEwECSN6dHP1yAVqF1QERwnpNAAAEAIAAKwOAAtUAHAApADYAOwAAAS4BIyEiBg8BERQWOwEyNj0BIRUUFjsBMjY1EScBIiY1NDYzMhYVFAYjISImNTQ2MzIWFRQGIyU3IRchAycGIRX+KhUhBlkZEioSGQIAGRIqEhlZ/e4aJiYaGyUlGwHWGyUlGxomJhr96kAB1kD9qgKqExgYE//+qhEZGRErKxEZGREBVv/+ViUbGyUlGxslJRsbJSUbGyXVwMAAAAMALv/YA9IDfQAEACkALgAAExcBJwElJw4BIyImNTQ2NycmIgcBBhQfAT4BMzIWFRQGBxcWMjcBNjQnCQT7tgFOtv6yAtdNCxkOKzwGBk0PKxD9zQ8PTQsZDis8BgZNDysPAjQPD/3f/vcBoQEJ/l8BXLYBTrX+s/lOBgc9Kw0ZC04PD/3MDysPTgYHPSsNGQtODw8CNA8rD/3+AQkBof73/l8AAgEAABEDAANEABgAJQAAASIGBw4BFRQWFx4BMTA2Nz4BNTQmJy4BIxEiJjU0NjMyFhUUBiMCADVdIyMoUDAwUFAwMFAoIyNdNTlRUTk5UVE5A0QoIyJeNVvHU1Nra1NTx1s1XiIjKP5zUTk5UVE5OVEAAAAEADMAAAPNA5oAGAAdACIAJwAAASMVIzUhFSM1IyIGFREUFjMhMjY1ETQmIxEhESERASMVMzUhIxUzNQNmLqT+2KQuKzw8KwLMKzw8K/00Asz910dHAc1HRwMzZmZmZjwq/ZkqPDwqAmcqPP0zAZr+ZgM0rq6urgABAAAAAQAAD5t2Z18PPPUACwQAAAAAANDcCMoAAAAA0NwIygAA/9gEAAOiAAAACAACAAAAAAAAAAEAAAPA/8AAAAQAAAAAAAQAAAEAAAAAAAAAAAAAAAAAAAALAAAAAAAAAAAAAAAAAgAAAAQAAKsEAAAABAABAAQAAIAEAAAuBAABAAQAADMAAAAAAAoAFAAeAIIBJAFgAbgCCgJEAoAAAQAAAAsAcgAGAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABABAAAAABAAAAAAACAA4ATgABAAAAAAADABAAJgABAAAAAAAEABAAXAABAAAAAAAFABYAEAABAAAAAAAGAAgANgABAAAAAAAKADQAbAADAAEECQABABAAAAADAAEECQACAA4ATgADAAEECQADABAAJgADAAEECQAEABAAXAADAAEECQAFABYAEAADAAEECQAGABAAPgADAAEECQAKADQAbABiAGIALQBpAGMAbwBuAHMAVgBlAHIAcwBpAG8AbgAgADEALgAwAGIAYgAtAGkAYwBvAG4Ac2JiLWljb25zAGIAYgAtAGkAYwBvAG4AcwBSAGUAZwB1AGwAYQByAGIAYgAtAGkAYwBvAG4AcwBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"), url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAjsAAsAAAAACKAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABCAAAAGAAAABgDxIDMGNtYXAAAAFoAAAATAAAAEwaVcxdZ2FzcAAAAbQAAAAIAAAACAAAABBnbHlmAAABvAAABQAAAAUAZgdHRGhlYWQAAAa8AAAANgAAADYE11YLaGhlYQAABvQAAAAkAAAAJAfCA8xobXR4AAAHGAAAACwAAAAsHgADjGxvY2EAAAdEAAAAGAAAABgFSAaAbWF4cAAAB1wAAAAgAAAAIAASAHRuYW1lAAAHfAAAAU4AAAFO1+fHVHBvc3QAAAjMAAAAIAAAACAAAwAAAAMEAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA5gYDwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDmBv/9//8AAAAAACDmAP/9//8AAf/jGgQAAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAQAqwArA1UDVQAnADQAQQBGAAATFBYXFRQWOwEyNj0BIRUUFjsBMjY9AT4BNRE0JicuASMiBgcOARURFyImNTQ2MzIWFRQGIyEiJjU0NjMyFhUUBiMTITUhFasXExkSKxEZAVYZESsSGRMXNS8ufEdHfC4vNZUbJSUbGyUlGwGAGyUlGxslJRtA/gACAAEAHDESTBEZGRErKxEZGRFMEjEcAas4QxISCwsSEkM4/lUrJhobJSUbGiYmGhslJRsaJgEA1tYAAAAABgAAAAAEAAN3AAwAJQAyAEsAZABxAAABMjY1NCYjIgYVFBYzEyIGBw4BFRQWFx4BMzI2Nz4BNTQmJy4BIxEiJjU0NjMyFhUUBiMDMzUjJy4BIyIGDwEOARUUFh8BFTMRJzcXBSIGBw4BFRQWFx4BMzI2Nz4BNTQmJy4BIxEiJjU0NjMyFhUUBiMCqx8tLR8gLS0ggCxOHR0iIh0dTiwsThwdIiIdHE4sPlhYPj5XVz60tIlSCiEUDxoKngoLExGPTWBjSf5eLE4cHSIiHRxOLCxOHR0iIh0dTiw+V1c+PlhYPgLeLSAgLCwgIC3+zSIdHU4sLE4cHSIiHRxOLCxOHR0i/pVXPj5YWD4+VwHATYsQFAwKnQobDxQgClfVARRHZGpVIh0dTiwsThwdIiIdHE4sLE4dHSL+lVc+PlhYPj5XAAAAAgEAAAADKwOiAAwAJgAAATI2NTQmIyIGFRQWMxMzNSMnLgEjIgYPARUzNTcDMxMXFTMRJzcXAlUgLS0gICwsIAXRm1UKIRQFCwXnTVqnTXpkTGogLQMJLCAgLS0gICz+902OEBMBAkjenRz9cgFahdUBEcJ6TQAABACAACsDgALVABwAKQA2ADsAAAEuASMhIgYPAREUFjsBMjY9ASEVFBY7ATI2NREnASImNTQ2MzIWFRQGIyEiJjU0NjMyFhUUBiMlNyEXIQMnBiEV/ioVIQZZGRIqEhkCABkSKhIZWf3uGiYmGhslJRsB1hslJRsaJiYa/epAAdZA/aoCqhMYGBP//qoRGRkRKysRGRkRAVb//lYlGxslJRsbJSUbGyUlGxsl1cDAAAADAC7/2APSA30ABAApAC4AABMXAScBJScOASMiJjU0NjcnJiIHAQYUHwE+ATMyFhUUBgcXFjI3ATY0JwkE+7YBTrb+sgLXTQsZDis8BgZNDysQ/c0PD00LGQ4rPAYGTQ8rDwI0Dw/93/73AaEBCf5fAVy2AU61/rP5TgYHPSsNGQtODw/9zA8rD04GBz0rDRkLTg8PAjQPKw/9/gEJAaH+9/5fAAIBAAARAwADRAAYACUAAAEiBgcOARUUFhceATEwNjc+ATU0JicuASMRIiY1NDYzMhYVFAYjAgA1XSMjKFAwMFBQMDBQKCMjXTU5UVE5OVFROQNEKCMiXjVbx1NTa2tTU8dbNV4iIyj+c1E5OVFROTlRAAAABAAzAAADzQOaABgAHQAiACcAAAEjFSM1IRUjNSMiBhURFBYzITI2NRE0JiMRIREhEQEjFTM1ISMVMzUDZi6k/tikLis8PCsCzCs8PCv9NALM/ddHRwHNR0cDM2ZmZmY8Kv2ZKjw8KgJnKjz9MwGa/mYDNK6urq4AAQAAAAEAAA+bdmdfDzz1AAsEAAAAAADQ3AjKAAAAANDcCMoAAP/YBAADogAAAAgAAgAAAAAAAAABAAADwP/AAAAEAAAAAAAEAAABAAAAAAAAAAAAAAAAAAAACwAAAAAAAAAAAAAAAAIAAAAEAACrBAAAAAQAAQAEAACABAAALgQAAQAEAAAzAAAAAAAKABQAHgCCASQBYAG4AgoCRAKAAAEAAAALAHIABgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAQAAAAAQAAAAAAAgAOAE4AAQAAAAAAAwAQACYAAQAAAAAABAAQAFwAAQAAAAAABQAWABAAAQAAAAAABgAIADYAAQAAAAAACgA0AGwAAwABBAkAAQAQAAAAAwABBAkAAgAOAE4AAwABBAkAAwAQACYAAwABBAkABAAQAFwAAwABBAkABQAWABAAAwABBAkABgAQAD4AAwABBAkACgA0AGwAYgBiAC0AaQBjAG8AbgBzAFYAZQByAHMAaQBvAG4AIAAxAC4AMABiAGIALQBpAGMAbwBuAHNiYi1pY29ucwBiAGIALQBpAGMAbwBuAHMAUgBlAGcAdQBsAGEAcgBiAGIALQBpAGMAbwBuAHMARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'FontAwesome';
  src: url("fonts/fontawesome-webfont.woff");
  src: url("fonts/fontawesome-webfont.woff2") format("woff2"), url("fonts/fontawesome-webfont.eot"), url("fonts/FontAwesome.otf"), url("fonts/fontawesome-webfont.ttf") format("truetype"), url("fonts/fontawesome-webfont.svg#svgFontName") format("svg"); }

.bb-icon {
  font-family: 'bb-icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-directions-bus:before {
  content: "\e600"; }

.icon-directions-bike:before {
  content: "\e601"; }

.icon-directions-walk:before {
  content: "\e602"; }

.icon-directions-car:before {
  content: "\e603"; }

.icon-ticket:before {
  content: "\e604"; }

.icon-location:before {
  content: "\e605"; }

.icon-calendar:before {
  content: "\e606"; }

.icon-price {
  font-family: 'Glyphicons Halflings'; }
  .icon-price:before {
    content: "\e149"; }

#bb {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  background-color: #FFFFFF;
  margin: 0;
  /* Bootstrap form-inline enhancements */
  /* .summary-list used in survey only*/
  /* use to wrap components just as lists */
  /* GMAP START */
  /* GMAP END */ }
  #bb .btn-icon {
    padding: 0;
    margin: 0;
    background: none;
    border: none; }
    #bb .btn-icon:active {
      box-shadow: none; }
    #bb .btn-icon:focus {
      outline: none; }
    #bb .btn-icon[disabled] {
      color: #CCC; }
  #bb .btn-xl {
    font-size: 50px; }
  #bb .button-group {
    padding-top: 15px; }
    #bb .button-group .btn {
      width: 100%; }
      @media (min-width: 768px) {
        #bb .button-group .btn {
          width: auto; } }
      @media (max-width: 767px) {
        #bb .button-group .btn {
          margin-top: 10px; } }
    #bb .button-group.bordered {
      border-top: 1px solid #DDD;
      margin-top: 30px; }
  #bb .btn .fa {
    height: 18px; }
  #bb .btn.btn-lg .fa, #bb .btn-group-lg > .btn .fa {
    height: 22px; }
  #bb .form-control::-moz-placeholder, #bb .form-question::-moz-placeholder {
    color: #CCC;
    opacity: 1; }
  #bb .form-control:-ms-input-placeholder, #bb .form-question:-ms-input-placeholder {
    color: #CCC; }
  #bb .form-control::-webkit-input-placeholder, #bb .form-question::-webkit-input-placeholder {
    color: #CCC; }
  #bb .form-control[disabled] {
    cursor: default; }
  #bb .bb-question-heading {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    text-align: left;
    margin-top: 15px;
    font-weight: 500; }
    @media (min-width: 768px) {
      #bb .bb-question-heading {
        float: left;
        width: 66.66667%; } }
    @media (min-width: 768px) {
      #bb .bb-question-heading {
        margin-left: 33.33333%; } }
  #bb .privacy-message {
    text-align: center;
    margin: 15px 0 20px; }
  #bb .booking-form-header {
    border-bottom: 1px solid #DDD;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 24px; }
  #bb .control-label {
    font-size: 14px;
    padding-right: 0;
    font-weight: normal; }
    @media (max-width: 767px) {
      #bb .control-label {
        padding-bottom: 5px; } }
  #bb .form-control-static {
    font-size: 14px; }
  #bb .booking-summary-item {
    margin-bottom: 5px; }
    #bb .booking-summary-item label {
      padding-right: 0;
      text-align: right; }
  #bb .booking-summary-wrapper {
    margin-bottom: 30px; }
  #bb .input-group-btn:last-child > .btn.btn-lg, #bb .btn-group-lg.input-group-btn:last-child > .btn {
    padding: 10px 16px; }
  #bb .error-message {
    color: #a94442;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 7px;
    padding-left: 15px; }
    #bb .error-message:before {
      position: relative;
      top: 1px;
      display: inline-block;
      font-family: 'Glyphicons Halflings';
      font-style: normal;
      font-weight: normal;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      content: "\e107"; }
  #bb .bb-message-node {
    margin: 30px 0 20px;
    font-size: 18px; }
  #bb .feedback {
    margin-bottom: 75px; }
  #bb .bb-slash {
    padding: 6px 10px 12px 10px; }
  #bb .bb-help-text {
    padding-top: 12px; }
  #bb .bb-check-space {
    margin-bottom: 0px;
    padding-top: 0px;
    min-height: 0px; }
  #bb .form-horizontal .checkbox {
    min-height: 0px;
    padding-top: 0px; }
  #bb .form-inline .bb-label {
    padding-right: 5px;
    display: inline-block;
    margin-bottom: 5px;
    font-weight: normal; }
  #bb .form-inline .input-group .input-group-btn {
    width: 1%; }
  #bb .form-inline .form-group.calendar {
    height: 51px; }
  #bb .alerts .ng-enter {
    -webkit-animation: fadeIn 1s;
    -moz-animation: fadeIn 1s;
    -o-animation: fadeIn 1s;
    animation: fadeIn 1s; }
  #bb .alerts .ng-leave {
    -webkit-animation: fadeOut 0.5s;
    -moz-animation: fadeOut 0.5s;
    -o-animation: fadeOut 0.5s;
    animation: fadeOut 0.5s; }
  @media (min-width: 768px) {
    #bb .vertical-row-align {
      display: flex;
      align-items: center; } }
  #bb .summary-list {
    margin-bottom: 20px;
    line-height: 1.4; }
  #bb .bb-summary-list {
    margin-bottom: 20px;
    line-height: 1.4; }
    #bb .bb-summary-list .bb-confirmation-summary-item {
      margin-left: -15px;
      margin-right: -15px; }
      #bb .bb-summary-list .bb-confirmation-summary-item:before, #bb .bb-summary-list .bb-confirmation-summary-item:after {
        content: " ";
        display: table; }
      #bb .bb-summary-list .bb-confirmation-summary-item:after {
        clear: both; }
      #bb .bb-summary-list .bb-confirmation-summary-item .bb-summary-label {
        position: relative;
        min-height: 1px;
        padding-left: 15px;
        padding-right: 15px;
        position: relative;
        min-height: 1px;
        padding-left: 15px;
        padding-right: 15px;
        position: relative;
        min-height: 1px;
        padding-left: 15px;
        padding-right: 15px; }
        @media (min-width: 768px) {
          #bb .bb-summary-list .bb-confirmation-summary-item .bb-summary-label {
            float: left;
            width: 16.66667%; } }
        @media (min-width: 992px) {
          #bb .bb-summary-list .bb-confirmation-summary-item .bb-summary-label {
            float: left;
            width: 16.66667%; } }
        @media (min-width: 1200px) {
          #bb .bb-summary-list .bb-confirmation-summary-item .bb-summary-label {
            float: left;
            width: 8.33333%; } }
      #bb .bb-summary-list .bb-confirmation-summary-item .bb-summary-value {
        position: relative;
        min-height: 1px;
        padding-left: 15px;
        padding-right: 15px;
        position: relative;
        min-height: 1px;
        padding-left: 15px;
        padding-right: 15px;
        position: relative;
        min-height: 1px;
        padding-left: 15px;
        padding-right: 15px; }
        @media (min-width: 768px) {
          #bb .bb-summary-list .bb-confirmation-summary-item .bb-summary-value {
            float: left;
            width: 83.33333%; } }
        @media (min-width: 992px) {
          #bb .bb-summary-list .bb-confirmation-summary-item .bb-summary-value {
            float: left;
            width: 83.33333%; } }
        @media (min-width: 1200px) {
          #bb .bb-summary-list .bb-confirmation-summary-item .bb-summary-value {
            float: left;
            width: 91.66667%; } }
      @media (max-width: 767px) {
        #bb .bb-summary-list .bb-confirmation-summary-item {
          margin-bottom: 10px;
          margin-top: 10px; }
          #bb .bb-summary-list .bb-confirmation-summary-item .bb-summary-value {
            font-weight: bold; } }
  #bb .bb-list {
    margin: 0;
    padding: 0;
    list-style-type: none; }
    #bb .bb-list > li {
      padding-bottom: 15px; }
    #bb .bb-list > li span.glyphicon {
      padding-right: 5px; }
    #bb .bb-list.bb-list-fade-in .ng-enter {
      -webkit-animation: fadeIn 1s;
      -moz-animation: fadeIn 1s;
      -o-animation: fadeIn 1s;
      animation: fadeIn 1s; }
    #bb .bb-list.bb-list-banded > li:nth-child(even) {
      background-color: transparent; }
    #bb .bb-list.bb-list-banded > li:nth-child(odd) {
      background-color: #eeeeee; }
    #bb .bb-list.bb-list-bordered > li:last-child {
      border-bottom: 1px solid #ddd; }
    #bb .bb-list.bb-list-bordered > li {
      padding-top: 15px;
      border-top: 1px solid #ddd; }
    #bb .bb-list.bb-list-horizontal > li {
      display: inline-block;
      padding: 0 15px 5px 0; }
    #bb .bb-list .bb-list-heading {
      margin: 15px 0 5px 0;
      font-weight: bold; }
    #bb .bb-list.bb-list-sm > li {
      padding-bottom: 5px; }
  #bb .bb-bullet-list {
    list-style: disc outside none;
    padding-bottom: 10px;
    padding-left: 15px;
    float: left; }
    #bb .bb-bullet-list > li {
      padding: 0 0 5px 0; }
  #bb .event-summary-list {
    margin-bottom: 5px; }
    #bb .event-summary-list li {
      padding-bottom: 5px; }
      #bb .event-summary-list li .bb-icon, #bb .event-summary-list li .glyphicon {
        color: #666; }
      #bb .event-summary-list li:last-child {
        padding-bottom: 0; }
  #bb .bb-subcontent {
    min-height: 400px; }
    @media (max-width: 767px) {
      #bb .bb-subcontent {
        min-height: 100px; } }
  #bb .bb-content, #bb .content {
    min-height: 600px; }
  #bb h1, #bb h2, #bb h3, #bb h4, #bb h5, #bb h6 {
    padding: 0;
    margin: 0 0 10px 0; }
  #bb ul, #bb ol {
    margin: 0;
    padding: 0;
    list-style: none; }
  #bb a {
    color: #333;
    text-decoration: underline; }
    #bb a:hover, #bb a:focus {
      color: #333;
      text-decoration: none; }
  #bb p {
    margin-bottom: 10px;
    margin-bottom: 1rem; }
    #bb p:last-child {
      margin-bottom: 0; }
  #bb .page-header {
    margin: 20px 0 25px 0;
    padding-bottom: 0;
    border-bottom: none; }
  #bb .page-intro, #bb .page-summary {
    margin-bottom: 30px; }
  #bb #loading_icon {
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FFF;
    padding-top: 100px;
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    opacity: 0.7;
    z-index: 2000; }
  #bb #loading_icon div {
    display: block;
    margin: 0 auto; }
  #bb #loading_icon #wait_graphic {
    background: url("images/BB_wait.gif");
    width: 100px;
    height: 100px; }
  #bb .powered-by {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: right; }
    @media print {
      #bb .powered-by {
        text-align: center; } }
  #bb .text-block {
    margin-bottom: 20px; }
  #bb .bb-section-title {
    border-bottom: 1px solid #666;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 24px; }
  #bb .bb-step-navigation {
    margin-top: 50px;
    margin-bottom: 20px;
    border-top: 1px solid #ddd;
    padding-top: 20px; }
    @media (max-width: 767px) {
      #bb .bb-step-navigation .btn {
        width: 100%;
        margin-bottom: 10px; } }
  #bb .bb-bordered {
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee; }
  #bb .bb-block-heading {
    padding-bottom: 5px; }
  #bb .bb-block {
    padding-top: 15px;
    padding-bottom: 0;
    margin-bottom: 15px; }
    #bb .bb-block.bb-block-sm {
      padding-bottom: 10px; }
  @media (min-width: 768px) {
    #bb .row.bb-vertical-align-center {
      display: table; }
    #bb .row.bb-vertical-align-center [class*="col-"] {
      float: none;
      display: table-cell;
      vertical-align: middle; } }
  #bb .angular-google-map-container {
    height: 200px; }
  #bb .bb-basket table.table, #bb div[bb-basket-list] table.table {
    color: #000000; }
  #bb .bb-basket .bb-coupon-box, #bb div[bb-basket-list] .bb-coupon-box {
    margin-bottom: 100px;
    text-align: center; }
  #bb .bb-basket .bb-empty-basket-full-screen, #bb div[bb-basket-list] .bb-empty-basket-full-screen {
    text-align: center;
    padding-top: 60px; }
    @media (max-width: 767px) {
      #bb .bb-basket .bb-empty-basket-full-screen, #bb div[bb-basket-list] .bb-empty-basket-full-screen {
        padding-top: 10px; } }
  #bb .bb-item-summary {
    border-bottom: 1px #D5D5D5 solid;
    padding-bottom: 0;
    margin-top: 20px;
    margin-bottom: 0; }
    #bb .bb-item-summary .bb-summary-label {
      padding-top: 10px;
      color: #337ab7;
      margin-right: 10px;
      width: 100%; }
      @media (max-width: 767px) {
        #bb .bb-item-summary .bb-summary-label {
          padding-top: 15px;
          width: auto;
          margin-right: 0;
          display: inline-block; } }
    #bb .bb-item-summary .bb-summary-value {
      padding-bottom: 10px;
      color: #909090; }
      @media (max-width: 767px) {
        #bb .bb-item-summary .bb-summary-value {
          width: auto;
          display: inline-block;
          padding: 0; } }
    #bb .bb-item-summary .bb-confirmation-summary-item {
      display: inline-block;
      margin-right: 50px;
      padding: 10px 0 10px 0;
      font-weight: bold; }
      @media (max-width: 767px) {
        #bb .bb-item-summary .bb-confirmation-summary-item {
          float: none;
          width: auto;
          padding: 0; } }
    #bb .bb-item-summary .bb-item-summary-header {
      height: 1px;
      border-bottom: 1px #D5D5D5 solid;
      margin-top: 10px;
      margin-bottom: 10px;
      text-align: center; }
    #bb .bb-item-summary .bb-item-summary-header-text {
      padding-left: 20px;
      padding-right: 20px;
      position: relative;
      display: inline-block;
      bottom: 12px;
      color: #337ab7;
      background-color: white;
      font-size: 18px;
      text-align: center;
      margin: 0 auto; }
  #bb .bb-basket-mini a, #bb div[bb-basket][mini] a {
    text-decoration: none; }
  #bb .bb-basket-mini .glyphicon, #bb div[bb-basket][mini] .glyphicon {
    font-size: 30px; }
  #bb .bb-basket-mini .badge-notify, #bb div[bb-basket][mini] .badge-notify {
    background-color: #FF0000;
    position: relative;
    top: -34px;
    right: 10px;
    float: right; }
  #bb .bb-basket-mini table.table, #bb div[bb-basket][mini] table.table {
    color: #000000;
    font-size: 14px; }
    #bb .bb-basket-mini table.table .glyphicon, #bb div[bb-basket][mini] table.table .glyphicon {
      font-size: 14px; }
  #bb .bb-basket-mini span.glyphicon-shopping-cart, #bb div[bb-basket][mini] span.glyphicon-shopping-cart {
    padding-left: 60px; }
  #bb .bb-basket-mini span.disabled-cart, #bb div[bb-basket][mini] span.disabled-cart {
    opacity: 0.4; }
    #bb .bb-basket-mini span.disabled-cart:hover, #bb div[bb-basket][mini] span.disabled-cart:hover {
      cursor: default; }
  #bb .bb-calendar, #bb [bb-time-ranges] {
    padding-bottom: 30px; }
    #bb .bb-calendar .week, #bb [bb-time-ranges] .week {
      padding: 0 15px;
      list-style: none; }
    #bb .bb-calendar .day, #bb [bb-time-ranges] .day {
      width: 12.85%;
      float: left;
      padding-right: 10px; }
      @media (max-width: 767px) {
        #bb .bb-calendar .day, #bb [bb-time-ranges] .day {
          padding: 0 20px;
          width: 100%; } }
    #bb .bb-calendar .day.navigation, #bb [bb-time-ranges] .day.navigation {
      width: 5%;
      float: left; }
      #bb .bb-calendar .day.navigation .btn-icon, #bb [bb-time-ranges] .day.navigation .btn-icon {
        font-size: 30px;
        color: inherit;
        float: left;
        margin-top: 92px; }
      #bb .bb-calendar .day.navigation:last-of-type, #bb [bb-time-ranges] .day.navigation:last-of-type {
        padding-right: 0; }
    #bb .bb-calendar .month-header, #bb [bb-time-ranges] .month-header {
      margin-bottom: 30px; }
      #bb .bb-calendar .month-header .month-heading, #bb [bb-time-ranges] .month-header .month-heading {
        margin: 0;
        text-align: center;
        line-height: 33px;
        font-size: 18px; }
    #bb .bb-calendar .day-header .previous, #bb [bb-time-ranges] .day-header .previous {
      text-align: left; }
    #bb .bb-calendar .day-header .next, #bb [bb-time-ranges] .day-header .next {
      text-align: right; }
    #bb .bb-calendar .day-header .icon, #bb [bb-time-ranges] .day-header .icon {
      font-size: 24px; }
    #bb .bb-calendar .day-header .day-heading, #bb [bb-time-ranges] .day-header .day-heading {
      text-align: center;
      font-size: 14px; }
      @media (min-width: 768px) {
        #bb .bb-calendar .day-header .day-heading, #bb [bb-time-ranges] .day-header .day-heading {
          text-align: left;
          padding-left: 30px; } }
    @media (max-width: 767px) {
      #bb .bb-calendar .date-picker, #bb [bb-time-ranges] .date-picker {
        padding-bottom: 15px; } }
    #bb .bb-calendar .panel-group .panel, #bb [bb-time-ranges] .panel-group .panel {
      border-radius: 0;
      margin: 0;
      border: none;
      border-bottom: 1px #dddddd solid;
      box-shadow: none; }
    #bb .bb-calendar .panel-group .accordion-group:first-child .panel, #bb [bb-time-ranges] .panel-group .accordion-group:first-child .panel {
      border-top: 1px #dddddd solid; }
    #bb .bb-calendar .panel-default > .panel-heading, #bb [bb-time-ranges] .panel-default > .panel-heading {
      background: none;
      padding: 10px 4px 10px 4px;
      position: relative;
      cursor: pointer;
      color: inherit; }
    #bb .bb-calendar .collapse-control, #bb [bb-time-ranges] .collapse-control {
      position: absolute;
      top: 10px;
      right: 10px;
      cursor: position; }
    #bb .bb-calendar .panel-default > .panel-heading + .panel-collapse .panel-body, #bb [bb-time-ranges] .panel-default > .panel-heading + .panel-collapse .panel-body {
      border: none; }
    #bb .bb-calendar .panel-body, #bb [bb-time-ranges] .panel-body {
      padding: 0; }
    #bb .bb-calendar .panel-title, #bb [bb-time-ranges] .panel-title {
      font-size: inherit;
      padding-bottom: 0; }
    #bb .bb-calendar .period-label, #bb [bb-time-ranges] .period-label {
      display: block;
      text-transform: uppercase;
      margin-bottom: 10px;
      font-size: 12px; }
    #bb .bb-calendar .selected-time, #bb [bb-time-ranges] .selected-time {
      display: block;
      text-align: center; }
    #bb .bb-calendar .time-slot, #bb [bb-time-ranges] .time-slot {
      padding: 15px 25px;
      cursor: pointer;
      text-align: center; }
      #bb .bb-calendar .time-slot:hover, #bb .bb-calendar .time-slot.selected, #bb [bb-time-ranges] .time-slot:hover, #bb [bb-time-ranges] .time-slot.selected {
        background-color: #333;
        color: #FFF; }
    #bb .bb-calendar .period-label-icon, #bb [bb-time-ranges] .period-label-icon {
      width: 10px;
      text-align: center;
      display: inline-block; }
    #bb .bb-calendar .panel-group .panel.expanded, #bb [bb-time-ranges] .panel-group .panel.expanded {
      background-color: #EEE; }
    #bb .bb-calendar .panel-group .panel.selected, #bb [bb-time-ranges] .panel-group .panel.selected {
      background-color: #777;
      color: #FFF; }
    #bb .bb-calendar .panel-default.expanded > .panel-heading, #bb [bb-time-ranges] .panel-default.expanded > .panel-heading {
      padding-bottom: 5px; }
    #bb .bb-calendar .panel-default[disabled], #bb .bb-calendar .panel[disabled].expanded, #bb [bb-time-ranges] .panel-default[disabled], #bb [bb-time-ranges] .panel[disabled].expanded {
      background: none; }
      #bb .bb-calendar .panel-default[disabled] .panel-heading, #bb .bb-calendar .panel[disabled].expanded .panel-heading, #bb [bb-time-ranges] .panel-default[disabled] .panel-heading, #bb [bb-time-ranges] .panel[disabled].expanded .panel-heading {
        cursor: default; }
      #bb .bb-calendar .panel-default[disabled] .panel-collapse, #bb .bb-calendar .panel[disabled].expanded .panel-collapse, #bb [bb-time-ranges] .panel-default[disabled] .panel-collapse, #bb [bb-time-ranges] .panel[disabled].expanded .panel-collapse {
        display: none; }
      #bb .bb-calendar .panel-default[disabled] .panel-title, #bb .bb-calendar .panel[disabled].expanded .panel-title, #bb [bb-time-ranges] .panel-default[disabled] .panel-title, #bb [bb-time-ranges] .panel[disabled].expanded .panel-title {
        color: #CCC; }
    @media (max-width: 1199px) {
      #bb .bb-calendar .cal-col-6, #bb .bb-calendar .cal-col-7, #bb [bb-time-ranges] .cal-col-6, #bb [bb-time-ranges] .cal-col-7 {
        display: none; }
      #bb .bb-calendar .cal-col-1, #bb .bb-calendar .cal-col-2, #bb .bb-calendar .cal-col-3, #bb .bb-calendar .cal-col-4, #bb .bb-calendar .cal-col-5, #bb [bb-time-ranges] .cal-col-1, #bb [bb-time-ranges] .cal-col-2, #bb [bb-time-ranges] .cal-col-3, #bb [bb-time-ranges] .cal-col-4, #bb [bb-time-ranges] .cal-col-5 {
        width: 17.99%; } }
    @media (max-width: 991px) {
      #bb .bb-calendar .cal-col-6, #bb .bb-calendar .cal-col-7, #bb .bb-calendar .cal-col-4, #bb .bb-calendar .cal-col-5, #bb [bb-time-ranges] .cal-col-6, #bb [bb-time-ranges] .cal-col-7, #bb [bb-time-ranges] .cal-col-4, #bb [bb-time-ranges] .cal-col-5 {
        display: none; }
      #bb .bb-calendar .cal-col-1, #bb .bb-calendar .cal-col-2, #bb .bb-calendar .cal-col-3, #bb [bb-time-ranges] .cal-col-1, #bb [bb-time-ranges] .cal-col-2, #bb [bb-time-ranges] .cal-col-3 {
        width: 29.98%; } }
    @media (max-width: 767px) {
      #bb .bb-calendar .cal-col-1, #bb [bb-time-ranges] .cal-col-1 {
        width: 100%;
        padding: 0; }
      #bb .bb-calendar .cal-col-2, #bb .bb-calendar .cal-col-3, #bb .bb-calendar .cal-col-4, #bb .bb-calendar .cal-col-5, #bb [bb-time-ranges] .cal-col-2, #bb [bb-time-ranges] .cal-col-3, #bb [bb-time-ranges] .cal-col-4, #bb [bb-time-ranges] .cal-col-5 {
        display: none; } }
    #bb .bb-calendar .actions, #bb [bb-time-ranges] .actions {
      text-align: right; }
      @media (max-width: 767px) {
        #bb .bb-calendar .actions, #bb [bb-time-ranges] .actions {
          padding-right: 20px; } }
  #bb .calendar .day.navigation .btn-icon span.glyphicon {
    font-size: 40px;
    width: 100%; }
  #bb .calendar .day.navigation button {
    width: 100%; }
  #bb [datepicker-popup-wrap] {
    padding: 10px; }
  #bb [datepicker]:active, #bb [datepicker]:focus, #bb [bb-events] .date-picker:active, #bb [bb-events] .date-picker:focus {
    outline: none;
    border: none; }
  #bb [datepicker] table:active, #bb [datepicker] table:focus, #bb [bb-events] .date-picker table:active, #bb [bb-events] .date-picker table:focus {
    outline: none;
    border: none; }
  #bb [datepicker] table th, #bb [bb-events] .date-picker table th {
    padding: 2px; }
  #bb [datepicker] table button, #bb [bb-events] .date-picker table button {
    background: transparent;
    border-radius: 0px;
    border: solid 1px #ddd;
    color: #777; }
    #bb [datepicker] table button:disabled, #bb [bb-events] .date-picker table button:disabled {
      opacity: .5; }
    #bb [datepicker] table button span, #bb [bb-events] .date-picker table button span {
      color: #777; }
  #bb [datepicker] table button.btn-default.active, #bb [bb-events] .date-picker table button.btn-default.active {
    background-image: linear-gradient(to bottom, #eff3e9 0%, #fff 100%); }
    #bb [datepicker] table button.btn-default.active span, #bb [bb-events] .date-picker table button.btn-default.active span {
      font-weight: bold; }
  #bb [datepicker] table button.btn-default:hover, #bb [datepicker] table button.btn-default:active, #bb [datepicker] table button.btn-default:focus, #bb [bb-events] .date-picker table button.btn-default:hover, #bb [bb-events] .date-picker table button.btn-default:active, #bb [bb-events] .date-picker table button.btn-default:focus {
    background-image: linear-gradient(to bottom, #eff3e9 0%, #fff 100%);
    outline: none; }
    #bb [datepicker] table button.btn-default:hover span, #bb [datepicker] table button.btn-default:active span, #bb [datepicker] table button.btn-default:focus span, #bb [bb-events] .date-picker table button.btn-default:hover span, #bb [bb-events] .date-picker table button.btn-default:active span, #bb [bb-events] .date-picker table button.btn-default:focus span {
      font-weight: bold; }
  #bb .time-slot.disabled {
    opacity: 0.2; }
  #bb .confirmation-header {
    font-size: 14px;
    text-align: center; }
    #bb .confirmation-header button:hover, #bb .confirmation-header button:focus {
      box-shadow: 2px 2px 15px #ddd; }
  #bb .confirmation-heading {
    margin-bottom: 15px; }
  #bb .confirmation-summary {
    font-size: 14px;
    border-bottom: 1px solid #dddddd;
    margin: 6px 0 0px 0;
    padding: 20px 10px 10px 10px; }
    #bb .confirmation-summary:first-child {
      border-top: 1px solid #dddddd; }
  #bb .confirmation-summary-item {
    margin-bottom: 10px; }
  #bb .confirmation-summary .confirmation-summary-item .bb-summary-label, #bb .confirmation-summary .confirmation-summary-item .bb-summary-value {
    float: left;
    min-width: 115px;
    padding: 0px 15px 5px 15px;
    color: #555; }
  #bb .confirmation-summary .confirmation-summary-item .bb-summary-value {
    width: auto;
    color: inherit; }
  #bb .confirmation-summary-address div {
    padding-top: 5px;
    font-size: 14px; }
  #bb .address-item {
    margin-bottom: 10px; }
    #bb .address-item:last-child {
      margin-bottom: 0; }
  #bb .move-done-msg {
    color: green; }
  #bb .bb-checkout a, #bb div[bb-checkout] a {
    text-decoration: none; }
  #bb .bb-checkout .btn-link, #bb div[bb-checkout] .btn-link {
    margin-top: 25px;
    color: #000; }
  #bb .bb-checkout .bb-confirmation-border-margin, #bb div[bb-checkout] .bb-confirmation-border-margin {
    margin-top: 30px; }
  #bb .bb-checkout .bb-confirmation-p-alignment, #bb div[bb-checkout] .bb-confirmation-p-alignment {
    margin-bottom: 5px; }
  #bb .bb-checkout .bb-checkout-pay-button, #bb div[bb-checkout] .bb-checkout-pay-button {
    text-align: right;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 15px; }
  #bb .bb-checkout .bb-message, #bb div[bb-checkout] .bb-message {
    padding: 20px 10px 10px 10px; }
    #bb .bb-checkout .bb-message p, #bb div[bb-checkout] .bb-message p {
      margin: 10px 0 5px; }
  #bb .angular-google-map-container {
    height: 200px; }
  #bb .bb-booking-export {
    display: inline; }
  #bb .bb-day .btn-link, #bb div[bb-month-availability] .btn-link {
    color: #000000; }
  #bb .bb-day .glyphicon-chevron-left, #bb div[bb-month-availability] .glyphicon-chevron-left {
    margin-right: 5px; }
  #bb .bb-day .glyphicon-chevron-right, #bb div[bb-month-availability] .glyphicon-chevron-right {
    margin-left: 5px; }
  #bb .bb-day table.table, #bb div[bb-month-availability] table.table {
    color: #000000; }
  #bb .bb-day .bb-month-highlight, #bb div[bb-month-availability] .bb-month-highlight {
    background-color: #f8f8f8; }
  #bb .bb-day .bb-today, #bb div[bb-month-availability] .bb-today {
    border: 2px solid #337ab7; }
  #bb .bb-day p.bb-past, #bb div[bb-month-availability] p.bb-past {
    color: #CCC; }
  #bb .bb-day td.bb-go-ok:hover, #bb div[bb-month-availability] td.bb-go-ok:hover {
    background-color: #f1f1f1;
    cursor: pointer; }
  #bb .bb-day td.bb-no-go:hover, #bb div[bb-month-availability] td.bb-no-go:hover {
    cursor: initial; }
  #bb .bb-duration-list .bb-duration-price, #bb div[bb-durations] .bb-duration-price {
    font-size: 24px;
    text-align: right; }
  #bb .event-group .panel-default {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    border: none;
    margin-bottom: 30px; }
    @media (min-width: 768px) {
      #bb .event-group .panel-default {
        float: left;
        width: 50%; } }
    #bb .event-group .panel-default .panel-body {
      padding: 0px; }
    #bb .event-group .panel-default .btn-primary, #bb .event-group .panel-default #bb-event-list .date-list-item .btn-secondary.selected, #bb #bb-event-list .date-list-item .event-group .panel-default .btn-secondary.selected, #bb .event-group .panel-default [bb-events] .date-list-item .btn-secondary.selected, #bb [bb-events] .date-list-item .event-group .panel-default .btn-secondary.selected, #bb .event-group .panel-default [bb-multi-company-events] .date-list-item .btn-secondary.selected, #bb [bb-multi-company-events] .date-list-item .event-group .panel-default .btn-secondary.selected {
      color: #000; }
    #bb .event-group .panel-default .btn-primary:hover, #bb .event-group .panel-default #bb-event-list .date-list-item .btn-secondary.selected:hover, #bb #bb-event-list .date-list-item .event-group .panel-default .btn-secondary.selected:hover, #bb .event-group .panel-default [bb-events] .date-list-item .btn-secondary.selected:hover, #bb [bb-events] .date-list-item .event-group .panel-default .btn-secondary.selected:hover, #bb .event-group .panel-default [bb-multi-company-events] .date-list-item .btn-secondary.selected:hover, #bb [bb-multi-company-events] .date-list-item .event-group .panel-default .btn-secondary.selected:hover {
      background-color: #000;
      color: #d33826; }
    #bb .event-group .panel-default .item-name {
      font-size: 14px;
      text-transform: uppercase;
      line-height: 35px; }
    #bb .event-group .panel-default .item-desc {
      position: absolute;
      display: none;
      z-index: 100; }
      #bb .event-group .panel-default .item-desc p {
        padding: 15px; }
    #bb .event-group .panel-default .item-img {
      padding: 0px;
      background-color: #000; }
    #bb .event-group .panel-default .item-description {
      background: #000; }
    #bb .event-group .panel-default .service-select {
      background: #000; }
  #bb .event-group .panel-default:hover .btn-primary, #bb .event-group .panel-default:hover #bb-event-list .date-list-item .btn-secondary.selected, #bb #bb-event-list .date-list-item .event-group .panel-default:hover .btn-secondary.selected, #bb .event-group .panel-default:hover [bb-events] .date-list-item .btn-secondary.selected, #bb [bb-events] .date-list-item .event-group .panel-default:hover .btn-secondary.selected, #bb .event-group .panel-default:hover [bb-multi-company-events] .date-list-item .btn-secondary.selected, #bb [bb-multi-company-events] .date-list-item .event-group .panel-default:hover .btn-secondary.selected {
    background-color: #000;
    color: #d33826; }
  #bb .event-group .panel-default:hover .item-desc {
    display: block; }
  #bb .event-group .panel-default:hover .item-img img {
    opacity: .6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    filter: alpha(opacity=60); }
  #bb #bb-event-list .date-chooser-heading, #bb [bb-events] .date-chooser-heading, #bb [bb-multi-company-events] .date-chooser-heading {
    margin-bottom: 30px; }
  #bb #bb-event-list .date-chooser, #bb [bb-events] .date-chooser, #bb [bb-multi-company-events] .date-chooser {
    margin: 0 0 20px 0; }
  #bb #bb-event-list .date-list-item, #bb [bb-events] .date-list-item, #bb [bb-multi-company-events] .date-list-item {
    display: inline-block;
    padding-right: 10px;
    padding-bottom: 10px; }
    #bb #bb-event-list .date-list-item .btn-secondary, #bb [bb-events] .date-list-item .btn-secondary, #bb [bb-multi-company-events] .date-list-item .btn-secondary {
      width: 120px; }
  #bb #bb-event-list .event-list-heading, #bb [bb-events] .event-list-heading, #bb [bb-multi-company-events] .event-list-heading {
    padding-top: 10px;
    margin-bottom: 20px; }
  #bb #bb-event-list .event-datetime, #bb [bb-events] .event-datetime, #bb [bb-multi-company-events] .event-datetime {
    text-transform: uppercase; }
    #bb #bb-event-list .event-datetime .event-date, #bb [bb-events] .event-datetime .event-date, #bb [bb-multi-company-events] .event-datetime .event-date {
      font-size: 0.8em;
      display: block; }
    #bb #bb-event-list .event-datetime .event-time, #bb [bb-events] .event-datetime .event-time, #bb [bb-multi-company-events] .event-datetime .event-time {
      font-size: 1.7em; }
  #bb #bb-event-list .bb-month-picker, #bb [bb-events] .bb-month-picker, #bb [bb-multi-company-events] .bb-month-picker {
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 10px;
    overflow: hidden; }
    #bb #bb-event-list .bb-month-picker:before, #bb #bb-event-list .bb-month-picker:after, #bb [bb-events] .bb-month-picker:before, #bb [bb-events] .bb-month-picker:after, #bb [bb-multi-company-events] .bb-month-picker:before, #bb [bb-multi-company-events] .bb-month-picker:after {
      content: " ";
      display: table; }
    #bb #bb-event-list .bb-month-picker:after, #bb [bb-events] .bb-month-picker:after, #bb [bb-multi-company-events] .bb-month-picker:after {
      clear: both; }
    #bb #bb-event-list .bb-month-picker .bb-month-nav-prev,
    #bb #bb-event-list .bb-month-picker .bb-month-nav-next, #bb [bb-events] .bb-month-picker .bb-month-nav-prev,
    #bb [bb-events] .bb-month-picker .bb-month-nav-next, #bb [bb-multi-company-events] .bb-month-picker .bb-month-nav-prev,
    #bb [bb-multi-company-events] .bb-month-picker .bb-month-nav-next {
      position: relative;
      min-height: 1px;
      padding-left: 15px;
      padding-right: 15px;
      position: relative;
      min-height: 1px;
      padding-left: 15px;
      padding-right: 15px; }
      @media (min-width: 767px) {
        #bb #bb-event-list .bb-month-picker .bb-month-nav-prev,
        #bb #bb-event-list .bb-month-picker .bb-month-nav-next, #bb [bb-events] .bb-month-picker .bb-month-nav-prev,
        #bb [bb-events] .bb-month-picker .bb-month-nav-next, #bb [bb-multi-company-events] .bb-month-picker .bb-month-nav-prev,
        #bb [bb-multi-company-events] .bb-month-picker .bb-month-nav-next {
          padding-top: 107px; } }
      @media (min-width: 768px) {
        #bb #bb-event-list .bb-month-picker .bb-month-nav-prev,
        #bb #bb-event-list .bb-month-picker .bb-month-nav-next, #bb [bb-events] .bb-month-picker .bb-month-nav-prev,
        #bb [bb-events] .bb-month-picker .bb-month-nav-next, #bb [bb-multi-company-events] .bb-month-picker .bb-month-nav-prev,
        #bb [bb-multi-company-events] .bb-month-picker .bb-month-nav-next {
          float: left;
          width: 16.66667%; } }
      @media (min-width: 992px) {
        #bb #bb-event-list .bb-month-picker .bb-month-nav-prev,
        #bb #bb-event-list .bb-month-picker .bb-month-nav-next, #bb [bb-events] .bb-month-picker .bb-month-nav-prev,
        #bb [bb-events] .bb-month-picker .bb-month-nav-next, #bb [bb-multi-company-events] .bb-month-picker .bb-month-nav-prev,
        #bb [bb-multi-company-events] .bb-month-picker .bb-month-nav-next {
          float: left;
          width: 8.33333%; } }
    #bb #bb-event-list .bb-month-picker .bb-month-nav-prev, #bb [bb-events] .bb-month-picker .bb-month-nav-prev, #bb [bb-multi-company-events] .bb-month-picker .bb-month-nav-prev {
      text-align: right; }
    #bb #bb-event-list .bb-month-picker .bb-month-nav-next, #bb [bb-events] .bb-month-picker .bb-month-nav-next, #bb [bb-multi-company-events] .bb-month-picker .bb-month-nav-next {
      text-align: left; }
    #bb #bb-event-list .bb-month-picker .bb-months, #bb [bb-events] .bb-month-picker .bb-months, #bb [bb-multi-company-events] .bb-month-picker .bb-months {
      position: relative;
      float: left;
      width: 100%;
      min-height: 1px;
      padding-left: 15px;
      padding-right: 15px;
      position: relative;
      min-height: 1px;
      padding-left: 15px;
      padding-right: 15px;
      position: relative;
      min-height: 1px;
      padding-left: 15px;
      padding-right: 15px; }
      @media (min-width: 768px) {
        #bb #bb-event-list .bb-month-picker .bb-months, #bb [bb-events] .bb-month-picker .bb-months, #bb [bb-multi-company-events] .bb-month-picker .bb-months {
          float: left;
          width: 66.66667%; } }
      @media (min-width: 992px) {
        #bb #bb-event-list .bb-month-picker .bb-months, #bb [bb-events] .bb-month-picker .bb-months, #bb [bb-multi-company-events] .bb-month-picker .bb-months {
          float: left;
          width: 83.33333%; } }
    #bb #bb-event-list .bb-month-picker .bb-month, #bb [bb-events] .bb-month-picker .bb-month, #bb [bb-multi-company-events] .bb-month-picker .bb-month {
      outline: none; }
      #bb #bb-event-list .bb-month-picker .bb-month table, #bb [bb-events] .bb-month-picker .bb-month table, #bb [bb-multi-company-events] .bb-month-picker .bb-month table {
        margin: 0 auto; }
    #bb #bb-event-list .bb-month-picker .slick-disabled, #bb [bb-events] .bb-month-picker .slick-disabled, #bb [bb-multi-company-events] .bb-month-picker .slick-disabled {
      cursor: default;
      opacity: 0.2;
      cursor: false;
      pointer-events: none;
      filter: alpha(opacity=20); }
    #bb #bb-event-list .bb-month-picker td, #bb [bb-events] .bb-month-picker td, #bb [bb-multi-company-events] .bb-month-picker td {
      text-align: center;
      padding: 1px;
      height: 36px;
      width: 36px;
      font-family: Arial, sans-serif; }
      #bb #bb-event-list .bb-month-picker td.past, #bb #bb-event-list .bb-month-picker td.disabled, #bb [bb-events] .bb-month-picker td.past, #bb [bb-events] .bb-month-picker td.disabled, #bb [bb-multi-company-events] .bb-month-picker td.past, #bb [bb-multi-company-events] .bb-month-picker td.disabled {
        color: #AAA;
        cursor: auto; }
      #bb #bb-event-list .bb-month-picker td.available, #bb [bb-events] .bb-month-picker td.available, #bb [bb-multi-company-events] .bb-month-picker td.available {
        cursor: pointer;
        color: #FFF; }
        #bb #bb-event-list .bb-month-picker td.available .circle, #bb [bb-events] .bb-month-picker td.available .circle, #bb [bb-multi-company-events] .bb-month-picker td.available .circle {
          background-color: #0b57a2;
          border: none;
          border-radius: 50%;
          padding: 6px 5px;
          height: 30px;
          width: 30px;
          text-align: center; }
          #bb #bb-event-list .bb-month-picker td.available .circle:hover, #bb [bb-events] .bb-month-picker td.available .circle:hover, #bb [bb-multi-company-events] .bb-month-picker td.available .circle:hover {
            background-color: #97badb; }
      #bb #bb-event-list .bb-month-picker td.disabled.available, #bb [bb-events] .bb-month-picker td.disabled.available, #bb [bb-multi-company-events] .bb-month-picker td.disabled.available {
        cursor: auto; }
        #bb #bb-event-list .bb-month-picker td.disabled.available .circle, #bb [bb-events] .bb-month-picker td.disabled.available .circle, #bb [bb-multi-company-events] .bb-month-picker td.disabled.available .circle {
          background-color: transparent;
          color: #AAA;
          cursor: auto; }
      #bb #bb-event-list .bb-month-picker td.selected.available .circle, #bb [bb-events] .bb-month-picker td.selected.available .circle, #bb [bb-multi-company-events] .bb-month-picker td.selected.available .circle {
        background-color: #19a973; }
    #bb #bb-event-list .bb-month-picker th, #bb [bb-events] .bb-month-picker th, #bb [bb-multi-company-events] .bb-month-picker th {
      margin: 0;
      text-align: center; }
      #bb #bb-event-list .bb-month-picker th.months, #bb [bb-events] .bb-month-picker th.months, #bb [bb-multi-company-events] .bb-month-picker th.months {
        padding-bottom: 10px; }
      #bb #bb-event-list .bb-month-picker th.days, #bb [bb-events] .bb-month-picker th.days, #bb [bb-multi-company-events] .bb-month-picker th.days {
        font-weight: normal; }
  #bb #bb-event-list .bb-events-list, #bb [bb-events] .bb-events-list, #bb [bb-multi-company-events] .bb-events-list {
    min-height: 400px;
    margin-bottom: 15px; }
    #bb #bb-event-list .bb-events-list .ng-enter, #bb [bb-events] .bb-events-list .ng-enter, #bb [bb-multi-company-events] .bb-events-list .ng-enter {
      -webkit-animation: fadeIn 1s;
      -moz-animation: fadeIn 1s;
      -o-animation: fadeIn 1s;
      animation: fadeIn 1s; }
    #bb #bb-event-list .bb-events-list .ng-leave, #bb [bb-events] .bb-events-list .ng-leave, #bb [bb-multi-company-events] .bb-events-list .ng-leave {
      -webkit-animation: fadeOutDown 1s;
      -moz-animation: fadeOutDown 1s;
      -o-animation: fadeOutDown 1s;
      animation: fadeOutDown 1s; }
    #bb #bb-event-list .bb-events-list .panel, #bb [bb-events] .bb-events-list .panel, #bb [bb-multi-company-events] .bb-events-list .panel {
      border-top: none;
      margin-bottom: 0; }
    #bb #bb-event-list .bb-events-list .panel-body, #bb [bb-events] .bb-events-list .panel-body, #bb [bb-multi-company-events] .bb-events-list .panel-body {
      padding: 20px; }
    #bb #bb-event-list .bb-events-list .event-title, #bb [bb-events] .bb-events-list .event-title, #bb [bb-multi-company-events] .bb-events-list .event-title {
      margin: 10px 0; }
      #bb #bb-event-list .bb-events-list .event-title h3, #bb [bb-events] .bb-events-list .event-title h3, #bb [bb-multi-company-events] .bb-events-list .event-title h3 {
        margin: 0; }
    #bb #bb-event-list .bb-events-list .event-details, #bb [bb-events] .bb-events-list .event-details, #bb [bb-multi-company-events] .bb-events-list .event-details {
      margin-bottom: 10px; }
      @media (max-width: 767px) {
        #bb #bb-event-list .bb-events-list .event-details, #bb [bb-events] .bb-events-list .event-details, #bb [bb-multi-company-events] .bb-events-list .event-details {
          margin-top: 10px; } }
      #bb #bb-event-list .bb-events-list .event-details ul li, #bb [bb-events] .bb-events-list .event-details ul li, #bb [bb-multi-company-events] .bb-events-list .event-details ul li {
        padding-bottom: 5px; }
      #bb #bb-event-list .bb-events-list .event-details .bb-icon, #bb [bb-events] .bb-events-list .event-details .bb-icon, #bb [bb-multi-company-events] .bb-events-list .event-details .bb-icon {
        margin-right: 5px; }
      #bb #bb-event-list .bb-events-list .event-details .glyphicon, #bb [bb-events] .bb-events-list .event-details .glyphicon, #bb [bb-multi-company-events] .bb-events-list .event-details .glyphicon {
        margin-right: 5px; }
    @media (min-width: 768px) {
      #bb #bb-event-list .bb-events-list .event-description, #bb [bb-events] .bb-events-list .event-description, #bb [bb-multi-company-events] .bb-events-list .event-description {
        max-height: 50px;
        overflow: hidden; } }
    @media (max-width: 767px) {
      #bb #bb-event-list .bb-events-list .event-description, #bb [bb-events] .bb-events-list .event-description, #bb [bb-multi-company-events] .bb-events-list .event-description {
        margin-bottom: 10px; } }
    #bb #bb-event-list .bb-events-list .bb-event-card, #bb [bb-events] .bb-events-list .bb-event-card, #bb [bb-multi-company-events] .bb-events-list .bb-event-card {
      min-height: 140px; }
    #bb #bb-event-list .bb-events-list .event-summary-list, #bb [bb-events] .bb-events-list .event-summary-list, #bb [bb-multi-company-events] .bb-events-list .event-summary-list {
      margin-bottom: 0; }
      @media (max-width: 767px) {
        #bb #bb-event-list .bb-events-list .event-summary-list, #bb [bb-events] .bb-events-list .event-summary-list, #bb [bb-multi-company-events] .bb-events-list .event-summary-list {
          margin-bottom: 20px; } }
    #bb #bb-event-list .bb-events-list .fa, #bb [bb-events] .bb-events-list .fa, #bb [bb-multi-company-events] .bb-events-list .fa {
      color: #aaa;
      width: 1.28571429em;
      font-size: 1.5em;
      text-align: center; }
  #bb #bb-event-list .bb-filters a, #bb [bb-events] .bb-filters a, #bb [bb-multi-company-events] .bb-filters a {
    text-decoration: none; }
  #bb #bb-event-list .bb-filters .panel:last-child, #bb [bb-events] .bb-filters .panel:last-child, #bb [bb-multi-company-events] .bb-filters .panel:last-child {
    margin-bottom: 0; }
  #bb #bb-event-list .bb-filters .panel-body, #bb [bb-events] .bb-filters .panel-body, #bb [bb-multi-company-events] .bb-filters .panel-body {
    padding-bottom: 5px; }
  #bb #bb-event-list .bb-filters .panel-group:last-child, #bb [bb-events] .bb-filters .panel-group:last-child, #bb [bb-multi-company-events] .bb-filters .panel-group:last-child {
    margin-bottom: 0; }
  #bb #bb-event-list .bb-filters .panel-heading, #bb [bb-events] .bb-filters .panel-heading, #bb [bb-multi-company-events] .bb-filters .panel-heading {
    background-image: -webkit-linear-gradient(top, #fff 0%, #eff3e9 100%);
    background-image: -o-linear-gradient(top, #fff 0%, #eff3e9 100%);
    background-image: linear-gradient(to bottom, #fff 0%, #eff3e9 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEFF3E9', GradientType=0);
    text-align: center;
    padding: 15px;
    cursor: pointer; }
    #bb #bb-event-list .bb-filters .panel-heading:hover, #bb [bb-events] .bb-filters .panel-heading:hover, #bb [bb-multi-company-events] .bb-filters .panel-heading:hover {
      background-color: #EEE; }
  #bb #bb-event-list .bb-filters .panel-title, #bb [bb-events] .bb-filters .panel-title, #bb [bb-multi-company-events] .bb-filters .panel-title {
    padding-bottom: 0; }
  #bb #bb-event-list .bb-filters .panel-body, #bb [bb-events] .bb-filters .panel-body, #bb [bb-multi-company-events] .bb-filters .panel-body {
    padding-bottom: 0; }
  #bb #bb-event-list .bb-filters .date-picker, #bb [bb-events] .bb-filters .date-picker, #bb [bb-multi-company-events] .bb-filters .date-picker {
    width: 240px;
    margin-right: 0; }
    #bb #bb-event-list .bb-filters .date-picker .btn-default, #bb [bb-events] .bb-filters .date-picker .btn-default, #bb [bb-multi-company-events] .bb-filters .date-picker .btn-default {
      background-image: -webkit-linear-gradient(top, #fff 0%, #eff3e9 100%);
      background-image: -o-linear-gradient(top, #fff 0%, #eff3e9 100%);
      background-image: linear-gradient(to bottom, #fff 0%, #eff3e9 100%);
      background-repeat: repeat-x;
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEFF3E9', GradientType=0); }
    #bb #bb-event-list .bb-filters .date-picker input, #bb [bb-events] .bb-filters .date-picker input, #bb [bb-multi-company-events] .bb-filters .date-picker input {
      background-color: #FFF; }
    #bb #bb-event-list .bb-filters .date-picker table, #bb [bb-events] .bb-filters .date-picker table, #bb [bb-multi-company-events] .bb-filters .date-picker table {
      outline: none; }
    @media (max-width: 767px) {
      #bb #bb-event-list .bb-filters .date-picker, #bb [bb-events] .bb-filters .date-picker, #bb [bb-multi-company-events] .bb-filters .date-picker {
        width: 100%; } }
  #bb #bb-event-list .bb-filters .btn-link, #bb [bb-events] .bb-filters .btn-link, #bb [bb-multi-company-events] .bb-filters .btn-link {
    color: #000; }
    #bb #bb-event-list .bb-filters .btn-link:hover, #bb #bb-event-list .bb-filters .btn-link:active, #bb #bb-event-list .bb-filters .btn-link:focus, #bb [bb-events] .bb-filters .btn-link:hover, #bb [bb-events] .bb-filters .btn-link:active, #bb [bb-events] .bb-filters .btn-link:focus, #bb [bb-multi-company-events] .bb-filters .btn-link:hover, #bb [bb-multi-company-events] .bb-filters .btn-link:active, #bb [bb-multi-company-events] .bb-filters .btn-link:focus {
      color: #000; }
  #bb #bb-event-list .bb-filter-summary, #bb [bb-events] .bb-filter-summary, #bb [bb-multi-company-events] .bb-filter-summary {
    margin-bottom: 0;
    border-top: none;
    padding: 10px 0;
    font-size: 1.125em;
    line-height: 30px; }
    #bb #bb-event-list .bb-filter-summary .panel-body, #bb [bb-events] .bb-filter-summary .panel-body, #bb [bb-multi-company-events] .bb-filter-summary .panel-body {
      padding: 0; }
    #bb #bb-event-list .bb-filter-summary span, #bb [bb-events] .bb-filter-summary span, #bb [bb-multi-company-events] .bb-filter-summary span {
      margin-left: 5px; }
      #bb #bb-event-list .bb-filter-summary span .btn-icon, #bb [bb-events] .bb-filter-summary span .btn-icon, #bb [bb-multi-company-events] .bb-filter-summary span .btn-icon {
        font-size: 1.25em;
        margin-left: 5px; }
        #bb #bb-event-list .bb-filter-summary span .btn-icon[disabled], #bb [bb-events] .bb-filter-summary span .btn-icon[disabled], #bb [bb-multi-company-events] .bb-filter-summary span .btn-icon[disabled] {
          color: #EEE; }
  #bb #bb-event-list .event-img, #bb [bb-events] .event-img, #bb [bb-multi-company-events] .event-img {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    background-size: cover;
    background-position: center;
    min-height: 150px;
    padding: 5px; }
  #bb #bb-event-list time.icon, #bb [bb-events] time.icon, #bb [bb-multi-company-events] time.icon {
    font-size: 1em;
    /* change icon size */
    display: block;
    position: relative;
    width: 7.5em;
    height: 7.5em;
    color: white;
    margin: 20px auto;
    border-radius: 20em; }
    #bb #bb-event-list time.icon *, #bb [bb-events] time.icon *, #bb [bb-multi-company-events] time.icon * {
      display: block;
      width: 100%;
      font-size: 1em;
      font-weight: bold;
      font-style: normal;
      text-align: center;
      opacity: 1; }
    #bb #bb-event-list time.icon em, #bb [bb-events] time.icon em, #bb [bb-multi-company-events] time.icon em {
      position: absolute;
      top: 1.5em;
      padding: 0.4em 0;
      font-size: 0.75em; }
    #bb #bb-event-list time.icon strong, #bb [bb-events] time.icon strong, #bb [bb-multi-company-events] time.icon strong {
      position: absolute;
      font-size: 0.8em;
      bottom: 1.6em; }
    #bb #bb-event-list time.icon span, #bb [bb-events] time.icon span, #bb [bb-multi-company-events] time.icon span {
      position: absolute;
      top: 0.7em;
      width: 100%;
      font-size: 2.75em;
      letter-spacing: -0.025em; }
    #bb #bb-event-list time.icon .time, #bb [bb-events] time.icon .time, #bb [bb-multi-company-events] time.icon .time {
      padding-top: 4px;
      opacity: 0;
      transition: opacity .125s ease-in-out;
      -moz-transition: opacity .125s ease-in-out;
      -webkit-transition: opacity .125s ease-in-out; }
    #bb #bb-event-list time.icon:hover .time, #bb #bb-event-list time.icon:focus .time, #bb [bb-events] time.icon:hover .time, #bb [bb-events] time.icon:focus .time, #bb [bb-multi-company-events] time.icon:hover .time, #bb [bb-multi-company-events] time.icon:focus .time {
      opacity: 1; }
    #bb #bb-event-list time.icon:hover .date, #bb #bb-event-list time.icon:focus .date, #bb [bb-events] time.icon:hover .date, #bb [bb-events] time.icon:focus .date, #bb [bb-multi-company-events] time.icon:hover .date, #bb [bb-multi-company-events] time.icon:focus .date {
      opacity: 0;
      transition: opacity .125s ease-in-out;
      -moz-transition: opacity .125s ease-in-out;
      -webkit-transition: opacity .125s ease-in-out; }
    #bb #bb-event-list time.icon[ng-click], #bb [bb-events] time.icon[ng-click], #bb [bb-multi-company-events] time.icon[ng-click] {
      cursor: pointer; }
    #bb #bb-event-list time.icon .date, #bb [bb-events] time.icon .date, #bb [bb-multi-company-events] time.icon .date {
      padding-top: 3px; }
  #bb #bb-event-list .event-img time, #bb [bb-events] .event-img time, #bb [bb-multi-company-events] .event-img time {
    background-color: rgba(83, 86, 90, 0.6);
    transition: background-color .5s ease-in-out;
    -moz-transition: background-color .5s ease-in-out;
    -webkit-transition: background-color .5s ease-in-out; }
  #bb #bb-event-list .event-img:hover time, #bb [bb-events] .event-img:hover time, #bb [bb-multi-company-events] .event-img:hover time {
    background-color: rgba(83, 86, 90, 0.9); }
  #bb .search-form-wrapper {
    margin: 10px 0 15px 0; }
    @media (max-width: 414px) {
      #bb .search-form-wrapper {
        margin-right: 25px; } }
    #bb .search-form-wrapper .form-group {
      margin-bottom: 0; }
  #bb .company-map-header {
    margin: 15px 0 25px;
    font-size: 18px; }
  #bb .filter-by-service {
    padding-bottom: 10px; }
    #bb .filter-by-service span {
      font-weight: normal; }
  #bb .bb-company-block .panel-heading {
    cursor: pointer; }
  #bb .bb-company-block .panel-title {
    padding-bottom: 0; }
  #bb .bb-company-block .store-details li {
    padding-bottom: 5px; }
  @media (min-width: 768px) {
    #bb .bb-company-block {
      padding-right: 0; } }
  @media (max-width: 767px) {
    #bb .bb-map-block {
      padding-bottom: 15px; } }
  #bb .map-canvas {
    height: 400px;
    margin-bottom: 15px; }
    @media (max-width: 767px) {
      #bb .map-canvas {
        height: 200px; } }
  #bb .gmnoprint img {
    max-width: none;
    max-height: none; }
  #bb .gm-style img {
    max-width: none; }
  #bb .gm-style label {
    width: auto;
    display: inline; }
  #bb .bb-store-search .panel {
    border-top: 1px solid #DDD; }
  #bb .bb-store-search .panel-title {
    font-size: 14px; }
  #bb .bb-store-search input {
    font-size: 14px; }
  @media (min-width: 780px) {
    #bb .bb-store-search .bb-map-block {
      height: 800px; } }
  #bb .bb-service-list .bb-service-name, #bb div[bb-services] .bb-service-name {
    font-size: 24px;
    font-weight: 200; }
  #bb .bb-service-list .bb-service-image, #bb div[bb-services] .bb-service-image {
    margin-bottom: 20px; }
    #bb .bb-service-list .bb-service-image img, #bb div[bb-services] .bb-service-image img {
      display: block;
      margin-left: auto;
      margin-right: auto; }
    @media (min-width: 768px) {
      #bb .bb-service-list .bb-service-image, #bb div[bb-services] .bb-service-image {
        margin-bottom: 0; } }
  #bb .bb-service-list .bb-service-description, #bb div[bb-services] .bb-service-description {
    margin-bottom: 20px; }
  #bb .bb-service-list .bb-service-price, #bb div[bb-services] .bb-service-price {
    font-size: 24px;
    text-align: right; }
  #bb #bb-event .event-long-description ul, #bb div[bb-event] .event-long-description ul, #bb .event .event-long-description ul {
    margin: 20px;
    padding: 0 20px;
    list-style: initial; }
  #bb #bb-event .panel-default, #bb div[bb-event] .panel-default, #bb .event .panel-default {
    border-bottom: none;
    margin-bottom: 45px; }
  #bb #bb-event .event-description, #bb div[bb-event] .event-description, #bb .event .event-description {
    margin-bottom: 0; }
  #bb #bb-event .heading, #bb div[bb-event] .heading, #bb .event .heading {
    margin-top: 15px; }
  #bb #bb-event .ticket-list li, #bb div[bb-event] .ticket-list li, #bb .event .ticket-list li {
    padding-bottom: 15px;
    padding-top: 15px;
    border-bottom: 1px solid #DDD; }
    #bb #bb-event .ticket-list li.header, #bb div[bb-event] .ticket-list li.header, #bb .event .ticket-list li.header {
      padding-top: 00;
      font-weight: bold; }
  #bb #bb-event .ticket-list .price, #bb div[bb-event] .ticket-list .price, #bb .event .ticket-list .price {
    color: #000; }
  #bb #bb-event .ticket-box, #bb div[bb-event] .ticket-box, #bb .event .ticket-box {
    text-align: center;
    display: inline-block;
    width: auto; }
    @media (max-width: 767px) {
      #bb #bb-event .ticket-box, #bb div[bb-event] .ticket-box, #bb .event .ticket-box {
        width: 40px; } }
  #bb #bb-event .total-label, #bb div[bb-event] .total-label, #bb .event .total-label {
    text-align: right;
    font-weight: bold; }
  #bb #bb-event .question-item-header .heading, #bb div[bb-event] .question-item-header .heading, #bb .event .question-item-header .heading {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 1.3em;
    margin-top: 15px;
    margin-bottom: 5px; }
    @media (min-width: 768px) {
      #bb #bb-event .question-item-header .heading, #bb div[bb-event] .question-item-header .heading, #bb .event .question-item-header .heading {
        margin-left: 33.33333%; } }
    @media (min-width: 768px) {
      #bb #bb-event .question-item-header .heading, #bb div[bb-event] .question-item-header .heading, #bb .event .question-item-header .heading {
        float: left;
        width: 41.66667%; } }
  #bb #bb-event .bb-coupon-box, #bb div[bb-event] .bb-coupon-box, #bb .event .bb-coupon-box {
    margin: 15px 0 0 0; }
    #bb #bb-event .bb-coupon-box .control-label, #bb div[bb-event] .bb-coupon-box .control-label, #bb .event .bb-coupon-box .control-label {
      padding-right: 5px; }
    @media (max-width: 767px) {
      #bb #bb-event .bb-coupon-box .form-control, #bb div[bb-event] .bb-coupon-box .form-control, #bb .event .bb-coupon-box .form-control {
        margin-bottom: 10px; } }
  #bb #bb-event .panel-body, #bb div[bb-event] .panel-body, #bb .event .panel-body {
    padding: 15px 0; }
  #bb #bb-event.no-image .event-header, #bb div[bb-event].no-image .event-header, #bb .event.no-image .event-header {
    margin: 20px 0 25px 0; }
    #bb #bb-event.no-image .event-header .event-summary-list, #bb div[bb-event].no-image .event-header .event-summary-list, #bb .event.no-image .event-header .event-summary-list {
      margin-bottom: 0; }
  #bb #bb-event.has-image .event-header, #bb div[bb-event].has-image .event-header, #bb .event.has-image .event-header {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative; }
    #bb #bb-event.has-image .event-header:before, #bb div[bb-event].has-image .event-header:before, #bb .event.has-image .event-header:before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background-image: linear-gradient(to bottom, rgba(30, 87, 153, 0) 30%, #353535 100%); }
    #bb #bb-event.has-image .event-header .event-details, #bb div[bb-event].has-image .event-header .event-details, #bb .event.has-image .event-header .event-details {
      position: absolute;
      bottom: 0;
      background-color: rgba(83, 86, 90, 0.6);
      transition: background-color .5s ease-in-out;
      -moz-transition: background-color .5s ease-in-out;
      -webkit-transition: background-color .5s ease-in-out;
      width: 100%;
      color: #FFF;
      padding: 15px; }
      #bb #bb-event.has-image .event-header .event-details h1, #bb div[bb-event].has-image .event-header .event-details h1, #bb .event.has-image .event-header .event-details h1 {
        color: white; }
    @media (max-width: 767px) {
      #bb #bb-event.has-image .event-header, #bb div[bb-event].has-image .event-header, #bb .event.has-image .event-header {
        padding-top: 100%; } }
    #bb #bb-event.has-image .event-header .bb-icon, #bb #bb-event.has-image .event-header .glyphicon, #bb div[bb-event].has-image .event-header .bb-icon, #bb div[bb-event].has-image .event-header .glyphicon, #bb .event.has-image .event-header .bb-icon, #bb .event.has-image .event-header .glyphicon {
      color: #FFF;
      margin-right: 5px; }
    #bb #bb-event.has-image .event-header:hover .event-details, #bb div[bb-event].has-image .event-header:hover .event-details, #bb .event.has-image .event-header:hover .event-details {
      background-color: rgba(83, 86, 90, 0.9); }
  #bb #bb-event .map-canvas, #bb div[bb-event] .map-canvas, #bb .event .map-canvas {
    height: 200px; }
    @media (max-width: 767px) {
      #bb #bb-event .map-canvas, #bb div[bb-event] .map-canvas, #bb .event .map-canvas {
        height: 150px; } }
  #bb #bb-event .gmnoprint img, #bb div[bb-event] .gmnoprint img, #bb .event .gmnoprint img {
    max-width: none;
    max-height: none; }
  #bb #bb-event .gm-style img, #bb div[bb-event] .gm-style img, #bb .event .gm-style img {
    max-width: none; }
  #bb #bb-event .gm-style label, #bb div[bb-event] .gm-style label, #bb .event .gm-style label {
    width: auto;
    display: inline; }
  #bb #bb-event .event-details, #bb div[bb-event] .event-details, #bb .event .event-details {
    padding: 20px; }
  #bb #bb-event [bb-background-image].event-header, #bb div[bb-event] [bb-background-image].event-header, #bb .event [bb-background-image].event-header {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 300px; }
    #bb #bb-event [bb-background-image].event-header .fa, #bb div[bb-event] [bb-background-image].event-header .fa, #bb .event [bb-background-image].event-header .fa {
      font-size: 1.5em;
      text-align: center;
      color: #111; }
  #bb div[accordion] .panel-heading {
    padding: 10px 15px 0px 15px; }
    #bb div[accordion] .panel-heading:hover {
      cursor: pointer; }
  #bb div[accordion] .panel-group {
    margin-bottom: 0; }
  #bb div[accordion] .panel-default {
    margin-bottom: 0; }
  #bb .accordion-bottom-border {
    display: block;
    width: 100%;
    height: 1px;
    background: #ddd; }
  #bb .bb-time td:hover, #bb [bb-times] td:hover {
    background-color: #f1f1f1; }
  #bb .bb-time p.bb-past, #bb [bb-times] p.bb-past {
    color: #CCC; }
  @media (min-width: 768px) {
    #bb .bb-time li[bb-slot-grouper], #bb [bb-times] li[bb-slot-grouper] {
      min-height: 400px; } }
  #bb .bb-time .bb-time-slot, #bb [bb-times] .bb-time-slot {
    margin-bottom: 15px; }
  #bb .bb-time .bb-service-unavailable, #bb [bb-times] .bb-service-unavailable {
    color: #ccc;
    font-size: 18px;
    text-align: center;
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 15px; }
  #bb .bb-time p, #bb [bb-times] p {
    margin-bottom: 0px; }
  #bb .bb-time small, #bb [bb-times] small {
    font-weight: inherit;
    color: inherit; }
  #bb .bb-time .bb-time-section-separator, #bb [bb-times] .bb-time-section-separator {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc; }
    @media (max-width: 767px) {
      #bb .bb-time .bb-time-section-separator, #bb [bb-times] .bb-time-section-separator {
        border: none; } }
  #bb .bb-time .btn-link, #bb [bb-times] .btn-link {
    color: #000000; }
  #bb .bb-time .glyphicon-chevron-left, #bb [bb-times] .glyphicon-chevron-left {
    margin-right: 5px; }
  #bb .bb-time .glyphicon-chevron-right, #bb [bb-times] .glyphicon-chevron-right {
    margin-left: 5px; }
  #bb .bb-time .panel-heading, #bb [bb-times] .panel-heading {
    cursor: pointer; }
  #bb .bb-time .panel-default[disabled], #bb .bb-time .panel[disabled].expanded, #bb [bb-times] .panel-default[disabled], #bb [bb-times] .panel[disabled].expanded {
    background: none; }
    #bb .bb-time .panel-default[disabled] .panel-heading, #bb .bb-time .panel[disabled].expanded .panel-heading, #bb [bb-times] .panel-default[disabled] .panel-heading, #bb [bb-times] .panel[disabled].expanded .panel-heading {
      cursor: default;
      padding-bottom: 15px; }
    #bb .bb-time .panel-default[disabled] .panel-collapse, #bb .bb-time .panel[disabled].expanded .panel-collapse, #bb [bb-times] .panel-default[disabled] .panel-collapse, #bb [bb-times] .panel[disabled].expanded .panel-collapse {
      display: none; }
    #bb .bb-time .panel-default[disabled] .panel-title, #bb .bb-time .panel[disabled].expanded .panel-title, #bb [bb-times] .panel-default[disabled] .panel-title, #bb [bb-times] .panel[disabled].expanded .panel-title {
      color: #CCC; }
    #bb .bb-time .panel-default[disabled] small, #bb .bb-time .panel[disabled].expanded small, #bb [bb-times] .panel-default[disabled] small, #bb [bb-times] .panel[disabled].expanded small {
      font-weight: inherit;
      color: inherit; }
  #bb .bb-filters .panel:last-child {
    margin-bottom: 0; }
  #bb .bb-filters .panel-group:last-child {
    margin-bottom: 0; }
  #bb .bb-filters .panel-heading {
    cursor: pointer;
    text-align: center;
    padding: 15px; }
  #bb .bb-filters .panel-title {
    font-size: 14px;
    padding-bottom: 0px; }
  #bb .bb-filters .panel-body {
    padding-bottom: 0; }
  #bb .bb-filters .form-group {
    padding-right: 15px; }
    @media (max-width: 767px) {
      #bb .bb-filters .form-group {
        padding-right: 0; } }
  #bb .bb-filters .date-picker {
    width: 240px; }
    #bb .bb-filters .date-picker table {
      outline: none; }
    @media (max-width: 767px) {
      #bb .bb-filters .date-picker {
        width: 100%; } }
  #bb .bb-filters [bb-price-filter] {
    width: 240px; }
    @media (max-width: 767px) {
      #bb .bb-filters [bb-price-filter] {
        width: 100%; } }
  #bb .popover span {
    color: #777;
    cursor: pointer;
    padding-top: 5px; }
    #bb .popover span:hover {
      text-decoration: underline; }
  #bb .card {
    margin: 10px;
    min-height: 340px;
    border: 1px solid #ccc;
    border-radius: 5px; }
    #bb .card .btn-primary, #bb .card #bb-event-list .date-list-item .btn-secondary.selected, #bb #bb-event-list .date-list-item .card .btn-secondary.selected, #bb .card [bb-events] .date-list-item .btn-secondary.selected, #bb [bb-events] .date-list-item .card .btn-secondary.selected, #bb .card [bb-multi-company-events] .date-list-item .btn-secondary.selected, #bb [bb-multi-company-events] .date-list-item .card .btn-secondary.selected {
      position: absolute;
      bottom: 20px;
      right: 36px; }
    #bb .card h4 {
      font-size: 18px;
      margin: 0px;
      padding-bottom: 5px; }
    #bb .card .card-block {
      padding: 10px; }

/*!
 * Bootstrap v3.0.0
 *
 * Copyright 2013 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world by @mdo and @fat.
 */#bb{/*! normalize.css v2.1.0 | MIT License | git.io/normalize */}#bb article,#bb aside,#bb details,#bb figcaption,#bb figure,#bb footer,#bb header,#bb hgroup,#bb main,#bb nav,#bb section,#bb summary{display:block}#bb audio,#bb canvas,#bb video{display:inline-block}#bb audio:not([controls]){display:none;height:0}#bb [hidden]{display:none}#bb html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}#bb body{margin:0}#bb a:focus{outline:thin dotted}#bb a:active,#bb a:hover{outline:0}#bb h1{font-size:2em;margin:0.67em 0}#bb abbr[title]{border-bottom:1px dotted}#bb b,#bb strong{font-weight:bold}#bb dfn{font-style:italic}#bb hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}#bb mark{background:#ff0;color:#000}#bb code,#bb kbd,#bb pre,#bb samp{font-family:monospace, serif;font-size:1em}#bb pre{white-space:pre-wrap}#bb q{quotes:"\201C" "\201D" "\2018" "\2019"}#bb small{font-size:80%}#bb sub,#bb sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}#bb sup{top:-0.5em}#bb sub{bottom:-0.25em}#bb img{border:0}#bb svg:not(:root){overflow:hidden}#bb figure{margin:0}#bb fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}#bb legend{border:0;padding:0}#bb button,#bb input,#bb select,#bb textarea{font-family:inherit;font-size:100%;margin:0}#bb button,#bb input{line-height:normal}#bb button,#bb select{text-transform:none}#bb button,#bb html input[type="button"],#bb input[type="reset"],#bb input[type="submit"]{-webkit-appearance:button;cursor:pointer}#bb button[disabled],#bb html input[disabled]{cursor:default}#bb input[type="checkbox"],#bb input[type="radio"]{box-sizing:border-box;padding:0}#bb input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}#bb input[type="search"]::-webkit-search-cancel-button,#bb input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}#bb button::-moz-focus-inner,#bb input::-moz-focus-inner{border:0;padding:0}#bb textarea{overflow:auto;vertical-align:top}#bb table{border-collapse:collapse;border-spacing:0}@media print{#bb *{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important}#bb a,#bb a:visited{text-decoration:underline}#bb a[href]:after{content:" (" attr(href) ")"}#bb abbr[title]:after{content:" (" attr(title) ")"}#bb .ir a:after,#bb a[href^="javascript:"]:after,#bb a[href^="#"]:after{content:""}#bb pre,#bb blockquote{border:1px solid #999;page-break-inside:avoid}#bb thead{display:table-header-group}#bb tr,#bb img{page-break-inside:avoid}#bb img{max-width:100% !important}@page{#bb{margin:2cm .5cm}}#bb p,#bb h2,#bb h3{orphans:3;widows:3}#bb h2,#bb h3{page-break-after:avoid}#bb .navbar{display:none}#bb .table td,#bb .table th{background-color:#fff !important}#bb .btn>.caret,#bb .dropup>.btn>.caret{border-top-color:#000 !important}#bb .label{border:1px solid #000}#bb .table{border-collapse:collapse !important}#bb .table-bordered th,#bb .table-bordered td{border:1px solid #ddd !important}}#bb *,#bb *:before,#bb *:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#bb html{font-size:62.5%;-webkit-tap-highlight-color:transparent}#bb body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857;color:#333;background-color:#fff}#bb input,#bb button,#bb select,#bb textarea{font-family:inherit;font-size:inherit;line-height:inherit}#bb button,#bb input,#bb select[multiple],#bb textarea{background-image:none}#bb a{color:#428bca;text-decoration:none}#bb a:hover,#bb a:focus{color:#2a6496;text-decoration:underline}#bb a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}#bb img{vertical-align:middle}#bb .img-responsive{display:block;max-width:100%;height:auto}#bb .img-rounded{border-radius:6px}#bb .img-thumbnail,#bb .thumbnail{padding:4px;line-height:1.42857;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;display:inline-block;max-width:100%;height:auto}#bb .img-circle{border-radius:50%}#bb hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}#bb .sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0 0 0 0);border:0}#bb p{margin:0 0 10px}#bb .lead{margin-bottom:20px;font-size:16.1px;font-weight:200;line-height:1.4}@media (min-width: 768px){#bb .lead{font-size:21px}}#bb small{font-size:85%}#bb cite{font-style:normal}#bb .text-muted{color:#999}#bb .text-primary{color:#428bca}#bb .text-warning{color:#c09853}#bb .text-danger{color:#b94a48}#bb .text-success{color:#468847}#bb .text-info{color:#3a87ad}#bb .text-left{text-align:left}#bb .text-right{text-align:right}#bb .text-center{text-align:center}#bb h1,#bb h2,#bb h3,#bb h4,#bb h5,#bb h6,#bb .h1,#bb .h2,#bb .h3,#bb .h4,#bb .h5,#bb .h6{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:500;line-height:1.1}#bb h1 small,#bb h2 small,#bb h3 small,#bb h4 small,#bb h5 small,#bb h6 small,#bb .h1 small,#bb .h2 small,#bb .h3 small,#bb .h4 small,#bb .h5 small,#bb .h6 small{font-weight:normal;line-height:1;color:#999}#bb h1,#bb h2,#bb h3{margin-top:20px;margin-bottom:10px}#bb h4,#bb h5,#bb h6{margin-top:10px;margin-bottom:10px}#bb h1,#bb .h1{font-size:36px}#bb h2,#bb .h2{font-size:30px}#bb h3,#bb .h3{font-size:24px}#bb h4,#bb .h4{font-size:18px}#bb h5,#bb .h5{font-size:14px}#bb h6,#bb .h6{font-size:12px}#bb h1 small,#bb .h1 small{font-size:24px}#bb h2 small,#bb .h2 small{font-size:18px}#bb h3 small,#bb .h3 small,#bb h4 small,#bb .h4 small{font-size:14px}#bb .page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}#bb ul,#bb ol{margin-top:0;margin-bottom:10px}#bb ul ul,#bb ul ol,#bb ol ul,#bb ol ol{margin-bottom:0}#bb .list-unstyled,#bb .list-inline{padding-left:0;list-style:none}#bb .list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}#bb dl{margin-bottom:20px}#bb dt,#bb dd{line-height:1.42857}#bb dt{font-weight:bold}#bb dd{margin-left:0}@media (min-width: 800px){#bb .dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#bb .dl-horizontal dd{margin-left:180px}#bb .dl-horizontal dd:before,#bb .dl-horizontal dd:after{content:" ";display:table}#bb .dl-horizontal dd:after{clear:both}}#bb abbr[title],#bb abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999}#bb abbr.initialism{font-size:90%;text-transform:uppercase}#bb blockquote{padding:10px 20px;margin:0 0 20px;border-left:5px solid #eee}#bb blockquote p{font-size:17.5px;font-weight:300;line-height:1.25}#bb blockquote p:last-child{margin-bottom:0}#bb blockquote small{display:block;line-height:1.42857;color:#999}#bb blockquote small:before{content:'\2014 \00A0'}#bb blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}#bb blockquote.pull-right p,#bb blockquote.pull-right small{text-align:right}#bb blockquote.pull-right small:before{content:''}#bb blockquote.pull-right small:after{content:'\00A0 \2014'}#bb q:before,#bb q:after,#bb blockquote:before,#bb blockquote:after{content:""}#bb address{display:block;margin-bottom:20px;font-style:normal;line-height:1.42857}#bb code,#bb pre{font-family:Monaco,Menlo,Consolas,"Courier New",monospace}#bb code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;white-space:nowrap;border-radius:4px}#bb pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}#bb pre.prettyprint{margin-bottom:20px}#bb pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border:0}#bb .pre-scrollable{max-height:340px;overflow-y:scroll}#bb .container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}#bb .container:before,#bb .container:after{content:" ";display:table}#bb .container:after{clear:both}#bb .container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}#bb .container-fluid:before,#bb .container-fluid:after{content:" ";display:table}#bb .container-fluid:after{clear:both}#bb .row{margin-left:-15px;margin-right:-15px}#bb .row:before,#bb .row:after{content:" ";display:table}#bb .row:after{clear:both}#bb .col-xs-1,#bb .col-xs-2,#bb .col-xs-3,#bb .col-xs-4,#bb .col-xs-5,#bb .col-xs-6,#bb .col-xs-7,#bb .col-xs-8,#bb .col-xs-9,#bb .col-xs-10,#bb .col-xs-11,#bb .col-xs-12,#bb .col-sm-1,#bb .col-sm-2,#bb .col-sm-3,#bb .col-sm-4,#bb .col-sm-5,#bb .col-sm-6,#bb .col-sm-7,#bb .col-sm-8,#bb .col-sm-9,#bb .col-sm-10,#bb .col-sm-11,#bb .col-sm-12,#bb .col-md-1,#bb .col-md-2,#bb .col-md-3,#bb .col-md-4,#bb .col-md-5,#bb .col-md-6,#bb .col-md-7,#bb .col-md-8,#bb .col-md-9,#bb .col-md-10,#bb .col-md-11,#bb .col-md-12,#bb .col-lg-1,#bb .col-lg-2,#bb .col-lg-3,#bb .col-lg-4,#bb .col-lg-5,#bb .col-lg-6,#bb .col-lg-7,#bb .col-lg-8,#bb .col-lg-9,#bb .col-lg-10,#bb .col-lg-11,#bb .col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}#bb .col-xs-1,#bb .col-xs-2,#bb .col-xs-3,#bb .col-xs-4,#bb .col-xs-5,#bb .col-xs-6,#bb .col-xs-7,#bb .col-xs-8,#bb .col-xs-9,#bb .col-xs-10,#bb .col-xs-11{float:left}#bb .col-xs-1{width:8.33333%}#bb .col-xs-2{width:16.66667%}#bb .col-xs-3{width:25%}#bb .col-xs-4{width:33.33333%}#bb .col-xs-5{width:41.66667%}#bb .col-xs-6{width:50%}#bb .col-xs-7{width:58.33333%}#bb .col-xs-8{width:66.66667%}#bb .col-xs-9{width:75%}#bb .col-xs-10{width:83.33333%}#bb .col-xs-11{width:91.66667%}#bb .col-xs-12{width:100%}@media (min-width: 800px){#bb .container{max-width:750px}#bb .col-sm-1,#bb .col-sm-2,#bb .col-sm-3,#bb .col-sm-4,#bb .col-sm-5,#bb .col-sm-6,#bb .col-sm-7,#bb .col-sm-8,#bb .col-sm-9,#bb .col-sm-10,#bb .col-sm-11{float:left}#bb .col-sm-1{width:8.33333%}#bb .col-sm-2{width:16.66667%}#bb .col-sm-3{width:25%}#bb .col-sm-4{width:33.33333%}#bb .col-sm-5{width:41.66667%}#bb .col-sm-6{width:50%}#bb .col-sm-7{width:58.33333%}#bb .col-sm-8{width:66.66667%}#bb .col-sm-9{width:75%}#bb .col-sm-10{width:83.33333%}#bb .col-sm-11{width:91.66667%}#bb .col-sm-12{width:100%}#bb .col-sm-push-1{left:8.33333%}#bb .col-sm-push-2{left:16.66667%}#bb .col-sm-push-3{left:25%}#bb .col-sm-push-4{left:33.33333%}#bb .col-sm-push-5{left:41.66667%}#bb .col-sm-push-6{left:50%}#bb .col-sm-push-7{left:58.33333%}#bb .col-sm-push-8{left:66.66667%}#bb .col-sm-push-9{left:75%}#bb .col-sm-push-10{left:83.33333%}#bb .col-sm-push-11{left:91.66667%}#bb .col-sm-pull-1{right:8.33333%}#bb .col-sm-pull-2{right:16.66667%}#bb .col-sm-pull-3{right:25%}#bb .col-sm-pull-4{right:33.33333%}#bb .col-sm-pull-5{right:41.66667%}#bb .col-sm-pull-6{right:50%}#bb .col-sm-pull-7{right:58.33333%}#bb .col-sm-pull-8{right:66.66667%}#bb .col-sm-pull-9{right:75%}#bb .col-sm-pull-10{right:83.33333%}#bb .col-sm-pull-11{right:91.66667%}#bb .col-sm-offset-1{margin-left:8.33333%}#bb .col-sm-offset-2{margin-left:16.66667%}#bb .col-sm-offset-3{margin-left:25%}#bb .col-sm-offset-4{margin-left:33.33333%}#bb .col-sm-offset-5{margin-left:41.66667%}#bb .col-sm-offset-6{margin-left:50%}#bb .col-sm-offset-7{margin-left:58.33333%}#bb .col-sm-offset-8{margin-left:66.66667%}#bb .col-sm-offset-9{margin-left:75%}#bb .col-sm-offset-10{margin-left:83.33333%}#bb .col-sm-offset-11{margin-left:91.66667%}}@media (min-width: 992px){#bb .container{max-width:970px}#bb .col-md-1,#bb .col-md-2,#bb .col-md-3,#bb .col-md-4,#bb .col-md-5,#bb .col-md-6,#bb .col-md-7,#bb .col-md-8,#bb .col-md-9,#bb .col-md-10,#bb .col-md-11{float:left}#bb .col-md-1{width:8.33333%}#bb .col-md-2{width:16.66667%}#bb .col-md-3{width:25%}#bb .col-md-4{width:33.33333%}#bb .col-md-5{width:41.66667%}#bb .col-md-6{width:50%}#bb .col-md-7{width:58.33333%}#bb .col-md-8{width:66.66667%}#bb .col-md-9{width:75%}#bb .col-md-10{width:83.33333%}#bb .col-md-11{width:91.66667%}#bb .col-md-12{width:100%}#bb .col-md-push-0{left:auto}#bb .col-md-push-1{left:8.33333%}#bb .col-md-push-2{left:16.66667%}#bb .col-md-push-3{left:25%}#bb .col-md-push-4{left:33.33333%}#bb .col-md-push-5{left:41.66667%}#bb .col-md-push-6{left:50%}#bb .col-md-push-7{left:58.33333%}#bb .col-md-push-8{left:66.66667%}#bb .col-md-push-9{left:75%}#bb .col-md-push-10{left:83.33333%}#bb .col-md-push-11{left:91.66667%}#bb .col-md-pull-0{right:auto}#bb .col-md-pull-1{right:8.33333%}#bb .col-md-pull-2{right:16.66667%}#bb .col-md-pull-3{right:25%}#bb .col-md-pull-4{right:33.33333%}#bb .col-md-pull-5{right:41.66667%}#bb .col-md-pull-6{right:50%}#bb .col-md-pull-7{right:58.33333%}#bb .col-md-pull-8{right:66.66667%}#bb .col-md-pull-9{right:75%}#bb .col-md-pull-10{right:83.33333%}#bb .col-md-pull-11{right:91.66667%}#bb .col-md-offset-0{margin-left:0}#bb .col-md-offset-1{margin-left:8.33333%}#bb .col-md-offset-2{margin-left:16.66667%}#bb .col-md-offset-3{margin-left:25%}#bb .col-md-offset-4{margin-left:33.33333%}#bb .col-md-offset-5{margin-left:41.66667%}#bb .col-md-offset-6{margin-left:50%}#bb .col-md-offset-7{margin-left:58.33333%}#bb .col-md-offset-8{margin-left:66.66667%}#bb .col-md-offset-9{margin-left:75%}#bb .col-md-offset-10{margin-left:83.33333%}#bb .col-md-offset-11{margin-left:91.66667%}}@media (min-width: 1200px){#bb .container{max-width:1170px}#bb .col-lg-1,#bb .col-lg-2,#bb .col-lg-3,#bb .col-lg-4,#bb .col-lg-5,#bb .col-lg-6,#bb .col-lg-7,#bb .col-lg-8,#bb .col-lg-9,#bb .col-lg-10,#bb .col-lg-11{float:left}#bb .col-lg-1{width:8.33333%}#bb .col-lg-2{width:16.66667%}#bb .col-lg-3{width:25%}#bb .col-lg-4{width:33.33333%}#bb .col-lg-5{width:41.66667%}#bb .col-lg-6{width:50%}#bb .col-lg-7{width:58.33333%}#bb .col-lg-8{width:66.66667%}#bb .col-lg-9{width:75%}#bb .col-lg-10{width:83.33333%}#bb .col-lg-11{width:91.66667%}#bb .col-lg-12{width:100%}#bb .col-lg-push-0{left:auto}#bb .col-lg-push-1{left:8.33333%}#bb .col-lg-push-2{left:16.66667%}#bb .col-lg-push-3{left:25%}#bb .col-lg-push-4{left:33.33333%}#bb .col-lg-push-5{left:41.66667%}#bb .col-lg-push-6{left:50%}#bb .col-lg-push-7{left:58.33333%}#bb .col-lg-push-8{left:66.66667%}#bb .col-lg-push-9{left:75%}#bb .col-lg-push-10{left:83.33333%}#bb .col-lg-push-11{left:91.66667%}#bb .col-lg-pull-0{right:auto}#bb .col-lg-pull-1{right:8.33333%}#bb .col-lg-pull-2{right:16.66667%}#bb .col-lg-pull-3{right:25%}#bb .col-lg-pull-4{right:33.33333%}#bb .col-lg-pull-5{right:41.66667%}#bb .col-lg-pull-6{right:50%}#bb .col-lg-pull-7{right:58.33333%}#bb .col-lg-pull-8{right:66.66667%}#bb .col-lg-pull-9{right:75%}#bb .col-lg-pull-10{right:83.33333%}#bb .col-lg-pull-11{right:91.66667%}#bb .col-lg-offset-0{margin-left:0}#bb .col-lg-offset-1{margin-left:8.33333%}#bb .col-lg-offset-2{margin-left:16.66667%}#bb .col-lg-offset-3{margin-left:25%}#bb .col-lg-offset-4{margin-left:33.33333%}#bb .col-lg-offset-5{margin-left:41.66667%}#bb .col-lg-offset-6{margin-left:50%}#bb .col-lg-offset-7{margin-left:58.33333%}#bb .col-lg-offset-8{margin-left:66.66667%}#bb .col-lg-offset-9{margin-left:75%}#bb .col-lg-offset-10{margin-left:83.33333%}#bb .col-lg-offset-11{margin-left:91.66667%}}#bb table{max-width:100%;background-color:transparent}#bb th{text-align:left}#bb .table{width:100%;margin-bottom:20px}#bb .table thead>tr>th,#bb .table thead>tr>td,#bb .table tbody>tr>th,#bb .table tbody>tr>td,#bb .table tfoot>tr>th,#bb .table tfoot>tr>td{padding:8px;line-height:1.42857;vertical-align:top;border-top:1px solid #ddd}#bb .table thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}#bb .table caption+thead tr:first-child th,#bb .table caption+thead tr:first-child td,#bb .table colgroup+thead tr:first-child th,#bb .table colgroup+thead tr:first-child td,#bb .table thead:first-child tr:first-child th,#bb .table thead:first-child tr:first-child td{border-top:0}#bb .table tbody+tbody{border-top:2px solid #ddd}#bb .table .table{background-color:#fff}#bb .table-condensed thead>tr>th,#bb .table-condensed thead>tr>td,#bb .table-condensed tbody>tr>th,#bb .table-condensed tbody>tr>td,#bb .table-condensed tfoot>tr>th,#bb .table-condensed tfoot>tr>td{padding:5px}#bb .table-bordered{border:1px solid #ddd}#bb .table-bordered>thead>tr>th,#bb .table-bordered>thead>tr>td,#bb .table-bordered>tbody>tr>th,#bb .table-bordered>tbody>tr>td,#bb .table-bordered>tfoot>tr>th,#bb .table-bordered>tfoot>tr>td{border:1px solid #ddd}#bb .table-bordered>thead>tr>th,#bb .table-bordered>thead>tr>td{border-bottom-width:2px}#bb .table-striped>tbody>tr:nth-child(odd)>td,#bb .table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}#bb .table-hover>tbody>tr:hover>td,#bb .table-hover>tbody>tr:hover>th{background-color:#f5f5f5}#bb table col[class*="col-"]{float:none;display:table-column}#bb table td[class*="col-"],#bb table th[class*="col-"]{float:none;display:table-cell}#bb .table>thead>tr>td.active,#bb .table>thead>tr>th.active,#bb .table>thead>tr.active>td,#bb .table>thead>tr.active>th,#bb .table>tbody>tr>td.active,#bb .table>tbody>tr>th.active,#bb .table>tbody>tr.active>td,#bb .table>tbody>tr.active>th,#bb .table>tfoot>tr>td.active,#bb .table>tfoot>tr>th.active,#bb .table>tfoot>tr.active>td,#bb .table>tfoot>tr.active>th{background-color:#f5f5f5}#bb .table>thead>tr>td.success,#bb .table>thead>tr>th.success,#bb .table>thead>tr.success>td,#bb .table>thead>tr.success>th,#bb .table>tbody>tr>td.success,#bb .table>tbody>tr>th.success,#bb .table>tbody>tr.success>td,#bb .table>tbody>tr.success>th,#bb .table>tfoot>tr>td.success,#bb .table>tfoot>tr>th.success,#bb .table>tfoot>tr.success>td,#bb .table>tfoot>tr.success>th{background-color:#dff0d8;border-color:#d6e9c6}#bb .table-hover>tbody>tr>td.success:hover,#bb .table-hover>tbody>tr>th.success:hover,#bb .table-hover>tbody>tr.success:hover>td{background-color:#d0e9c6;border-color:#c9e2b3}#bb .table>thead>tr>td.danger,#bb .table>thead>tr>th.danger,#bb .table>thead>tr.danger>td,#bb .table>thead>tr.danger>th,#bb .table>tbody>tr>td.danger,#bb .table>tbody>tr>th.danger,#bb .table>tbody>tr.danger>td,#bb .table>tbody>tr.danger>th,#bb .table>tfoot>tr>td.danger,#bb .table>tfoot>tr>th.danger,#bb .table>tfoot>tr.danger>td,#bb .table>tfoot>tr.danger>th{background-color:#f2dede;border-color:#eed3d7}#bb .table-hover>tbody>tr>td.danger:hover,#bb .table-hover>tbody>tr>th.danger:hover,#bb .table-hover>tbody>tr.danger:hover>td{background-color:#ebcccc;border-color:#e6c1c7}#bb .table>thead>tr>td.warning,#bb .table>thead>tr>th.warning,#bb .table>thead>tr.warning>td,#bb .table>thead>tr.warning>th,#bb .table>tbody>tr>td.warning,#bb .table>tbody>tr>th.warning,#bb .table>tbody>tr.warning>td,#bb .table>tbody>tr.warning>th,#bb .table>tfoot>tr>td.warning,#bb .table>tfoot>tr>th.warning,#bb .table>tfoot>tr.warning>td,#bb .table>tfoot>tr.warning>th{background-color:#fcf8e3;border-color:#fbeed5}#bb .table-hover>tbody>tr>td.warning:hover,#bb .table-hover>tbody>tr>th.warning:hover,#bb .table-hover>tbody>tr.warning:hover>td{background-color:#faf2cc;border-color:#f8e5be}@media (max-width: 800px){#bb .table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;overflow-x:scroll;border:1px solid #ddd}#bb .table-responsive>.table{margin-bottom:0;background-color:#fff}#bb .table-responsive>.table>thead>tr>th,#bb .table-responsive>.table>thead>tr>td,#bb .table-responsive>.table>tbody>tr>th,#bb .table-responsive>.table>tbody>tr>td,#bb .table-responsive>.table>tfoot>tr>th,#bb .table-responsive>.table>tfoot>tr>td{white-space:nowrap}#bb .table-responsive>.table-bordered{border:0}#bb .table-responsive>.table-bordered>thead>tr>th:first-child,#bb .table-responsive>.table-bordered>thead>tr>td:first-child,#bb .table-responsive>.table-bordered>tbody>tr>th:first-child,#bb .table-responsive>.table-bordered>tbody>tr>td:first-child,#bb .table-responsive>.table-bordered>tfoot>tr>th:first-child,#bb .table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}#bb .table-responsive>.table-bordered>thead>tr>th:last-child,#bb .table-responsive>.table-bordered>thead>tr>td:last-child,#bb .table-responsive>.table-bordered>tbody>tr>th:last-child,#bb .table-responsive>.table-bordered>tbody>tr>td:last-child,#bb .table-responsive>.table-bordered>tfoot>tr>th:last-child,#bb .table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}#bb .table-responsive>.table-bordered>thead>tr:last-child>th,#bb .table-responsive>.table-bordered>thead>tr:last-child>td,#bb .table-responsive>.table-bordered>tbody>tr:last-child>th,#bb .table-responsive>.table-bordered>tbody>tr:last-child>td,#bb .table-responsive>.table-bordered>tfoot>tr:last-child>th,#bb .table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}#bb fieldset{padding:0;margin:0;border:0}#bb legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}#bb label{display:inline-block;margin-bottom:5px;font-weight:bold}#bb input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#bb input[type="radio"],#bb input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}#bb input[type="file"]{display:block}#bb select[multiple],#bb select[size]{height:auto}#bb select optgroup{font-size:inherit;font-style:inherit;font-family:inherit}#bb input[type="file"]:focus,#bb input[type="radio"]:focus,#bb input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}#bb input[type="number"]::-webkit-outer-spin-button,#bb input[type="number"]::-webkit-inner-spin-button{height:auto}#bb .form-control:-moz-placeholder{color:#999}#bb .form-control::-moz-placeholder{color:#999}#bb .form-control:-ms-input-placeholder{color:#999}#bb .form-control::-webkit-input-placeholder{color:#999}#bb .form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857;color:#555;vertical-align:middle;background-color:#fff;border:1px solid #ccc;border-radius:4px;-webkit-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-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;transition:border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s}#bb .form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6)}#bb .form-control[disabled],#bb .form-control[readonly],fieldset[disabled] #bb .form-control{cursor:not-allowed;background-color:#eee}#bb textarea.form-control{height:auto}#bb .form-group{margin-bottom:15px}#bb .radio,#bb .checkbox{display:block;min-height:20px;margin-top:10px;margin-bottom:10px;padding-left:20px;vertical-align:middle}#bb .radio label,#bb .checkbox label{display:inline;margin-bottom:0;font-weight:normal;cursor:pointer}#bb .radio input[type="radio"],#bb .radio-inline input[type="radio"],#bb .checkbox input[type="checkbox"],#bb .checkbox-inline input[type="checkbox"]{float:left;margin-left:-20px}#bb .radio+.radio,#bb .checkbox+.checkbox{margin-top:-5px}#bb .radio-inline,#bb .checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}#bb .radio-inline+.radio-inline,#bb .checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}#bb input[type="radio"][disabled],fieldset[disabled] #bb input[type="radio"],#bb input[type="checkbox"][disabled],fieldset[disabled] #bb input[type="checkbox"],#bb .radio[disabled],fieldset[disabled] #bb .radio,#bb .radio-inline[disabled],fieldset[disabled] #bb .radio-inline,#bb .checkbox[disabled],fieldset[disabled] #bb .checkbox,#bb .checkbox-inline[disabled],fieldset[disabled] #bb .checkbox-inline{cursor:not-allowed}#bb .input-sm,#bb .input-group-sm>.form-control,#bb .input-group-sm>.input-group-addon,#bb .input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}#bb select.input-sm,#bb .input-group-sm>select.form-control,#bb .input-group-sm>select.input-group-addon,#bb .input-group-sm>.input-group-btn>select.btn{height:30px;line-height:30px}#bb textarea.input-sm,#bb .input-group-sm>textarea.form-control,#bb .input-group-sm>textarea.input-group-addon,#bb .input-group-sm>.input-group-btn>textarea.btn{height:auto}#bb .input-lg,#bb .input-group-lg>.form-control,#bb .input-group-lg>.input-group-addon,#bb .input-group-lg>.input-group-btn>.btn{height:45px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}#bb select.input-lg,#bb .input-group-lg>select.form-control,#bb .input-group-lg>select.input-group-addon,#bb .input-group-lg>.input-group-btn>select.btn{height:45px;line-height:45px}#bb textarea.input-lg,#bb .input-group-lg>textarea.form-control,#bb .input-group-lg>textarea.input-group-addon,#bb .input-group-lg>.input-group-btn>textarea.btn{height:auto}#bb .has-warning .help-block,#bb .has-warning .control-label{color:#c09853}#bb .has-warning .form-control{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}#bb .has-warning .form-control:focus{border-color:#a47e3c;-webkit-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}#bb .has-warning .input-group-addon{color:#c09853;border-color:#c09853;background-color:#fcf8e3}#bb .has-error .help-block,#bb .has-error .control-label{color:#b94a48}#bb .has-error .form-control{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}#bb .has-error .form-control:focus{border-color:#953b39;-webkit-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}#bb .has-error .input-group-addon{color:#b94a48;border-color:#b94a48;background-color:#f2dede}#bb .has-success .help-block,#bb .has-success .control-label{color:#468847}#bb .has-success .form-control{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}#bb .has-success .form-control:focus{border-color:#356635;-webkit-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}#bb .has-success .input-group-addon{color:#468847;border-color:#468847;background-color:#dff0d8}#bb .form-control-static{margin-bottom:0;padding-top:7px}#bb .help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width: 800px){#bb .form-inline .form-group,#bb .navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}#bb .form-inline .form-control,#bb .navbar-form .form-control{display:inline-block}#bb .form-inline .radio,#bb .navbar-form .radio,#bb .form-inline .checkbox,#bb .navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0}#bb .form-inline .radio input[type="radio"],#bb .navbar-form .radio input[type="radio"],#bb .form-inline .checkbox input[type="checkbox"],#bb .navbar-form .checkbox input[type="checkbox"]{float:none;margin-left:0}}#bb .form-horizontal .control-label,#bb .form-horizontal .radio,#bb .form-horizontal .checkbox,#bb .form-horizontal .radio-inline,#bb .form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}#bb .form-horizontal .form-group{margin-left:-15px;margin-right:-15px}#bb .form-horizontal .form-group:before,#bb .form-horizontal .form-group:after{content:" ";display:table}#bb .form-horizontal .form-group:after{clear:both}@media (min-width: 800px){#bb .form-horizontal .control-label{text-align:right}}#bb .btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:normal;line-height:1.42857;text-align:center;vertical-align:middle;cursor:pointer;border:1px solid transparent;border-radius:4px;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}#bb .btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}#bb .btn:hover,#bb .btn:focus{color:#333;text-decoration:none}#bb .btn:active,#bb .btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}#bb .btn.disabled,#bb .btn[disabled],fieldset[disabled] #bb .btn{cursor:not-allowed;pointer-events:none;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}#bb .btn-default{color:#333;background-color:#fff;border-color:#ccc}#bb .btn-default:hover,#bb .btn-default:focus,#bb .btn-default:active,#bb .btn-default.active{color:#333;background-color:#ebebeb;border-color:#adadad}.open #bb .btn-default.dropdown-toggle{color:#333;background-color:#ebebeb;border-color:#adadad}#bb .btn-default:active,#bb .btn-default.active{background-image:none}.open #bb .btn-default.dropdown-toggle{background-image:none}#bb .btn-default.disabled,#bb .btn-default.disabled:hover,#bb .btn-default.disabled:focus,#bb .btn-default.disabled:active,#bb .btn-default.disabled.active,#bb .btn-default[disabled],#bb .btn-default[disabled]:hover,#bb .btn-default[disabled]:focus,#bb .btn-default[disabled]:active,#bb .btn-default[disabled].active,fieldset[disabled] #bb .btn-default,fieldset[disabled] #bb .btn-default:hover,fieldset[disabled] #bb .btn-default:focus,fieldset[disabled] #bb .btn-default:active,fieldset[disabled] #bb .btn-default.active{background-color:#fff;border-color:#ccc}#bb .btn-primary,#bb .date-list-item .btn-secondary.selected{color:#fff;background-color:#428bca;border-color:#357ebd}#bb .btn-primary:hover,#bb .date-list-item .btn-secondary.selected:hover,#bb .btn-primary:focus,#bb .date-list-item .btn-secondary.selected:focus,#bb .btn-primary:active,#bb .date-list-item .btn-secondary.selected:active,#bb .btn-primary.active,#bb .date-list-item .active.btn-secondary.selected{color:#fff;background-color:#3276b1;border-color:#285e8e}.open #bb .btn-primary.dropdown-toggle,.open #bb .date-list-item .dropdown-toggle.btn-secondary.selected{color:#fff;background-color:#3276b1;border-color:#285e8e}#bb .btn-primary:active,#bb .date-list-item .btn-secondary.selected:active,#bb .btn-primary.active,#bb .date-list-item .active.btn-secondary.selected{background-image:none}.open #bb .btn-primary.dropdown-toggle,.open #bb .date-list-item .dropdown-toggle.btn-secondary.selected{background-image:none}#bb .btn-primary.disabled,#bb .date-list-item .disabled.btn-secondary.selected,#bb .btn-primary.disabled:hover,#bb .date-list-item .disabled.btn-secondary.selected:hover,#bb .btn-primary.disabled:focus,#bb .date-list-item .disabled.btn-secondary.selected:focus,#bb .btn-primary.disabled:active,#bb .date-list-item .disabled.btn-secondary.selected:active,#bb .btn-primary.disabled.active,#bb .date-list-item .disabled.active.btn-secondary.selected,#bb .btn-primary[disabled],#bb .date-list-item [disabled].btn-secondary.selected,#bb .btn-primary[disabled]:hover,#bb .date-list-item [disabled].btn-secondary.selected:hover,#bb .btn-primary[disabled]:focus,#bb .date-list-item [disabled].btn-secondary.selected:focus,#bb .btn-primary[disabled]:active,#bb .date-list-item [disabled].btn-secondary.selected:active,#bb .btn-primary[disabled].active,#bb .date-list-item [disabled].active.btn-secondary.selected,fieldset[disabled] #bb .btn-primary,fieldset[disabled] #bb .date-list-item .btn-secondary.selected,fieldset[disabled] #bb .btn-primary:hover,fieldset[disabled] #bb .date-list-item .btn-secondary.selected:hover,fieldset[disabled] #bb .btn-primary:focus,fieldset[disabled] #bb .date-list-item .btn-secondary.selected:focus,fieldset[disabled] #bb .btn-primary:active,fieldset[disabled] #bb .date-list-item .btn-secondary.selected:active,fieldset[disabled] #bb .btn-primary.active,fieldset[disabled] #bb .date-list-item .active.btn-secondary.selected{background-color:#428bca;border-color:#357ebd}#bb .btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}#bb .btn-warning:hover,#bb .btn-warning:focus,#bb .btn-warning:active,#bb .btn-warning.active{color:#fff;background-color:#ed9c28;border-color:#d58512}.open #bb .btn-warning.dropdown-toggle{color:#fff;background-color:#ed9c28;border-color:#d58512}#bb .btn-warning:active,#bb .btn-warning.active{background-image:none}.open #bb .btn-warning.dropdown-toggle{background-image:none}#bb .btn-warning.disabled,#bb .btn-warning.disabled:hover,#bb .btn-warning.disabled:focus,#bb .btn-warning.disabled:active,#bb .btn-warning.disabled.active,#bb .btn-warning[disabled],#bb .btn-warning[disabled]:hover,#bb .btn-warning[disabled]:focus,#bb .btn-warning[disabled]:active,#bb .btn-warning[disabled].active,fieldset[disabled] #bb .btn-warning,fieldset[disabled] #bb .btn-warning:hover,fieldset[disabled] #bb .btn-warning:focus,fieldset[disabled] #bb .btn-warning:active,fieldset[disabled] #bb .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}#bb .btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}#bb .btn-danger:hover,#bb .btn-danger:focus,#bb .btn-danger:active,#bb .btn-danger.active{color:#fff;background-color:#d2322d;border-color:#ac2925}.open #bb .btn-danger.dropdown-toggle{color:#fff;background-color:#d2322d;border-color:#ac2925}#bb .btn-danger:active,#bb .btn-danger.active{background-image:none}.open #bb .btn-danger.dropdown-toggle{background-image:none}#bb .btn-danger.disabled,#bb .btn-danger.disabled:hover,#bb .btn-danger.disabled:focus,#bb .btn-danger.disabled:active,#bb .btn-danger.disabled.active,#bb .btn-danger[disabled],#bb .btn-danger[disabled]:hover,#bb .btn-danger[disabled]:focus,#bb .btn-danger[disabled]:active,#bb .btn-danger[disabled].active,fieldset[disabled] #bb .btn-danger,fieldset[disabled] #bb .btn-danger:hover,fieldset[disabled] #bb .btn-danger:focus,fieldset[disabled] #bb .btn-danger:active,fieldset[disabled] #bb .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}#bb .btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}#bb .btn-success:hover,#bb .btn-success:focus,#bb .btn-success:active,#bb .btn-success.active{color:#fff;background-color:#47a447;border-color:#398439}.open #bb .btn-success.dropdown-toggle{color:#fff;background-color:#47a447;border-color:#398439}#bb .btn-success:active,#bb .btn-success.active{background-image:none}.open #bb .btn-success.dropdown-toggle{background-image:none}#bb .btn-success.disabled,#bb .btn-success.disabled:hover,#bb .btn-success.disabled:focus,#bb .btn-success.disabled:active,#bb .btn-success.disabled.active,#bb .btn-success[disabled],#bb .btn-success[disabled]:hover,#bb .btn-success[disabled]:focus,#bb .btn-success[disabled]:active,#bb .btn-success[disabled].active,fieldset[disabled] #bb .btn-success,fieldset[disabled] #bb .btn-success:hover,fieldset[disabled] #bb .btn-success:focus,fieldset[disabled] #bb .btn-success:active,fieldset[disabled] #bb .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}#bb .btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}#bb .btn-info:hover,#bb .btn-info:focus,#bb .btn-info:active,#bb .btn-info.active{color:#fff;background-color:#39b3d7;border-color:#269abc}.open #bb .btn-info.dropdown-toggle{color:#fff;background-color:#39b3d7;border-color:#269abc}#bb .btn-info:active,#bb .btn-info.active{background-image:none}.open #bb .btn-info.dropdown-toggle{background-image:none}#bb .btn-info.disabled,#bb .btn-info.disabled:hover,#bb .btn-info.disabled:focus,#bb .btn-info.disabled:active,#bb .btn-info.disabled.active,#bb .btn-info[disabled],#bb .btn-info[disabled]:hover,#bb .btn-info[disabled]:focus,#bb .btn-info[disabled]:active,#bb .btn-info[disabled].active,fieldset[disabled] #bb .btn-info,fieldset[disabled] #bb .btn-info:hover,fieldset[disabled] #bb .btn-info:focus,fieldset[disabled] #bb .btn-info:active,fieldset[disabled] #bb .btn-info.active{background-color:#5bc0de;border-color:#46b8da}#bb .btn-link{color:#428bca;font-weight:normal;cursor:pointer;border-radius:0}#bb .btn-link,#bb .btn-link:active,#bb .btn-link[disabled],fieldset[disabled] #bb .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}#bb .btn-link,#bb .btn-link:hover,#bb .btn-link:focus,#bb .btn-link:active{border-color:transparent}#bb .btn-link:hover,#bb .btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}#bb .btn-link[disabled]:hover,#bb .btn-link[disabled]:focus,fieldset[disabled] #bb .btn-link:hover,fieldset[disabled] #bb .btn-link:focus{color:#999;text-decoration:none}#bb .btn-lg,#bb .btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}#bb .btn-sm,#bb .btn-group-sm>.btn,#bb .btn-xs,#bb .btn-group-xs>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}#bb .btn-xs,#bb .btn-group-xs>.btn{padding:1px 5px}#bb .btn-block{display:block;width:100%;padding-left:0;padding-right:0}#bb .btn-block+.btn-block{margin-top:5px}#bb input[type="submit"].btn-block,#bb input[type="reset"].btn-block,#bb input[type="button"].btn-block{width:100%}#bb .fade{opacity:0;-webkit-transition:opacity 0.15s linear;transition:opacity 0.15s linear}#bb .fade.in{opacity:1}#bb .collapse{display:none}#bb .collapse.in{display:block}#bb .collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height 0.35s ease;transition:height 0.35s ease}@font-face{font-family:'Glyphicons Halflings';src:url("fonts/glyphicons-halflings-regular.eot");src:url("fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"),url("fonts/glyphicons-halflings-regular.woff") format("woff"),url("fonts/glyphicons-halflings-regular.ttf") format("truetype"),url("fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular") format("svg")}#bb .glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased}#bb .glyphicon-asterisk:before{content:"\2a"}#bb .glyphicon-plus:before{content:"\2b"}#bb .glyphicon-euro:before{content:"\20ac"}#bb .glyphicon-minus:before{content:"\2212"}#bb .glyphicon-cloud:before{content:"\2601"}#bb .glyphicon-envelope:before{content:"\2709"}#bb .glyphicon-pencil:before{content:"\270f"}#bb .glyphicon-glass:before{content:"\e001"}#bb .glyphicon-music:before{content:"\e002"}#bb .glyphicon-search:before{content:"\e003"}#bb .glyphicon-heart:before{content:"\e005"}#bb .glyphicon-star:before{content:"\e006"}#bb .glyphicon-star-empty:before{content:"\e007"}#bb .glyphicon-user:before{content:"\e008"}#bb .glyphicon-film:before{content:"\e009"}#bb .glyphicon-th-large:before{content:"\e010"}#bb .glyphicon-th:before{content:"\e011"}#bb .glyphicon-th-list:before{content:"\e012"}#bb .glyphicon-ok:before{content:"\e013"}#bb .glyphicon-remove:before{content:"\e014"}#bb .glyphicon-zoom-in:before{content:"\e015"}#bb .glyphicon-zoom-out:before{content:"\e016"}#bb .glyphicon-off:before{content:"\e017"}#bb .glyphicon-signal:before{content:"\e018"}#bb .glyphicon-cog:before{content:"\e019"}#bb .glyphicon-trash:before{content:"\e020"}#bb .glyphicon-home:before{content:"\e021"}#bb .glyphicon-file:before{content:"\e022"}#bb .glyphicon-time:before{content:"\e023"}#bb .glyphicon-road:before{content:"\e024"}#bb .glyphicon-download-alt:before{content:"\e025"}#bb .glyphicon-download:before{content:"\e026"}#bb .glyphicon-upload:before{content:"\e027"}#bb .glyphicon-inbox:before{content:"\e028"}#bb .glyphicon-play-circle:before{content:"\e029"}#bb .glyphicon-repeat:before{content:"\e030"}#bb .glyphicon-refresh:before{content:"\e031"}#bb .glyphicon-list-alt:before{content:"\e032"}#bb .glyphicon-lock:before{content:"\e033"}#bb .glyphicon-flag:before{content:"\e034"}#bb .glyphicon-headphones:before{content:"\e035"}#bb .glyphicon-volume-off:before{content:"\e036"}#bb .glyphicon-volume-down:before{content:"\e037"}#bb .glyphicon-volume-up:before{content:"\e038"}#bb .glyphicon-qrcode:before{content:"\e039"}#bb .glyphicon-barcode:before{content:"\e040"}#bb .glyphicon-tag:before{content:"\e041"}#bb .glyphicon-tags:before{content:"\e042"}#bb .glyphicon-book:before{content:"\e043"}#bb .glyphicon-bookmark:before{content:"\e044"}#bb .glyphicon-print:before{content:"\e045"}#bb .glyphicon-camera:before{content:"\e046"}#bb .glyphicon-font:before{content:"\e047"}#bb .glyphicon-bold:before{content:"\e048"}#bb .glyphicon-italic:before{content:"\e049"}#bb .glyphicon-text-height:before{content:"\e050"}#bb .glyphicon-text-width:before{content:"\e051"}#bb .glyphicon-align-left:before{content:"\e052"}#bb .glyphicon-align-center:before{content:"\e053"}#bb .glyphicon-align-right:before{content:"\e054"}#bb .glyphicon-align-justify:before{content:"\e055"}#bb .glyphicon-list:before{content:"\e056"}#bb .glyphicon-indent-left:before{content:"\e057"}#bb .glyphicon-indent-right:before{content:"\e058"}#bb .glyphicon-facetime-video:before{content:"\e059"}#bb .glyphicon-picture:before{content:"\e060"}#bb .glyphicon-map-marker:before{content:"\e062"}#bb .glyphicon-adjust:before{content:"\e063"}#bb .glyphicon-tint:before{content:"\e064"}#bb .glyphicon-edit:before{content:"\e065"}#bb .glyphicon-share:before{content:"\e066"}#bb .glyphicon-check:before{content:"\e067"}#bb .glyphicon-move:before{content:"\e068"}#bb .glyphicon-step-backward:before{content:"\e069"}#bb .glyphicon-fast-backward:before{content:"\e070"}#bb .glyphicon-backward:before{content:"\e071"}#bb .glyphicon-play:before{content:"\e072"}#bb .glyphicon-pause:before{content:"\e073"}#bb .glyphicon-stop:before{content:"\e074"}#bb .glyphicon-forward:before{content:"\e075"}#bb .glyphicon-fast-forward:before{content:"\e076"}#bb .glyphicon-step-forward:before{content:"\e077"}#bb .glyphicon-eject:before{content:"\e078"}#bb .glyphicon-chevron-left:before{content:"\e079"}#bb .glyphicon-chevron-right:before{content:"\e080"}#bb .glyphicon-plus-sign:before{content:"\e081"}#bb .glyphicon-minus-sign:before{content:"\e082"}#bb .glyphicon-remove-sign:before{content:"\e083"}#bb .glyphicon-ok-sign:before{content:"\e084"}#bb .glyphicon-question-sign:before{content:"\e085"}#bb .glyphicon-info-sign:before{content:"\e086"}#bb .glyphicon-screenshot:before{content:"\e087"}#bb .glyphicon-remove-circle:before{content:"\e088"}#bb .glyphicon-ok-circle:before{content:"\e089"}#bb .glyphicon-ban-circle:before{content:"\e090"}#bb .glyphicon-arrow-left:before{content:"\e091"}#bb .glyphicon-arrow-right:before{content:"\e092"}#bb .glyphicon-arrow-up:before{content:"\e093"}#bb .glyphicon-arrow-down:before{content:"\e094"}#bb .glyphicon-share-alt:before{content:"\e095"}#bb .glyphicon-resize-full:before{content:"\e096"}#bb .glyphicon-resize-small:before{content:"\e097"}#bb .glyphicon-exclamation-sign:before{content:"\e101"}#bb .glyphicon-gift:before{content:"\e102"}#bb .glyphicon-leaf:before{content:"\e103"}#bb .glyphicon-fire:before{content:"\e104"}#bb .glyphicon-eye-open:before{content:"\e105"}#bb .glyphicon-eye-close:before{content:"\e106"}#bb .glyphicon-warning-sign:before{content:"\e107"}#bb .glyphicon-plane:before{content:"\e108"}#bb .glyphicon-calendar:before{content:"\e109"}#bb .glyphicon-random:before{content:"\e110"}#bb .glyphicon-comment:before{content:"\e111"}#bb .glyphicon-magnet:before{content:"\e112"}#bb .glyphicon-chevron-up:before{content:"\e113"}#bb .glyphicon-chevron-down:before{content:"\e114"}#bb .glyphicon-retweet:before{content:"\e115"}#bb .glyphicon-shopping-cart:before{content:"\e116"}#bb .glyphicon-folder-close:before{content:"\e117"}#bb .glyphicon-folder-open:before{content:"\e118"}#bb .glyphicon-resize-vertical:before{content:"\e119"}#bb .glyphicon-resize-horizontal:before{content:"\e120"}#bb .glyphicon-hdd:before{content:"\e121"}#bb .glyphicon-bullhorn:before{content:"\e122"}#bb .glyphicon-bell:before{content:"\e123"}#bb .glyphicon-certificate:before{content:"\e124"}#bb .glyphicon-thumbs-up:before{content:"\e125"}#bb .glyphicon-thumbs-down:before{content:"\e126"}#bb .glyphicon-hand-right:before{content:"\e127"}#bb .glyphicon-hand-left:before{content:"\e128"}#bb .glyphicon-hand-up:before{content:"\e129"}#bb .glyphicon-hand-down:before{content:"\e130"}#bb .glyphicon-circle-arrow-right:before{content:"\e131"}#bb .glyphicon-circle-arrow-left:before{content:"\e132"}#bb .glyphicon-circle-arrow-up:before{content:"\e133"}#bb .glyphicon-circle-arrow-down:before{content:"\e134"}#bb .glyphicon-globe:before{content:"\e135"}#bb .glyphicon-wrench:before{content:"\e136"}#bb .glyphicon-tasks:before{content:"\e137"}#bb .glyphicon-filter:before{content:"\e138"}#bb .glyphicon-briefcase:before{content:"\e139"}#bb .glyphicon-fullscreen:before{content:"\e140"}#bb .glyphicon-dashboard:before{content:"\e141"}#bb .glyphicon-paperclip:before{content:"\e142"}#bb .glyphicon-heart-empty:before{content:"\e143"}#bb .glyphicon-link:before{content:"\e144"}#bb .glyphicon-phone:before{content:"\e145"}#bb .glyphicon-pushpin:before{content:"\e146"}#bb .glyphicon-usd:before{content:"\e148"}#bb .glyphicon-gbp:before{content:"\e149"}#bb .glyphicon-sort:before{content:"\e150"}#bb .glyphicon-sort-by-alphabet:before{content:"\e151"}#bb .glyphicon-sort-by-alphabet-alt:before{content:"\e152"}#bb .glyphicon-sort-by-order:before{content:"\e153"}#bb .glyphicon-sort-by-order-alt:before{content:"\e154"}#bb .glyphicon-sort-by-attributes:before{content:"\e155"}#bb .glyphicon-sort-by-attributes-alt:before{content:"\e156"}#bb .glyphicon-unchecked:before{content:"\e157"}#bb .glyphicon-expand:before{content:"\e158"}#bb .glyphicon-collapse-down:before{content:"\e159"}#bb .glyphicon-collapse-up:before{content:"\e160"}#bb .glyphicon-log-in:before{content:"\e161"}#bb .glyphicon-flash:before{content:"\e162"}#bb .glyphicon-log-out:before{content:"\e163"}#bb .glyphicon-new-window:before{content:"\e164"}#bb .glyphicon-record:before{content:"\e165"}#bb .glyphicon-save:before{content:"\e166"}#bb .glyphicon-open:before{content:"\e167"}#bb .glyphicon-saved:before{content:"\e168"}#bb .glyphicon-import:before{content:"\e169"}#bb .glyphicon-export:before{content:"\e170"}#bb .glyphicon-send:before{content:"\e171"}#bb .glyphicon-floppy-disk:before{content:"\e172"}#bb .glyphicon-floppy-saved:before{content:"\e173"}#bb .glyphicon-floppy-remove:before{content:"\e174"}#bb .glyphicon-floppy-save:before{content:"\e175"}#bb .glyphicon-floppy-open:before{content:"\e176"}#bb .glyphicon-credit-card:before{content:"\e177"}#bb .glyphicon-transfer:before{content:"\e178"}#bb .glyphicon-cutlery:before{content:"\e179"}#bb .glyphicon-header:before{content:"\e180"}#bb .glyphicon-compressed:before{content:"\e181"}#bb .glyphicon-earphone:before{content:"\e182"}#bb .glyphicon-phone-alt:before{content:"\e183"}#bb .glyphicon-tower:before{content:"\e184"}#bb .glyphicon-stats:before{content:"\e185"}#bb .glyphicon-sd-video:before{content:"\e186"}#bb .glyphicon-hd-video:before{content:"\e187"}#bb .glyphicon-subtitles:before{content:"\e188"}#bb .glyphicon-sound-stereo:before{content:"\e189"}#bb .glyphicon-sound-dolby:before{content:"\e190"}#bb .glyphicon-sound-5-1:before{content:"\e191"}#bb .glyphicon-sound-6-1:before{content:"\e192"}#bb .glyphicon-sound-7-1:before{content:"\e193"}#bb .glyphicon-copyright-mark:before{content:"\e194"}#bb .glyphicon-registration-mark:before{content:"\e195"}#bb .glyphicon-cloud-download:before{content:"\e197"}#bb .glyphicon-cloud-upload:before{content:"\e198"}#bb .glyphicon-tree-conifer:before{content:"\e199"}#bb .glyphicon-tree-deciduous:before{content:"\e200"}#bb .caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid #000;border-right:4px solid transparent;border-left:4px solid transparent;border-bottom:0 dotted;content:""}#bb .dropdown{position:relative}#bb .dropdown-toggle:focus{outline:0}#bb .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;font-size:14px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}#bb .dropdown-menu.pull-right{right:0;left:auto}#bb .dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}#bb .dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857;color:#333;white-space:nowrap}#bb .dropdown-menu>li>a:hover,#bb .dropdown-menu>li>a:focus{text-decoration:none;color:#fff;background-color:#428bca}#bb .dropdown-menu>.active>a,#bb .dropdown-menu>.active>a:hover,#bb .dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#428bca}#bb .dropdown-menu>.disabled>a,#bb .dropdown-menu>.disabled>a:hover,#bb .dropdown-menu>.disabled>a:focus{color:#999}#bb .dropdown-menu>.disabled>a:hover,#bb .dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}#bb .open>.dropdown-menu{display:block}#bb .open>a{outline:0}#bb .dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857;color:#999}#bb .dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}#bb .pull-right>.dropdown-menu{right:0;left:auto}#bb .dropup .caret,#bb .navbar-fixed-bottom .dropdown .caret{border-top:0 dotted;border-bottom:4px solid #000;content:""}#bb .dropup .dropdown-menu,#bb .navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media (min-width: 800px){#bb .navbar-right .dropdown-menu{right:0;left:auto}}.btn-default #bb .caret{border-top-color:#333}.btn-primary #bb .caret,#bb .date-list-item .btn-secondary.selected #bb .caret,.btn-success #bb .caret,.btn-warning #bb .caret,.btn-danger #bb .caret,.btn-info #bb .caret{border-top-color:#fff}#bb .dropup .btn-default .caret{border-bottom-color:#333}#bb .dropup .btn-primary .caret,#bb .dropup .date-list-item .btn-secondary.selected .caret,#bb .date-list-item .dropup .btn-secondary.selected .caret,#bb .dropup .btn-success .caret,#bb .dropup .btn-warning .caret,#bb .dropup .btn-danger .caret,#bb .dropup .btn-info .caret{border-bottom-color:#fff}#bb .btn-group,#bb .btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}#bb .btn-group>.btn,#bb .btn-group-vertical>.btn{position:relative;float:left}#bb .btn-group>.btn:hover,#bb .btn-group>.btn:focus,#bb .btn-group>.btn:active,#bb .btn-group>.btn.active,#bb .btn-group-vertical>.btn:hover,#bb .btn-group-vertical>.btn:focus,#bb .btn-group-vertical>.btn:active,#bb .btn-group-vertical>.btn.active{z-index:2}#bb .btn-group>.btn:focus,#bb .btn-group-vertical>.btn:focus{outline:none}#bb .btn-group .btn+.btn,#bb .btn-group .btn+.btn-group,#bb .btn-group .btn-group+.btn,#bb .btn-group .btn-group+.btn-group{margin-left:-1px}#bb .btn-toolbar:before,#bb .btn-toolbar:after{content:" ";display:table}#bb .btn-toolbar:after{clear:both}#bb .btn-toolbar .btn-group{float:left}#bb .btn-toolbar>.btn+.btn,#bb .btn-toolbar>.btn+.btn-group,#bb .btn-toolbar>.btn-group+.btn,#bb .btn-toolbar>.btn-group+.btn-group{margin-left:5px}#bb .btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}#bb .btn-group>.btn:first-child{margin-left:0}#bb .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}#bb .btn-group>.btn:last-child:not(:first-child),#bb .btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}#bb .btn-group>.btn-group{float:left}#bb .btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}#bb .btn-group>.btn-group:first-child>.btn:last-child,#bb .btn-group>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}#bb .btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}#bb .btn-group .dropdown-toggle:active,#bb .btn-group.open .dropdown-toggle{outline:0}#bb .btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}#bb .btn-group>.btn-lg+.dropdown-toggle,#bb .btn-group-lg.btn-group>.btn+.dropdown-toggle{padding-left:12px;padding-right:12px}#bb .btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}#bb .btn .caret{margin-left:0}#bb .btn-lg .caret,#bb .btn-group-lg>.btn .caret{border-width:5px 5px 0;border-bottom-width:0}#bb .dropup .btn-lg .caret,#bb .dropup .btn-group-lg>.btn .caret{border-width:0 5px 5px}#bb .btn-group-vertical>.btn,#bb .btn-group-vertical>.btn-group{display:block;float:none;width:100%;max-width:100%}#bb .btn-group-vertical>.btn-group:before,#bb .btn-group-vertical>.btn-group:after{content:" ";display:table}#bb .btn-group-vertical>.btn-group:after{clear:both}#bb .btn-group-vertical>.btn-group>.btn{float:none}#bb .btn-group-vertical>.btn+.btn,#bb .btn-group-vertical>.btn+.btn-group,#bb .btn-group-vertical>.btn-group+.btn,#bb .btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}#bb .btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}#bb .btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}#bb .btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:4px;border-top-right-radius:0;border-top-left-radius:0}#bb .btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}#bb .btn-group-vertical>.btn-group:first-child>.btn:last-child,#bb .btn-group-vertical>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}#bb .btn-group-vertical>.btn-group:last-child>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}#bb .btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}#bb .btn-group-justified .btn{float:none;display:table-cell;width:1%}#bb [data-toggle="buttons"]>.btn>input[type="radio"],#bb [data-toggle="buttons"]>.btn>input[type="checkbox"]{display:none}#bb .input-group{position:relative;display:table;border-collapse:separate}#bb .input-group.col{float:none;padding-left:0;padding-right:0}#bb .input-group .form-control{width:100%;margin-bottom:0}#bb .input-group-addon,#bb .input-group-btn,#bb .input-group .form-control{display:table-cell}#bb .input-group-addon:not(:first-child):not(:last-child),#bb .input-group-btn:not(:first-child):not(:last-child),#bb .input-group .form-control:not(:first-child):not(:last-child){border-radius:0}#bb .input-group-addon,#bb .input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}#bb .input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}#bb .input-group-addon.input-sm,#bb .input-group-sm>.input-group-addon,#bb .input-group-sm>.input-group-btn>.input-group-addon.btn{padding:5px 10px;font-size:12px;border-radius:3px}#bb .input-group-addon.input-lg,#bb .input-group-lg>.input-group-addon,#bb .input-group-lg>.input-group-btn>.input-group-addon.btn{padding:10px 16px;font-size:18px;border-radius:6px}#bb .input-group-addon input[type="radio"],#bb .input-group-addon input[type="checkbox"]{margin-top:0}#bb .input-group .form-control:first-child,#bb .input-group-addon:first-child,#bb .input-group-btn:first-child>.btn,#bb .input-group-btn:first-child>.dropdown-toggle,#bb .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}#bb .input-group-addon:first-child{border-right:0}#bb .input-group .form-control:last-child,#bb .input-group-addon:last-child,#bb .input-group-btn:last-child>.btn,#bb .input-group-btn:last-child>.dropdown-toggle,#bb .input-group-btn:first-child>.btn:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}#bb .input-group-addon:last-child{border-left:0}#bb .input-group-btn{position:relative;white-space:nowrap}#bb .input-group-btn>.btn{position:relative}#bb .input-group-btn>.btn+.btn{margin-left:-4px}#bb .input-group-btn>.btn:hover,#bb .input-group-btn>.btn:active{z-index:2}#bb .nav{margin-bottom:0;padding-left:0;list-style:none}#bb .nav:before,#bb .nav:after{content:" ";display:table}#bb .nav:after{clear:both}#bb .nav>li{position:relative;display:block}#bb .nav>li>a{position:relative;display:block;padding:10px 15px}#bb .nav>li>a:hover,#bb .nav>li>a:focus{text-decoration:none;background-color:#eee}#bb .nav>li.disabled>a{color:#999}#bb .nav>li.disabled>a:hover,#bb .nav>li.disabled>a:focus{color:#999;text-decoration:none;background-color:transparent;cursor:not-allowed}#bb .nav .open>a,#bb .nav .open>a:hover,#bb .nav .open>a:focus{background-color:#eee;border-color:#428bca}#bb .nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}#bb .nav>li>a>img{max-width:none}#bb .nav-tabs{border-bottom:1px solid #ddd}#bb .nav-tabs>li{float:left;margin-bottom:-1px}#bb .nav-tabs>li>a{margin-right:2px;line-height:1.42857;border:1px solid transparent;border-radius:4px 4px 0 0}#bb .nav-tabs>li>a:hover{border-color:#eee #eee #ddd}#bb .nav-tabs>li.active>a,#bb .nav-tabs>li.active>a:hover,#bb .nav-tabs>li.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}#bb .nav-pills>li{float:left}#bb .nav-pills>li>a{border-radius:5px}#bb .nav-pills>li+li{margin-left:2px}#bb .nav-pills>li.active>a,#bb .nav-pills>li.active>a:hover,#bb .nav-pills>li.active>a:focus{color:#fff;background-color:#428bca}#bb .nav-stacked>li{float:none}#bb .nav-stacked>li+li{margin-top:2px;margin-left:0}#bb .nav-justified,#bb .nav-tabs.nav-justified{width:100%}#bb .nav-justified>li,#bb .nav-tabs.nav-justified>li{float:none}#bb .nav-justified>li>a,#bb .nav-tabs.nav-justified>li>a{text-align:center}@media (min-width: 800px){#bb .nav-justified>li,#bb .nav-tabs.nav-justified>li{display:table-cell;width:1%}}#bb .nav-tabs-justified,#bb .nav-tabs.nav-justified{border-bottom:0}#bb .nav-tabs-justified>li>a,#bb .nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;margin-right:0}#bb .nav-tabs-justified>.active>a,#bb .nav-tabs.nav-justified>.active>a{border-bottom-color:#fff}#bb .tabbable:before,#bb .tabbable:after{content:" ";display:table}#bb .tabbable:after{clear:both}#bb .tab-content>.tab-pane,#bb .pill-content>.pill-pane{display:none}#bb .tab-content>.active,#bb .pill-content>.active{display:block}#bb .nav .caret{border-top-color:#428bca;border-bottom-color:#428bca}#bb .nav a:hover .caret{border-top-color:#2a6496;border-bottom-color:#2a6496}#bb .nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}#bb .navbar{position:relative;z-index:1000;min-height:50px;margin-bottom:20px;border:1px solid transparent}#bb .navbar:before,#bb .navbar:after{content:" ";display:table}#bb .navbar:after{clear:both}@media (min-width: 800px){#bb .navbar{border-radius:4px}}#bb .navbar-header:before,#bb .navbar-header:after{content:" ";display:table}#bb .navbar-header:after{clear:both}@media (min-width: 800px){#bb .navbar-header{float:left}}#bb .navbar-collapse{max-height:340px;overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}#bb .navbar-collapse:before,#bb .navbar-collapse:after{content:" ";display:table}#bb .navbar-collapse:after{clear:both}#bb .navbar-collapse.in{overflow-y:auto}@media (min-width: 800px){#bb .navbar-collapse{width:auto;border-top:0;box-shadow:none}#bb .navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}#bb .navbar-collapse.in{overflow-y:visible}#bb .navbar-collapse .navbar-nav.navbar-left:first-child{margin-left:-15px}#bb .navbar-collapse .navbar-nav.navbar-right:last-child{margin-right:-15px}#bb .navbar-collapse .navbar-text:last-child{margin-right:0}}#bb .container>.navbar-header,#bb .container>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width: 800px){#bb .container>.navbar-header,#bb .container>.navbar-collapse{margin-right:0;margin-left:0}}#bb .navbar-static-top{border-width:0 0 1px}@media (min-width: 800px){#bb .navbar-static-top{border-radius:0}}#bb .navbar-fixed-top,#bb .navbar-fixed-bottom{position:fixed;right:0;left:0;border-width:0 0 1px}@media (min-width: 800px){#bb .navbar-fixed-top,#bb .navbar-fixed-bottom{border-radius:0}}#bb .navbar-fixed-top{z-index:1030;top:0}#bb .navbar-fixed-bottom{bottom:0;margin-bottom:0}#bb .navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px}#bb .navbar-brand:hover,#bb .navbar-brand:focus{text-decoration:none}@media (min-width: 800px){.navbar>.container #bb .navbar-brand{margin-left:-15px}}#bb .navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;border:1px solid transparent;border-radius:4px}#bb .navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}#bb .navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width: 800px){#bb .navbar-toggle{display:none}}#bb .navbar-nav{margin:7.5px -15px}#bb .navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width: 799px){#bb .navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}#bb .navbar-nav .open .dropdown-menu>li>a,#bb .navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}#bb .navbar-nav .open .dropdown-menu>li>a{line-height:20px}#bb .navbar-nav .open .dropdown-menu>li>a:hover,#bb .navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width: 800px){#bb .navbar-nav{float:left;margin:0}#bb .navbar-nav>li{float:left}#bb .navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}@media (min-width: 800px){#bb .navbar-left{float:left !important}#bb .navbar-right{float:right !important}}#bb .navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-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);margin-top:8px;margin-bottom:8px}@media (max-width: 799px){#bb .navbar-form .form-group{margin-bottom:5px}}@media (min-width: 800px){#bb .navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}#bb .navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}#bb .navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}#bb .navbar-nav.pull-right>li>.dropdown-menu,#bb .navbar-nav>li>.dropdown-menu.pull-right{left:auto;right:0}#bb .navbar-btn{margin-top:8px;margin-bottom:8px}#bb .navbar-text{float:left;margin-top:15px;margin-bottom:15px}@media (min-width: 800px){#bb .navbar-text{margin-left:15px;margin-right:15px}}#bb .navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}#bb .navbar-default .navbar-brand{color:#777}#bb .navbar-default .navbar-brand:hover,#bb .navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}#bb .navbar-default .navbar-text{color:#777}#bb .navbar-default .navbar-nav>li>a{color:#777}#bb .navbar-default .navbar-nav>li>a:hover,#bb .navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}#bb .navbar-default .navbar-nav>.active>a,#bb .navbar-default .navbar-nav>.active>a:hover,#bb .navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}#bb .navbar-default .navbar-nav>.disabled>a,#bb .navbar-default .navbar-nav>.disabled>a:hover,#bb .navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}#bb .navbar-default .navbar-toggle{border-color:#ddd}#bb .navbar-default .navbar-toggle:hover,#bb .navbar-default .navbar-toggle:focus{background-color:#ddd}#bb .navbar-default .navbar-toggle .icon-bar{background-color:#ccc}#bb .navbar-default .navbar-collapse,#bb .navbar-default .navbar-form{border-color:#e6e6e6}#bb .navbar-default .navbar-nav>.dropdown>a:hover .caret,#bb .navbar-default .navbar-nav>.dropdown>a:focus .caret{border-top-color:#333;border-bottom-color:#333}#bb .navbar-default .navbar-nav>.open>a,#bb .navbar-default .navbar-nav>.open>a:hover,#bb .navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}#bb .navbar-default .navbar-nav>.open>a .caret,#bb .navbar-default .navbar-nav>.open>a:hover .caret,#bb .navbar-default .navbar-nav>.open>a:focus .caret{border-top-color:#555;border-bottom-color:#555}#bb .navbar-default .navbar-nav>.dropdown>a .caret{border-top-color:#777;border-bottom-color:#777}@media (max-width: 799px){#bb .navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}#bb .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,#bb .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}#bb .navbar-default .navbar-nav .open .dropdown-menu>.active>a,#bb .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,#bb .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}#bb .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,#bb .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,#bb .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}#bb .navbar-default .navbar-link{color:#777}#bb .navbar-default .navbar-link:hover{color:#333}#bb .navbar-inverse{background-color:#222;border-color:#090909}#bb .navbar-inverse .navbar-brand{color:#999}#bb .navbar-inverse .navbar-brand:hover,#bb .navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}#bb .navbar-inverse .navbar-text{color:#999}#bb .navbar-inverse .navbar-nav>li>a{color:#999}#bb .navbar-inverse .navbar-nav>li>a:hover,#bb .navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}#bb .navbar-inverse .navbar-nav>.active>a,#bb .navbar-inverse .navbar-nav>.active>a:hover,#bb .navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#090909}#bb .navbar-inverse .navbar-nav>.disabled>a,#bb .navbar-inverse .navbar-nav>.disabled>a:hover,#bb .navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}#bb .navbar-inverse .navbar-toggle{border-color:#333}#bb .navbar-inverse .navbar-toggle:hover,#bb .navbar-inverse .navbar-toggle:focus{background-color:#333}#bb .navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}#bb .navbar-inverse .navbar-collapse,#bb .navbar-inverse .navbar-form{border-color:#101010}#bb .navbar-inverse .navbar-nav>.open>a,#bb .navbar-inverse .navbar-nav>.open>a:hover,#bb .navbar-inverse .navbar-nav>.open>a:focus{background-color:#090909;color:#fff}#bb .navbar-inverse .navbar-nav>.dropdown>a:hover .caret{border-top-color:#fff;border-bottom-color:#fff}#bb .navbar-inverse .navbar-nav>.dropdown>a .caret{border-top-color:#999;border-bottom-color:#999}#bb .navbar-inverse .navbar-nav>.open>a .caret,#bb .navbar-inverse .navbar-nav>.open>a:hover .caret,#bb .navbar-inverse .navbar-nav>.open>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff}@media (max-width: 799px){#bb .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#090909}#bb .navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#999}#bb .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,#bb .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}#bb .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,#bb .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,#bb .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#090909}#bb .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,#bb .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,#bb .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}#bb .navbar-inverse .navbar-link{color:#999}#bb .navbar-inverse .navbar-link:hover{color:#fff}#bb .breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}#bb .breadcrumb>li{display:inline-block}#bb .breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ccc}#bb .breadcrumb>.active{color:#999}#bb .pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}#bb .pagination>li{display:inline}#bb .pagination>li>a,#bb .pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857;text-decoration:none;background-color:#fff;border:1px solid #ddd;margin-left:-1px}#bb .pagination>li:first-child>a,#bb .pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}#bb .pagination>li:last-child>a,#bb .pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}#bb .pagination>li>a:hover,#bb .pagination>li>a:focus,#bb .pagination>li>span:hover,#bb .pagination>li>span:focus{background-color:#eee}#bb .pagination>.active>a,#bb .pagination>.active>a:hover,#bb .pagination>.active>a:focus,#bb .pagination>.active>span,#bb .pagination>.active>span:hover,#bb .pagination>.active>span:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca;cursor:default}#bb .pagination>.disabled>span,#bb .pagination>.disabled>a,#bb .pagination>.disabled>a:hover,#bb .pagination>.disabled>a:focus{color:#999;background-color:#fff;border-color:#ddd;cursor:not-allowed}#bb .pagination-lg>li>a,#bb .pagination-lg>li>span{padding:10px 16px;font-size:18px}#bb .pagination-lg>li:first-child>a,#bb .pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}#bb .pagination-lg>li:last-child>a,#bb .pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}#bb .pagination-sm>li>a,#bb .pagination-sm>li>span{padding:5px 10px;font-size:12px}#bb .pagination-sm>li:first-child>a,#bb .pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}#bb .pagination-sm>li:last-child>a,#bb .pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}#bb .pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}#bb .pager:before,#bb .pager:after{content:" ";display:table}#bb .pager:after{clear:both}#bb .pager li{display:inline}#bb .pager li>a,#bb .pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}#bb .pager li>a:hover,#bb .pager li>a:focus{text-decoration:none;background-color:#eee}#bb .pager .next>a,#bb .pager .next>span{float:right}#bb .pager .previous>a,#bb .pager .previous>span{float:left}#bb .pager .disabled>a,#bb .pager .disabled>a:hover,#bb .pager .disabled>a:focus,#bb .pager .disabled>span{color:#999;background-color:#fff;cursor:not-allowed}#bb .label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}#bb .label[href]:hover,#bb .label[href]:focus{color:#fff;text-decoration:none;cursor:pointer}#bb .label:empty{display:none}#bb .label-default{background-color:#999}#bb .label-default[href]:hover,#bb .label-default[href]:focus{background-color:gray}#bb .label-primary{background-color:#428bca}#bb .label-primary[href]:hover,#bb .label-primary[href]:focus{background-color:#3071a9}#bb .label-success{background-color:#5cb85c}#bb .label-success[href]:hover,#bb .label-success[href]:focus{background-color:#449d44}#bb .label-info{background-color:#5bc0de}#bb .label-info[href]:hover,#bb .label-info[href]:focus{background-color:#31b0d5}#bb .label-warning{background-color:#f0ad4e}#bb .label-warning[href]:hover,#bb .label-warning[href]:focus{background-color:#ec971f}#bb .label-danger{background-color:#d9534f}#bb .label-danger[href]:hover,#bb .label-danger[href]:focus{background-color:#c9302c}#bb .badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;color:#fff;line-height:1;vertical-align:baseline;white-space:nowrap;text-align:center;background-color:#999;border-radius:10px}#bb .badge:empty{display:none}#bb a.badge:hover,#bb a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}#bb .btn .badge{position:relative;top:-1px}#bb a.list-group-item.active>.badge,#bb .nav-pills>.active>a>.badge{color:#428bca;background-color:#fff}#bb .nav-pills>li>a>.badge{margin-left:3px}#bb .jumbotron{padding:30px;margin-bottom:30px;font-size:21px;font-weight:200;line-height:2.14286;color:inherit;background-color:#eee}#bb .jumbotron h1{line-height:1;color:inherit}#bb .jumbotron p{line-height:1.4}.container #bb .jumbotron{border-radius:6px}@media screen and (min-width: 800px){#bb .jumbotron{padding-top:48px;padding-bottom:48px}.container #bb .jumbotron{padding-left:60px;padding-right:60px}#bb .jumbotron h1{font-size:63px}}#bb .thumbnail{display:block}#bb .thumbnail>img{display:block;max-width:100%;height:auto}#bb a.thumbnail:hover,#bb a.thumbnail:focus{border-color:#428bca}#bb .thumbnail>img{margin-left:auto;margin-right:auto}#bb .thumbnail .caption{padding:9px;color:#333}#bb .alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}#bb .alert h4{margin-top:0;color:inherit}#bb .alert .alert-link{font-weight:bold}#bb .alert>p,#bb .alert>ul{margin-bottom:0}#bb .alert>p+p{margin-top:5px}#bb .alert-dismissable{padding-right:35px}#bb .alert-dismissable .close{position:relative;top:-2px;right:-21px;color:inherit}#bb .alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847}#bb .alert-success hr{border-top-color:#c9e2b3}#bb .alert-success .alert-link{color:#356635}#bb .alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad}#bb .alert-info hr{border-top-color:#a6e1ec}#bb .alert-info .alert-link{color:#2d6987}#bb .alert-warning{background-color:#fcf8e3;border-color:#fbeed5;color:#c09853}#bb .alert-warning hr{border-top-color:#f8e5be}#bb .alert-warning .alert-link{color:#a47e3c}#bb .alert-danger{background-color:#f2dede;border-color:#eed3d7;color:#b94a48}#bb .alert-danger hr{border-top-color:#e6c1c7}#bb .alert-danger .alert-link{color:#953b39}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:0 0}to{background-position:40px 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}#bb .progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}#bb .progress-bar{float:left;width:0%;height:100%;font-size:12px;color:#fff;text-align:center;background-color:#428bca;-webkit-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-transition:width 0.6s ease;transition:width 0.6s ease}#bb .progress-striped .progress-bar{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), to(transparent));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: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-size:40px 40px}#bb .progress.active .progress-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}#bb .progress-bar-success{background-color:#5cb85c}.progress-striped #bb .progress-bar-success{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), to(transparent));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: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)}#bb .progress-bar-info{background-color:#5bc0de}.progress-striped #bb .progress-bar-info{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), to(transparent));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: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)}#bb .progress-bar-warning{background-color:#f0ad4e}.progress-striped #bb .progress-bar-warning{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), to(transparent));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: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)}#bb .progress-bar-danger{background-color:#d9534f}.progress-striped #bb .progress-bar-danger{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), to(transparent));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: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)}#bb .media,#bb .media-body{overflow:hidden;zoom:1}#bb .media,#bb .media .media{margin-top:15px}#bb .media:first-child{margin-top:0}#bb .media-object{display:block}#bb .media-heading{margin:0 0 5px}#bb .media>.pull-left{margin-right:10px}#bb .media>.pull-right{margin-left:10px}#bb .media-list{padding-left:0;list-style:none}#bb .list-group{margin-bottom:20px;padding-left:0}#bb .list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}#bb .list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}#bb .list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}#bb .list-group-item>.badge{float:right}#bb .list-group-item>.badge+.badge{margin-right:5px}#bb .list-group-item.active,#bb .list-group-item.active:hover,#bb .list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}#bb .list-group-item.active .list-group-item-heading,#bb .list-group-item.active:hover .list-group-item-heading,#bb .list-group-item.active:focus .list-group-item-heading{color:inherit}#bb .list-group-item.active .list-group-item-text,#bb .list-group-item.active:hover .list-group-item-text,#bb .list-group-item.active:focus .list-group-item-text{color:#e1edf7}#bb a.list-group-item{color:#555}#bb a.list-group-item .list-group-item-heading{color:#333}#bb a.list-group-item:hover,#bb a.list-group-item:focus{text-decoration:none;background-color:#f5f5f5}#bb .list-group-item-heading{margin-top:0;margin-bottom:5px}#bb .list-group-item-text{margin-bottom:0;line-height:1.3}#bb .panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}#bb .panel-body{padding:15px}#bb .panel-body:before,#bb .panel-body:after{content:" ";display:table}#bb .panel-body:after{clear:both}#bb .panel>.list-group{margin-bottom:0}#bb .panel>.list-group .list-group-item{border-width:1px 0}#bb .panel>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}#bb .panel>.list-group .list-group-item:last-child{border-bottom:0}#bb .panel-heading+.list-group .list-group-item:first-child{border-top-width:0}#bb .panel>.table{margin-bottom:0}#bb .panel>.panel-body+.table{border-top:1px solid #ddd}#bb .panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}#bb .panel-title{margin-top:0;margin-bottom:0;font-size:16px}#bb .panel-title>a{color:inherit}#bb .panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}#bb .panel-group .panel{margin-bottom:0;border-radius:4px;overflow:hidden}#bb .panel-group .panel+.panel{margin-top:5px}#bb .panel-group .panel-heading{border-bottom:0}#bb .panel-group .panel-heading+.panel-collapse .panel-body{border-top:1px solid #ddd}#bb .panel-group .panel-footer{border-top:0}#bb .panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}#bb .panel-default{border-color:#ddd}#bb .panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}#bb .panel-default>.panel-heading+.panel-collapse .panel-body{border-top-color:#ddd}#bb .panel-default>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ddd}#bb .panel-primary{border-color:#428bca}#bb .panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}#bb .panel-primary>.panel-heading+.panel-collapse .panel-body{border-top-color:#428bca}#bb .panel-primary>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#428bca}#bb .panel-success{border-color:#d6e9c6}#bb .panel-success>.panel-heading{color:#468847;background-color:#dff0d8;border-color:#d6e9c6}#bb .panel-success>.panel-heading+.panel-collapse .panel-body{border-top-color:#d6e9c6}#bb .panel-success>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#d6e9c6}#bb .panel-warning{border-color:#fbeed5}#bb .panel-warning>.panel-heading{color:#c09853;background-color:#fcf8e3;border-color:#fbeed5}#bb .panel-warning>.panel-heading+.panel-collapse .panel-body{border-top-color:#fbeed5}#bb .panel-warning>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#fbeed5}#bb .panel-danger{border-color:#eed3d7}#bb .panel-danger>.panel-heading{color:#b94a48;background-color:#f2dede;border-color:#eed3d7}#bb .panel-danger>.panel-heading+.panel-collapse .panel-body{border-top-color:#eed3d7}#bb .panel-danger>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#eed3d7}#bb .panel-info{border-color:#bce8f1}#bb .panel-info>.panel-heading{color:#3a87ad;background-color:#d9edf7;border-color:#bce8f1}#bb .panel-info>.panel-heading+.panel-collapse .panel-body{border-top-color:#bce8f1}#bb .panel-info>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#bce8f1}#bb .well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}#bb .well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}#bb .well-lg{padding:24px;border-radius:6px}#bb .well-sm{padding:9px;border-radius:3px}#bb .close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:0.2;filter:alpha(opacity=20)}#bb .close:hover,#bb .close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:0.5;filter:alpha(opacity=50)}#bb button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}#bb .modal-open{overflow:hidden}#bb .modal-open .navbar-fixed-top,#bb .modal-open .navbar-fixed-bottom{margin-right:15px}#bb body.modal-open{margin-right:15px}#bb .modal{display:none;overflow:auto;overflow-y:scroll;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040}#bb .modal.fade .modal-dialog{-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);transform:translate(0, -25%);-webkit-transition:-webkit-transform 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}#bb .modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);transform:translate(0, 0)}#bb .modal-dialog{margin-left:auto;margin-right:auto;width:auto;padding:10px;z-index:1050}#bb .modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:none}#bb .modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1030;background-color:#000}#bb .modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}#bb .modal-backdrop.in{opacity:0.5;filter:alpha(opacity=50)}#bb .modal-header{padding:15px;border-bottom:1px solid #e5e5e5;min-height:16.42857px}#bb .modal-header .close{margin-top:-2px}#bb .modal-title{margin:0;line-height:1.42857}#bb .modal-body{position:relative;padding:20px}#bb .modal-footer{margin-top:15px;padding:19px 20px 20px;text-align:right;border-top:1px solid #e5e5e5}#bb .modal-footer:before,#bb .modal-footer:after{content:" ";display:table}#bb .modal-footer:after{clear:both}#bb .modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}#bb .modal-footer .btn-group .btn+.btn{margin-left:-1px}#bb .modal-footer .btn-block+.btn-block{margin-left:0}@media screen and (min-width: 800px){#bb .modal-dialog{left:50%;right:auto;width:600px;padding-top:30px;padding-bottom:30px}#bb .modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}}#bb .tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}#bb .tooltip.in{opacity:0.9;filter:alpha(opacity=90)}#bb .tooltip.top{margin-top:-3px;padding:5px 0}#bb .tooltip.right{margin-left:3px;padding:0 5px}#bb .tooltip.bottom{margin-top:3px;padding:5px 0}#bb .tooltip.left{margin-left:-3px;padding:0 5px}#bb .tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}#bb .tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}#bb .tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}#bb .tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-width:5px 5px 0;border-top-color:#000}#bb .tooltip.top-right .tooltip-arrow{bottom:0;right:5px;border-width:5px 5px 0;border-top-color:#000}#bb .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}#bb .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}#bb .tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}#bb .tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-width:0 5px 5px;border-bottom-color:#000}#bb .tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-width:0 5px 5px;border-bottom-color:#000}#bb .popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-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}#bb .popover.top{margin-top:-10px}#bb .popover.right{margin-left:10px}#bb .popover.bottom{margin-top:10px}#bb .popover.left{margin-left:-10px}#bb .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}#bb .popover-content{padding:9px 14px}#bb .popover .arrow,#bb .popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}#bb .popover .arrow{border-width:11px}#bb .popover .arrow:after{border-width:10px;content:""}#bb .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}#bb .popover.top .arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}#bb .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)}#bb .popover.right .arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}#bb .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}#bb .popover.bottom .arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}#bb .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)}#bb .popover.left .arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}#bb .carousel{position:relative}#bb .carousel-inner{position:relative;overflow:hidden;width:100%}#bb .carousel-inner>.item{display:none;position:relative;-webkit-transition:0.6s ease-in-out left;transition:0.6s ease-in-out left}#bb .carousel-inner>.item>img,#bb .carousel-inner>.item>a>img{display:block;max-width:100%;height:auto;line-height:1}#bb .carousel-inner>.active,#bb .carousel-inner>.next,#bb .carousel-inner>.prev{display:block}#bb .carousel-inner>.active{left:0}#bb .carousel-inner>.next,#bb .carousel-inner>.prev{position:absolute;top:0;width:100%}#bb .carousel-inner>.next{left:100%}#bb .carousel-inner>.prev{left:-100%}#bb .carousel-inner>.next.left,#bb .carousel-inner>.prev.right{left:0}#bb .carousel-inner>.active.left{left:-100%}#bb .carousel-inner>.active.right{left:100%}#bb .carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:0.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}#bb .carousel-control.left{background-image:-webkit-gradient(linear, 0% top, 100% top, from(rgba(0,0,0,0.5)), to(rgba(0,0,0,0.0001)));background-image:-webkit-linear-gradient(left, color-stop(rgba(0,0,0,0.5) 0%), color-stop(rgba(0,0,0,0.0001) 100%));background-image:-moz-linear-gradient(left, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.0001) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}#bb .carousel-control.right{left:auto;right:0;background-image:-webkit-gradient(linear, 0% top, 100% top, from(rgba(0,0,0,0.0001)), to(rgba(0,0,0,0.5)));background-image:-webkit-linear-gradient(left, color-stop(rgba(0,0,0,0.0001) 0%), color-stop(rgba(0,0,0,0.5) 100%));background-image:-moz-linear-gradient(left, rgba(0,0,0,0.0001) 0%, rgba(0,0,0,0.5) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0%, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}#bb .carousel-control:hover,#bb .carousel-control:focus{color:#fff;text-decoration:none;opacity:0.9;filter:alpha(opacity=90)}#bb .carousel-control .icon-prev,#bb .carousel-control .icon-next,#bb .carousel-control .glyphicon-chevron-left,#bb .carousel-control .glyphicon-chevron-right{position:absolute;top:50%;left:50%;z-index:5;display:inline-block}#bb .carousel-control .icon-prev,#bb .carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;margin-left:-10px;font-family:serif}#bb .carousel-control .icon-prev:before{content:'\2039'}#bb .carousel-control .icon-next:before{content:'\203a'}#bb .carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}#bb .carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer}#bb .carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}#bb .carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}#bb .carousel-caption .btn{text-shadow:none}@media screen and (min-width: 800px){#bb .carousel-control .icon-prev,#bb .carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;margin-left:-15px;font-size:30px}#bb .carousel-caption{left:20%;right:20%;padding-bottom:30px}#bb .carousel-indicators{bottom:20px}}#bb .clearfix:before,#bb .clearfix:after{content:" ";display:table}#bb .clearfix:after{clear:both}#bb .pull-right{float:right !important}#bb .pull-left{float:left !important}#bb .hide{display:none !important}#bb .show{display:block !important}#bb .invisible{visibility:hidden}#bb .text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}#bb .affix{position:fixed}@-ms-viewport{#bb{width:device-width}}@media screen and (max-width: 400px){@-ms-viewport{#bb{width:320px}}}#bb .hidden{display:none !important;visibility:hidden !important}#bb .visible-xs{display:none !important}#bb tr.visible-xs{display:none !important}#bb th.visible-xs,#bb td.visible-xs{display:none !important}@media (max-width: 799px){#bb .visible-xs{display:block !important}#bb tr.visible-xs{display:table-row !important}#bb th.visible-xs,#bb td.visible-xs{display:table-cell !important}}@media (min-width: 800px) and (max-width: 991px){#bb .visible-xs.visible-sm{display:block !important}#bb tr.visible-xs.visible-sm{display:table-row !important}#bb th.visible-xs.visible-sm,#bb td.visible-xs.visible-sm{display:table-cell !important}}@media (min-width: 992px) and (max-width: 1199px){#bb .visible-xs.visible-md{display:block !important}#bb tr.visible-xs.visible-md{display:table-row !important}#bb th.visible-xs.visible-md,#bb td.visible-xs.visible-md{display:table-cell !important}}@media (min-width: 1200px){#bb .visible-xs.visible-lg{display:block !important}#bb tr.visible-xs.visible-lg{display:table-row !important}#bb th.visible-xs.visible-lg,#bb td.visible-xs.visible-lg{display:table-cell !important}}#bb .visible-sm{display:none !important}#bb tr.visible-sm{display:none !important}#bb th.visible-sm,#bb td.visible-sm{display:none !important}@media (max-width: 799px){#bb .visible-sm.visible-xs{display:block !important}#bb tr.visible-sm.visible-xs{display:table-row !important}#bb th.visible-sm.visible-xs,#bb td.visible-sm.visible-xs{display:table-cell !important}}@media (min-width: 800px) and (max-width: 991px){#bb .visible-sm{display:block !important}#bb tr.visible-sm{display:table-row !important}#bb th.visible-sm,#bb td.visible-sm{display:table-cell !important}}@media (min-width: 992px) and (max-width: 1199px){#bb .visible-sm.visible-md{display:block !important}#bb tr.visible-sm.visible-md{display:table-row !important}#bb th.visible-sm.visible-md,#bb td.visible-sm.visible-md{display:table-cell !important}}@media (min-width: 1200px){#bb .visible-sm.visible-lg{display:block !important}#bb tr.visible-sm.visible-lg{display:table-row !important}#bb th.visible-sm.visible-lg,#bb td.visible-sm.visible-lg{display:table-cell !important}}#bb .visible-md{display:none !important}#bb tr.visible-md{display:none !important}#bb th.visible-md,#bb td.visible-md{display:none !important}@media (max-width: 799px){#bb .visible-md.visible-xs{display:block !important}#bb tr.visible-md.visible-xs{display:table-row !important}#bb th.visible-md.visible-xs,#bb td.visible-md.visible-xs{display:table-cell !important}}@media (min-width: 800px) and (max-width: 991px){#bb .visible-md.visible-sm{display:block !important}#bb tr.visible-md.visible-sm{display:table-row !important}#bb th.visible-md.visible-sm,#bb td.visible-md.visible-sm{display:table-cell !important}}@media (min-width: 992px) and (max-width: 1199px){#bb .visible-md{display:block !important}#bb tr.visible-md{display:table-row !important}#bb th.visible-md,#bb td.visible-md{display:table-cell !important}}@media (min-width: 1200px){#bb .visible-md.visible-lg{display:block !important}#bb tr.visible-md.visible-lg{display:table-row !important}#bb th.visible-md.visible-lg,#bb td.visible-md.visible-lg{display:table-cell !important}}#bb .visible-lg{display:none !important}#bb tr.visible-lg{display:none !important}#bb th.visible-lg,#bb td.visible-lg{display:none !important}@media (max-width: 799px){#bb .visible-lg.visible-xs{display:block !important}#bb tr.visible-lg.visible-xs{display:table-row !important}#bb th.visible-lg.visible-xs,#bb td.visible-lg.visible-xs{display:table-cell !important}}@media (min-width: 800px) and (max-width: 991px){#bb .visible-lg.visible-sm{display:block !important}#bb tr.visible-lg.visible-sm{display:table-row !important}#bb th.visible-lg.visible-sm,#bb td.visible-lg.visible-sm{display:table-cell !important}}@media (min-width: 992px) and (max-width: 1199px){#bb .visible-lg.visible-md{display:block !important}#bb tr.visible-lg.visible-md{display:table-row !important}#bb th.visible-lg.visible-md,#bb td.visible-lg.visible-md{display:table-cell !important}}@media (min-width: 1200px){#bb .visible-lg{display:block !important}#bb tr.visible-lg{display:table-row !important}#bb th.visible-lg,#bb td.visible-lg{display:table-cell !important}}#bb .hidden-xs{display:block !important}#bb tr.hidden-xs{display:table-row !important}#bb th.hidden-xs,#bb td.hidden-xs{display:table-cell !important}@media (max-width: 799px){#bb .hidden-xs{display:none !important}#bb tr.hidden-xs{display:none !important}#bb th.hidden-xs,#bb td.hidden-xs{display:none !important}}@media (min-width: 800px) and (max-width: 991px){#bb .hidden-xs.hidden-sm{display:none !important}#bb tr.hidden-xs.hidden-sm{display:none !important}#bb th.hidden-xs.hidden-sm,#bb td.hidden-xs.hidden-sm{display:none !important}}@media (min-width: 992px) and (max-width: 1199px){#bb .hidden-xs.hidden-md{display:none !important}#bb tr.hidden-xs.hidden-md{display:none !important}#bb th.hidden-xs.hidden-md,#bb td.hidden-xs.hidden-md{display:none !important}}@media (min-width: 1200px){#bb .hidden-xs.hidden-lg{display:none !important}#bb tr.hidden-xs.hidden-lg{display:none !important}#bb th.hidden-xs.hidden-lg,#bb td.hidden-xs.hidden-lg{display:none !important}}#bb .hidden-sm{display:block !important}#bb tr.hidden-sm{display:table-row !important}#bb th.hidden-sm,#bb td.hidden-sm{display:table-cell !important}@media (max-width: 799px){#bb .hidden-sm.hidden-xs{display:none !important}#bb tr.hidden-sm.hidden-xs{display:none !important}#bb th.hidden-sm.hidden-xs,#bb td.hidden-sm.hidden-xs{display:none !important}}@media (min-width: 800px) and (max-width: 991px){#bb .hidden-sm{display:none !important}#bb tr.hidden-sm{display:none !important}#bb th.hidden-sm,#bb td.hidden-sm{display:none !important}}@media (min-width: 992px) and (max-width: 1199px){#bb .hidden-sm.hidden-md{display:none !important}#bb tr.hidden-sm.hidden-md{display:none !important}#bb th.hidden-sm.hidden-md,#bb td.hidden-sm.hidden-md{display:none !important}}@media (min-width: 1200px){#bb .hidden-sm.hidden-lg{display:none !important}#bb tr.hidden-sm.hidden-lg{display:none !important}#bb th.hidden-sm.hidden-lg,#bb td.hidden-sm.hidden-lg{display:none !important}}#bb .hidden-md{display:block !important}#bb tr.hidden-md{display:table-row !important}#bb th.hidden-md,#bb td.hidden-md{display:table-cell !important}@media (max-width: 799px){#bb .hidden-md.hidden-xs{display:none !important}#bb tr.hidden-md.hidden-xs{display:none !important}#bb th.hidden-md.hidden-xs,#bb td.hidden-md.hidden-xs{display:none !important}}@media (min-width: 800px) and (max-width: 991px){#bb .hidden-md.hidden-sm{display:none !important}#bb tr.hidden-md.hidden-sm{display:none !important}#bb th.hidden-md.hidden-sm,#bb td.hidden-md.hidden-sm{display:none !important}}@media (min-width: 992px) and (max-width: 1199px){#bb .hidden-md{display:none !important}#bb tr.hidden-md{display:none !important}#bb th.hidden-md,#bb td.hidden-md{display:none !important}}@media (min-width: 1200px){#bb .hidden-md.hidden-lg{display:none !important}#bb tr.hidden-md.hidden-lg{display:none !important}#bb th.hidden-md.hidden-lg,#bb td.hidden-md.hidden-lg{display:none !important}}#bb .hidden-lg{display:block !important}#bb tr.hidden-lg{display:table-row !important}#bb th.hidden-lg,#bb td.hidden-lg{display:table-cell !important}@media (max-width: 799px){#bb .hidden-lg.hidden-xs{display:none !important}#bb tr.hidden-lg.hidden-xs{display:none !important}#bb th.hidden-lg.hidden-xs,#bb td.hidden-lg.hidden-xs{display:none !important}}@media (min-width: 800px) and (max-width: 991px){#bb .hidden-lg.hidden-sm{display:none !important}#bb tr.hidden-lg.hidden-sm{display:none !important}#bb th.hidden-lg.hidden-sm,#bb td.hidden-lg.hidden-sm{display:none !important}}@media (min-width: 992px) and (max-width: 1199px){#bb .hidden-lg.hidden-md{display:none !important}#bb tr.hidden-lg.hidden-md{display:none !important}#bb th.hidden-lg.hidden-md,#bb td.hidden-lg.hidden-md{display:none !important}}@media (min-width: 1200px){#bb .hidden-lg{display:none !important}#bb tr.hidden-lg{display:none !important}#bb th.hidden-lg,#bb td.hidden-lg{display:none !important}}#bb .visible-print{display:none !important}#bb tr.visible-print{display:none !important}#bb th.visible-print,#bb td.visible-print{display:none !important}@media print{#bb .visible-print{display:block !important}#bb tr.visible-print{display:table-row !important}#bb th.visible-print,#bb td.visible-print{display:table-cell !important}#bb .hidden-print{display:none !important}#bb tr.hidden-print{display:none !important}#bb th.hidden-print,#bb td.hidden-print{display:none !important}}#bb{font:14px Georgia, 'Times New Roman', serif;color:#444}#bb .panel{border-left:none;border-right:none;border-radius:0;background-color:#fff;box-shadow:none;margin-bottom:0}#bb .panel:last-child{margin-bottom:20px}#bb .panel-group .panel+.panel{margin-top:0;border-top:none}#bb .modal-title{font-size:24px}#bb .modal-header{border-bottom:none;padding-bottom:0}#bb .modal-body{padding-top:0;padding-bottom:0}#bb .modal-footer{border-top:none;margin-top:0}#bb .move-booking-container{min-height:800px}#bb .bb-content{color:#000}#bb h1,#bb h2,#bb h3,#bb h4,#bb h5,#bb h6{padding:0;margin:0 0 10px 0;font-family:Georgia, 'Times New Roman', serif}#bb ul,#bb ol{margin:0;padding:0;list-style:none}#bb a{color:#333;text-decoration:underline}#bb a:hover,#bb a:focus{color:#333;text-decoration:none}#bb .content{min-height:600px}#bb .page-header{margin:20px 0 25px 0;padding-bottom:0;border-bottom:none}#bb .page-heading-wrapper{margin:0 0 10px 0}#bb .page-heading{font-size:2.45em;padding:0;display:inline}#bb .page-sub-heading{font-size:1.5em}#bb .page-intro,#bb .page-summary{margin-bottom:30px}#bb .step-navigation{margin-top:20px;margin-bottom:40px}#bb .step-navigation .forward{text-align:right}#bb .step-navigation .back{text-align:left}#bb .step-navigation .btn{width:100%;margin-bottom:10px}@media (min-width: 768px){#bb .step-navigation .btn{width:auto}}#bb .seperator{margin:30px 0}#bb #loading_icon{height:100%;position:fixed;top:0;left:0;width:100%;background-color:#FFF;padding-top:100px;filter:alpha(opacity=70);-moz-opacity:0.7;-khtml-opacity:0.7;opacity:0.7;z-index:2000}#bb #loading_icon div{display:block;margin:0 auto}#bb #loading_icon #wait_graphic{background:url("/images/BB_wait.gif");width:118px;height:118px}#bb .powered-by{margin-top:50px;margin-bottom:50px;text-align:right}#bb .text-block{margin-bottom:20px}#bb .page-content{padding:10px}#bb .page-space{padding-top:10px}#bb .form-control:-moz-placeholder,#bb .form-question:-moz-placeholder{color:#CCC}#bb .form-control::-moz-placeholder,#bb .form-question::-moz-placeholder{color:#CCC}#bb .form-control:-ms-input-placeholder,#bb .form-question:-ms-input-placeholder{color:#CCC}#bb .form-control::-webkit-input-placeholder,#bb .form-question::-webkit-input-placeholder{color:#CCC}#bb .bb-question-heading{position:relative;min-height:1px;padding-left:15px;padding-right:15px;text-align:center;margin-top:15px}@media (min-width: 800px){#bb .bb-question-heading{float:left;width:66.66667%}}@media (min-width: 800px){#bb .bb-question-heading{margin-left:16.66667%}}#bb .privacy-message{text-align:center;margin:15px 0 20px}#bb .booking-form-header{border-bottom:1px solid #666;padding-bottom:10px;margin-bottom:20px;font-size:1.6em}#bb .control-label{padding-right:0}@media (max-width: 767px){#bb .control-label{padding-bottom:5px}}#bb .booking-summary-item{margin-bottom:5px}#bb .booking-summary-item label{padding-right:0;text-align:right}#bb .form-group.check{margin-bottom:0}#bb .booking-summary-wrapper{margin-bottom:30px}#bb label{font-weight:normal}#bb .input-group-btn:last-child>.btn{border-left:none;padding-bottom:7px}#bb .input-group-btn:last-child>.btn.btn-lg,#bb .btn-group-lg.input-group-btn:last-child>.btn{padding:10px 16px}#bb .btn-primary,#bb .date-list-item .btn-secondary.selected{color:white;background-color:#3f8169}#bb .btn-primary:hover,#bb .date-list-item .btn-secondary.selected:hover,#bb .btn-primary:active,#bb .date-list-item .btn-secondary.selected:active,#bb .btn-primary:focus,#bb .date-list-item .btn-secondary.selected:focus{color:white;background-color:#96b5ab}#bb .btn-primary[disabled],#bb .date-list-item [disabled].btn-secondary.selected{background-color:#ccc}#bb .btn-icon{padding:0;margin:0;background:none;border:none}#bb .btn-icon:active{box-shadow:none}#bb .btn-icon:focus{outline:none}#bb .btn-icon[disabled]{color:#CCC}#bb .bb-list{margin-top:0}#bb .bb-list li{border-bottom:1px solid #CCCCCC;padding:10px 0;margin:0}#bb .bb-list li:last-child{border:none}#bb .summary-list{margin-bottom:20px}@media (min-width: 800px){#bb .vertical-row-align{display:flex;align-items:center}}#bb .breadcrumb{padding:0px;list-style:none;background-color:transparent;margin-bottom:30px}#bb .breadcrumb li{position:relative;float:left;width:16.66667%;min-height:1px;padding-left:15px;padding-right:15px}#bb .breadcrumb li button{color:#fff;border:1px solid #fff;font-size:12px;background-color:transparent;width:100%}#bb .breadcrumb li button:hover{border:1px solid #fff;color:#fff;background-color:#383838;text-decoration:none}#bb .breadcrumb li button.active{background-color:#fff;color:#383838}#bb .breadcrumb li button.passed{background-color:#383838;border-color:#383838}#bb .breadcrumb>li+li:before{content:none}#bb .search-form-wrapper{margin:10px 0}#bb .search-form-wrapper .form-group{margin-bottom:0}#bb .company-map-header{font-size:1.3em;margin-bottom:15px}#bb .bb-company-block .panel-heading{cursor:pointer}#bb .bb-company-block .store-details li{padding-bottom:5px}@media (min-width: 768px){#bb .bb-company-block{padding-right:0}}@media (max-width: 767px){#bb .bb-map-block{padding-bottom:15px}}#bb .map-canvas{height:800px}@media (max-width: 767px){#bb .map-canvas{height:400px}}#bb .gmnoprint img{max-width:none;max-height:none}#bb .gm-style img{max-width:none}#bb .gm-style label{width:auto;display:inline}#bb .calendar{padding-bottom:50px}#bb .calendar .week{padding:0 15px;list-style:none}#bb .calendar .day{width:12.85%;float:left;padding-right:10px}@media (max-width: 767px){#bb .calendar .day{padding:0 20px;width:100%}}#bb .calendar .day.navigation{width:5%;float:left}#bb .calendar .day.navigation .btn-icon{font-size:3em;color:inherit;float:left;margin-top:118px}#bb .calendar .day.navigation:last-of-type{padding-right:0}#bb .calendar .month-header{margin-bottom:30px}#bb .calendar .month-header .month-heading{margin:0;text-align:center;font-size:1.8em}#bb .calendar .day-header .previous{text-align:left}#bb .calendar .day-header .next{text-align:right}#bb .calendar .day-header .icon{font-size:2.5em}#bb .calendar .day-header .day-heading{text-align:center;font-size:1.4em}@media (min-width: 768px){#bb .calendar .day-header .day-heading{text-align:left;padding-left:30px}}#bb .calendar .panel-group .panel{border-radius:0;margin:0;border:none;border-bottom:1px #ddd solid;box-shadow:none}#bb .calendar .panel-group .accordian-group:first-child .panel{border-top:1px #ddd solid}#bb .calendar .panel-default>.panel-heading{background:none;padding:15px;position:relative;cursor:pointer;color:inherit}#bb .calendar .collapse-control{position:absolute;top:10px;right:10px;cursor:position}#bb .calendar .panel-default>.panel-heading+.panel-collapse .panel-body{border:none}#bb .calendar .panel-body{padding:0}#bb .calendar .panel-title{font-size:inherit}#bb .calendar .period-label{display:block;text-transform:uppercase;margin-bottom:10px;font-size:0.9em}#bb .calendar .time-slot{padding:15px 25px;cursor:pointer;text-align:center}#bb .calendar .time-slot:hover,#bb .calendar .time-slot.selected{background-color:#333;color:#FFF}#bb .calendar .panel-group .panel.expanded{background-color:#EEE}#bb .calendar .panel-group .panel.selected{background-color:#777;color:#FFF}#bb .calendar .panel-default.expanded>.panel-heading{padding-bottom:5px}#bb .calendar .panel-default[disabled],#bb .calendar .panel[disabled].expanded{background:none}#bb .calendar .panel-default[disabled] .panel-heading,#bb .calendar .panel[disabled].expanded .panel-heading{cursor:default;padding-bottom:15px}#bb .calendar .panel-default[disabled] .panel-collapse,#bb .calendar .panel[disabled].expanded .panel-collapse{display:none}#bb .calendar .panel-default[disabled] .panel-title,#bb .calendar .panel[disabled].expanded .panel-title{color:#CCC}#bb .calendar .actions{text-align:right}@media (max-width: 767px){#bb .calendar .actions{padding-right:20px}}#bb .confirmation-summary-container{margin-bottom:60px}#bb .confirmation-header,#bb .confirmation-change-options{text-align:center}#bb .confirmation-heading{margin-bottom:15px}#bb .confirmation-summary{border-top:1px solid #999;border-bottom:1px solid #999;margin:20px 0 15px 0;padding:20px 10px 10px 10px}#bb .confirmation-summary-item{margin-bottom:10px}#bb .address-item{margin-bottom:10px}#bb .address-item:last-child{margin-bottom:0}#bb .booking-export{padding-bottom:20px}#bb .print{padding-top:5px;text-align:right}#bb .calendar-export{line-height:42px}#bb .calendar-export-label{padding-right:10px}#bb .btn-change-booking{margin:0 auto}#bb .manage-booking{border-top:1px solid #999;padding:20px 0}#bb .bookings-details{margin-bottom:300px}#bb .move-done-msg{color:green}#bb .service-name{font-size:1.5em;margin-bottom:20px}#bb .service-image{margin-bottom:20px}#bb .service-image img{display:block;margin-left:auto;margin-right:auto}@media (min-width: 768px){#bb .service-image{margin-bottom:0}}#bb .service-description{margin-bottom:20px}#bb .service-price{font-size:2em;text-align:center}#bb .service-price .currency-symbol{font-size:1em}#bb .event-group .panel-default{position:relative;float:left;width:100%;min-height:1px;padding-left:15px;padding-right:15px;position:relative;min-height:1px;padding-left:15px;padding-right:15px;border:none;margin-bottom:30px}@media (min-width: 800px){#bb .event-group .panel-default{float:left;width:50%}}#bb .event-group .panel-default .panel-body{padding:0px}#bb .event-group .panel-default .btn-primary,#bb .event-group .panel-default .date-list-item .btn-secondary.selected,#bb .date-list-item .event-group .panel-default .btn-secondary.selected{color:#000}#bb .event-group .panel-default .btn-primary:hover,#bb .event-group .panel-default .date-list-item .btn-secondary.selected:hover,#bb .date-list-item .event-group .panel-default .btn-secondary.selected:hover{background-color:#000;color:#d33826}#bb .event-group .panel-default .item-name{font-size:14px;text-transform:uppercase;line-height:35px}#bb .event-group .panel-default .item-desc{position:absolute;display:none;z-index:100}#bb .event-group .panel-default .item-desc p{padding:15px}#bb .event-group .panel-default .item-img{padding:0px;background-color:#000}#bb .event-group .panel-default .item-description{background:#000}#bb .event-group .panel-default .service-select{background:#000}#bb .event-group .panel-default:hover .btn-primary,#bb .event-group .panel-default:hover .date-list-item .btn-secondary.selected,#bb .date-list-item .event-group .panel-default:hover .btn-secondary.selected{background-color:#000;color:#d33826}#bb .event-group .panel-default:hover .item-desc{display:block}#bb .event-group .panel-default:hover .item-img img{opacity:.6;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";filter:alpha(opacity=60)}#bb .date-chooser-heading{margin-bottom:30px}#bb .date-chooser{margin:0 0 20px 0}#bb .date-list-item{display:inline-block;padding-right:10px;padding-bottom:10px}#bb .date-list-item .btn-secondary{width:120px}#bb .event-list-heading{margin-bottom:20px}#bb .event-datetime{text-transform:uppercase}#bb .event-datetime .event-date{font-size:0.8em;display:block}#bb .event-datetime .event-time{font-size:1.7em;font-family:Georgia, Times, serif}#bb .bb-month-picker{margin-left:-15px;margin-right:-15px;margin-top:10px;margin-bottom:20px}#bb .bb-month-picker:before,#bb .bb-month-picker:after{content:" ";display:table}#bb .bb-month-picker:after{clear:both}#bb .bb-month-picker .bb-month{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width: 800px){#bb .bb-month-picker .bb-month{float:left;width:33.33333%}}#bb .bb-month-picker .bb-month table{margin:4px 5%}#bb .bb-month-picker td{text-align:center;padding:1px;opacity:0.5;height:36px;width:36px}#bb .bb-month-picker td.thisMonth{cursor:default;opacity:1}#bb .bb-month-picker td.thisMonth.available{cursor:pointer}#bb .bb-month-picker td.thisMonth.available .circle{background-color:#d33826;border-radius:50%;padding:6px 5px;height:30px;width:30px;text-align:center;border:1px solid #d33826}#bb .bb-month-picker td.thisMonth.available .circle:hover{background-color:#000;border:1px solid #000}#bb .bb-month-picker td.thisMonth.selected .circle{background-color:#000;border:1px solid #000}#bb .bb-month-picker td.thisMonth.today .circle{border:1px solid #FFF}#bb .bb-month-picker td.thisMonth.today .circle:hover{border:1px solid #FFF}#bb .bb-month-picker th{margin:0;color:#fff;text-align:center}#bb .bb-month-picker th.months{padding-bottom:10px}#bb .bb-month-picker th.days{font-weight:normal}#bb time.icon{font-size:0.875em;display:block;position:relative;width:7em;height:7em;background-color:#fff;border:1px solid #3f8169;border-radius:0.6em;overflow:hidden;margin-bottom:20px}#bb time.icon *{display:block;width:100%;font-size:1em;font-weight:bold;font-style:normal;text-align:center}#bb time.icon strong{position:absolute;top:0;padding:0.4em 0;color:#fff;background-color:#3f8169;height:25px;padding-top:5px}#bb time.icon em{position:absolute;top:50px;color:#3f8169}#bb [bb-events] time.icon{margin-top:0px;border-radius:5px}#bb [bb-events] time.icon strong{font-size:1em}#bb [bb-events] time.icon em{bottom:0;top:auto;font-size:1em}#bb [bb-events] time.icon span{top:0px}#bb time.icon span{width:100%;font-size:2.8em;letter-spacing:-0.05em;padding-top:0.7em;color:#2f2f2f}#bb .panel-event{border-bottom:1px solid #ccc}#bb table{color:#fff}#bb .ticket-box{width:100px}

/*# sourceMappingURL=maps/booking-widget.css.map */
