.clearfix:after {
  display: block;
  content: "";
  clear: both;
}
/** @pattern .box

A box is a unit of layout, a rectangle of content
positioned relative to other boxes, usually within a grid.
Boxes are laid out left-to-right (by default).
If there are more boxes than will fit in the width of
the grid (or other container), they drop below the
previous boxes. How exactly
this lays out is determined by the CSS `float` mechanism.

Boxes have no set width unless they are within a grid.
The grid defines modifiers to set the width of the boxes
such that they align with the grid.  This allows multiple
grids to coexist on the same page.

@example Boxes of various sizes
<div class="box" style="width: 25%"><p dummy></div>
<div class="box" style="width: 75%"><p dummy></div>
<div class="box" style="width: 50%"><p dummy></div>
<div class="box" style="width: 75%"><p dummy></div>
<div class="box" style="width: 25%"><p dummy></div>
<div style="clear: both"></div>
<!-- demo styles -->
<style>
.box { border: 1px solid #eee; height: 6em; }
.box:hover { border-color: red; }
</style>

 **/
.box {
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  float: left;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
.box img {
  max-width: 100%;
}
.box.auto- {
  /** Let the box retain its own natural (auto) width (the default). */
  width: auto;
}
.box.full-width- {
  /** Let the box assume the width of its parent row. */
  width: 100%;
}
.box.left- {
  /** Float the box to the left (default). */
  float: left;
}
.box.right- {
  /** Float the box to the right. */
  float: right;
  text-align: right;
}
.box.has-overflow {
  /**
           If a box contains elements which overflow,
           adding this class to the box allows them to be visible.
           */
  overflow: visible;
  z-index: 2;
}
.box .box-module {
  /** Create a framed module within a box, and have the edges
            of the module align with the grid.  Typically you will
            have other CSS that sets a border and/or background on
            the module.

       @example Box modules
       <div class="box" style="width: 25%">
         <p class="box-module" dummy>
       </div>
       <div class="box" style="width: 75%">
         <p class="box-module" dummy>
       </div>
       <div class="box" style="width: 50%">
         <p class="box-module" dummy>
       </div>
       <div class="box" style="width: 75%">
         <p class="box-module" dummy>
       </div>
       <div class="box" style="width: 25%">
         <p class="box-module" dummy>
       </div>
       <div style="clear: both"></div>
       <!-- demo styles -->
       <style>
         .box { border: 1px solid #eee; }
         .box:hover { border-color: red; }
         .box-module { background: #ccc; height: 6em; }
       </style>
       */
  width: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  position: relative;
  overflow: hidden;
  text-align: left;
}
.box .box-module + .box-module {
  margin-top: 20px;
}
/** @pattern .grid
A layout system which strives to align the edges of elements
vertically by constraining their horizontal dimensions to
integer multiples of a fixed dimension (called a modulus).

The default grid has a modulus of 60px, and 16 grids, for
a total width of 960px.

Grids are laid out as rows of boxes.

@example The default 960 grid
<div class="grid">
   <div class="eight- box"><p dummy></div>
   <div class="eight- box"><p dummy></div>
   <div class="four- box"><p dummy></div>
   <div class="four- box"><p dummy></div>
   <div class="two- box"><p dummy></div>
   <div class="two- box"><p dummy></div>
   <div class="one- box"><p dummy></div>
   <div class="one- box"><p dummy></div>
   <div class="one- box"><p dummy></div>
   <div class="one- box"><p dummy></div>
</div>
<!-- demo styles -->
<style>
  .box { border: 1px solid #eee; height: 6em; }
  .box:hover { border-color: red; }
</style>

The `grid` class itself is the container for the grid;
it establishes the overall size and margins, as well
as the size of the grid columns (the modulus).

The default grid layout is 16 columns wide.  Each
grid column is 40px wide with a gutter of 20px, for
a modulus of 60px.

The total width is 960px, including
half a gutter margin on each side, or 940px from the left
edge of the left column to the right edge of the right column.

**/
.grid {
  /* requires LESS 1.6
    // Generic setter mixin for setting any property to N*modulus
    .set ( @prop, @n, @modulus: @grid-modulus ){
        @{prop}: (@n * @modulus);
    }
    .set ( @prop, @n, compressed ) {
        .set( @prop, @n, @grid-X-modulus );
    }
    */
  margin: 0 auto;
  position: relative;
  width: 960px;
}
.grid:after {
  display: block;
  content: "";
  clear: both;
}
.grid .box {
  padding: 10px;
}
.grid .box.one- {
  width: 60px;
}
.grid .box.two- {
  width: 120px;
}
.grid .box.three- {
  width: 180px;
}
.grid .box.four- {
  width: 240px;
}
.grid .box.five- {
  width: 300px;
}
.grid .box.six- {
  width: 360px;
}
.grid .box.seven- {
  width: 420px;
}
.grid .box.eight- {
  width: 480px;
}
.grid .box.nine- {
  width: 540px;
}
.grid .box.ten- {
  width: 600px;
}
.grid .box.eleven- {
  width: 660px;
}
.grid .box.twelve- {
  width: 720px;
}
.grid .box.thirteen- {
  width: 780px;
}
.grid .box.fourteen- {
  width: 840px;
}
.grid .box.fifteen- {
  width: 900px;
}
.grid .box.sixteen- {
  width: 960px;
}
.grid .grid {
  width: 100%;
}
.grid .box.grid {
  /** Subgrids are boxes that are also grids.  The size of the
            box determines how many grid columns there are in the grid. */
  padding: 0px;
}
.grid .box .grid {
  max-width: 100%;
}
.grid .grid-row {
  /**
           Grid-rows provide additional control over the layout of boxes.
           They guarantee that each row will start on the left edge
           of the grid, and below the previous row.

           @example Using grid-row to break incomplete rows
           <div class="grid">
              <div class="grid-row">
                  <div class="eight- box"><p dummy></div>
                  <div class="four- box"><p dummy></div>
              </div>
              <div class="grid-row">
                  <div class="four- box"><p dummy></div>
                  <div class="eight- box"><p dummy></div>
                  <div class="four- box"><p dummy></div>
                  <div class="eight- box"><p dummy></div>
              </div>
              <div class="grid-row">
                  <div class="four- box"><p dummy></div>
                  <div class="four- box"><p dummy></div>
                  <div class="four- box"><p dummy></div>
                  <div class="four- box"><p dummy></div>
              </div>
           </div>
           <!-- demo styles -->
           <style>
           .box { border: 1px solid #eee; height: 6em; }
           .box:hover { border-color: red; }
           .grid-row + .grid-row { border-top: 2px solid blue; }
           </style>
        **/
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
}
.grid .grid-row:after {
  display: block;
  content: "";
  clear: both;
}
.grid .grid-row.reduced- {
  /**
               Reduce the width of the row by one grid on each side.
               */
  padding-right: 60px;
  padding-left: 60px;
}
.grid .grid-row.sortable- {
  /**
               Handles animated reordering of boxes within the row.
               */
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: relative;
}
html.csstransforms3d .grid .grid-row.sortable- .box {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: auto;
}
html.csstransforms3d .grid .grid-row.sortable- .box.has-overflow {
  -webkit-transform: translateZ(1px);
  -moz-transform: translateZ(1px);
  -ms-transform: translateZ(1px);
  -o-transform: translateZ(1px);
  transform: translateZ(1px);
  z-index: 1;
}
html.csstransitions .grid .grid-row.sortable- .box.ng-enter {
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
}
html.csstransitions .grid .grid-row.sortable- .box.ng-enter.ng-enter-active {
  opacity: 1;
}
html.csstransitions .grid .grid-row.sortable- .box.ng-leave {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
html.csstransitions .grid .grid-row.sortable- .box.ng-leave + .box {
  -webkit-transition: margin-left 0.3s;
  -moz-transition: margin-left 0.3s;
  -o-transition: margin-left 0.3s;
  transition: margin-left 0.3s;
  margin-left: 0;
}
html.csstransitions .grid .grid-row.sortable- .box.ng-leave.ng-leave-active {
  width: 0;
  opacity: 0;
}
html.csstransitions .grid .grid-row.sortable- .box.ng-leave.ng-leave-active + .box {
  margin-left: -20px;
}
html.csstransitions .grid .grid-row.sortable- .box.ng-animate-start {
  -ms-zoom: normal;
}
.grid .grid-row.sortable- .box.is-dragging {
  /**
                   The box that is beginning to be dragged.  May be used to style
                   the appearance of the element being dragged and its contents,
                   regardless of DnD mechanism used.
                   */
  background: transparent;
}
.grid .grid-row.sortable-.is-in-motion .box {
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  transition-property: -ms-transform;
  -webkit-transition-property: transform;
  -moz-transition-property: transform;
  -o-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.grid .grid-row.sortable-.using-h5dnd .box.is-in-flight {
  position: absolute;
  top: -100%;
  left: -100%;
}
.grid .grid-row.sortable-.using-touchdnd .box.is-in-flight {
  position: absolute;
  opacity: .75;
  -webkit-transition-duration: 0;
  -moz-transition-duration: 0;
  -o-transition-duration: 0;
  transition-duration: 0;
}
.grid .grid-rule {
  /** A horizontal rule which spans the width of the grid. */
  clear: both;
  margin: 10px;
  height: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.grid .grid-sidebar {
  /** A sidebar is a box which extends to the full height of the grid.
            A grid can have at most one sidebar, and it must be the
            first box in the grid.  All other boxes must be in
            `grid-row`s; the sidebar affects all sibling `grid-row`s which
            follow it.

            @example A sidebar in a grid
            <div class="responsive- grid">
                <div class="four- box left- grid-sidebar">
                    <div class="box-module">
                        <h2 dummy></h2>
                        <p dummy></p>
                    </div>
                </div>
                <div class="grid-row">
                    <div class="four- box"><p dummy></div>
                    <div class="four- box"><p dummy></div>
                    <div class="four- box"><p dummy></div>
                    <div class="four- box"><p dummy></div>
                    <div class="four- box"><p dummy></div>
                    <div class="four- box"><p dummy></div>
                </div>
            </div>
            <!-- demo styles -->
            <style>
            .box { border: 1px solid #eee; height: 6em; }
            .box:hover { border-color: red; }
            .box-module { background: #666; color: #eee; }
            </style>
        */
  position: absolute;
  top: 0;
  height: 100%;
}
.grid .grid-sidebar.box {
  padding-top: 0;
  padding-bottom: 0;
}
.grid .grid-sidebar.left- {
  left: 0;
}
.grid .grid-sidebar.right- {
  right: 0;
}
.grid .grid-sidebar.four-.left- ~ .grid-row {
  padding-left: 240px;
}
.grid .grid-sidebar.five-.left- ~ .grid-row {
  padding-left: 300px;
}
.grid .grid-sidebar.six-.left- ~ .grid-row {
  padding-left: 360px;
}
.grid .grid-sidebar.four-.right- ~ .grid-row {
  padding-right: 240px;
}
.grid .grid-sidebar.five-.right- ~ .grid-row {
  padding-right: 300px;
}
.grid .grid-sidebar.six-.right- ~ .grid-row {
  padding-right: 360px;
}
.grid .grid-sidebar > .box-module {
  height: 100%;
}
.grid.widescreen- {
  /** Expanded grid designed to utilize more of the space
        available on widescreen (1440px and wider) displays.
        If the grid is also responsive, it collapses to the
        smaller grid(s) on smaller screens.

        @example A widescreen (22 column) grid
        <div class="widescreen- responsive- grid">
          <div class="six- box"><p dummy></div>
          <div class="ten- box"><p dummy></div>
          <div class="six- box"><p dummy></div>
          <div class="six- box"><p dummy></div>
          <div class="four- box"<p dummy>></div>
          <div class="six- box"><p dummy></div>
          <div class="ten- box"><p dummy></div>
        </div>
        <!-- demo styles -->
        <style>
          .box { border: 1px solid #eee; height: 6em; }
          .box:hover { border-color: red; }
        </style>
        */
  width: 1320px;
}
@media (min-width: 1700px) {
  .grid.widescreen-.responsive- {
    width: 1680px;
  }
}
@media screen and (max-width: 1339px) and (min-width: 980px) {
  .grid.widescreen-.responsive- {
    width: 960px;
  }
}
.grid.responsive- {
  /**
       A grid that responds to the screen width at specified breakpoints,
       through a combination of reducing the total number of columns as
       well as changing the width the grid columns.

       @example A responsive grid
       <ul class="responsive- grid">
           <li class="four- box"><p dummy>
           <li class="four- box"><p dummy>
           <li class="four- box"><p dummy>
           <li class="four- box"><p dummy>
           <li class="four- box"><p dummy>
           <li class="four- box"><p dummy>
           <li class="four- box"><p dummy>
           <li class="four- box"><p dummy>
           <li class="four- box"><p dummy>
           <li class="four- box"><p dummy>
           <li class="four- box"><p dummy>
           <li class="four- box"><p dummy>
       </ul>
       <!-- dummy styles -->
       <style>
        .box { border: 1px solid #eee; height: 6em; }
        .box:hover { border-color: red; }
       </style>

       The number of grids is determined by where the screen width
       falls relative to three breakpoints: 980px, 740px, 580px.
       Additionally, for devices smaller than 380px (most phones),
       the modulus is reduced to allow for more columns.

       At screen widths of at least 980px, the grid has 16 columns.

       At screen widths less than 980px but at least 740px,
       the grid has 12 columns.

       At screen widths less than 740px but at least 580px,
       the grid has 9 columns.

       At screen widths less than 580px but at least 380px,
       the grid has 6 columns of full width.  This is only used
       when the device is in portrait orientation.

       At screen widths less than 380px, the columns are reduced in width.
       The grid has 6 columns in portrait orientation, and 9 columns
       in landscape.
       */
  max-width: 100%;
}
@media screen and (max-width: 979px) {
  .grid.responsive- {
    width: 720px;
  }
}
@media screen and (max-width: 739px) {
  .grid.responsive- {
    width: 540px;
  }
  .grid.responsive- .grid-row.reduced- {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 579px) {
  .grid.responsive- {
    width: 432px;
  }
  .grid.responsive- .grid-row.reduced- {
    padding-right: 24px;
    padding-left: 24px;
  }
  .grid.responsive- .grid-sidebar.four-.left- ~ .grid-row {
    padding-left: 192px;
  }
  .grid.responsive- .grid-sidebar.four-.right- ~ .grid-row {
    padding-right: 192px;
  }
}
@media screen and (max-width: 451px) {
  .grid.responsive- {
    width: 360px;
  }
  .grid.responsive- .grid-row.reduced- {
    padding-right: 0px;
    padding-left: 0px;
  }
  .grid.responsive- .grid-sidebar.four- {
    position: static;
    width: 100%;
  }
  .grid.responsive- .grid-sidebar.four-.left- ~ .grid-row {
    padding-left: 0px;
  }
  .grid.responsive- .grid-sidebar.four-.right- ~ .grid-row {
    padding-right: 0px;
  }
}
@media screen and (max-width: 359px) {
  .grid.responsive- {
    width: 288px;
  }
}
@media screen and (max-width: 579px) and (min-width: 452px), screen and (max-width: 359px) {
  .grid.responsive- .box.one- {
    width: 48px;
  }
  .grid.responsive- .box.two- {
    width: 96px;
  }
  .grid.responsive- .box.three- {
    width: 144px;
  }
  .grid.responsive- .box.four- {
    width: 192px;
  }
  .grid.responsive- .box.five- {
    width: 240px;
  }
  .grid.responsive- .box.six- {
    width: 288px;
  }
  .grid.responsive- .box.seven- {
    width: 336px;
  }
  .grid.responsive- .box.eight- {
    width: 384px;
  }
  .grid.responsive- .box.nine- {
    width: 432px;
  }
  .grid.responsive- .box.ten- {
    width: 480px;
  }
  .grid.responsive- .box.eleven- {
    width: 528px;
  }
  .grid.responsive- .box.twelve- {
    width: 576px;
  }
  .grid.responsive- .box.thirteen- {
    width: 624px;
  }
  .grid.responsive- .box.fourteen- {
    width: 672px;
  }
  .grid.responsive- .box.fifteen- {
    width: 720px;
  }
  .grid.responsive- .box.sixteen- {
    width: 768px;
  }
}
.bootstrap-horizon {
  /* Tables */
  /*!
 * Bootstrap v2.3.1
 *
 * Copyright 2012 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 @twitter by @mdo and @fat.
 */
  /* Allow for input prepend/append in search forms */
  /* White icons with optional class, or on hover/focus/active states of certain elements */
  /* move down carets for tabs */
  /** @pattern .glyph

Glyphs are small graphical elements, roughly the same size as text characters.
Implemented as a custom web font, glyphs can be manipulated using CSS
text effects.

@example The set of available glyphs
<ul>
<li><i class="glyph"></i> Default (placeholder)
<li><i class="app-center- glyph"></i> app-center- glyph
<li><i class="bang- glyph"></i> bang- glyph
<li><i class="check- glyph"></i> check- glyph
<li><i class="clock- glyph"></i> clock- glyph
<li><i class="columns- glyph"></i> columns- glyph
<li><i class="coverflow- glyph"></i> coverflow- glyph
<li><i class="down-caret- glyph"></i> down-caret- glyph
<li><i class="gear- glyph"></i> gear- glyph
<li><i class="grid- glyph"></i> grid- glyph
<li><i class="hamburger- glyph"></i> hamburger- glyph
<li><i class="health- glyph"></i> health- glyph
<li><i class="i- glyph"></i> i- glyph
<li><i class="launch- glyph"></i> launch- glyph
<li><i class="left- glyph"></i> left- glyph
<li><i class="list- glyph"></i> list- glyph
<li><i class="move- glyph"></i> move- glyph
<li><i class="move-to-beginning- glyph"></i> move-to-beginning- glyph
<li><i class="move-to-end- glyph"></i> move-to-end- glyph
<li><i class="play- glyph"></i> play- glyph
<li><i class="plus- glyph"></i> plus- glyph
<li><i class="power- glyph"></i> power- glyph
<li><i class="reload- glyph"></i> reload- glyph
<li><i class="reverse-play- glyph"></i> reverse-play- glyph
<li><i class="right- glyph"></i> right- glyph
<li><i class="search- glyph"></i> search- glyph
<li><i class="solid-disc- glyph"></i> solid-disc- glyph
<li><i class="solid-square- glyph"></i> solid-square- glyph
<li><i class="star- glyph"></i> star- glyph
<li><i class="sync- glyph"></i> sync- glyph
<li><i class="trash- glyph"></i> trash- glyph
<li><i class="user-group- glyph"></i> user-group- glyph
<li><i class="user- glyph"></i> user- glyph
<li><i class="x- glyph"></i> x- glyph
</ul>
<!-- demo style -->
<style>
li { float: left; width: 15em; margin: .5em;}
</style>

**/
  /** @pattern .frame

A container for one or more panes.  It may or may not have a visible
frame or border around it.  It serves as a fixed context within which
panes of content are positioned and sized.

@example A basic frame with one scrollable pane.
<div class="frame">
  <div class="vertically- scrollable- pane">
    <p dummy>
    <p dummy>
    <p dummy>
    <p dummy>
    <p dummy>
  </div>
</div>
<!-- demo style -->
<style> .frame { border: 4px solid #456; } </style>

Frames should only contain panes and the `frame-*` members defined below.
Intervening wrapper `<div>`s around panes will upset the layout, especially
if the panes are scrollable.  However,
see `frame-body` for a possible solution when wrapping panes in another `<div>`
is unavoidable.

**/
  /** @pattern .pane

A rectangular region of the screen, which holds content.

@example
<div class="pane">
  <p dummy="25s">
  <p dummy="25s">
  <p dummy="25s">
</div>

**/
  /** @pattern .chart
    A sized area within which graphical or textual elements
    are positioned.

    @example
    <div class="chart" style="width: 100px; height: 100px">
        <svg><circle cx="50" cy="50" r="50" fill="#fc0"/></svg>
    </div>
*/
  /** @pattern .factoid
    A simple infographic which presents a single metric
    as both a quantity and an image.

    @example
    <div class="factoid" style="width: 200px">
      <div class="factoid-image">
        <svg><circle cx="100" cy="75" r="75" fill="#fc0"/></svg>
      </div>
      <div class="factoid-quantity">100%</div>
      <div class="factoid-label">Test coverage</div>
    </div>
*/
  /** @pattern .spinner

Shown when waiting for server to respond
with data before rendering.

@example
<div class="spinner"></div>

**/
  /** @pattern .spinner

Shown when waiting for server to respond
with data before rendering.

@example[spinner-colors.html] Colored spinners
**/
  /* Fix space between grid spans when a tooltip or popover is added */
  /* Chevrons */
  /*** Begin - For Spring MVC Butterfly dialogs ***/
  /* For forms inside the dialog */
  /*** End - For Spring MVC Butterfly dialogs ***/
  /* ============================================================
 * bootstrapSwitch v1.8 by Larentis Mattia @SpiritualGuru
 * http://www.larentis.eu/
 *
 * Enhanced for radiobuttons by Stein, Peter @BdMdesigN
 * http://www.bdmdesign.org/
 *
 * Project site:
 * http://www.larentis.eu/switch/
 * ============================================================
 * Licensed under the Apache License, Version 2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 * ============================================================ */
  /* @group Base */
  /* @end */
  /* @group Single Chosen */
  /* @end */
  /* @group Results */
  /* @end */
  /* @group Multi Chosen */
  /* @end */
  /* @group Active  */
  /* @end */
  /* @group Disabled Support */
  /* @end */
  /* @group Right to Left */
  /* @end */
  /* @group Retina compatibility */
  /* @end */
}
.bootstrap-horizon h1,
.bootstrap-horizon h2,
.bootstrap-horizon h3 {
  line-height: 1;
}
.bootstrap-horizon h1 {
  font-size: 28px;
}
.bootstrap-horizon h2 {
  font-size: 21px;
}
.bootstrap-horizon h3 {
  font-size: 14px;
  font-weight: bold;
}
.bootstrap-horizon article,
.bootstrap-horizon aside,
.bootstrap-horizon details,
.bootstrap-horizon figcaption,
.bootstrap-horizon figure,
.bootstrap-horizon footer,
.bootstrap-horizon header,
.bootstrap-horizon hgroup,
.bootstrap-horizon nav,
.bootstrap-horizon section {
  display: block;
}
.bootstrap-horizon audio,
.bootstrap-horizon canvas,
.bootstrap-horizon video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
.bootstrap-horizon audio:not([controls]) {
  display: none;
}
.bootstrap-horizon html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
.bootstrap-horizon a:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.bootstrap-horizon a:hover,
.bootstrap-horizon a:active {
  outline: 0;
}
.bootstrap-horizon sub,
.bootstrap-horizon sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
.bootstrap-horizon sup {
  top: -0.5em;
}
.bootstrap-horizon sub {
  bottom: -0.25em;
}
.bootstrap-horizon img {
  /* Responsive images (ensure images don't scale beyond their parents) */
  max-width: 100%;
  /* Part 1: Set a maxium relative to the parent */
  width: auto\9;
  /* IE7-8 need help adjusting responsive images */
  height: auto;
  /* Part 2: Scale the height according to the width, otherwise you get stretching */
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}
.bootstrap-horizon #map_canvas img,
.bootstrap-horizon .google-maps img {
  max-width: none;
}
.bootstrap-horizon button,
.bootstrap-horizon input,
.bootstrap-horizon select,
.bootstrap-horizon textarea {
  margin: 0;
  font-size: 100%;
  vertical-align: middle;
}
.bootstrap-horizon button,
.bootstrap-horizon input {
  *overflow: visible;
  line-height: normal;
}
.bootstrap-horizon button::-moz-focus-inner,
.bootstrap-horizon input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.bootstrap-horizon button,
.bootstrap-horizon html input[type="button"],
.bootstrap-horizon input[type="reset"],
.bootstrap-horizon input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
.bootstrap-horizon label,
.bootstrap-horizon select,
.bootstrap-horizon button,
.bootstrap-horizon input[type="button"],
.bootstrap-horizon input[type="reset"],
.bootstrap-horizon input[type="submit"],
.bootstrap-horizon input[type="radio"],
.bootstrap-horizon input[type="checkbox"] {
  cursor: pointer;
}
.bootstrap-horizon input[type="search"] {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: textfield;
}
.bootstrap-horizon input[type="search"]::-webkit-search-decoration,
.bootstrap-horizon input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.bootstrap-horizon textarea {
  overflow: auto;
  vertical-align: top;
}
@media print {
  .bootstrap-horizon * {
    text-shadow: none !important;
    color: #000 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  .bootstrap-horizon a,
  .bootstrap-horizon a:visited {
    text-decoration: underline;
  }
  .bootstrap-horizon a[href]:after {
    content: " (" attr(href) ")";
  }
  .bootstrap-horizon abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .bootstrap-horizon .ir a:after,
  .bootstrap-horizon a[href^="javascript:"]:after,
  .bootstrap-horizon a[href^="#"]:after {
    content: "";
  }
  .bootstrap-horizon pre,
  .bootstrap-horizon blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  .bootstrap-horizon thead {
    display: table-header-group;
  }
  .bootstrap-horizon tr,
  .bootstrap-horizon img {
    page-break-inside: avoid;
  }
  .bootstrap-horizon img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  .bootstrap-horizon p,
  .bootstrap-horizon h2,
  .bootstrap-horizon h3 {
    orphans: 3;
    widows: 3;
  }
  .bootstrap-horizon h2,
  .bootstrap-horizon h3 {
    page-break-after: avoid;
  }
}
.bootstrap-horizon body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #333333;
  background-color: #ffffff;
}
.bootstrap-horizon a {
  color: #0088cc;
  text-decoration: none;
}
.bootstrap-horizon a:hover,
.bootstrap-horizon a:focus {
  color: #005580;
  text-decoration: underline;
}
.bootstrap-horizon .img-rounded {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.bootstrap-horizon .img-polaroid {
  padding: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.bootstrap-horizon .img-circle {
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  border-radius: 500px;
}
.bootstrap-horizon .row {
  margin-left: -20px;
}
.bootstrap-horizon .row:after {
  display: block;
  content: "";
  clear: both;
}
.bootstrap-horizon [class*="span"] {
  float: left;
  min-height: 1px;
  margin-left: 20px;
}
.bootstrap-horizon .container,
.bootstrap-horizon .navbar-static-top .container,
.bootstrap-horizon .navbar-fixed-top .container,
.bootstrap-horizon .navbar-fixed-bottom .container {
  width: 940px;
}
.bootstrap-horizon .span12 {
  width: 940px;
}
.bootstrap-horizon .span11 {
  width: 860px;
}
.bootstrap-horizon .span10 {
  width: 780px;
}
.bootstrap-horizon .span9 {
  width: 700px;
}
.bootstrap-horizon .span8 {
  width: 620px;
}
.bootstrap-horizon .span7 {
  width: 540px;
}
.bootstrap-horizon .span6 {
  width: 460px;
}
.bootstrap-horizon .span5 {
  width: 380px;
}
.bootstrap-horizon .span4 {
  width: 300px;
}
.bootstrap-horizon .span3 {
  width: 220px;
}
.bootstrap-horizon .span2 {
  width: 140px;
}
.bootstrap-horizon .span1 {
  width: 60px;
}
.bootstrap-horizon .offset12 {
  margin-left: 980px;
}
.bootstrap-horizon .offset11 {
  margin-left: 900px;
}
.bootstrap-horizon .offset10 {
  margin-left: 820px;
}
.bootstrap-horizon .offset9 {
  margin-left: 740px;
}
.bootstrap-horizon .offset8 {
  margin-left: 660px;
}
.bootstrap-horizon .offset7 {
  margin-left: 580px;
}
.bootstrap-horizon .offset6 {
  margin-left: 500px;
}
.bootstrap-horizon .offset5 {
  margin-left: 420px;
}
.bootstrap-horizon .offset4 {
  margin-left: 340px;
}
.bootstrap-horizon .offset3 {
  margin-left: 260px;
}
.bootstrap-horizon .offset2 {
  margin-left: 180px;
}
.bootstrap-horizon .offset1 {
  margin-left: 100px;
}
.bootstrap-horizon .row-fluid {
  width: 100%;
}
.bootstrap-horizon .row-fluid:after {
  display: block;
  content: "";
  clear: both;
}
.bootstrap-horizon .row-fluid [class*="span"] {
  display: block;
  width: 100%;
  min-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin-left: 2.12765957%;
  *margin-left: 2.07446809%;
}
.bootstrap-horizon .row-fluid [class*="span"]:first-child {
  margin-left: 0;
}
.bootstrap-horizon .row-fluid .controls-row [class*="span"] + [class*="span"] {
  margin-left: 2.12765957%;
}
.bootstrap-horizon .row-fluid .span12 {
  width: 100%;
  *width: 99.94680851%;
}
.bootstrap-horizon .row-fluid .span11 {
  width: 91.4893617%;
  *width: 91.43617021%;
}
.bootstrap-horizon .row-fluid .span10 {
  width: 82.9787234%;
  *width: 82.92553191%;
}
.bootstrap-horizon .row-fluid .span9 {
  width: 74.46808511%;
  *width: 74.41489362%;
}
.bootstrap-horizon .row-fluid .span8 {
  width: 65.95744681%;
  *width: 65.90425532%;
}
.bootstrap-horizon .row-fluid .span7 {
  width: 57.44680851%;
  *width: 57.39361702%;
}
.bootstrap-horizon .row-fluid .span6 {
  width: 48.93617021%;
  *width: 48.88297872%;
}
.bootstrap-horizon .row-fluid .span5 {
  width: 40.42553191%;
  *width: 40.37234043%;
}
.bootstrap-horizon .row-fluid .span4 {
  width: 31.91489362%;
  *width: 31.86170213%;
}
.bootstrap-horizon .row-fluid .span3 {
  width: 23.40425532%;
  *width: 23.35106383%;
}
.bootstrap-horizon .row-fluid .span2 {
  width: 14.89361702%;
  *width: 14.84042553%;
}
.bootstrap-horizon .row-fluid .span1 {
  width: 6.38297872%;
  *width: 6.32978723%;
}
.bootstrap-horizon .row-fluid .offset12 {
  margin-left: 104.25531915%;
  *margin-left: 104.14893617%;
}
.bootstrap-horizon .row-fluid .offset12:first-child {
  margin-left: 102.12765957%;
  *margin-left: 102.0212766%;
}
.bootstrap-horizon .row-fluid .offset11 {
  margin-left: 95.74468085%;
  *margin-left: 95.63829787%;
}
.bootstrap-horizon .row-fluid .offset11:first-child {
  margin-left: 93.61702128%;
  *margin-left: 93.5106383%;
}
.bootstrap-horizon .row-fluid .offset10 {
  margin-left: 87.23404255%;
  *margin-left: 87.12765957%;
}
.bootstrap-horizon .row-fluid .offset10:first-child {
  margin-left: 85.10638298%;
  *margin-left: 85%;
}
.bootstrap-horizon .row-fluid .offset9 {
  margin-left: 78.72340426%;
  *margin-left: 78.61702128%;
}
.bootstrap-horizon .row-fluid .offset9:first-child {
  margin-left: 76.59574468%;
  *margin-left: 76.4893617%;
}
.bootstrap-horizon .row-fluid .offset8 {
  margin-left: 70.21276596%;
  *margin-left: 70.10638298%;
}
.bootstrap-horizon .row-fluid .offset8:first-child {
  margin-left: 68.08510638%;
  *margin-left: 67.9787234%;
}
.bootstrap-horizon .row-fluid .offset7 {
  margin-left: 61.70212766%;
  *margin-left: 61.59574468%;
}
.bootstrap-horizon .row-fluid .offset7:first-child {
  margin-left: 59.57446809%;
  *margin-left: 59.46808511%;
}
.bootstrap-horizon .row-fluid .offset6 {
  margin-left: 53.19148936%;
  *margin-left: 53.08510638%;
}
.bootstrap-horizon .row-fluid .offset6:first-child {
  margin-left: 51.06382979%;
  *margin-left: 50.95744681%;
}
.bootstrap-horizon .row-fluid .offset5 {
  margin-left: 44.68085106%;
  *margin-left: 44.57446809%;
}
.bootstrap-horizon .row-fluid .offset5:first-child {
  margin-left: 42.55319149%;
  *margin-left: 42.44680851%;
}
.bootstrap-horizon .row-fluid .offset4 {
  margin-left: 36.17021277%;
  *margin-left: 36.06382979%;
}
.bootstrap-horizon .row-fluid .offset4:first-child {
  margin-left: 34.04255319%;
  *margin-left: 33.93617021%;
}
.bootstrap-horizon .row-fluid .offset3 {
  margin-left: 27.65957447%;
  *margin-left: 27.55319149%;
}
.bootstrap-horizon .row-fluid .offset3:first-child {
  margin-left: 25.53191489%;
  *margin-left: 25.42553191%;
}
.bootstrap-horizon .row-fluid .offset2 {
  margin-left: 19.14893617%;
  *margin-left: 19.04255319%;
}
.bootstrap-horizon .row-fluid .offset2:first-child {
  margin-left: 17.0212766%;
  *margin-left: 16.91489362%;
}
.bootstrap-horizon .row-fluid .offset1 {
  margin-left: 10.63829787%;
  *margin-left: 10.53191489%;
}
.bootstrap-horizon .row-fluid .offset1:first-child {
  margin-left: 8.5106383%;
  *margin-left: 8.40425532%;
}
.bootstrap-horizon [class*="span"].hide,
.bootstrap-horizon .row-fluid [class*="span"].hide {
  display: none;
}
.bootstrap-horizon [class*="span"].pull-right,
.bootstrap-horizon .row-fluid [class*="span"].pull-right {
  float: right;
}
.bootstrap-horizon .container {
  margin-right: auto;
  margin-left: auto;
}
.bootstrap-horizon .container:after {
  display: block;
  content: "";
  clear: both;
}
.bootstrap-horizon .container-fluid {
  padding-right: 20px;
  padding-left: 20px;
}
.bootstrap-horizon .container-fluid:after {
  display: block;
  content: "";
  clear: both;
}
.bootstrap-horizon p {
  margin: 0 0 10px;
}
.bootstrap-horizon .lead {
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: 200;
  line-height: 30px;
}
.bootstrap-horizon small {
  font-size: 85%;
}
.bootstrap-horizon strong {
  font-weight: bold;
}
.bootstrap-horizon em {
  font-style: italic;
}
.bootstrap-horizon cite {
  font-style: normal;
}
.bootstrap-horizon .muted {
  color: #999999;
}
.bootstrap-horizon a.muted:hover,
.bootstrap-horizon a.muted:focus {
  color: #808080;
}
.bootstrap-horizon .text-warning {
  color: #c09853;
}
.bootstrap-horizon a.text-warning:hover,
.bootstrap-horizon a.text-warning:focus {
  color: #a47e3c;
}
.bootstrap-horizon .text-error {
  color: #b94a48;
}
.bootstrap-horizon a.text-error:hover,
.bootstrap-horizon a.text-error:focus {
  color: #953b39;
}
.bootstrap-horizon .text-info {
  color: #3a87ad;
}
.bootstrap-horizon a.text-info:hover,
.bootstrap-horizon a.text-info:focus {
  color: #2d6987;
}
.bootstrap-horizon .text-success {
  color: #468847;
}
.bootstrap-horizon a.text-success:hover,
.bootstrap-horizon a.text-success:focus {
  color: #356635;
}
.bootstrap-horizon .text-left {
  text-align: left;
}
.bootstrap-horizon .text-right {
  text-align: right;
}
.bootstrap-horizon .text-center {
  text-align: center;
}
.bootstrap-horizon h1,
.bootstrap-horizon h2,
.bootstrap-horizon h3,
.bootstrap-horizon h4,
.bootstrap-horizon h5,
.bootstrap-horizon h6 {
  margin: 10px 0;
  font-family: inherit;
  font-weight: bold;
  line-height: 20px;
  color: inherit;
  text-rendering: optimizelegibility;
}
.bootstrap-horizon h1 small,
.bootstrap-horizon h2 small,
.bootstrap-horizon h3 small,
.bootstrap-horizon h4 small,
.bootstrap-horizon h5 small,
.bootstrap-horizon h6 small {
  font-weight: normal;
  line-height: 1;
  color: #999999;
}
.bootstrap-horizon h1,
.bootstrap-horizon h2,
.bootstrap-horizon h3 {
  line-height: 40px;
}
.bootstrap-horizon h1 {
  font-size: 38.5px;
}
.bootstrap-horizon h2 {
  font-size: 31.5px;
}
.bootstrap-horizon h3 {
  font-size: 24.5px;
}
.bootstrap-horizon h4 {
  font-size: 17.5px;
}
.bootstrap-horizon h5 {
  font-size: 14px;
}
.bootstrap-horizon h6 {
  font-size: 11.9px;
}
.bootstrap-horizon h1 small {
  font-size: 24.5px;
}
.bootstrap-horizon h2 small {
  font-size: 17.5px;
}
.bootstrap-horizon h3 small {
  font-size: 14px;
}
.bootstrap-horizon h4 small {
  font-size: 14px;
}
.bootstrap-horizon .page-header {
  padding-bottom: 9px;
  margin: 20px 0 30px;
  border-bottom: 1px solid #eeeeee;
}
.bootstrap-horizon ul,
.bootstrap-horizon ol {
  padding: 0;
  margin: 0 0 10px 25px;
}
.bootstrap-horizon ul ul,
.bootstrap-horizon ul ol,
.bootstrap-horizon ol ol,
.bootstrap-horizon ol ul {
  margin-bottom: 0;
}
.bootstrap-horizon li {
  line-height: 20px;
}
.bootstrap-horizon ul.unstyled,
.bootstrap-horizon ol.unstyled {
  margin-left: 0;
  list-style: none;
}
.bootstrap-horizon ul.inline,
.bootstrap-horizon ol.inline {
  margin-left: 0;
  list-style: none;
}
.bootstrap-horizon ul.inline > li,
.bootstrap-horizon ol.inline > li {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */
  *zoom: 1;
  padding-left: 5px;
  padding-right: 5px;
}
.bootstrap-horizon dl {
  margin-bottom: 20px;
}
.bootstrap-horizon dt,
.bootstrap-horizon dd {
  line-height: 20px;
}
.bootstrap-horizon dt {
  font-weight: bold;
}
.bootstrap-horizon dd {
  margin-left: 10px;
}
.bootstrap-horizon .dl-horizontal:after {
  display: block;
  content: "";
  clear: both;
}
.bootstrap-horizon .dl-horizontal dt {
  float: left;
  width: 160px;
  clear: left;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bootstrap-horizon .dl-horizontal dd {
  margin-left: 180px;
}
.bootstrap-horizon hr {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #ffffff;
}
.bootstrap-horizon abbr[title],
.bootstrap-horizon abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #999999;
}
.bootstrap-horizon abbr.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
.bootstrap-horizon blockquote {
  padding: 0 0 0 15px;
  margin: 0 0 20px;
  border-left: 5px solid #eeeeee;
}
.bootstrap-horizon blockquote p {
  margin-bottom: 0;
  font-size: 17.5px;
  font-weight: 300;
  line-height: 1.25;
}
.bootstrap-horizon blockquote small {
  display: block;
  line-height: 20px;
  color: #999999;
}
.bootstrap-horizon blockquote small:before {
  content: '\2014 \00A0';
}
.bootstrap-horizon blockquote.pull-right {
  float: right;
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
}
.bootstrap-horizon blockquote.pull-right p,
.bootstrap-horizon blockquote.pull-right small {
  text-align: right;
}
.bootstrap-horizon blockquote.pull-right small:before {
  content: '';
}
.bootstrap-horizon blockquote.pull-right small:after {
  content: '\00A0 \2014';
}
.bootstrap-horizon q:before,
.bootstrap-horizon q:after,
.bootstrap-horizon blockquote:before,
.bootstrap-horizon blockquote:after {
  content: "";
}
.bootstrap-horizon address {
  display: block;
  margin-bottom: 20px;
  font-style: normal;
  line-height: 20px;
}
.bootstrap-horizon code,
.bootstrap-horizon pre {
  padding: 0 3px 2px;
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  font-size: 12px;
  color: #333333;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.bootstrap-horizon code {
  padding: 2px 4px;
  color: #d14;
  background-color: #f7f7f9;
  border: 1px solid #e1e1e8;
  white-space: nowrap;
}
.bootstrap-horizon pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 20px;
  word-break: break-all;
  word-wrap: break-word;
  white-space: pre;
  white-space: pre-wrap;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.bootstrap-horizon pre.prettyprint {
  margin-bottom: 20px;
}
.bootstrap-horizon pre code {
  padding: 0;
  color: inherit;
  white-space: pre;
  white-space: pre-wrap;
  background-color: transparent;
  border: 0;
}
.bootstrap-horizon .pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.bootstrap-horizon form {
  margin: 0 0 20px;
}
.bootstrap-horizon fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}
.bootstrap-horizon legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: 40px;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
.bootstrap-horizon legend small {
  font-size: 15px;
  color: #999999;
}
.bootstrap-horizon label,
.bootstrap-horizon input,
.bootstrap-horizon button,
.bootstrap-horizon select,
.bootstrap-horizon textarea {
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
}
.bootstrap-horizon input,
.bootstrap-horizon button,
.bootstrap-horizon select,
.bootstrap-horizon textarea {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.bootstrap-horizon label {
  display: block;
  margin-bottom: 5px;
}
.bootstrap-horizon select,
.bootstrap-horizon textarea,
.bootstrap-horizon input[type="text"],
.bootstrap-horizon input[type="password"],
.bootstrap-horizon input[type="datetime"],
.bootstrap-horizon input[type="datetime-local"],
.bootstrap-horizon input[type="date"],
.bootstrap-horizon input[type="month"],
.bootstrap-horizon input[type="time"],
.bootstrap-horizon input[type="week"],
.bootstrap-horizon input[type="number"],
.bootstrap-horizon input[type="email"],
.bootstrap-horizon input[type="url"],
.bootstrap-horizon input[type="search"],
.bootstrap-horizon input[type="tel"],
.bootstrap-horizon input[type="color"],
.bootstrap-horizon .uneditable-input {
  display: inline-block;
  height: 20px;
  padding: 4px 6px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 20px;
  color: #555555;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  vertical-align: middle;
}
.bootstrap-horizon input,
.bootstrap-horizon textarea,
.bootstrap-horizon .uneditable-input {
  width: 206px;
}
.bootstrap-horizon textarea {
  height: auto;
}
.bootstrap-horizon textarea,
.bootstrap-horizon input[type="text"],
.bootstrap-horizon input[type="password"],
.bootstrap-horizon input[type="datetime"],
.bootstrap-horizon input[type="datetime-local"],
.bootstrap-horizon input[type="date"],
.bootstrap-horizon input[type="month"],
.bootstrap-horizon input[type="time"],
.bootstrap-horizon input[type="week"],
.bootstrap-horizon input[type="number"],
.bootstrap-horizon input[type="email"],
.bootstrap-horizon input[type="url"],
.bootstrap-horizon input[type="search"],
.bootstrap-horizon input[type="tel"],
.bootstrap-horizon input[type="color"],
.bootstrap-horizon .uneditable-input {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border linear .2s, box-shadow linear .2s;
  -moz-transition: border linear .2s, box-shadow linear .2s;
  -o-transition: border linear .2s, box-shadow linear .2s;
  transition: border linear .2s, box-shadow linear .2s;
}
.bootstrap-horizon textarea:focus,
.bootstrap-horizon input[type="text"]:focus,
.bootstrap-horizon input[type="password"]:focus,
.bootstrap-horizon input[type="datetime"]:focus,
.bootstrap-horizon input[type="datetime-local"]:focus,
.bootstrap-horizon input[type="date"]:focus,
.bootstrap-horizon input[type="month"]:focus,
.bootstrap-horizon input[type="time"]:focus,
.bootstrap-horizon input[type="week"]:focus,
.bootstrap-horizon input[type="number"]:focus,
.bootstrap-horizon input[type="email"]:focus,
.bootstrap-horizon input[type="url"]:focus,
.bootstrap-horizon input[type="search"]:focus,
.bootstrap-horizon input[type="tel"]:focus,
.bootstrap-horizon input[type="color"]:focus,
.bootstrap-horizon .uneditable-input:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  outline: thin dotted \9;
  /* IE6-9 */
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
}
.bootstrap-horizon input[type="radio"],
.bootstrap-horizon input[type="checkbox"] {
  margin: 4px 0 0;
  *margin-top: 0;
  /* IE7 */
  margin-top: 1px \9;
  /* IE8-9 */
  line-height: normal;
}
.bootstrap-horizon input[type="file"],
.bootstrap-horizon input[type="image"],
.bootstrap-horizon input[type="submit"],
.bootstrap-horizon input[type="reset"],
.bootstrap-horizon input[type="button"],
.bootstrap-horizon input[type="radio"],
.bootstrap-horizon input[type="checkbox"] {
  width: auto;
}
.bootstrap-horizon select,
.bootstrap-horizon input[type="file"] {
  height: 30px;
  /* In IE7, the height of the select element cannot be changed by height, only font-size */
  *margin-top: 4px;
  /* For IE7, add top margin to align select with labels */
  line-height: 30px;
}
.bootstrap-horizon select {
  width: 220px;
  border: 1px solid #cccccc;
  background-color: #ffffff;
}
.bootstrap-horizon select[multiple],
.bootstrap-horizon select[size] {
  height: auto;
}
.bootstrap-horizon select:focus,
.bootstrap-horizon input[type="file"]:focus,
.bootstrap-horizon input[type="radio"]:focus,
.bootstrap-horizon input[type="checkbox"]:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.bootstrap-horizon .uneditable-input,
.bootstrap-horizon .uneditable-textarea {
  color: #999999;
  background-color: #fcfcfc;
  border-color: #cccccc;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  cursor: not-allowed;
}
.bootstrap-horizon .uneditable-input {
  overflow: hidden;
  white-space: nowrap;
}
.bootstrap-horizon .uneditable-textarea {
  width: auto;
  height: auto;
}
.bootstrap-horizon input:-moz-placeholder,
.bootstrap-horizon textarea:-moz-placeholder {
  color: #999999;
}
.bootstrap-horizon input:-ms-input-placeholder,
.bootstrap-horizon textarea:-ms-input-placeholder {
  color: #999999;
}
.bootstrap-horizon input::-webkit-input-placeholder,
.bootstrap-horizon textarea::-webkit-input-placeholder {
  color: #999999;
}
.bootstrap-horizon .radio,
.bootstrap-horizon .checkbox {
  min-height: 20px;
  padding-left: 20px;
}
.bootstrap-horizon .radio input[type="radio"],
.bootstrap-horizon .checkbox input[type="checkbox"] {
  float: left;
  margin-left: -20px;
}
.bootstrap-horizon .controls > .radio:first-child,
.bootstrap-horizon .controls > .checkbox:first-child {
  padding-top: 5px;
}
.bootstrap-horizon .radio.inline,
.bootstrap-horizon .checkbox.inline {
  display: inline-block;
  padding-top: 5px;
  margin-bottom: 0;
  vertical-align: middle;
}
.bootstrap-horizon .radio.inline + .radio.inline,
.bootstrap-horizon .checkbox.inline + .checkbox.inline {
  margin-left: 10px;
}
.bootstrap-horizon .input-mini {
  width: 60px;
}
.bootstrap-horizon .input-small {
  width: 90px;
}
.bootstrap-horizon .input-medium {
  width: 150px;
}
.bootstrap-horizon .input-large {
  width: 210px;
}
.bootstrap-horizon .input-xlarge {
  width: 270px;
}
.bootstrap-horizon .input-xxlarge {
  width: 530px;
}
.bootstrap-horizon input[class*="span"],
.bootstrap-horizon select[class*="span"],
.bootstrap-horizon textarea[class*="span"],
.bootstrap-horizon .uneditable-input[class*="span"],
.bootstrap-horizon .row-fluid input[class*="span"],
.bootstrap-horizon .row-fluid select[class*="span"],
.bootstrap-horizon .row-fluid textarea[class*="span"],
.bootstrap-horizon .row-fluid .uneditable-input[class*="span"] {
  float: none;
  margin-left: 0;
}
.bootstrap-horizon .input-append input[class*="span"],
.bootstrap-horizon .input-append .uneditable-input[class*="span"],
.bootstrap-horizon .input-prepend input[class*="span"],
.bootstrap-horizon .input-prepend .uneditable-input[class*="span"],
.bootstrap-horizon .row-fluid input[class*="span"],
.bootstrap-horizon .row-fluid select[class*="span"],
.bootstrap-horizon .row-fluid textarea[class*="span"],
.bootstrap-horizon .row-fluid .uneditable-input[class*="span"],
.bootstrap-horizon .row-fluid .input-prepend [class*="span"],
.bootstrap-horizon .row-fluid .input-append [class*="span"] {
  display: inline-block;
}
.bootstrap-horizon input,
.bootstrap-horizon textarea,
.bootstrap-horizon .uneditable-input {
  margin-left: 0;
}
.bootstrap-horizon .controls-row [class*="span"] + [class*="span"] {
  margin-left: 20px;
}
.bootstrap-horizon input.span12,
.bootstrap-horizon textarea.span12,
.bootstrap-horizon .uneditable-input.span12 {
  width: 926px;
}
.bootstrap-horizon input.span11,
.bootstrap-horizon textarea.span11,
.bootstrap-horizon .uneditable-input.span11 {
  width: 846px;
}
.bootstrap-horizon input.span10,
.bootstrap-horizon textarea.span10,
.bootstrap-horizon .uneditable-input.span10 {
  width: 766px;
}
.bootstrap-horizon input.span9,
.bootstrap-horizon textarea.span9,
.bootstrap-horizon .uneditable-input.span9 {
  width: 686px;
}
.bootstrap-horizon input.span8,
.bootstrap-horizon textarea.span8,
.bootstrap-horizon .uneditable-input.span8 {
  width: 606px;
}
.bootstrap-horizon input.span7,
.bootstrap-horizon textarea.span7,
.bootstrap-horizon .uneditable-input.span7 {
  width: 526px;
}
.bootstrap-horizon input.span6,
.bootstrap-horizon textarea.span6,
.bootstrap-horizon .uneditable-input.span6 {
  width: 446px;
}
.bootstrap-horizon input.span5,
.bootstrap-horizon textarea.span5,
.bootstrap-horizon .uneditable-input.span5 {
  width: 366px;
}
.bootstrap-horizon input.span4,
.bootstrap-horizon textarea.span4,
.bootstrap-horizon .uneditable-input.span4 {
  width: 286px;
}
.bootstrap-horizon input.span3,
.bootstrap-horizon textarea.span3,
.bootstrap-horizon .uneditable-input.span3 {
  width: 206px;
}
.bootstrap-horizon input.span2,
.bootstrap-horizon textarea.span2,
.bootstrap-horizon .uneditable-input.span2 {
  width: 126px;
}
.bootstrap-horizon input.span1,
.bootstrap-horizon textarea.span1,
.bootstrap-horizon .uneditable-input.span1 {
  width: 46px;
}
.bootstrap-horizon .controls-row:after {
  display: block;
  content: "";
  clear: both;
}
.bootstrap-horizon .controls-row [class*="span"],
.bootstrap-horizon .row-fluid .controls-row [class*="span"] {
  float: left;
}
.bootstrap-horizon .controls-row .checkbox[class*="span"],
.bootstrap-horizon .controls-row .radio[class*="span"] {
  padding-top: 5px;
}
.bootstrap-horizon input[disabled],
.bootstrap-horizon select[disabled],
.bootstrap-horizon textarea[disabled],
.bootstrap-horizon input[readonly],
.bootstrap-horizon select[readonly],
.bootstrap-horizon textarea[readonly] {
  cursor: not-allowed;
  background-color: #eeeeee;
}
.bootstrap-horizon input[type="radio"][disabled],
.bootstrap-horizon input[type="checkbox"][disabled],
.bootstrap-horizon input[type="radio"][readonly],
.bootstrap-horizon input[type="checkbox"][readonly] {
  background-color: transparent;
}
.bootstrap-horizon .control-group.warning .control-label,
.bootstrap-horizon .control-group.warning .help-block,
.bootstrap-horizon .control-group.warning .help-inline {
  color: #c09853;
}
.bootstrap-horizon .control-group.warning .checkbox,
.bootstrap-horizon .control-group.warning .radio,
.bootstrap-horizon .control-group.warning input,
.bootstrap-horizon .control-group.warning select,
.bootstrap-horizon .control-group.warning textarea {
  color: #c09853;
}
.bootstrap-horizon .control-group.warning input,
.bootstrap-horizon .control-group.warning select,
.bootstrap-horizon .control-group.warning textarea {
  border-color: #c09853;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.bootstrap-horizon .control-group.warning input:focus,
.bootstrap-horizon .control-group.warning select:focus,
.bootstrap-horizon .control-group.warning textarea:focus {
  border-color: #a47e3c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
}
.bootstrap-horizon .control-group.warning .input-prepend .add-on,
.bootstrap-horizon .control-group.warning .input-append .add-on {
  color: #c09853;
  background-color: #fcf8e3;
  border-color: #c09853;
}
.bootstrap-horizon .control-group.error .control-label,
.bootstrap-horizon .control-group.error .help-block,
.bootstrap-horizon .control-group.error .help-inline {
  color: #b94a48;
}
.bootstrap-horizon .control-group.error .checkbox,
.bootstrap-horizon .control-group.error .radio,
.bootstrap-horizon .control-group.error input,
.bootstrap-horizon .control-group.error select,
.bootstrap-horizon .control-group.error textarea {
  color: #b94a48;
}
.bootstrap-horizon .control-group.error input,
.bootstrap-horizon .control-group.error select,
.bootstrap-horizon .control-group.error textarea {
  border-color: #b94a48;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.bootstrap-horizon .control-group.error input:focus,
.bootstrap-horizon .control-group.error select:focus,
.bootstrap-horizon .control-group.error textarea:focus {
  border-color: #953b39;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
}
.bootstrap-horizon .control-group.error .input-prepend .add-on,
.bootstrap-horizon .control-group.error .input-append .add-on {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #b94a48;
}
.bootstrap-horizon .control-group.success .control-label,
.bootstrap-horizon .control-group.success .help-block,
.bootstrap-horizon .control-group.success .help-inline {
  color: #468847;
}
.bootstrap-horizon .control-group.success .checkbox,
.bootstrap-horizon .control-group.success .radio,
.bootstrap-horizon .control-group.success input,
.bootstrap-horizon .control-group.success select,
.bootstrap-horizon .control-group.success textarea {
  color: #468847;
}
.bootstrap-horizon .control-group.success input,
.bootstrap-horizon .control-group.success select,
.bootstrap-horizon .control-group.success textarea {
  border-color: #468847;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.bootstrap-horizon .control-group.success input:focus,
.bootstrap-horizon .control-group.success select:focus,
.bootstrap-horizon .control-group.success textarea:focus {
  border-color: #356635;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
}
.bootstrap-horizon .control-group.success .input-prepend .add-on,
.bootstrap-horizon .control-group.success .input-append .add-on {
  color: #468847;
  background-color: #dff0d8;
  border-color: #468847;
}
.bootstrap-horizon .control-group.info .control-label,
.bootstrap-horizon .control-group.info .help-block,
.bootstrap-horizon .control-group.info .help-inline {
  color: #3a87ad;
}
.bootstrap-horizon .control-group.info .checkbox,
.bootstrap-horizon .control-group.info .radio,
.bootstrap-horizon .control-group.info input,
.bootstrap-horizon .control-group.info select,
.bootstrap-horizon .control-group.info textarea {
  color: #3a87ad;
}
.bootstrap-horizon .control-group.info input,
.bootstrap-horizon .control-group.info select,
.bootstrap-horizon .control-group.info textarea {
  border-color: #3a87ad;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.bootstrap-horizon .control-group.info input:focus,
.bootstrap-horizon .control-group.info select:focus,
.bootstrap-horizon .control-group.info textarea:focus {
  border-color: #2d6987;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
}
.bootstrap-horizon .control-group.info .input-prepend .add-on,
.bootstrap-horizon .control-group.info .input-append .add-on {
  color: #3a87ad;
  background-color: #d9edf7;
  border-color: #3a87ad;
}
.bootstrap-horizon input:focus:invalid,
.bootstrap-horizon textarea:focus:invalid,
.bootstrap-horizon select:focus:invalid {
  color: #b94a48;
  border-color: #ee5f5b;
}
.bootstrap-horizon input:focus:invalid:focus,
.bootstrap-horizon textarea:focus:invalid:focus,
.bootstrap-horizon select:focus:invalid:focus {
  border-color: #e9322d;
  -webkit-box-shadow: 0 0 6px #f8b9b7;
  -moz-box-shadow: 0 0 6px #f8b9b7;
  box-shadow: 0 0 6px #f8b9b7;
}
.bootstrap-horizon .form-actions {
  padding: 19px 20px 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-top: 1px solid #e5e5e5;
}
.bootstrap-horizon .form-actions:after {
  display: block;
  content: "";
  clear: both;
}
.bootstrap-horizon .help-block,
.bootstrap-horizon .help-inline {
  color: #595959;
}
.bootstrap-horizon .help-block {
  display: block;
  margin-bottom: 10px;
}
.bootstrap-horizon .help-inline {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */
  *zoom: 1;
  vertical-align: middle;
  padding-left: 5px;
}
.bootstrap-horizon .input-append,
.bootstrap-horizon .input-prepend {
  display: inline-block;
  margin-bottom: 10px;
  vertical-align: middle;
  font-size: 0;
  white-space: nowrap;
}
.bootstrap-horizon .input-append input,
.bootstrap-horizon .input-prepend input,
.bootstrap-horizon .input-append select,
.bootstrap-horizon .input-prepend select,
.bootstrap-horizon .input-append .uneditable-input,
.bootstrap-horizon .input-prepend .uneditable-input,
.bootstrap-horizon .input-append .dropdown-menu,
.bootstrap-horizon .input-prepend .dropdown-menu,
.bootstrap-horizon .input-append .popover,
.bootstrap-horizon .input-prepend .popover {
  font-size: 14px;
}
.bootstrap-horizon .input-append input,
.bootstrap-horizon .input-prepend input,
.bootstrap-horizon .input-append select,
.bootstrap-horizon .input-prepend select,
.bootstrap-horizon .input-append .uneditable-input,
.bootstrap-horizon .input-prepend .uneditable-input {
  position: relative;
  margin-bottom: 0;
  *margin-left: 0;
  vertical-align: top;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
.bootstrap-horizon .input-append input:focus,
.bootstrap-horizon .input-prepend input:focus,
.bootstrap-horizon .input-append select:focus,
.bootstrap-horizon .input-prepend select:focus,
.bootstrap-horizon .input-append .uneditable-input:focus,
.bootstrap-horizon .input-prepend .uneditable-input:focus {
  z-index: 2;
}
.bootstrap-horizon .input-append .add-on,
.bootstrap-horizon .input-prepend .add-on {
  display: inline-block;
  width: auto;
  height: 20px;
  min-width: 16px;
  padding: 4px 5px;
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
  text-align: center;
  text-shadow: 0 1px 0 #ffffff;
  background-color: #eeeeee;
  border: 1px solid #ccc;
}
.bootstrap-horizon .input-append .add-on,
.bootstrap-horizon .input-prepend .add-on,
.bootstrap-horizon .input-append .btn,
.bootstrap-horizon .input-prepend .btn,
.bootstrap-horizon .input-append .btn-group > .dropdown-toggle,
.bootstrap-horizon .input-prepend .btn-group > .dropdown-toggle {
  vertical-align: top;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.bootstrap-horizon .input-append .active,
.bootstrap-horizon .input-prepend .active {
  background-color: #a9dba9;
  border-color: #46a546;
}
.bootstrap-horizon .input-prepend .add-on,
.bootstrap-horizon .input-prepend .btn {
  margin-right: -1px;
}
.bootstrap-horizon .input-prepend .add-on:first-child,
.bootstrap-horizon .input-prepend .btn:first-child {
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}
.bootstrap-horizon .input-append input,
.bootstrap-horizon .input-append select,
.bootstrap-horizon .input-append .uneditable-input {
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}
.bootstrap-horizon .input-append input + .btn-group .btn:last-child,
.bootstrap-horizon .input-append select + .btn-group .btn:last-child,
.bootstrap-horizon .input-append .uneditable-input + .btn-group .btn:last-child {
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
.bootstrap-horizon .input-append .add-on,
.bootstrap-horizon .input-append .btn,
.bootstrap-horizon .input-append .btn-group {
  margin-left: -1px;
}
.bootstrap-horizon .input-append .add-on:last-child,
.bootstrap-horizon .input-append .btn:last-child,
.bootstrap-horizon .input-append .btn-group:last-child > .dropdown-toggle {
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
.bootstrap-horizon .input-prepend.input-append input,
.bootstrap-horizon .input-prepend.input-append select,
.bootstrap-horizon .input-prepend.input-append .uneditable-input {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.bootstrap-horizon .input-prepend.input-append input + .btn-group .btn,
.bootstrap-horizon .input-prepend.input-append select + .btn-group .btn,
.bootstrap-horizon .input-prepend.input-append .uneditable-input + .btn-group .btn {
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
.bootstrap-horizon .input-prepend.input-append .add-on:first-child,
.bootstrap-horizon .input-prepend.input-append .btn:first-child {
  margin-right: -1px;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}
.bootstrap-horizon .input-prepend.input-append .add-on:last-child,
.bootstrap-horizon .input-prepend.input-append .btn:last-child {
  margin-left: -1px;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
.bootstrap-horizon .input-prepend.input-append .btn-group:first-child {
  margin-left: 0;
}
.bootstrap-horizon input.search-query {
  padding-right: 14px;
  padding-right: 4px \9;
  padding-left: 14px;
  padding-left: 4px \9;
  /* IE7-8 doesn't have border-radius, so don't indent the padding */
  margin-bottom: 0;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.bootstrap-horizon .form-search .input-append .search-query,
.bootstrap-horizon .form-search .input-prepend .search-query {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.bootstrap-horizon .form-search .input-append .search-query {
  -webkit-border-radius: 14px 0 0 14px;
  -moz-border-radius: 14px 0 0 14px;
  border-radius: 14px 0 0 14px;
}
.bootstrap-horizon .form-search .input-append .btn {
  -webkit-border-radius: 0 14px 14px 0;
  -moz-border-radius: 0 14px 14px 0;
  border-radius: 0 14px 14px 0;
}
.bootstrap-horizon .form-search .input-prepend .search-query {
  -webkit-border-radius: 0 14px 14px 0;
  -moz-border-radius: 0 14px 14px 0;
  border-radius: 0 14px 14px 0;
}
.bootstrap-horizon .form-search .input-prepend .btn {
  -webkit-border-radius: 14px 0 0 14px;
  -moz-border-radius: 14px 0 0 14px;
  border-radius: 14px 0 0 14px;
}
.bootstrap-horizon .form-search input,
.bootstrap-horizon .form-inline input,
.bootstrap-horizon .form-horizontal input,
.bootstrap-horizon .form-search textarea,
.bootstrap-horizon .form-inline textarea,
.bootstrap-horizon .form-horizontal textarea,
.bootstrap-horizon .form-search select,
.bootstrap-horizon .form-inline select,
.bootstrap-horizon .form-horizontal select,
.bootstrap-horizon .form-search .help-inline,
.bootstrap-horizon .form-inline .help-inline,
.bootstrap-horizon .form-horizontal .help-inline,
.bootstrap-horizon .form-search .uneditable-input,
.bootstrap-horizon .form-inline .uneditable-input,
.bootstrap-horizon .form-horizontal .uneditable-input,
.bootstrap-horizon .form-search .input-prepend,
.bootstrap-horizon .form-inline .input-prepend,
.bootstrap-horizon .form-horizontal .input-prepend,
.bootstrap-horizon .form-search .input-append,
.bootstrap-horizon .form-inline .input-append,
.bootstrap-horizon .form-horizontal .input-append {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */
  *zoom: 1;
  margin-bottom: 0;
  vertical-align: middle;
}
.bootstrap-horizon .form-search .hide,
.bootstrap-horizon .form-inline .hide,
.bootstrap-horizon .form-horizontal .hide {
  display: none;
}
.bootstrap-horizon .form-search label,
.bootstrap-horizon .form-inline label,
.bootstrap-horizon .form-search .btn-group,
.bootstrap-horizon .form-inline .btn-group {
  display: inline-block;
}
.bootstrap-horizon .form-search .input-append,
.bootstrap-horizon .form-inline .input-append,
.bootstrap-horizon .form-search .input-prepend,
.bootstrap-horizon .form-inline .input-prepend {
  margin-bottom: 0;
}
.bootstrap-horizon .form-search .radio,
.bootstrap-horizon .form-search .checkbox,
.bootstrap-horizon .form-inline .radio,
.bootstrap-horizon .form-inline .checkbox {
  padding-left: 0;
  margin-bottom: 0;
  vertical-align: middle;
}
.bootstrap-horizon .form-search .radio input[type="radio"],
.bootstrap-horizon .form-search .checkbox input[type="checkbox"],
.bootstrap-horizon .form-inline .radio input[type="radio"],
.bootstrap-horizon .form-inline .checkbox input[type="checkbox"] {
  float: left;
  margin-right: 3px;
  margin-left: 0;
}
.bootstrap-horizon .control-group {
  margin-bottom: 10px;
}
.bootstrap-horizon legend + .control-group {
  margin-top: 20px;
  -webkit-margin-top-collapse: separate;
}
.bootstrap-horizon .form-horizontal .control-group {
  margin-bottom: 20px;
}
.bootstrap-horizon .form-horizontal .control-group:after {
  display: block;
  content: "";
  clear: both;
}
.bootstrap-horizon .form-horizontal .control-label {
  float: left;
  width: 165px;
  padding-top: 5px;
  text-align: right;
  cursor: inherit;
}
.bootstrap-horizon .form-horizontal .controls {
  *display: inline-block;
  *padding-left: 20px;
  margin-left: 180px;
  *margin-left: 0;
}
.bootstrap-horizon .form-horizontal .controls:first-child {
  *padding-left: 180px;
}
.bootstrap-horizon .form-horizontal .help-block {
  margin-bottom: 0;
}
.bootstrap-horizon .form-horizontal input + .help-block,
.bootstrap-horizon .form-horizontal select + .help-block,
.bootstrap-horizon .form-horizontal textarea + .help-block,
.bootstrap-horizon .form-horizontal .uneditable-input + .help-block,
.bootstrap-horizon .form-horizontal .input-prepend + .help-block,
.bootstrap-horizon .form-horizontal .input-append + .help-block {
  margin-top: 10px;
}
.bootstrap-horizon .form-horizontal .form-actions {
  padding-left: 180px;
}
.bootstrap-horizon table {
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
}
.bootstrap-horizon .table {
  width: 100%;
  margin-bottom: 20px;
}
.bootstrap-horizon .table th,
.bootstrap-horizon .table td {
  padding: 8px;
  line-height: 20px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #dddddd;
}
.bootstrap-horizon .table th {
  font-weight: bold;
}
.bootstrap-horizon .table thead th {
  vertical-align: bottom;
}
.bootstrap-horizon .table caption + thead tr:first-child th,
.bootstrap-horizon .table caption + thead tr:first-child td,
.bootstrap-horizon .table colgroup + thead tr:first-child th,
.bootstrap-horizon .table colgroup + thead tr:first-child td,
.bootstrap-horizon .table thead:first-child tr:first-child th,
.bootstrap-horizon .table thead:first-child tr:first-child td {
  border-top: 0;
}
.bootstrap-horizon .table tbody + tbody {
  border-top: 2px solid #dddddd;
}
.bootstrap-horizon .table .table {
  background-color: #ffffff;
}
.bootstrap-horizon .table-condensed th,
.bootstrap-horizon .table-condensed td {
  padding: 4px 5px;
}
.bootstrap-horizon .table-bordered {
  border: 1px solid #dddddd;
  border-collapse: separate;
  *border-collapse: collapse;
  border-left: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.bootstrap-horizon .table-bordered th,
.bootstrap-horizon .table-bordered td {
  border-left: 1px solid #dddddd;
}
.bootstrap-horizon .table-bordered caption + thead tr:first-child th,
.bootstrap-horizon .table-bordered caption + tbody tr:first-child th,
.bootstrap-horizon .table-bordered caption + tbody tr:first-child td,
.bootstrap-horizon .table-bordered colgroup + thead tr:first-child th,
.bootstrap-horizon .table-bordered colgroup + tbody tr:first-child th,
.bootstrap-horizon .table-bordered colgroup + tbody tr:first-child td,
.bootstrap-horizon .table-bordered thead:first-child tr:first-child th,
.bootstrap-horizon .table-bordered tbody:first-child tr:first-child th,
.bootstrap-horizon .table-bordered tbody:first-child tr:first-child td {
  border-top: 0;
}
.bootstrap-horizon .table-bordered thead:first-child tr:first-child > th:first-child,
.bootstrap-horizon .table-bordered tbody:first-child tr:first-child > td:first-child,
.bootstrap-horizon .table-bordered tbody:first-child tr:first-child > th:first-child {
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
}
.bootstrap-horizon .table-bordered thead:first-child tr:first-child > th:last-child,
.bootstrap-horizon .table-bordered tbody:first-child tr:first-child > td:last-child,
.bootstrap-horizon .table-bordered tbody:first-child tr:first-child > th:last-child {
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
}
.bootstrap-horizon .table-bordered thead:last-child tr:last-child > th:first-child,
.bootstrap-horizon .table-bordered tbody:last-child tr:last-child > td:first-child,
.bootstrap-horizon .table-bordered tbody:last-child tr:last-child > th:first-child,
.bootstrap-horizon .table-bordered tfoot:last-child tr:last-child > td:first-child,
.bootstrap-horizon .table-bordered tfoot:last-child tr:last-child > th:first-child {
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
}
.bootstrap-horizon .table-bordered thead:last-child tr:last-child > th:last-child,
.bootstrap-horizon .table-bordered tbody:last-child tr:last-child > td:last-child,
.bootstrap-horizon .table-bordered tbody:last-child tr:last-child > th:last-child,
.bootstrap-horizon .table-bordered tfoot:last-child tr:last-child > td:last-child,
.bootstrap-horizon .table-bordered tfoot:last-child tr:last-child > th:last-child {
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
}
.bootstrap-horizon .table-bordered tfoot + tbody:last-child tr:last-child td:first-child {
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-left-radius: 0;
}
.bootstrap-horizon .table-bordered tfoot + tbody:last-child tr:last-child td:last-child {
  -webkit-border-bottom-right-radius: 0;
  -moz-border-radius-bottomright: 0;
  border-bottom-right-radius: 0;
}
.bootstrap-horizon .table-bordered caption + thead tr:first-child th:first-child,
.bootstrap-horizon .table-bordered caption + tbody tr:first-child td:first-child,
.bootstrap-horizon .table-bordered colgroup + thead tr:first-child th:first-child,
.bootstrap-horizon .table-bordered colgroup + tbody tr:first-child td:first-child {
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
}
.bootstrap-horizon .table-bordered caption + thead tr:first-child th:last-child,
.bootstrap-horizon .table-bordered caption + tbody tr:first-child td:last-child,
.bootstrap-horizon .table-bordered colgroup + thead tr:first-child th:last-child,
.bootstrap-horizon .table-bordered colgroup + tbody tr:first-child td:last-child {
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
}
.bootstrap-horizon .table-striped tbody > tr:nth-child(odd) > td,
.bootstrap-horizon .table-striped tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}
.bootstrap-horizon .table-hover tbody tr:hover > td,
.bootstrap-horizon .table-hover tbody tr:hover > th {
  background-color: #f5f5f5;
}
.bootstrap-horizon table td[class*="span"],
.bootstrap-horizon table th[class*="span"],
.bootstrap-horizon .row-fluid table td[class*="span"],
.bootstrap-horizon .row-fluid table th[class*="span"] {
  display: table-cell;
  float: none;
  margin-left: 0;
}
.bootstrap-horizon .table td.span1,
.bootstrap-horizon .table th.span1 {
  float: none;
  width: 44px;
  margin-left: 0;
}
.bootstrap-horizon .table td.span2,
.bootstrap-horizon .table th.span2 {
  float: none;
  width: 124px;
  margin-left: 0;
}
.bootstrap-horizon .table td.span3,
.bootstrap-horizon .table th.span3 {
  float: none;
  width: 204px;
  margin-left: 0;
}
.bootstrap-horizon .table td.span4,
.bootstrap-horizon .table th.span4 {
  float: none;
  width: 284px;
  margin-left: 0;
}
.bootstrap-horizon .table td.span5,
.bootstrap-horizon .table th.span5 {
  float: none;
  width: 364px;
  margin-left: 0;
}
.bootstrap-horizon .table td.span6,
.bootstrap-horizon .table th.span6 {
  float: none;
  width: 444px;
  margin-left: 0;
}
.bootstrap-horizon .table td.span7,
.bootstrap-horizon .table th.span7 {
  float: none;
  width: 524px;
  margin-left: 0;
}
.bootstrap-horizon .table td.span8,
.bootstrap-horizon .table th.span8 {
  float: none;
  width: 604px;
  margin-left: 0;
}
.bootstrap-horizon .table td.span9,
.bootstrap-horizon .table th.span9 {
  float: none;
  width: 684px;
  margin-left: 0;
}
.bootstrap-horizon .table td.span10,
.bootstrap-horizon .table th.span10 {
  float: none;
  width: 764px;
  margin-left: 0;
}
.bootstrap-horizon .table td.span11,
.bootstrap-horizon .table th.span11 {
  float: none;
  width: 844px;
  margin-left: 0;
}
.bootstrap-horizon .table td.span12,
.bootstrap-horizon .table th.span12 {
  float: none;
  width: 924px;
  margin-left: 0;
}
.bootstrap-horizon .table tbody tr.success > td {
  background-color: #dff0d8;
}
.bootstrap-horizon .table tbody tr.error > td {
  background-color: #f2dede;
}
.bootstrap-horizon .table tbody tr.warning > td {
  background-color: #fcf8e3;
}
.bootstrap-horizon .table tbody tr.info > td {
  background-color: #d9edf7;
}
.bootstrap-horizon .table-hover tbody tr.success:hover > td {
  background-color: #d0e9c6;
}
.bootstrap-horizon .table-hover tbody tr.error:hover > td {
  background-color: #ebcccc;
}
.bootstrap-horizon .table-hover tbody tr.warning:hover > td {
  background-color: #faf2cc;
}
.bootstrap-horizon .table-hover tbody tr.info:hover > td {
  background-color: #c4e3f3;
}
.bootstrap-horizon [class^="icon-"],
.bootstrap-horizon [class*=" icon-"] {
  display: inline-block;
  width: 14px;
  height: 14px;
  *margin-right: .3em;
  line-height: 14px;
  vertical-align: text-top;
  background-image: url("images/glyphicons-halflings.png");
  background-position: 14px 14px;
  background-repeat: no-repeat;
  margin-top: 1px;
}
.bootstrap-horizon .icon-white,
.bootstrap-horizon .nav-pills > .active > a > [class^="icon-"],
.bootstrap-horizon .nav-pills > .active > a > [class*=" icon-"],
.bootstrap-horizon .nav-list > .active > a > [class^="icon-"],
.bootstrap-horizon .nav-list > .active > a > [class*=" icon-"],
.bootstrap-horizon .navbar-inverse .nav > .active > a > [class^="icon-"],
.bootstrap-horizon .navbar-inverse .nav > .active > a > [class*=" icon-"],
.bootstrap-horizon .dropdown-menu > li > a:hover > [class^="icon-"],
.bootstrap-horizon .dropdown-menu > li > a:focus > [class^="icon-"],
.bootstrap-horizon .dropdown-menu > li > a:hover > [class*=" icon-"],
.bootstrap-horizon .dropdown-menu > li > a:focus > [class*=" icon-"],
.bootstrap-horizon .dropdown-menu > .active > a > [class^="icon-"],
.bootstrap-horizon .dropdown-menu > .active > a > [class*=" icon-"],
.bootstrap-horizon .dropdown-submenu:hover > a > [class^="icon-"],
.bootstrap-horizon .dropdown-submenu:focus > a > [class^="icon-"],
.bootstrap-horizon .dropdown-submenu:hover > a > [class*=" icon-"],
.bootstrap-horizon .dropdown-submenu:focus > a > [class*=" icon-"] {
  background-image: url("images/glyphicons-halflings-white.png");
}
.bootstrap-horizon .icon-glass {
  background-position: 0      0;
}
.bootstrap-horizon .icon-music {
  background-position: -24px 0;
}
.bootstrap-horizon .icon-search {
  background-position: -48px 0;
}
.bootstrap-horizon .icon-envelope {
  background-position: -72px 0;
}
.bootstrap-horizon .icon-heart {
  background-position: -96px 0;
}
.bootstrap-horizon .icon-star {
  background-position: -120px 0;
}
.bootstrap-horizon .icon-star-empty {
  background-position: -144px 0;
}
.bootstrap-horizon .icon-user {
  background-position: -168px 0;
}
.bootstrap-horizon .icon-film {
  background-position: -192px 0;
}
.bootstrap-horizon .icon-th-large {
  background-position: -216px 0;
}
.bootstrap-horizon .icon-th {
  background-position: -240px 0;
}
.bootstrap-horizon .icon-th-list {
  background-position: -264px 0;
}
.bootstrap-horizon .icon-ok {
  background-position: -288px 0;
}
.bootstrap-horizon .icon-remove {
  background-position: -312px 0;
}
.bootstrap-horizon .icon-zoom-in {
  background-position: -336px 0;
}
.bootstrap-horizon .icon-zoom-out {
  background-position: -360px 0;
}
.bootstrap-horizon .icon-off {
  background-position: -384px 0;
}
.bootstrap-horizon .icon-signal {
  background-position: -408px 0;
}
.bootstrap-horizon .icon-cog {
  background-position: -432px 0;
}
.bootstrap-horizon .icon-trash {
  background-position: -456px 0;
}
.bootstrap-horizon .icon-home {
  background-position: 0 -24px;
}
.bootstrap-horizon .icon-file {
  background-position: -24px -24px;
}
.bootstrap-horizon .icon-time {
  background-position: -48px -24px;
}
.bootstrap-horizon .icon-road {
  background-position: -72px -24px;
}
.bootstrap-horizon .icon-download-alt {
  background-position: -96px -24px;
}
.bootstrap-horizon .icon-download {
  background-position: -120px -24px;
}
.bootstrap-horizon .icon-upload {
  background-position: -144px -24px;
}
.bootstrap-horizon .icon-inbox {
  background-position: -168px -24px;
}
.bootstrap-horizon .icon-play-circle {
  background-position: -192px -24px;
}
.bootstrap-horizon .icon-repeat {
  background-position: -216px -24px;
}
.bootstrap-horizon .icon-refresh {
  background-position: -240px -24px;
}
.bootstrap-horizon .icon-list-alt {
  background-position: -264px -24px;
}
.bootstrap-horizon .icon-lock {
  background-position: -287px -24px;
}
.bootstrap-horizon .icon-flag {
  background-position: -312px -24px;
}
.bootstrap-horizon .icon-headphones {
  background-position: -336px -24px;
}
.bootstrap-horizon .icon-volume-off {
  background-position: -360px -24px;
}
.bootstrap-horizon .icon-volume-down {
  background-position: -384px -24px;
}
.bootstrap-horizon .icon-volume-up {
  background-position: -408px -24px;
}
.bootstrap-horizon .icon-qrcode {
  background-position: -432px -24px;
}
.bootstrap-horizon .icon-barcode {
  background-position: -456px -24px;
}
.bootstrap-horizon .icon-tag {
  background-position: 0 -48px;
}
.bootstrap-horizon .icon-tags {
  background-position: -25px -48px;
}
.bootstrap-horizon .icon-book {
  background-position: -48px -48px;
}
.bootstrap-horizon .icon-bookmark {
  background-position: -72px -48px;
}
.bootstrap-horizon .icon-print {
  background-position: -96px -48px;
}
.bootstrap-horizon .icon-camera {
  background-position: -120px -48px;
}
.bootstrap-horizon .icon-font {
  background-position: -144px -48px;
}
.bootstrap-horizon .icon-bold {
  background-position: -167px -48px;
}
.bootstrap-horizon .icon-italic {
  background-position: -192px -48px;
}
.bootstrap-horizon .icon-text-height {
  background-position: -216px -48px;
}
.bootstrap-horizon .icon-text-width {
  background-position: -240px -48px;
}
.bootstrap-horizon .icon-align-left {
  background-position: -264px -48px;
}
.bootstrap-horizon .icon-align-center {
  background-position: -288px -48px;
}
.bootstrap-horizon .icon-align-right {
  background-position: -312px -48px;
}
.bootstrap-horizon .icon-align-justify {
  background-position: -336px -48px;
}
.bootstrap-horizon .icon-list {
  background-position: -360px -48px;
}
.bootstrap-horizon .icon-indent-left {
  background-position: -384px -48px;
}
.bootstrap-horizon .icon-indent-right {
  background-position: -408px -48px;
}
.bootstrap-horizon .icon-facetime-video {
  background-position: -432px -48px;
}
.bootstrap-horizon .icon-picture {
  background-position: -456px -48px;
}
.bootstrap-horizon .icon-pencil {
  background-position: 0 -72px;
}
.bootstrap-horizon .icon-map-marker {
  background-position: -24px -72px;
}
.bootstrap-horizon .icon-adjust {
  background-position: -48px -72px;
}
.bootstrap-horizon .icon-tint {
  background-position: -72px -72px;
}
.bootstrap-horizon .icon-edit {
  background-position: -96px -72px;
}
.bootstrap-horizon .icon-share {
  background-position: -120px -72px;
}
.bootstrap-horizon .icon-check {
  background-position: -144px -72px;
}
.bootstrap-horizon .icon-move {
  background-position: -168px -72px;
}
.bootstrap-horizon .icon-step-backward {
  background-position: -192px -72px;
}
.bootstrap-horizon .icon-fast-backward {
  background-position: -216px -72px;
}
.bootstrap-horizon .icon-backward {
  background-position: -240px -72px;
}
.bootstrap-horizon .icon-play {
  background-position: -264px -72px;
}
.bootstrap-horizon .icon-pause {
  background-position: -288px -72px;
}
.bootstrap-horizon .icon-stop {
  background-position: -312px -72px;
}
.bootstrap-horizon .icon-forward {
  background-position: -336px -72px;
}
.bootstrap-horizon .icon-fast-forward {
  background-position: -360px -72px;
}
.bootstrap-horizon .icon-step-forward {
  background-position: -384px -72px;
}
.bootstrap-horizon .icon-eject {
  background-position: -408px -72px;
}
.bootstrap-horizon .icon-chevron-left {
  background-position: -432px -72px;
}
.bootstrap-horizon .icon-chevron-right {
  background-position: -456px -72px;
}
.bootstrap-horizon .icon-plus-sign {
  background-position: 0 -96px;
}
.bootstrap-horizon .icon-minus-sign {
  background-position: -24px -96px;
}
.bootstrap-horizon .icon-remove-sign {
  background-position: -48px -96px;
}
.bootstrap-horizon .icon-ok-sign {
  background-position: -72px -96px;
}
.bootstrap-horizon .icon-question-sign {
  background-position: -96px -96px;
}
.bootstrap-horizon .icon-info-sign {
  background-position: -120px -96px;
}
.bootstrap-horizon .icon-screenshot {
  background-position: -144px -96px;
}
.bootstrap-horizon .icon-remove-circle {
  background-position: -168px -96px;
}
.bootstrap-horizon .icon-ok-circle {
  background-position: -192px -96px;
}
.bootstrap-horizon .icon-ban-circle {
  background-position: -216px -96px;
}
.bootstrap-horizon .icon-arrow-left {
  background-position: -240px -96px;
}
.bootstrap-horizon .icon-arrow-right {
  background-position: -264px -96px;
}
.bootstrap-horizon .icon-arrow-up {
  background-position: -289px -96px;
}
.bootstrap-horizon .icon-arrow-down {
  background-position: -312px -96px;
}
.bootstrap-horizon .icon-share-alt {
  background-position: -336px -96px;
}
.bootstrap-horizon .icon-resize-full {
  background-position: -360px -96px;
}
.bootstrap-horizon .icon-resize-small {
  background-position: -384px -96px;
}
.bootstrap-horizon .icon-plus {
  background-position: -408px -96px;
}
.bootstrap-horizon .icon-minus {
  background-position: -433px -96px;
}
.bootstrap-horizon .icon-asterisk {
  background-position: -456px -96px;
}
.bootstrap-horizon .icon-exclamation-sign {
  background-position: 0 -120px;
}
.bootstrap-horizon .icon-gift {
  background-position: -24px -120px;
}
.bootstrap-horizon .icon-leaf {
  background-position: -48px -120px;
}
.bootstrap-horizon .icon-fire {
  background-position: -72px -120px;
}
.bootstrap-horizon .icon-eye-open {
  background-position: -96px -120px;
}
.bootstrap-horizon .icon-eye-close {
  background-position: -120px -120px;
}
.bootstrap-horizon .icon-warning-sign {
  background-position: -144px -120px;
}
.bootstrap-horizon .icon-plane {
  background-position: -168px -120px;
}
.bootstrap-horizon .icon-calendar {
  background-position: -192px -120px;
}
.bootstrap-horizon .icon-random {
  background-position: -216px -120px;
  width: 16px;
}
.bootstrap-horizon .icon-comment {
  background-position: -240px -120px;
}
.bootstrap-horizon .icon-magnet {
  background-position: -264px -120px;
}
.bootstrap-horizon .icon-chevron-up {
  background-position: -288px -120px;
}
.bootstrap-horizon .icon-chevron-down {
  background-position: -313px -119px;
}
.bootstrap-horizon .icon-retweet {
  background-position: -336px -120px;
}
.bootstrap-horizon .icon-shopping-cart {
  background-position: -360px -120px;
}
.bootstrap-horizon .icon-folder-close {
  background-position: -384px -120px;
  width: 16px;
}
.bootstrap-horizon .icon-folder-open {
  background-position: -408px -120px;
  width: 16px;
}
.bootstrap-horizon .icon-resize-vertical {
  background-position: -432px -119px;
}
.bootstrap-horizon .icon-resize-horizontal {
  background-position: -456px -118px;
}
.bootstrap-horizon .icon-hdd {
  background-position: 0 -144px;
}
.bootstrap-horizon .icon-bullhorn {
  background-position: -24px -144px;
}
.bootstrap-horizon .icon-bell {
  background-position: -48px -144px;
}
.bootstrap-horizon .icon-certificate {
  background-position: -72px -144px;
}
.bootstrap-horizon .icon-thumbs-up {
  background-position: -96px -144px;
}
.bootstrap-horizon .icon-thumbs-down {
  background-position: -120px -144px;
}
.bootstrap-horizon .icon-hand-right {
  background-position: -144px -144px;
}
.bootstrap-horizon .icon-hand-left {
  background-position: -168px -144px;
}
.bootstrap-horizon .icon-hand-up {
  background-position: -192px -144px;
}
.bootstrap-horizon .icon-hand-down {
  background-position: -216px -144px;
}
.bootstrap-horizon .icon-circle-arrow-right {
  background-position: -240px -144px;
}
.bootstrap-horizon .icon-circle-arrow-left {
  background-position: -264px -144px;
}
.bootstrap-horizon .icon-circle-arrow-up {
  background-position: -288px -144px;
}
.bootstrap-horizon .icon-circle-arrow-down {
  background-position: -312px -144px;
}
.bootstrap-horizon .icon-globe {
  background-position: -336px -144px;
}
.bootstrap-horizon .icon-wrench {
  background-position: -360px -144px;
}
.bootstrap-horizon .icon-tasks {
  background-position: -384px -144px;
}
.bootstrap-horizon .icon-filter {
  background-position: -408px -144px;
}
.bootstrap-horizon .icon-briefcase {
  background-position: -432px -144px;
}
.bootstrap-horizon .icon-fullscreen {
  background-position: -456px -144px;
}
.bootstrap-horizon .dropup,
.bootstrap-horizon .dropdown {
  position: relative;
}
.bootstrap-horizon .dropdown-toggle {
  *margin-bottom: -3px;
}
.bootstrap-horizon .dropdown-toggle:active,
.bootstrap-horizon .open .dropdown-toggle {
  outline: 0;
}
.bootstrap-horizon .caret {
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: top;
  border-top: 4px solid #000000;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
}
.bootstrap-horizon .dropdown .caret {
  margin-top: 8px;
  margin-left: 2px;
}
.bootstrap-horizon .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  *border-right-width: 2px;
  *border-bottom-width: 2px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.bootstrap-horizon .dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.bootstrap-horizon .dropdown-menu .divider {
  *width: 100%;
  height: 1px;
  margin: 9px 1px;
  *margin: -5px 0 5px;
  overflow: hidden;
  background-color: #e5e5e5;
  border-bottom: 1px solid #ffffff;
}
.bootstrap-horizon .dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 20px;
  color: #333333;
  white-space: nowrap;
}
.bootstrap-horizon .dropdown-menu > li > a:hover,
.bootstrap-horizon .dropdown-menu > li > a:focus,
.bootstrap-horizon .dropdown-submenu:hover > a,
.bootstrap-horizon .dropdown-submenu:focus > a {
  text-decoration: none;
  color: #ffffff;
  background-color: transparent;
  background-color: #0081c2;
  background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
  background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
  background-image: -o-linear-gradient(top, #0088cc, #0077b3);
  background-image: linear-gradient(to bottom, #0088cc, #0077b3);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
}
.bootstrap-horizon .dropdown-menu > .active > a,
.bootstrap-horizon .dropdown-menu > .active > a:hover,
.bootstrap-horizon .dropdown-menu > .active > a:focus {
  color: #ffffff;
  text-decoration: none;
  outline: 0;
  background-color: transparent;
  background-color: #0081c2;
  background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
  background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
  background-image: -o-linear-gradient(top, #0088cc, #0077b3);
  background-image: linear-gradient(to bottom, #0088cc, #0077b3);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
}
.bootstrap-horizon .dropdown-menu > .disabled > a,
.bootstrap-horizon .dropdown-menu > .disabled > a:hover,
.bootstrap-horizon .dropdown-menu > .disabled > a:focus {
  color: #999999;
}
.bootstrap-horizon .dropdown-menu > .disabled > a:hover,
.bootstrap-horizon .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: default;
}
.bootstrap-horizon .open {
  *z-index: 1000;
}
.bootstrap-horizon .open > .dropdown-menu {
  display: block;
}
.bootstrap-horizon .pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.bootstrap-horizon .dropup .caret,
.bootstrap-horizon .navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid #000000;
  content: "";
}
.bootstrap-horizon .dropup .dropdown-menu,
.bootstrap-horizon .navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}
.bootstrap-horizon .dropdown-submenu {
  position: relative;
}
.bootstrap-horizon .dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px 6px;
  border-radius: 0 6px 6px 6px;
}
.bootstrap-horizon .dropdown-submenu:hover > .dropdown-menu {
  display: block;
}
.bootstrap-horizon .dropup .dropdown-submenu > .dropdown-menu {
  top: auto;
  bottom: 0;
  margin-top: 0;
  margin-bottom: -2px;
  -webkit-border-radius: 5px 5px 5px 0;
  -moz-border-radius: 5px 5px 5px 0;
  border-radius: 5px 5px 5px 0;
}
.bootstrap-horizon .dropdown-submenu > a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #cccccc;
  margin-top: 5px;
  margin-right: -10px;
}
.bootstrap-horizon .dropdown-submenu:hover > a:after {
  border-left-color: #ffffff;
}
.bootstrap-horizon .dropdown-submenu.pull-left {
  float: none;
}
.bootstrap-horizon .dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}
.bootstrap-horizon .dropdown .dropdown-menu .nav-header {
  padding-left: 20px;
  padding-right: 20px;
}
.bootstrap-horizon .typeahead {
  z-index: 1051;
  margin-top: 2px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.bootstrap-horizon .well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.bootstrap-horizon .well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}
.bootstrap-horizon .well-large {
  padding: 24px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.bootstrap-horizon .well-small {
  padding: 9px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.bootstrap-horizon .fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -moz-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.bootstrap-horizon .fade.in {
  opacity: 1;
}
.bootstrap-horizon .collapse {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  -moz-transition: height 0.35s ease;
  -o-transition: height 0.35s ease;
  transition: height 0.35s ease;
}
.bootstrap-horizon .collapse.in {
  height: auto;
}
.bootstrap-horizon .close {
  float: right;
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.bootstrap-horizon .close:hover,
.bootstrap-horizon .close:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  filter: alpha(opacity=40);
}
.bootstrap-horizon button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
.bootstrap-horizon .btn {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */
  *zoom: 1;
  padding: 4px 12px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  color: #333333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  background-color: transparent;
  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;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #e6e6e6;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  border: 1px solid #cccccc;
  *border: 0;
  border-bottom-color: #b3b3b3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  *margin-left: .3em;
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
}
.bootstrap-horizon .btn:hover,
.bootstrap-horizon .btn:focus,
.bootstrap-horizon .btn:active,
.bootstrap-horizon .btn.active,
.bootstrap-horizon .btn.disabled,
.bootstrap-horizon .btn[disabled] {
  color: #333333;
  background-color: #e6e6e6;
  *background-color: #d9d9d9;
}
.bootstrap-horizon .btn:active,
.bootstrap-horizon .btn.active {
  background-color: #cccccc \9;
}
.bootstrap-horizon .btn:hover,
.bootstrap-horizon .btn:focus,
.bootstrap-horizon .btn:active,
.bootstrap-horizon .btn.active,
.bootstrap-horizon .btn.disabled,
.bootstrap-horizon .btn[disabled] {
  color: #333333;
  background-color: #e6e6e6;
  *background-color: #d9d9d9;
}
.bootstrap-horizon .btn:active,
.bootstrap-horizon .btn.active {
  background-color: #cccccc \9;
}
.bootstrap-horizon .btn:first-child {
  *margin-left: 0;
}
.bootstrap-horizon .btn:hover,
.bootstrap-horizon .btn:focus {
  color: #333333;
  text-decoration: none;
  background-image: none;
}
.bootstrap-horizon .btn:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.bootstrap-horizon .btn.active,
.bootstrap-horizon .btn:active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
  -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
  box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
}
.bootstrap-horizon .btn.disabled,
.bootstrap-horizon .btn[disabled] {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.bootstrap-horizon .btn-large {
  padding: 11px 19px;
  font-size: 17.5px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.bootstrap-horizon .btn-large [class^="icon-"],
.bootstrap-horizon .btn-large [class*=" icon-"] {
  margin-top: 4px;
}
.bootstrap-horizon .btn-small {
  padding: 2px 10px;
  font-size: 11.9px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.bootstrap-horizon .btn-small [class^="icon-"],
.bootstrap-horizon .btn-small [class*=" icon-"] {
  margin-top: 0;
}
.bootstrap-horizon .btn-mini [class^="icon-"],
.bootstrap-horizon .btn-mini [class*=" icon-"] {
  margin-top: -1px;
}
.bootstrap-horizon .btn-mini {
  padding: 0 6px;
  font-size: 10.5px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.bootstrap-horizon .btn-block {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bootstrap-horizon .btn-block + .btn-block {
  margin-top: 5px;
}
.bootstrap-horizon input[type="submit"].btn-block,
.bootstrap-horizon input[type="reset"].btn-block,
.bootstrap-horizon input[type="button"].btn-block {
  width: 100%;
}
.bootstrap-horizon .btn-primary.active,
.bootstrap-horizon .btn-warning.active,
.bootstrap-horizon .btn-danger.active,
.bootstrap-horizon .btn-success.active,
.bootstrap-horizon .btn-info.active,
.bootstrap-horizon .btn-inverse.active {
  color: rgba(255, 255, 255, 0.75);
}
.bootstrap-horizon .btn-primary {
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: transparent;
  background-color: #006dcc;
  background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
  background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
  background-image: -o-linear-gradient(top, #0088cc, #0044cc);
  background-image: linear-gradient(to bottom, #0088cc, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #0044cc;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.bootstrap-horizon .btn-primary:hover,
.bootstrap-horizon .btn-primary:focus,
.bootstrap-horizon .btn-primary:active,
.bootstrap-horizon .btn-primary.active,
.bootstrap-horizon .btn-primary.disabled,
.bootstrap-horizon .btn-primary[disabled] {
  color: #ffffff;
  background-color: #0044cc;
  *background-color: #003bb3;
}
.bootstrap-horizon .btn-primary:active,
.bootstrap-horizon .btn-primary.active {
  background-color: #003399 \9;
}
.bootstrap-horizon .btn-primary:hover,
.bootstrap-horizon .btn-primary:focus,
.bootstrap-horizon .btn-primary:active,
.bootstrap-horizon .btn-primary.active,
.bootstrap-horizon .btn-primary.disabled,
.bootstrap-horizon .btn-primary[disabled] {
  color: #ffffff;
  background-color: #0044cc;
  *background-color: #003bb3;
}
.bootstrap-horizon .btn-primary:active,
.bootstrap-horizon .btn-primary.active {
  background-color: #003399 \9;
}
.bootstrap-horizon .btn-warning {
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: transparent;
  background-color: #faa732;
  background-image: -moz-linear-gradient(top, #fbb450, #f89406);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
  background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
  background-image: -o-linear-gradient(top, #fbb450, #f89406);
  background-image: linear-gradient(to bottom, #fbb450, #f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
  border-color: #f89406 #f89406 #ad6704;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #f89406;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.bootstrap-horizon .btn-warning:hover,
.bootstrap-horizon .btn-warning:focus,
.bootstrap-horizon .btn-warning:active,
.bootstrap-horizon .btn-warning.active,
.bootstrap-horizon .btn-warning.disabled,
.bootstrap-horizon .btn-warning[disabled] {
  color: #ffffff;
  background-color: #f89406;
  *background-color: #df8505;
}
.bootstrap-horizon .btn-warning:active,
.bootstrap-horizon .btn-warning.active {
  background-color: #c67605 \9;
}
.bootstrap-horizon .btn-warning:hover,
.bootstrap-horizon .btn-warning:focus,
.bootstrap-horizon .btn-warning:active,
.bootstrap-horizon .btn-warning.active,
.bootstrap-horizon .btn-warning.disabled,
.bootstrap-horizon .btn-warning[disabled] {
  color: #ffffff;
  background-color: #f89406;
  *background-color: #df8505;
}
.bootstrap-horizon .btn-warning:active,
.bootstrap-horizon .btn-warning.active {
  background-color: #c67605 \9;
}
.bootstrap-horizon .btn-danger {
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: transparent;
  background-color: #da4f49;
  background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
  background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
  border-color: #bd362f #bd362f #802420;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #bd362f;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.bootstrap-horizon .btn-danger:hover,
.bootstrap-horizon .btn-danger:focus,
.bootstrap-horizon .btn-danger:active,
.bootstrap-horizon .btn-danger.active,
.bootstrap-horizon .btn-danger.disabled,
.bootstrap-horizon .btn-danger[disabled] {
  color: #ffffff;
  background-color: #bd362f;
  *background-color: #a9302a;
}
.bootstrap-horizon .btn-danger:active,
.bootstrap-horizon .btn-danger.active {
  background-color: #942a25 \9;
}
.bootstrap-horizon .btn-danger:hover,
.bootstrap-horizon .btn-danger:focus,
.bootstrap-horizon .btn-danger:active,
.bootstrap-horizon .btn-danger.active,
.bootstrap-horizon .btn-danger.disabled,
.bootstrap-horizon .btn-danger[disabled] {
  color: #ffffff;
  background-color: #bd362f;
  *background-color: #a9302a;
}
.bootstrap-horizon .btn-danger:active,
.bootstrap-horizon .btn-danger.active {
  background-color: #942a25 \9;
}
.bootstrap-horizon .btn-success {
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: transparent;
  background-color: #5bb75b;
  background-image: -moz-linear-gradient(top, #62c462, #51a351);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
  background-image: -webkit-linear-gradient(top, #62c462, #51a351);
  background-image: -o-linear-gradient(top, #62c462, #51a351);
  background-image: linear-gradient(to bottom, #62c462, #51a351);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
  border-color: #51a351 #51a351 #387038;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #51a351;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.bootstrap-horizon .btn-success:hover,
.bootstrap-horizon .btn-success:focus,
.bootstrap-horizon .btn-success:active,
.bootstrap-horizon .btn-success.active,
.bootstrap-horizon .btn-success.disabled,
.bootstrap-horizon .btn-success[disabled] {
  color: #ffffff;
  background-color: #51a351;
  *background-color: #499249;
}
.bootstrap-horizon .btn-success:active,
.bootstrap-horizon .btn-success.active {
  background-color: #408140 \9;
}
.bootstrap-horizon .btn-success:hover,
.bootstrap-horizon .btn-success:focus,
.bootstrap-horizon .btn-success:active,
.bootstrap-horizon .btn-success.active,
.bootstrap-horizon .btn-success.disabled,
.bootstrap-horizon .btn-success[disabled] {
  color: #ffffff;
  background-color: #51a351;
  *background-color: #499249;
}
.bootstrap-horizon .btn-success:active,
.bootstrap-horizon .btn-success.active {
  background-color: #408140 \9;
}
.bootstrap-horizon .btn-info {
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: transparent;
  background-color: #49afcd;
  background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
  background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
  background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
  background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);
  border-color: #2f96b4 #2f96b4 #1f6377;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #2f96b4;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.bootstrap-horizon .btn-info:hover,
.bootstrap-horizon .btn-info:focus,
.bootstrap-horizon .btn-info:active,
.bootstrap-horizon .btn-info.active,
.bootstrap-horizon .btn-info.disabled,
.bootstrap-horizon .btn-info[disabled] {
  color: #ffffff;
  background-color: #2f96b4;
  *background-color: #2a85a0;
}
.bootstrap-horizon .btn-info:active,
.bootstrap-horizon .btn-info.active {
  background-color: #24748c \9;
}
.bootstrap-horizon .btn-info:hover,
.bootstrap-horizon .btn-info:focus,
.bootstrap-horizon .btn-info:active,
.bootstrap-horizon .btn-info.active,
.bootstrap-horizon .btn-info.disabled,
.bootstrap-horizon .btn-info[disabled] {
  color: #ffffff;
  background-color: #2f96b4;
  *background-color: #2a85a0;
}
.bootstrap-horizon .btn-info:active,
.bootstrap-horizon .btn-info.active {
  background-color: #24748c \9;
}
.bootstrap-horizon .btn-inverse {
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: transparent;
  background-color: #363636;
  background-image: -moz-linear-gradient(top, #444444, #222222);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));
  background-image: -webkit-linear-gradient(top, #444444, #222222);
  background-image: -o-linear-gradient(top, #444444, #222222);
  background-image: linear-gradient(to bottom, #444444, #222222);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);
  border-color: #222222 #222222 #000000;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #222222;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.bootstrap-horizon .btn-inverse:hover,
.bootstrap-horizon .btn-inverse:focus,
.bootstrap-horizon .btn-inverse:active,
.bootstrap-horizon .btn-inverse.active,
.bootstrap-horizon .btn-inverse.disabled,
.bootstrap-horizon .btn-inverse[disabled] {
  color: #ffffff;
  background-color: #222222;
  *background-color: #151515;
}
.bootstrap-horizon .btn-inverse:active,
.bootstrap-horizon .btn-inverse.active {
  background-color: #080808 \9;
}
.bootstrap-horizon .btn-inverse:hover,
.bootstrap-horizon .btn-inverse:focus,
.bootstrap-horizon .btn-inverse:active,
.bootstrap-horizon .btn-inverse.active,
.bootstrap-horizon .btn-inverse.disabled,
.bootstrap-horizon .btn-inverse[disabled] {
  color: #ffffff;
  background-color: #222222;
  *background-color: #151515;
}
.bootstrap-horizon .btn-inverse:active,
.bootstrap-horizon .btn-inverse.active {
  background-color: #080808 \9;
}
.bootstrap-horizon button.btn,
.bootstrap-horizon input[type="submit"].btn {
  *padding-top: 3px;
  *padding-bottom: 3px;
}
.bootstrap-horizon button.btn::-moz-focus-inner,
.bootstrap-horizon input[type="submit"].btn::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.bootstrap-horizon button.btn.btn-large,
.bootstrap-horizon input[type="submit"].btn.btn-large {
  *padding-top: 7px;
  *padding-bottom: 7px;
}
.bootstrap-horizon button.btn.btn-small,
.bootstrap-horizon input[type="submit"].btn.btn-small {
  *padding-top: 3px;
  *padding-bottom: 3px;
}
.bootstrap-horizon button.btn.btn-mini,
.bootstrap-horizon input[type="submit"].btn.btn-mini {
  *padding-top: 1px;
  *padding-bottom: 1px;
}
.bootstrap-horizon .btn-link,
.bootstrap-horizon .btn-link:active,
.bootstrap-horizon .btn-link[disabled] {
  background-color: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.bootstrap-horizon .btn-link {
  border-color: transparent;
  cursor: pointer;
  color: #0088cc;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.bootstrap-horizon .btn-link:hover,
.bootstrap-horizon .btn-link:focus {
  color: #005580;
  text-decoration: underline;
  background-color: transparent;
}
.bootstrap-horizon .btn-link[disabled]:hover,
.bootstrap-horizon .btn-link[disabled]:focus {
  color: #333333;
  text-decoration: none;
}
.bootstrap-horizon .btn-group {
  position: relative;
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */
  *zoom: 1;
  font-size: 0;
  vertical-align: middle;
  white-space: nowrap;
  *margin-left: .3em;
}
.bootstrap-horizon .btn-group:first-child {
  *margin-left: 0;
}
.bootstrap-horizon .btn-group + .btn-group {
  margin-left: 5px;
}
.bootstrap-horizon .btn-toolbar {
  font-size: 0;
  margin-top: 10px;
  margin-bottom: 10px;
}
.bootstrap-horizon .btn-toolbar > .btn + .btn,
.bootstrap-horizon .btn-toolbar > .btn-group + .btn,
.bootstrap-horizon .btn-toolbar > .btn + .btn-group {
  margin-left: 5px;
}
.bootstrap-horizon .btn-group > .btn {
  position: relative;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.bootstrap-horizon .btn-group > .btn + .btn {
  margin-left: -1px;
}
.bootstrap-horizon .btn-group > .btn,
.bootstrap-horizon .btn-group > .dropdown-menu,
.bootstrap-horizon .btn-group > .popover {
  font-size: 14px;
}
.bootstrap-horizon .btn-group > .btn-mini {
  font-size: 10.5px;
}
.bootstrap-horizon .btn-group > .btn-small {
  font-size: 11.9px;
}
.bootstrap-horizon .btn-group > .btn-large {
  font-size: 17.5px;
}
.bootstrap-horizon .btn-group > .btn:first-child {
  margin-left: 0;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
}
.bootstrap-horizon .btn-group > .btn:last-child,
.bootstrap-horizon .btn-group > .dropdown-toggle {
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
}
.bootstrap-horizon .btn-group > .btn.large:first-child {
  margin-left: 0;
  -webkit-border-top-left-radius: 6px;
  -moz-border-radius-topleft: 6px;
  border-top-left-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  -moz-border-radius-bottomleft: 6px;
  border-bottom-left-radius: 6px;
}
.bootstrap-horizon .btn-group > .btn.large:last-child,
.bootstrap-horizon .btn-group > .large.dropdown-toggle {
  -webkit-border-top-right-radius: 6px;
  -moz-border-radius-topright: 6px;
  border-top-right-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  -moz-border-radius-bottomright: 6px;
  border-bottom-right-radius: 6px;
}
.bootstrap-horizon .btn-group > .btn:hover,
.bootstrap-horizon .btn-group > .btn:focus,
.bootstrap-horizon .btn-group > .btn:active,
.bootstrap-horizon .btn-group > .btn.active {
  z-index: 2;
}
.bootstrap-horizon .btn-group .dropdown-toggle:active,
.bootstrap-horizon .btn-group.open .dropdown-toggle {
  outline: 0;
}
.bootstrap-horizon .btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
  -webkit-box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  -moz-box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  *padding-top: 5px;
  *padding-bottom: 5px;
}
.bootstrap-horizon .btn-group > .btn-mini + .dropdown-toggle {
  padding-left: 5px;
  padding-right: 5px;
  *padding-top: 2px;
  *padding-bottom: 2px;
}
.bootstrap-horizon .btn-group > .btn-small + .dropdown-toggle {
  *padding-top: 5px;
  *padding-bottom: 4px;
}
.bootstrap-horizon .btn-group > .btn-large + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
  *padding-top: 7px;
  *padding-bottom: 7px;
}
.bootstrap-horizon .btn-group.open .dropdown-toggle {
  background-image: none;
  -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
  -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
  box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
}
.bootstrap-horizon .btn-group.open .btn.dropdown-toggle {
  background-color: #e6e6e6;
}
.bootstrap-horizon .btn-group.open .btn-primary.dropdown-toggle {
  background-color: #0044cc;
}
.bootstrap-horizon .btn-group.open .btn-warning.dropdown-toggle {
  background-color: #f89406;
}
.bootstrap-horizon .btn-group.open .btn-danger.dropdown-toggle {
  background-color: #bd362f;
}
.bootstrap-horizon .btn-group.open .btn-success.dropdown-toggle {
  background-color: #51a351;
}
.bootstrap-horizon .btn-group.open .btn-info.dropdown-toggle {
  background-color: #2f96b4;
}
.bootstrap-horizon .btn-group.open .btn-inverse.dropdown-toggle {
  background-color: #222222;
}
.bootstrap-horizon .btn .caret {
  margin-top: 8px;
  margin-left: 0;
}
.bootstrap-horizon .btn-large .caret {
  margin-top: 6px;
}
.bootstrap-horizon .btn-large .caret {
  border-left-width: 5px;
  border-right-width: 5px;
  border-top-width: 5px;
}
.bootstrap-horizon .btn-mini .caret,
.bootstrap-horizon .btn-small .caret {
  margin-top: 8px;
}
.bootstrap-horizon .dropup .btn-large .caret {
  border-bottom-width: 5px;
}
.bootstrap-horizon .btn-primary .caret,
.bootstrap-horizon .btn-warning .caret,
.bootstrap-horizon .btn-danger .caret,
.bootstrap-horizon .btn-info .caret,
.bootstrap-horizon .btn-success .caret,
.bootstrap-horizon .btn-inverse .caret {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.bootstrap-horizon .btn-group-vertical {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */
  *zoom: 1;
}
.bootstrap-horizon .btn-group-vertical > .btn {
  display: block;
  float: none;
  max-width: 100%;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.bootstrap-horizon .btn-group-vertical > .btn + .btn {
  margin-left: 0;
  margin-top: -1px;
}
.bootstrap-horizon .btn-group-vertical > .btn:first-child {
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
.bootstrap-horizon .btn-group-vertical > .btn:last-child {
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}
.bootstrap-horizon .btn-group-vertical > .btn-large:first-child {
  -webkit-border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
}
.bootstrap-horizon .btn-group-vertical > .btn-large:last-child {
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
}
.bootstrap-horizon .alert {
  padding: 8px 35px 8px 14px;
  margin-bottom: 20px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  background-color: #fcf8e3;
  border: 1px solid #fbeed5;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.bootstrap-horizon .alert,
.bootstrap-horizon .alert h4 {
  color: #c09853;
}
.bootstrap-horizon .alert h4 {
  margin: 0;
}
.bootstrap-horizon .alert .close {
  position: relative;
  top: -2px;
  right: -21px;
  line-height: 20px;
}
.bootstrap-horizon .alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #468847;
}
.bootstrap-horizon .alert-success h4 {
  color: #468847;
}
.bootstrap-horizon .alert-danger,
.bootstrap-horizon .alert-error {
  background-color: #f2dede;
  border-color: #eed3d7;
  color: #b94a48;
}
.bootstrap-horizon .alert-danger h4,
.bootstrap-horizon .alert-error h4 {
  color: #b94a48;
}
.bootstrap-horizon .alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #3a87ad;
}
.bootstrap-horizon .alert-info h4 {
  color: #3a87ad;
}
.bootstrap-horizon .alert-block {
  padding-top: 14px;
  padding-bottom: 14px;
}
.bootstrap-horizon .alert-block > p,
.bootstrap-horizon .alert-block > ul {
  margin-bottom: 0;
}
.bootstrap-horizon .alert-block p + p {
  margin-top: 5px;
}
.bootstrap-horizon .nav {
  margin-left: 0;
  margin-bottom: 20px;
  list-style: none;
}
.bootstrap-horizon .nav > li > a {
  display: block;
}
.bootstrap-horizon .nav > li > a:hover,
.bootstrap-horizon .nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.bootstrap-horizon .nav > li > a > img {
  max-width: none;
}
.bootstrap-horizon .nav > .pull-right {
  float: right;
}
.bootstrap-horizon .nav-header {
  display: block;
  padding: 3px 15px;
  font-size: 11px;
  font-weight: bold;
  line-height: 20px;
  color: #999999;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}
.bootstrap-horizon .nav li + .nav-header {
  margin-top: 9px;
}
.bootstrap-horizon .nav-list {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 0;
}
.bootstrap-horizon .nav-list > li > a,
.bootstrap-horizon .nav-list .nav-header {
  margin-left: -15px;
  margin-right: -15px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.bootstrap-horizon .nav-list > li > a {
  padding: 3px 15px;
}
.bootstrap-horizon .nav-list > .active > a,
.bootstrap-horizon .nav-list > .active > a:hover,
.bootstrap-horizon .nav-list > .active > a:focus {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  background-color: #0088cc;
}
.bootstrap-horizon .nav-list [class^="icon-"],
.bootstrap-horizon .nav-list [class*=" icon-"] {
  margin-right: 2px;
}
.bootstrap-horizon .nav-list .divider {
  *width: 100%;
  height: 1px;
  margin: 9px 1px;
  *margin: -5px 0 5px;
  overflow: hidden;
  background-color: #e5e5e5;
  border-bottom: 1px solid #ffffff;
}
.bootstrap-horizon .nav-tabs:after,
.bootstrap-horizon .nav-pills:after {
  display: block;
  content: "";
  clear: both;
}
.bootstrap-horizon .nav-tabs > li,
.bootstrap-horizon .nav-pills > li {
  float: left;
}
.bootstrap-horizon .nav-tabs > li > a,
.bootstrap-horizon .nav-pills > li > a {
  padding-right: 12px;
  padding-left: 12px;
  margin-right: 2px;
  line-height: 14px;
}
.bootstrap-horizon .nav-tabs {
  border-bottom: 1px solid #ddd;
}
.bootstrap-horizon .nav-tabs > li {
  margin-bottom: -1px;
}
.bootstrap-horizon .nav-tabs > li > a {
  padding-top: 8px;
  padding-bottom: 8px;
  line-height: 20px;
  border: 1px solid transparent;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
.bootstrap-horizon .nav-tabs > li > a:hover,
.bootstrap-horizon .nav-tabs > li > a:focus {
  border-color: #eeeeee #eeeeee #dddddd;
}
.bootstrap-horizon .nav-tabs > .active > a,
.bootstrap-horizon .nav-tabs > .active > a:hover,
.bootstrap-horizon .nav-tabs > .active > a:focus {
  color: #555555;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}
.bootstrap-horizon .nav-pills > li > a {
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 2px;
  margin-bottom: 2px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.bootstrap-horizon .nav-pills > .active > a,
.bootstrap-horizon .nav-pills > .active > a:hover,
.bootstrap-horizon .nav-pills > .active > a:focus {
  color: #ffffff;
  background-color: #0088cc;
}
.bootstrap-horizon .nav-stacked > li {
  float: none;
}
.bootstrap-horizon .nav-stacked > li > a {
  margin-right: 0;
}
.bootstrap-horizon .nav-tabs.nav-stacked {
  border-bottom: 0;
}
.bootstrap-horizon .nav-tabs.nav-stacked > li > a {
  border: 1px solid #ddd;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.bootstrap-horizon .nav-tabs.nav-stacked > li:first-child > a {
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
}
.bootstrap-horizon .nav-tabs.nav-stacked > li:last-child > a {
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
}
.bootstrap-horizon .nav-tabs.nav-stacked > li > a:hover,
.bootstrap-horizon .nav-tabs.nav-stacked > li > a:focus {
  border-color: #ddd;
  z-index: 2;
}
.bootstrap-horizon .nav-pills.nav-stacked > li > a {
  margin-bottom: 3px;
}
.bootstrap-horizon .nav-pills.nav-stacked > li:last-child > a {
  margin-bottom: 1px;
}
.bootstrap-horizon .nav-tabs .dropdown-menu {
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
}
.bootstrap-horizon .nav-pills .dropdown-menu {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.bootstrap-horizon .nav .dropdown-toggle .caret {
  border-top-color: #0088cc;
  border-bottom-color: #0088cc;
  margin-top: 6px;
}
.bootstrap-horizon .nav .dropdown-toggle:hover .caret,
.bootstrap-horizon .nav .dropdown-toggle:focus .caret {
  border-top-color: #005580;
  border-bottom-color: #005580;
}
.bootstrap-horizon .nav-tabs .dropdown-toggle .caret {
  margin-top: 8px;
}
.bootstrap-horizon .nav .active .dropdown-toggle .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
}
.bootstrap-horizon .nav-tabs .active .dropdown-toggle .caret {
  border-top-color: #555555;
  border-bottom-color: #555555;
}
.bootstrap-horizon .nav > .dropdown.active > a:hover,
.bootstrap-horizon .nav > .dropdown.active > a:focus {
  cursor: pointer;
}
.bootstrap-horizon .nav-tabs .open .dropdown-toggle,
.bootstrap-horizon .nav-pills .open .dropdown-toggle,
.bootstrap-horizon .nav > li.dropdown.open.active > a:hover,
.bootstrap-horizon .nav > li.dropdown.open.active > a:focus {
  color: #ffffff;
  background-color: #999999;
  border-color: #999999;
}
.bootstrap-horizon .nav li.dropdown.open .caret,
.bootstrap-horizon .nav li.dropdown.open.active .caret,
.bootstrap-horizon .nav li.dropdown.open a:hover .caret,
.bootstrap-horizon .nav li.dropdown.open a:focus .caret {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
  opacity: 1;
  filter: alpha(opacity=100);
}
.bootstrap-horizon .tabs-stacked .open > a:hover,
.bootstrap-horizon .tabs-stacked .open > a:focus {
  border-color: #999999;
}
.bootstrap-horizon .tabbable:after {
  display: block;
  content: "";
  clear: both;
}
.bootstrap-horizon .tab-content {
  overflow: auto;
}
.bootstrap-horizon .tabs-below > .nav-tabs,
.bootstrap-horizon .tabs-right > .nav-tabs,
.bootstrap-horizon .tabs-left > .nav-tabs {
  border-bottom: 0;
}
.bootstrap-horizon .tab-content > .tab-pane,
.bootstrap-horizon .pill-content > .pill-pane {
  display: none;
}
.bootstrap-horizon .tab-content > .active,
.bootstrap-horizon .pill-content > .active {
  display: block;
}
.bootstrap-horizon .tabs-below > .nav-tabs {
  border-top: 1px solid #ddd;
}
.bootstrap-horizon .tabs-below > .nav-tabs > li {
  margin-top: -1px;
  margin-bottom: 0;
}
.bootstrap-horizon .tabs-below > .nav-tabs > li > a {
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}
.bootstrap-horizon .tabs-below > .nav-tabs > li > a:hover,
.bootstrap-horizon .tabs-below > .nav-tabs > li > a:focus {
  border-bottom-color: transparent;
  border-top-color: #ddd;
}
.bootstrap-horizon .tabs-below > .nav-tabs > .active > a,
.bootstrap-horizon .tabs-below > .nav-tabs > .active > a:hover,
.bootstrap-horizon .tabs-below > .nav-tabs > .active > a:focus {
  border-color: transparent #ddd #ddd #ddd;
}
.bootstrap-horizon .tabs-left > .nav-tabs > li,
.bootstrap-horizon .tabs-right > .nav-tabs > li {
  float: none;
}
.bootstrap-horizon .tabs-left > .nav-tabs > li > a,
.bootstrap-horizon .tabs-right > .nav-tabs > li > a {
  min-width: 74px;
  margin-right: 0;
  margin-bottom: 3px;
}
.bootstrap-horizon .tabs-left > .nav-tabs {
  float: left;
  margin-right: 19px;
  border-right: 1px solid #ddd;
}
.bootstrap-horizon .tabs-left > .nav-tabs > li > a {
  margin-right: -1px;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}
.bootstrap-horizon .tabs-left > .nav-tabs > li > a:hover,
.bootstrap-horizon .tabs-left > .nav-tabs > li > a:focus {
  border-color: #eeeeee #dddddd #eeeeee #eeeeee;
}
.bootstrap-horizon .tabs-left > .nav-tabs .active > a,
.bootstrap-horizon .tabs-left > .nav-tabs .active > a:hover,
.bootstrap-horizon .tabs-left > .nav-tabs .active > a:focus {
  border-color: #ddd transparent #ddd #ddd;
  *border-right-color: #ffffff;
}
.bootstrap-horizon .tabs-right > .nav-tabs {
  float: right;
  margin-left: 19px;
  border-left: 1px solid #ddd;
}
.bootstrap-horizon .tabs-right > .nav-tabs > li > a {
  margin-left: -1px;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
.bootstrap-horizon .tabs-right > .nav-tabs > li > a:hover,
.bootstrap-horizon .tabs-right > .nav-tabs > li > a:focus {
  border-color: #eeeeee #eeeeee #eeeeee #dddddd;
}
.bootstrap-horizon .tabs-right > .nav-tabs .active > a,
.bootstrap-horizon .tabs-right > .nav-tabs .active > a:hover,
.bootstrap-horizon .tabs-right > .nav-tabs .active > a:focus {
  border-color: #ddd #ddd #ddd transparent;
  *border-left-color: #ffffff;
}
.bootstrap-horizon .nav > .disabled > a {
  color: #999999;
}
.bootstrap-horizon .nav > .disabled > a:hover,
.bootstrap-horizon .nav > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  cursor: default;
}
.bootstrap-horizon .navbar {
  overflow: visible;
  margin-bottom: 20px;
  *position: relative;
  *z-index: 2;
}
.bootstrap-horizon .navbar-inner {
  min-height: 40px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: transparent;
  background-color: #fafafa;
  background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));
  background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2);
  background-image: -o-linear-gradient(top, #ffffff, #f2f2f2);
  background-image: linear-gradient(to bottom, #ffffff, #f2f2f2);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);
  border: 1px solid #d4d4d4;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
}
.bootstrap-horizon .navbar-inner:after {
  display: block;
  content: "";
  clear: both;
}
.bootstrap-horizon .navbar .container {
  width: auto;
}
.bootstrap-horizon .nav-collapse.collapse {
  height: auto;
  overflow: visible;
}
.bootstrap-horizon .navbar .brand {
  float: left;
  display: block;
  padding: 10px 20px 10px;
  margin-left: -20px;
  font-size: 20px;
  font-weight: 200;
  color: #777777;
  text-shadow: 0 1px 0 #ffffff;
}
.bootstrap-horizon .navbar .brand:hover,
.bootstrap-horizon .navbar .brand:focus {
  text-decoration: none;
}
.bootstrap-horizon .navbar-text {
  margin-bottom: 0;
  line-height: 40px;
  color: #777777;
}
.bootstrap-horizon .navbar-link {
  color: #777777;
}
.bootstrap-horizon .navbar-link:hover,
.bootstrap-horizon .navbar-link:focus {
  color: #333333;
}
.bootstrap-horizon .navbar .divider-vertical {
  height: 40px;
  margin: 0 9px;
  border-left: 1px solid #f2f2f2;
  border-right: 1px solid #ffffff;
}
.bootstrap-horizon .navbar .btn,
.bootstrap-horizon .navbar .btn-group {
  margin-top: 5px;
}
.bootstrap-horizon .navbar .btn-group .btn,
.bootstrap-horizon .navbar .input-prepend .btn,
.bootstrap-horizon .navbar .input-append .btn,
.bootstrap-horizon .navbar .input-prepend .btn-group,
.bootstrap-horizon .navbar .input-append .btn-group {
  margin-top: 0;
}
.bootstrap-horizon .navbar-form {
  margin-bottom: 0;
}
.bootstrap-horizon .navbar-form:after {
  display: block;
  content: "";
  clear: both;
}
.bootstrap-horizon .navbar-form input,
.bootstrap-horizon .navbar-form select,
.bootstrap-horizon .navbar-form .radio,
.bootstrap-horizon .navbar-form .checkbox {
  margin-top: 5px;
}
.bootstrap-horizon .navbar-form input,
.bootstrap-horizon .navbar-form select,
.bootstrap-horizon .navbar-form .btn {
  display: inline-block;
  margin-bottom: 0;
}
.bootstrap-horizon .navbar-form input[type="image"],
.bootstrap-horizon .navbar-form input[type="checkbox"],
.bootstrap-horizon .navbar-form input[type="radio"] {
  margin-top: 3px;
}
.bootstrap-horizon .navbar-form .input-append,
.bootstrap-horizon .navbar-form .input-prepend {
  margin-top: 5px;
  white-space: nowrap;
}
.bootstrap-horizon .navbar-form .input-append input,
.bootstrap-horizon .navbar-form .input-prepend input {
  margin-top: 0;
}
.bootstrap-horizon .navbar-search {
  position: relative;
  float: left;
  margin-top: 5px;
  margin-bottom: 0;
}
.bootstrap-horizon .navbar-search .search-query {
  margin-bottom: 0;
  padding: 4px 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 1;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.bootstrap-horizon .navbar-static-top {
  position: static;
  margin-bottom: 0;
}
.bootstrap-horizon .navbar-static-top .navbar-inner {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.bootstrap-horizon .navbar-fixed-top,
.bootstrap-horizon .navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
  margin-bottom: 0;
}
.bootstrap-horizon .navbar-fixed-top .navbar-inner,
.bootstrap-horizon .navbar-static-top .navbar-inner {
  border-width: 0 0 1px;
}
.bootstrap-horizon .navbar-fixed-bottom .navbar-inner {
  border-width: 1px 0 0;
}
.bootstrap-horizon .navbar-fixed-top .navbar-inner,
.bootstrap-horizon .navbar-fixed-bottom .navbar-inner {
  padding-left: 0;
  padding-right: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.bootstrap-horizon .navbar-static-top .container,
.bootstrap-horizon .navbar-fixed-top .container,
.bootstrap-horizon .navbar-fixed-bottom .container {
  width: 940px;
}
.bootstrap-horizon .navbar-fixed-top {
  top: 0;
}
.bootstrap-horizon .navbar-fixed-top .navbar-inner,
.bootstrap-horizon .navbar-static-top .navbar-inner {
  -webkit-box-shadow: 0 1px 10px rgba(0,0,0,.1);
  -moz-box-shadow: 0 1px 10px rgba(0,0,0,.1);
  box-shadow: 0 1px 10px rgba(0,0,0,.1);
}
.bootstrap-horizon .navbar-fixed-bottom {
  bottom: 0;
}
.bootstrap-horizon .navbar-fixed-bottom .navbar-inner {
  -webkit-box-shadow: 0 -1px 10px rgba(0,0,0,.1);
  -moz-box-shadow: 0 -1px 10px rgba(0,0,0,.1);
  box-shadow: 0 -1px 10px rgba(0,0,0,.1);
}
.bootstrap-horizon .navbar .nav {
  position: relative;
  left: 0;
  display: block;
  float: left;
  margin: 0 10px 0 0;
}
.bootstrap-horizon .navbar .nav.pull-right {
  float: right;
  margin-right: 0;
}
.bootstrap-horizon .navbar .nav > li {
  float: left;
}
.bootstrap-horizon .navbar .nav > li > a {
  float: none;
  padding: 10px 15px 10px;
  color: #777777;
  text-decoration: none;
  text-shadow: 0 1px 0 #ffffff;
}
.bootstrap-horizon .navbar .nav .dropdown-toggle .caret {
  margin-top: 8px;
}
.bootstrap-horizon .navbar .nav > li > a:focus,
.bootstrap-horizon .navbar .nav > li > a:hover {
  background-color: transparent;
  color: #333333;
  text-decoration: none;
}
.bootstrap-horizon .navbar .nav > .active > a,
.bootstrap-horizon .navbar .nav > .active > a:hover,
.bootstrap-horizon .navbar .nav > .active > a:focus {
  color: #555555;
  text-decoration: none;
  background-color: #e5e5e5;
  -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
  -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
}
.bootstrap-horizon .navbar .btn-navbar {
  display: none;
  float: right;
  padding: 7px 10px;
  margin-left: 5px;
  margin-right: 5px;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: transparent;
  background-color: #ededed;
  background-image: -moz-linear-gradient(top, #f2f2f2, #e5e5e5);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));
  background-image: -webkit-linear-gradient(top, #f2f2f2, #e5e5e5);
  background-image: -o-linear-gradient(top, #f2f2f2, #e5e5e5);
  background-image: linear-gradient(to bottom, #f2f2f2, #e5e5e5);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);
  border-color: #e5e5e5 #e5e5e5 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #e5e5e5;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
  -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
}
.bootstrap-horizon .navbar .btn-navbar:hover,
.bootstrap-horizon .navbar .btn-navbar:focus,
.bootstrap-horizon .navbar .btn-navbar:active,
.bootstrap-horizon .navbar .btn-navbar.active,
.bootstrap-horizon .navbar .btn-navbar.disabled,
.bootstrap-horizon .navbar .btn-navbar[disabled] {
  color: #ffffff;
  background-color: #e5e5e5;
  *background-color: #d9d9d9;
}
.bootstrap-horizon .navbar .btn-navbar:active,
.bootstrap-horizon .navbar .btn-navbar.active {
  background-color: #cccccc \9;
}
.bootstrap-horizon .navbar .btn-navbar:hover,
.bootstrap-horizon .navbar .btn-navbar:focus,
.bootstrap-horizon .navbar .btn-navbar:active,
.bootstrap-horizon .navbar .btn-navbar.active,
.bootstrap-horizon .navbar .btn-navbar.disabled,
.bootstrap-horizon .navbar .btn-navbar[disabled] {
  color: #ffffff;
  background-color: #e5e5e5;
  *background-color: #d9d9d9;
}
.bootstrap-horizon .navbar .btn-navbar:active,
.bootstrap-horizon .navbar .btn-navbar.active {
  background-color: #cccccc \9;
}
.bootstrap-horizon .navbar .btn-navbar .icon-bar {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #f5f5f5;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}
.bootstrap-horizon .btn-navbar .icon-bar + .icon-bar {
  margin-top: 3px;
}
.bootstrap-horizon .navbar .nav > li > .dropdown-menu:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -7px;
  left: 9px;
}
.bootstrap-horizon .navbar .nav > li > .dropdown-menu:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  position: absolute;
  top: -6px;
  left: 10px;
}
.bootstrap-horizon .navbar-fixed-bottom .nav > li > .dropdown-menu:before {
  border-top: 7px solid #ccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  border-bottom: 0;
  bottom: -7px;
  top: auto;
}
.bootstrap-horizon .navbar-fixed-bottom .nav > li > .dropdown-menu:after {
  border-top: 6px solid #ffffff;
  border-bottom: 0;
  bottom: -6px;
  top: auto;
}
.bootstrap-horizon .navbar .nav li.dropdown > a:hover .caret,
.bootstrap-horizon .navbar .nav li.dropdown > a:focus .caret {
  border-top-color: #333333;
  border-bottom-color: #333333;
}
.bootstrap-horizon .navbar .nav li.dropdown.open > .dropdown-toggle,
.bootstrap-horizon .navbar .nav li.dropdown.active > .dropdown-toggle,
.bootstrap-horizon .navbar .nav li.dropdown.open.active > .dropdown-toggle {
  background-color: #e5e5e5;
  color: #555555;
}
.bootstrap-horizon .navbar .nav li.dropdown > .dropdown-toggle .caret {
  border-top-color: #777777;
  border-bottom-color: #777777;
}
.bootstrap-horizon .navbar .nav li.dropdown.open > .dropdown-toggle .caret,
.bootstrap-horizon .navbar .nav li.dropdown.active > .dropdown-toggle .caret,
.bootstrap-horizon .navbar .nav li.dropdown.open.active > .dropdown-toggle .caret {
  border-top-color: #555555;
  border-bottom-color: #555555;
}
.bootstrap-horizon .navbar .pull-right > li > .dropdown-menu,
.bootstrap-horizon .navbar .nav > li > .dropdown-menu.pull-right {
  left: auto;
  right: 0;
}
.bootstrap-horizon .navbar .pull-right > li > .dropdown-menu:before,
.bootstrap-horizon .navbar .nav > li > .dropdown-menu.pull-right:before {
  left: auto;
  right: 12px;
}
.bootstrap-horizon .navbar .pull-right > li > .dropdown-menu:after,
.bootstrap-horizon .navbar .nav > li > .dropdown-menu.pull-right:after {
  left: auto;
  right: 13px;
}
.bootstrap-horizon .navbar .pull-right > li > .dropdown-menu .dropdown-menu,
.bootstrap-horizon .navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu {
  left: auto;
  right: 100%;
  margin-left: 0;
  margin-right: -1px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}
.bootstrap-horizon .navbar-inverse .navbar-inner {
  background-color: transparent;
  background-color: #1b1b1b;
  background-image: -moz-linear-gradient(top, #222222, #111111);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111));
  background-image: -webkit-linear-gradient(top, #222222, #111111);
  background-image: -o-linear-gradient(top, #222222, #111111);
  background-image: linear-gradient(to bottom, #222222, #111111);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);
  border-color: #252525;
}
.bootstrap-horizon .navbar-inverse .brand,
.bootstrap-horizon .navbar-inverse .nav > li > a {
  color: #999999;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.bootstrap-horizon .navbar-inverse .brand:hover,
.bootstrap-horizon .navbar-inverse .nav > li > a:hover,
.bootstrap-horizon .navbar-inverse .brand:focus,
.bootstrap-horizon .navbar-inverse .nav > li > a:focus {
  color: #ffffff;
}
.bootstrap-horizon .navbar-inverse .brand {
  color: #999999;
}
.bootstrap-horizon .navbar-inverse .navbar-text {
  color: #999999;
}
.bootstrap-horizon .navbar-inverse .nav > li > a:focus,
.bootstrap-horizon .navbar-inverse .nav > li > a:hover {
  background-color: transparent;
  color: #ffffff;
}
.bootstrap-horizon .navbar-inverse .nav .active > a,
.bootstrap-horizon .navbar-inverse .nav .active > a:hover,
.bootstrap-horizon .navbar-inverse .nav .active > a:focus {
  color: #ffffff;
  background-color: #111111;
}
.bootstrap-horizon .navbar-inverse .navbar-link {
  color: #999999;
}
.bootstrap-horizon .navbar-inverse .navbar-link:hover,
.bootstrap-horizon .navbar-inverse .navbar-link:focus {
  color: #ffffff;
}
.bootstrap-horizon .navbar-inverse .divider-vertical {
  border-left-color: #111111;
  border-right-color: #222222;
}
.bootstrap-horizon .navbar-inverse .nav li.dropdown.open > .dropdown-toggle,
.bootstrap-horizon .navbar-inverse .nav li.dropdown.active > .dropdown-toggle,
.bootstrap-horizon .navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle {
  background-color: #111111;
  color: #ffffff;
}
.bootstrap-horizon .navbar-inverse .nav li.dropdown > a:hover .caret,
.bootstrap-horizon .navbar-inverse .nav li.dropdown > a:focus .caret {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.bootstrap-horizon .navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
  border-top-color: #999999;
  border-bottom-color: #999999;
}
.bootstrap-horizon .navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret,
.bootstrap-horizon .navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret,
.bootstrap-horizon .navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle .caret {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.bootstrap-horizon .navbar-inverse .navbar-search .search-query {
  color: #ffffff;
  background-color: #515151;
  border-color: #111111;
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
  box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
.bootstrap-horizon .navbar-inverse .navbar-search .search-query:-moz-placeholder {
  color: #cccccc;
}
.bootstrap-horizon .navbar-inverse .navbar-search .search-query:-ms-input-placeholder {
  color: #cccccc;
}
.bootstrap-horizon .navbar-inverse .navbar-search .search-query::-webkit-input-placeholder {
  color: #cccccc;
}
.bootstrap-horizon .navbar-inverse .navbar-search .search-query:focus,
.bootstrap-horizon .navbar-inverse .navbar-search .search-query.focused {
  padding: 5px 15px;
  color: #333333;
  text-shadow: 0 1px 0 #ffffff;
  background-color: #ffffff;
  border: 0;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  outline: 0;
}
.bootstrap-horizon .navbar-inverse .btn-navbar {
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: transparent;
  background-color: #0e0e0e;
  background-image: -moz-linear-gradient(top, #151515, #040404);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));
  background-image: -webkit-linear-gradient(top, #151515, #040404);
  background-image: -o-linear-gradient(top, #151515, #040404);
  background-image: linear-gradient(to bottom, #151515, #040404);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);
  border-color: #040404 #040404 #000000;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #040404;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.bootstrap-horizon .navbar-inverse .btn-navbar:hover,
.bootstrap-horizon .navbar-inverse .btn-navbar:focus,
.bootstrap-horizon .navbar-inverse .btn-navbar:active,
.bootstrap-horizon .navbar-inverse .btn-navbar.active,
.bootstrap-horizon .navbar-inverse .btn-navbar.disabled,
.bootstrap-horizon .navbar-inverse .btn-navbar[disabled] {
  color: #ffffff;
  background-color: #040404;
  *background-color: #000000;
}
.bootstrap-horizon .navbar-inverse .btn-navbar:active,
.bootstrap-horizon .navbar-inverse .btn-navbar.active {
  background-color: #000000 \9;
}
.bootstrap-horizon .navbar-inverse .btn-navbar:hover,
.bootstrap-horizon .navbar-inverse .btn-navbar:focus,
.bootstrap-horizon .navbar-inverse .btn-navbar:active,
.bootstrap-horizon .navbar-inverse .btn-navbar.active,
.bootstrap-horizon .navbar-inverse .btn-navbar.disabled,
.bootstrap-horizon .navbar-inverse .btn-navbar[disabled] {
  color: #ffffff;
  background-color: #040404;
  *background-color: #000000;
}
.bootstrap-horizon .navbar-inverse .btn-navbar:active,
.bootstrap-horizon .navbar-inverse .btn-navbar.active {
  background-color: #000000 \9;
}
.bootstrap-horizon .breadcrumb {
  padding: 8px 15px;
  margin: 0 0 20px;
  list-style: none;
  background-color: #f5f5f5;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.bootstrap-horizon .breadcrumb > li {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */
  *zoom: 1;
  text-shadow: 0 1px 0 #ffffff;
}
.bootstrap-horizon .breadcrumb > li > .divider {
  padding: 0 5px;
  color: #ccc;
}
.bootstrap-horizon .breadcrumb > .active {
  color: #999999;
}
.bootstrap-horizon .pagination {
  margin: 20px 0;
}
.bootstrap-horizon .pagination ul {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */
  *zoom: 1;
  margin-left: 0;
  margin-bottom: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.bootstrap-horizon .pagination ul > li {
  display: inline;
}
.bootstrap-horizon .pagination ul > li > a,
.bootstrap-horizon .pagination ul > li > span {
  float: left;
  padding: 4px 12px;
  line-height: 20px;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-left-width: 0;
}
.bootstrap-horizon .pagination ul > li > a:hover,
.bootstrap-horizon .pagination ul > li > a:focus,
.bootstrap-horizon .pagination ul > .active > a,
.bootstrap-horizon .pagination ul > .active > span {
  background-color: #f5f5f5;
}
.bootstrap-horizon .pagination ul > .active > a,
.bootstrap-horizon .pagination ul > .active > span {
  color: #999999;
  cursor: default;
}
.bootstrap-horizon .pagination ul > .disabled > span,
.bootstrap-horizon .pagination ul > .disabled > a,
.bootstrap-horizon .pagination ul > .disabled > a:hover,
.bootstrap-horizon .pagination ul > .disabled > a:focus {
  color: #999999;
  background-color: transparent;
  cursor: default;
}
.bootstrap-horizon .pagination ul > li:first-child > a,
.bootstrap-horizon .pagination ul > li:first-child > span {
  border-left-width: 1px;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
}
.bootstrap-horizon .pagination ul > li:last-child > a,
.bootstrap-horizon .pagination ul > li:last-child > span {
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
}
.bootstrap-horizon .pagination-centered {
  text-align: center;
}
.bootstrap-horizon .pagination-right {
  text-align: right;
}
.bootstrap-horizon .pagination-large ul > li > a,
.bootstrap-horizon .pagination-large ul > li > span {
  padding: 11px 19px;
  font-size: 17.5px;
}
.bootstrap-horizon .pagination-large ul > li:first-child > a,
.bootstrap-horizon .pagination-large ul > li:first-child > span {
  -webkit-border-top-left-radius: 6px;
  -moz-border-radius-topleft: 6px;
  border-top-left-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  -moz-border-radius-bottomleft: 6px;
  border-bottom-left-radius: 6px;
}
.bootstrap-horizon .pagination-large ul > li:last-child > a,
.bootstrap-horizon .pagination-large ul > li:last-child > span {
  -webkit-border-top-right-radius: 6px;
  -moz-border-radius-topright: 6px;
  border-top-right-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  -moz-border-radius-bottomright: 6px;
  border-bottom-right-radius: 6px;
}
.bootstrap-horizon .pagination-mini ul > li:first-child > a,
.bootstrap-horizon .pagination-small ul > li:first-child > a,
.bootstrap-horizon .pagination-mini ul > li:first-child > span,
.bootstrap-horizon .pagination-small ul > li:first-child > span {
  -webkit-border-top-left-radius: 3px;
  -moz-border-radius-topleft: 3px;
  border-top-left-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  -moz-border-radius-bottomleft: 3px;
  border-bottom-left-radius: 3px;
}
.bootstrap-horizon .pagination-mini ul > li:last-child > a,
.bootstrap-horizon .pagination-small ul > li:last-child > a,
.bootstrap-horizon .pagination-mini ul > li:last-child > span,
.bootstrap-horizon .pagination-small ul > li:last-child > span {
  -webkit-border-top-right-radius: 3px;
  -moz-border-radius-topright: 3px;
  border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  border-bottom-right-radius: 3px;
}
.bootstrap-horizon .pagination-small ul > li > a,
.bootstrap-horizon .pagination-small ul > li > span {
  padding: 2px 10px;
  font-size: 11.9px;
}
.bootstrap-horizon .pagination-mini ul > li > a,
.bootstrap-horizon .pagination-mini ul > li > span {
  padding: 0 6px;
  font-size: 10.5px;
}
.bootstrap-horizon .pager {
  margin: 20px 0;
  list-style: none;
  text-align: center;
}
.bootstrap-horizon .pager:after {
  display: block;
  content: "";
  clear: both;
}
.bootstrap-horizon .pager li {
  display: inline;
}
.bootstrap-horizon .pager li > a,
.bootstrap-horizon .pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.bootstrap-horizon .pager li > a:hover,
.bootstrap-horizon .pager li > a:focus {
  text-decoration: none;
  background-color: #f5f5f5;
}
.bootstrap-horizon .pager .next > a,
.bootstrap-horizon .pager .next > span {
  float: right;
}
.bootstrap-horizon .pager .previous > a,
.bootstrap-horizon .pager .previous > span {
  float: left;
}
.bootstrap-horizon .pager .disabled > a,
.bootstrap-horizon .pager .disabled > a:hover,
.bootstrap-horizon .pager .disabled > a:focus,
.bootstrap-horizon .pager .disabled > span {
  color: #999999;
  background-color: #fff;
  cursor: default;
}
.bootstrap-horizon .modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000;
}
.bootstrap-horizon .modal-backdrop.fade {
  opacity: 0;
}
.bootstrap-horizon .modal-backdrop,
.bootstrap-horizon .modal-backdrop.fade.in {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.bootstrap-horizon .modal {
  position: fixed;
  top: 10%;
  left: 50%;
  z-index: 1050;
  width: 560px;
  margin-left: -280px;
  background-color: #ffffff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.3);
  *border: 1px solid #999;
  /* IE6-7 */
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
  outline: none;
}
.bootstrap-horizon .modal.fade {
  -webkit-transition: opacity .3s linear, top .3s ease-out;
  -moz-transition: opacity .3s linear, top .3s ease-out;
  -o-transition: opacity .3s linear, top .3s ease-out;
  transition: opacity .3s linear, top .3s ease-out;
  top: -25%;
}
.bootstrap-horizon .modal.fade.in {
  top: 10%;
}
.bootstrap-horizon .modal-header {
  padding: 9px 15px;
  border-bottom: 1px solid #eee;
}
.bootstrap-horizon .modal-header .close {
  margin-top: 2px;
}
.bootstrap-horizon .modal-header h3 {
  margin: 0;
  line-height: 30px;
}
.bootstrap-horizon .modal-body {
  position: relative;
  overflow-y: auto;
  max-height: 400px;
  padding: 15px;
}
.bootstrap-horizon .modal-form {
  margin-bottom: 0;
}
.bootstrap-horizon .modal-footer {
  padding: 14px 15px 15px;
  margin-bottom: 0;
  text-align: right;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
  -webkit-box-shadow: inset 0 1px 0 #ffffff;
  -moz-box-shadow: inset 0 1px 0 #ffffff;
  box-shadow: inset 0 1px 0 #ffffff;
}
.bootstrap-horizon .modal-footer:after {
  display: block;
  content: "";
  clear: both;
}
.bootstrap-horizon .modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.bootstrap-horizon .modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.bootstrap-horizon .modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.bootstrap-horizon .tooltip {
  position: absolute;
  z-index: 1030;
  display: block;
  visibility: visible;
  font-size: 11px;
  line-height: 1.4;
  opacity: 0;
  filter: alpha(opacity=0);
}
.bootstrap-horizon .tooltip.in {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.bootstrap-horizon .tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.bootstrap-horizon .tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.bootstrap-horizon .tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.bootstrap-horizon .tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}
.bootstrap-horizon .tooltip-inner {
  max-width: 200px;
  padding: 8px;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  background-color: #000000;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.bootstrap-horizon .tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.bootstrap-horizon .tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000000;
}
.bootstrap-horizon .tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000000;
}
.bootstrap-horizon .tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000000;
}
.bootstrap-horizon .tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000;
}
.bootstrap-horizon .popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1010;
  display: none;
  max-width: 600px;
  padding: 1px;
  text-align: left;
  background-color: #ffffff;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  white-space: normal;
}
.bootstrap-horizon .popover.top {
  margin-top: -10px;
}
.bootstrap-horizon .popover.right {
  margin-left: 10px;
}
.bootstrap-horizon .popover.bottom {
  margin-top: 10px;
}
.bootstrap-horizon .popover.left {
  margin-left: -10px;
}
.bootstrap-horizon .popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.bootstrap-horizon .popover-title:empty {
  display: none;
}
.bootstrap-horizon .popover-content {
  padding: 9px 14px;
}
.bootstrap-horizon .popover .arrow,
.bootstrap-horizon .popover .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.bootstrap-horizon .popover .arrow {
  border-width: 11px;
}
.bootstrap-horizon .popover .arrow:after {
  border-width: 10px;
  content: "";
}
.bootstrap-horizon .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;
}
.bootstrap-horizon .popover.top .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #ffffff;
}
.bootstrap-horizon .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);
}
.bootstrap-horizon .popover.right .arrow:after {
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #ffffff;
}
.bootstrap-horizon .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;
}
.bootstrap-horizon .popover.bottom .arrow:after {
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #ffffff;
}
.bootstrap-horizon .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);
}
.bootstrap-horizon .popover.left .arrow:after {
  right: 1px;
  border-right-width: 0;
  border-left-color: #ffffff;
  bottom: -10px;
}
.bootstrap-horizon .thumbnails {
  margin-left: -20px;
  list-style: none;
}
.bootstrap-horizon .thumbnails:after {
  display: block;
  content: "";
  clear: both;
}
.bootstrap-horizon .row-fluid .thumbnails {
  margin-left: 0;
}
.bootstrap-horizon .thumbnails > li {
  float: left;
  margin-bottom: 20px;
  margin-left: 20px;
}
.bootstrap-horizon .thumbnail {
  display: block;
  padding: 4px;
  line-height: 20px;
  border: 1px solid #ddd;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.bootstrap-horizon a.thumbnail:hover,
.bootstrap-horizon a.thumbnail:focus {
  border-color: #0088cc;
  -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
  -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
  box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
}
.bootstrap-horizon .thumbnail > img {
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.bootstrap-horizon .thumbnail .caption {
  padding: 9px;
  color: #555555;
}
.bootstrap-horizon .media,
.bootstrap-horizon .media-body {
  overflow: hidden;
  *overflow: visible;
  zoom: 1;
}
.bootstrap-horizon .media,
.bootstrap-horizon .media .media {
  margin-top: 15px;
}
.bootstrap-horizon .media:first-child {
  margin-top: 0;
}
.bootstrap-horizon .media-object {
  display: block;
}
.bootstrap-horizon .media-heading {
  margin: 0 0 5px;
}
.bootstrap-horizon .media > .pull-left {
  margin-right: 10px;
}
.bootstrap-horizon .media > .pull-right {
  margin-left: 10px;
}
.bootstrap-horizon .media-list {
  margin-left: 0;
  list-style: none;
}
.bootstrap-horizon .label,
.bootstrap-horizon .badge {
  display: inline-block;
  padding: 2px 4px;
  font-size: 11.844px;
  font-weight: bold;
  line-height: 14px;
  color: #ffffff;
  vertical-align: baseline;
  white-space: nowrap;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #999999;
}
.bootstrap-horizon .label {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.bootstrap-horizon .badge {
  padding-left: 9px;
  padding-right: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  border-radius: 9px;
}
.bootstrap-horizon .label:empty,
.bootstrap-horizon .badge:empty {
  display: none;
}
.bootstrap-horizon a.label:hover,
.bootstrap-horizon a.label:focus,
.bootstrap-horizon a.badge:hover,
.bootstrap-horizon a.badge:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
.bootstrap-horizon .label-important,
.bootstrap-horizon .badge-important {
  background-color: #b94a48;
}
.bootstrap-horizon .label-important[href],
.bootstrap-horizon .badge-important[href] {
  background-color: #953b39;
}
.bootstrap-horizon .label-warning,
.bootstrap-horizon .badge-warning {
  background-color: #f89406;
}
.bootstrap-horizon .label-warning[href],
.bootstrap-horizon .badge-warning[href] {
  background-color: #c67605;
}
.bootstrap-horizon .label-success,
.bootstrap-horizon .badge-success {
  background-color: #468847;
}
.bootstrap-horizon .label-success[href],
.bootstrap-horizon .badge-success[href] {
  background-color: #356635;
}
.bootstrap-horizon .label-info,
.bootstrap-horizon .badge-info {
  background-color: #3a87ad;
}
.bootstrap-horizon .label-info[href],
.bootstrap-horizon .badge-info[href] {
  background-color: #2d6987;
}
.bootstrap-horizon .label-inverse,
.bootstrap-horizon .badge-inverse {
  background-color: #333333;
}
.bootstrap-horizon .label-inverse[href],
.bootstrap-horizon .badge-inverse[href] {
  background-color: #1a1a1a;
}
.bootstrap-horizon .btn .label,
.bootstrap-horizon .btn .badge {
  position: relative;
  top: -1px;
}
.bootstrap-horizon .btn-mini .label,
.bootstrap-horizon .btn-mini .badge {
  top: 0;
}
@-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;
  }
}
@-ms-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;
  }
}
.bootstrap-horizon .progress {
  overflow: hidden;
  height: 20px;
  margin-bottom: 20px;
  background-color: transparent;
  background-color: #f7f7f7;
  background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
  background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
  background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
  background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.bootstrap-horizon .progress .bar {
  width: 0%;
  height: 100%;
  color: #ffffff;
  float: left;
  font-size: 12px;
  text-align: center;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: transparent;
  background-color: #0e90d2;
  background-image: -moz-linear-gradient(top, #149bdf, #0480be);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
  background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
  background-image: -o-linear-gradient(top, #149bdf, #0480be);
  background-image: linear-gradient(to bottom, #149bdf, #0480be);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: width 0.6s ease;
  -moz-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
.bootstrap-horizon .progress .bar + .bar {
  -webkit-box-shadow: inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);
  -moz-box-shadow: inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);
  box-shadow: inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);
}
.bootstrap-horizon .progress-striped .bar {
  background-color: #149bdf;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), 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: -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);
  -webkit-background-size: 40px 40px;
  -moz-background-size: 40px 40px;
  -o-background-size: 40px 40px;
  background-size: 40px 40px;
}
.bootstrap-horizon .progress.active .bar {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -moz-animation: progress-bar-stripes 2s linear infinite;
  -ms-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}
.bootstrap-horizon .progress-danger .bar,
.bootstrap-horizon .progress .bar-danger {
  background-color: transparent;
  background-color: #dd514c;
  background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));
  background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: linear-gradient(to bottom, #ee5f5b, #c43c35);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);
}
.bootstrap-horizon .progress-danger.progress-striped .bar,
.bootstrap-horizon .progress-striped .bar-danger {
  background-color: #ee5f5b;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), 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: -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);
}
.bootstrap-horizon .progress-success .bar,
.bootstrap-horizon .progress .bar-success {
  background-color: transparent;
  background-color: #5eb95e;
  background-image: -moz-linear-gradient(top, #62c462, #57a957);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
  background-image: -webkit-linear-gradient(top, #62c462, #57a957);
  background-image: -o-linear-gradient(top, #62c462, #57a957);
  background-image: linear-gradient(to bottom, #62c462, #57a957);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);
}
.bootstrap-horizon .progress-success.progress-striped .bar,
.bootstrap-horizon .progress-striped .bar-success {
  background-color: #62c462;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), 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: -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);
}
.bootstrap-horizon .progress-info .bar,
.bootstrap-horizon .progress .bar-info {
  background-color: transparent;
  background-color: #4bb1cf;
  background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));
  background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
  background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
  background-image: linear-gradient(to bottom, #5bc0de, #339bb9);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);
}
.bootstrap-horizon .progress-info.progress-striped .bar,
.bootstrap-horizon .progress-striped .bar-info {
  background-color: #5bc0de;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), 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: -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);
}
.bootstrap-horizon .progress-warning .bar,
.bootstrap-horizon .progress .bar-warning {
  background-color: transparent;
  background-color: #faa732;
  background-image: -moz-linear-gradient(top, #fbb450, #f89406);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
  background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
  background-image: -o-linear-gradient(top, #fbb450, #f89406);
  background-image: linear-gradient(to bottom, #fbb450, #f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
}
.bootstrap-horizon .progress-warning.progress-striped .bar,
.bootstrap-horizon .progress-striped .bar-warning {
  background-color: #fbb450;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), 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: -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);
}
.bootstrap-horizon .accordion {
  margin-bottom: 20px;
}
.bootstrap-horizon .accordion-group {
  margin-bottom: 2px;
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.bootstrap-horizon .accordion-heading {
  border-bottom: 0;
}
.bootstrap-horizon .accordion-heading .accordion-toggle {
  display: block;
  padding: 8px 15px;
}
.bootstrap-horizon .accordion-toggle {
  cursor: pointer;
}
.bootstrap-horizon .accordion-inner {
  padding: 9px 15px;
  border-top: 1px solid #e5e5e5;
}
.bootstrap-horizon .carousel {
  position: relative;
  margin-bottom: 20px;
  line-height: 1;
}
.bootstrap-horizon .carousel-inner {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.bootstrap-horizon .carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  -moz-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
.bootstrap-horizon .carousel-inner > .item > img,
.bootstrap-horizon .carousel-inner > .item > a > img {
  display: block;
  line-height: 1;
}
.bootstrap-horizon .carousel-inner > .active,
.bootstrap-horizon .carousel-inner > .next,
.bootstrap-horizon .carousel-inner > .prev {
  display: block;
}
.bootstrap-horizon .carousel-inner > .active {
  left: 0;
}
.bootstrap-horizon .carousel-inner > .next,
.bootstrap-horizon .carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.bootstrap-horizon .carousel-inner > .next {
  left: 100%;
}
.bootstrap-horizon .carousel-inner > .prev {
  left: -100%;
}
.bootstrap-horizon .carousel-inner > .next.left,
.bootstrap-horizon .carousel-inner > .prev.right {
  left: 0;
}
.bootstrap-horizon .carousel-inner > .active.left {
  left: -100%;
}
.bootstrap-horizon .carousel-inner > .active.right {
  left: 100%;
}
.bootstrap-horizon .carousel-control {
  position: absolute;
  top: 40%;
  left: 15px;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  font-size: 60px;
  font-weight: 100;
  line-height: 30px;
  color: #ffffff;
  text-align: center;
  background: #222222;
  border: 3px solid #ffffff;
  -webkit-border-radius: 23px;
  -moz-border-radius: 23px;
  border-radius: 23px;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.bootstrap-horizon .carousel-control.right {
  left: auto;
  right: 15px;
}
.bootstrap-horizon .carousel-control:hover,
.bootstrap-horizon .carousel-control:focus {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.bootstrap-horizon .carousel-indicators {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 5;
  margin: 0;
  list-style: none;
}
.bootstrap-horizon .carousel-indicators li {
  display: block;
  float: left;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  text-indent: -999px;
  background-color: #ccc;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 5px;
}
.bootstrap-horizon .carousel-indicators .active {
  background-color: #fff;
}
.bootstrap-horizon .carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px;
  background: #333333;
  background: rgba(0, 0, 0, 0.75);
}
.bootstrap-horizon .carousel-caption h4,
.bootstrap-horizon .carousel-caption p {
  color: #ffffff;
  line-height: 20px;
}
.bootstrap-horizon .carousel-caption h4 {
  margin: 0 0 5px;
}
.bootstrap-horizon .carousel-caption p {
  margin-bottom: 0;
}
.bootstrap-horizon .hero-unit {
  padding: 60px;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 200;
  line-height: 30px;
  color: inherit;
  background-color: #eeeeee;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.bootstrap-horizon .hero-unit h1 {
  margin-bottom: 0;
  font-size: 60px;
  line-height: 1;
  color: inherit;
  letter-spacing: -1px;
}
.bootstrap-horizon .hero-unit li {
  line-height: 30px;
}
.bootstrap-horizon .pull-right {
  float: right;
}
.bootstrap-horizon .pull-left {
  float: left;
}
.bootstrap-horizon .hide {
  display: none;
}
.bootstrap-horizon .show {
  display: block;
}
.bootstrap-horizon .invisible {
  visibility: hidden;
}
.bootstrap-horizon .affix {
  position: fixed;
}
.bootstrap-horizon .clearfix:after {
  display: block;
  content: "";
  clear: both;
}
.bootstrap-horizon .hide-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.bootstrap-horizon .input-block-level {
  display: block;
  width: 100%;
  min-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bootstrap-horizon .glyph {
  font-size: 1em;
  font-family: "hznglyphs";
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1em;
  text-align: center;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  /** ## Special Effects on Glyphs ##

        The following effects utilize `-webkit-background-clip: text` and
        are only available on Webkit browsers.  They fallback to the simple
        glyph on other browsers.
    */
}
.bootstrap-horizon .glyph:after,
.bootstrap-horizon .glyph:before {
  content: "\f100";
}
.bootstrap-horizon .glyph:before,
.bootstrap-horizon .glyph:after {
  display: inline-block;
}
.bootstrap-horizon .glyph:before {
  visibility: hidden;
  width: 0;
}
.bootstrap-horizon .glyph.circled- {
  /** Add a circle around the glyph.

            @example
            <i class="circled- check- glyph"></i>
            <i class="circled- x- glyph"></i>
            <i class="circled- bang- glyph"></i>
            <style>
            .check-.glyph{ color: #58bf6c; }
            .x-.glyph{ color: #f35958; }
            .bang-.glyph{ color: #fff; border-color: #f3b319; }
            </style>
        */
  width: 2em;
  height: 2em;
  line-height: 2em;
  border: 2px solid;
  border-radius: 50%;
}
.bootstrap-horizon .glyph.cutout- {
  /** Applies an inner shadow effect, which makes the glyph look cut out
            from the background.  This only works on webkit browsers.

         @example Cutout glyphs
         <ul>
         <li><i class="cutout- gear- glyph"></i> cutout- gear- glyph
         <li><i class="cutout- grid- glyph"></i> cutout- grid- glyph
         <li><i class="circled- cutout- app-center- glyph"></i> circled- cutout- app-center- glyph
         <li><i class="circled- cutout- user- glyph"></i> circled- cutout- user- glyph
         <li><i class="circled- cutout- sync- glyph"></i> circled- cutout- sync- glyph
         </ul>
         <!-- demo style -->
         <style>
         li { margin: .5em;}
         .glyph { font-size: 4em; }
         </style>

         **/
  text-shadow: rgba(255, 255, 255, 0.5) 0 0.05em 0.05em;
}
.bootstrap-horizon .glyph.cutout-:after {
  color: #999999;
  background: #999999 -webkit-linear-gradient(transparent, transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bootstrap-horizon .glyph.emboss- {
  /** Applies a shadow to make the glyph look raised off the page. */
  text-shadow: none;
}
.bootstrap-horizon .glyph.emboss-:before {
  visibility: visible;
  text-shadow: rgba(0, 0, 0, 0.4) 0 0.07em 0.07em;
}
.bootstrap-horizon .glyph.gloss- {
  /** Applies a gloss effect using a gradient fill on the glyph.
            The gradient fill only works on webkit browsers.

         @example Glyphs with gloss and emboss effects
         <ul>
         <li><i class="gloss- emboss- gear- glyph"></i> gloss- emboss- gear- glyph
         <li><i class="gloss- emboss- grid- glyph"></i> gloss- emboss- grid- glyph
         <li><i class="gloss- emboss- solid-disc- glyph"></i> gloss- emboss- solid-disc- glyph
         </ul>
         <!-- demo style -->
         <style>
         li { margin: .5em;}
         .glyph { color: #999; }
         </style>
         **/
}
.bootstrap-horizon .glyph.gloss-:after {
  color: transparent;
  background: transparent -webkit-linear-gradient(rgba(255, 255, 255, 0.5), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@font-face {
  font-family: "hznglyphs";
  src: url("../fonts/hznglyphs-28a2323d505709e53ea305f80eedf9fc.eot");
  src: url("../fonts/hznglyphs-28a2323d505709e53ea305f80eedf9fc.eot?#iefix") format("embedded-opentype"), url("../fonts/hznglyphs-28a2323d505709e53ea305f80eedf9fc.woff") format("woff"), url("../fonts/hznglyphs-28a2323d505709e53ea305f80eedf9fc.ttf") format("truetype"), url("../fonts/hznglyphs-28a2323d505709e53ea305f80eedf9fc.svg?#hznglyphs") format("svg");
  font-weight: normal;
  font-style: normal;
}
.bootstrap-horizon .glyph.0default-:after,
.bootstrap-horizon .glyph.0default-:before {
  content: "\f100";
}
.bootstrap-horizon .glyph.app-center-:after,
.bootstrap-horizon .glyph.app-center-:before {
  content: "\f101";
}
.bootstrap-horizon .glyph.bang-:after,
.bootstrap-horizon .glyph.bang-:before {
  content: "\f102";
}
.bootstrap-horizon .glyph.bullet-:after,
.bootstrap-horizon .glyph.bullet-:before {
  content: "\f103";
}
.bootstrap-horizon .glyph.bullseye-:after,
.bootstrap-horizon .glyph.bullseye-:before {
  content: "\f104";
}
.bootstrap-horizon .glyph.check-circle-:after,
.bootstrap-horizon .glyph.check-circle-:before {
  content: "\f105";
}
.bootstrap-horizon .glyph.check-:after,
.bootstrap-horizon .glyph.check-:before {
  content: "\f106";
}
.bootstrap-horizon .glyph.clock-:after,
.bootstrap-horizon .glyph.clock-:before {
  content: "\f107";
}
.bootstrap-horizon .glyph.columns-:after,
.bootstrap-horizon .glyph.columns-:before {
  content: "\f108";
}
.bootstrap-horizon .glyph.coverflow-:after,
.bootstrap-horizon .glyph.coverflow-:before {
  content: "\f109";
}
.bootstrap-horizon .glyph.down-caret-:after,
.bootstrap-horizon .glyph.down-caret-:before {
  content: "\f10a";
}
.bootstrap-horizon .glyph.gear-:after,
.bootstrap-horizon .glyph.gear-:before {
  content: "\f10b";
}
.bootstrap-horizon .glyph.grid-:after,
.bootstrap-horizon .glyph.grid-:before {
  content: "\f10c";
}
.bootstrap-horizon .glyph.hamburger-:after,
.bootstrap-horizon .glyph.hamburger-:before {
  content: "\f10d";
}
.bootstrap-horizon .glyph.health-:after,
.bootstrap-horizon .glyph.health-:before {
  content: "\f10e";
}
.bootstrap-horizon .glyph.i-:after,
.bootstrap-horizon .glyph.i-:before {
  content: "\f10f";
}
.bootstrap-horizon .glyph.launch-:after,
.bootstrap-horizon .glyph.launch-:before {
  content: "\f110";
}
.bootstrap-horizon .glyph.left-:after,
.bootstrap-horizon .glyph.left-:before {
  content: "\f111";
}
.bootstrap-horizon .glyph.list-:after,
.bootstrap-horizon .glyph.list-:before {
  content: "\f112";
}
.bootstrap-horizon .glyph.move-to-beginning-:after,
.bootstrap-horizon .glyph.move-to-beginning-:before {
  content: "\f113";
}
.bootstrap-horizon .glyph.move-to-end-:after,
.bootstrap-horizon .glyph.move-to-end-:before {
  content: "\f114";
}
.bootstrap-horizon .glyph.move-:after,
.bootstrap-horizon .glyph.move-:before {
  content: "\f115";
}
.bootstrap-horizon .glyph.play-:after,
.bootstrap-horizon .glyph.play-:before {
  content: "\f116";
}
.bootstrap-horizon .glyph.plus-:after,
.bootstrap-horizon .glyph.plus-:before {
  content: "\f117";
}
.bootstrap-horizon .glyph.power-:after,
.bootstrap-horizon .glyph.power-:before {
  content: "\f118";
}
.bootstrap-horizon .glyph.reload-:after,
.bootstrap-horizon .glyph.reload-:before {
  content: "\f119";
}
.bootstrap-horizon .glyph.reverse-play-:after,
.bootstrap-horizon .glyph.reverse-play-:before {
  content: "\f11a";
}
.bootstrap-horizon .glyph.right-:after,
.bootstrap-horizon .glyph.right-:before {
  content: "\f11b";
}
.bootstrap-horizon .glyph.search-:after,
.bootstrap-horizon .glyph.search-:before {
  content: "\f11c";
}
.bootstrap-horizon .glyph.solid-disc-:after,
.bootstrap-horizon .glyph.solid-disc-:before {
  content: "\f11d";
}
.bootstrap-horizon .glyph.solid-square-:after,
.bootstrap-horizon .glyph.solid-square-:before {
  content: "\f11e";
}
.bootstrap-horizon .glyph.star-:after,
.bootstrap-horizon .glyph.star-:before {
  content: "\f11f";
}
.bootstrap-horizon .glyph.sync-:after,
.bootstrap-horizon .glyph.sync-:before {
  content: "\f120";
}
.bootstrap-horizon .glyph.trash-:after,
.bootstrap-horizon .glyph.trash-:before {
  content: "\f121";
}
.bootstrap-horizon .glyph.user-group-:after,
.bootstrap-horizon .glyph.user-group-:before {
  content: "\f122";
}
.bootstrap-horizon .glyph.user-:after,
.bootstrap-horizon .glyph.user-:before,
.bootstrap-horizon .dashboard-page .dashboard-users-groups .table td:first-child:not(:empty):before {
  content: "\f123";
}
.bootstrap-horizon .glyph.x-:after,
.bootstrap-horizon .glyph.x-:before {
  content: "\f124";
}
.bootstrap-horizon .glyph {
  /** ## Stacked Glyphs ##

        Multi-colored icons can be built up by stacking up glyphs. The solid disc
        and solid square glyphs are often used as backgrounds, with another glyph
        being displayed on top.
    **/
}
.bootstrap-horizon .glyph.stacked- {
  /** Stack two glyphs on top of each other.  The usual modifiers are used
            to specify the top (foreground) glyph.  Additional modifier classes
            prefixed with `on-` specify the bottom (background) glyph.  The foreground
            glyph is automatically scaled to "fit" within the background.

        @example Stacked glyphs
        <ul>
        <li><i class="play- stacked- on-solid-square- glyph"></i> play- stacked- on-solid-square- glyph
        <li><i class="x- stacked- on-solid-disc- glyph"></i> x- stacked- on-solid-disc- glyph
        <li><i class="solid-disc- stacked- on-solid-disc- glyph"></i>
            <i class="solid-square- stacked- on-solid-square- glyph"></i>
            <i class="solid-square- stacked- on-solid-disc- glyph"></i>
            <i class="solid-disc- stacked- on-solid-square- glyph"></i>
            solid-{disc,square}- stacked- on-solid-{disc,square}- glyph
        <li><i class="favorite- glyph"></i> favorite- glyph
        <li><i class="info- glyph"></i> info- glyph
        </ul>
        <!-- demo style -->
        <style>
        li { margin: .5em;}
        </style>
        **/
}
.bootstrap-horizon .glyph.stacked-:before {
  visibility: visible;
  color: inherit;
}
.bootstrap-horizon .glyph.stacked-:after {
  color: white;
  width: 100%;
  vertical-align: top;
}
.bootstrap-horizon .glyph.stacked-.on-solid-disc- {
  /** Show the icon with a solid disc behind it. */
}
.bootstrap-horizon .glyph.stacked-.on-solid-disc-:after {
  font-size: 0.66666em;
}
.bootstrap-horizon .glyph.stacked-.on-solid-square- {
  /** Show the icon with a solid square behind it. */
}
.bootstrap-horizon .glyph.stacked-.on-solid-square-:after {
  font-size: 0.8em;
}
.bootstrap-horizon .glyph.favorite- {
  /** A white star in a yellow circle.  It is defined
            using stacked glyph mixins. */
}
.bootstrap-horizon .glyph.favorite-:after {
  font-size: 0.85em;
}
.bootstrap-horizon .glyph.favorite-:after {
  color: #ffffff;
}
.bootstrap-horizon .glyph.favorite-:before {
  color: #fdb813;
}
.bootstrap-horizon .glyph.favorite-:after {
  -webkit-transform: translateY(-0.05em);
}
.bootstrap-horizon .glyph.info- {
  /** A white "i" in a grey circle.  It is defined
            using stacked glyph mixins. */
}
.bootstrap-horizon .glyph.info-:after {
  font-size: 0.66666em;
}
.bootstrap-horizon .glyph.info-:after {
  color: #ffffff;
}
.bootstrap-horizon .glyph.info-:before {
  color: #828082;
}
.bootstrap-horizon .frame {
  height: 100%;
  width: 100%;
  z-index: 0;
  text-align: left;
  position: relative;
}
.bootstrap-horizon .frame > * {
  z-index: 1;
}
.bootstrap-horizon .frame,
.bootstrap-horizon .frame > header,
.bootstrap-horizon .frame > footer,
.bootstrap-horizon .frame .frame-header,
.bootstrap-horizon .frame .frame-footer,
.bootstrap-horizon .frame .frame-overlay,
.bootstrap-horizon .frame .frame-drawer,
.bootstrap-horizon .frame .frame-body,
.bootstrap-horizon .frame .frame-split {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bootstrap-horizon .frame > header,
.bootstrap-horizon .frame .frame-header {
  /** An optional fixed header at the top of the frame.  The header might include
            a title, navigation, or tools, for example.

            @example A frame with a header.
            <section class="headered- frame">
              <header>
                <h1 dummy>
              </header>
              <div class="vertically- scrollable- pane">
                <p dummy>
                <p dummy>
                <p dummy>
              </div>
            </section>
            <!-- demo style -->
            <style>
              .frame { border: 4px solid #456; }
              h1 { font-size: inherit; margin: 0 }
            </style>
        */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2em;
  border-bottom: 1px solid #b5b5b5;
}
.bootstrap-horizon .frame.headered- {
  padding-top: 2em;
}
.bootstrap-horizon .frame > header,
.bootstrap-horizon .frame > .frame-header,
.bootstrap-horizon .frame > .frame-body > .frame-header {
  height: 2em;
}
.bootstrap-horizon .frame.footered- {
  padding-bottom: 2em;
}
.bootstrap-horizon .frame > footer,
.bootstrap-horizon .frame > .frame-footer,
.bootstrap-horizon .frame > .frame-body > .frame-footer {
  height: 2em;
}
.bootstrap-horizon .frame.overlaid- > .pane {
  padding-bottom: 2em;
}
.bootstrap-horizon .frame.overlaid- .grid .grid-sidebar .box-module,
.bootstrap-horizon .frame.overlaid- .grid .grid-row:last-child {
  padding-bottom: 2em;
}
.bootstrap-horizon .frame > .frame-overlay,
.bootstrap-horizon .frame > .frame-body > .frame-overlay {
  height: 2em;
}
.bootstrap-horizon .frame.headered- {
  /** A frame which has a header at the top. */
}
.bootstrap-horizon .frame .frame-header-left {
  /** The left-hand side of a frame header. */
  float: left;
}
.bootstrap-horizon .frame .frame-header-right {
  /** The right-hand side of a frame header. */
  float: right;
}
.bootstrap-horizon .frame.footered- {
  /** A frame which has a footer at the bottom. */
}
.bootstrap-horizon .frame > footer,
.bootstrap-horizon .frame .frame-footer {
  /** An optional fixed footer at the bottom of the frame.

            @example A frame with a header and footer.
            <section class="headered- footered- frame">
              <header><h1 dummy></h1></header>
              <div class="vertically- scrollable- pane">
                <p dummy>
                <p dummy>
                <p dummy>
              </div>
              <footer><p dummy="15w"></footer>


            </section>
            <!-- demo style -->
            <style>
              .frame { border: 4px solid #456; }
              h1 { font-size: inherit; margin: 0 }
            </style>
            */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2em;
  border-top: 1px solid #b5b5b5;
}
.bootstrap-horizon .frame.overlaid- {
  /** A frame which has an overlay.*/
}
.bootstrap-horizon .frame .frame-overlay {
  /** An optional overlay at the bottom of the frame.  By default, the overlay
            is at the bottom of the frame.

            @example A frame with a header and an overlay.
            <div class="headered- overlaid- frame">
              <h1 class="frame-header" dummy></h1>
              <div class="vertically- scrollable- pane">
                <p dummy>
                <p dummy>
                <p dummy>
              </div>
              <div class="frame-overlay" dummy="10w"></div>
            </div>
            <!-- demo style -->
            <style>
              .frame { border: 4px solid #456; }
              h1 { font-size: inherit; margin: 0 }
              .frame-overlay { background: rgba(200,200,200,0.5); }
            </style>
            */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2em;
  border-top: 1px solid #b5b5b5;
  z-index: 2;
}
.bootstrap-horizon .frame .frame-body {
  /**
        An optional wrapper around the pane(s) or any combination
        of frame elements.  If intervening <div>s between the
        frame and its elements, giving them this class will
        propagate down the height of the frame.

        This class is helpful if, for example, the header and pane
        are generated by a partial, but the footer is not.

        @example A frame with a frame body.
            <div class="headered- footered- frame">
              <div class="frame-body">
                <h1 class="frame-header" dummy></h1>
                <div class="vertically- scrollable- pane">
                  <p dummy>
                  <p dummy>
                  <p dummy>
                </div>
              </div>
              <div class="frame-footer" dummy="10w"></div>
            </div>
            <!-- demo styles -->
            <style>
              .frame { border: 4px solid #456; }
              h1 { font-size: inherit; margin: 0 }
            </style>
        */
  height: 100%;
  z-index: 1;
}
.bootstrap-horizon .frame .frame-drawer {
  /** A layer of content below the rest of the frame's
            content.  The frame's other content slides away
            to reveal the drawer.
            */
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 280px;
  z-index: 0;
}
.bootstrap-horizon .frame .frame-drawer:after {
  content: "";
  position: absolute;
  left: -5px;
  top: 0;
  width: 5px;
  height: 100%;
  background-color: transparent;
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  background-image: -webkit-gradient(linear, 0 0, 100% 0, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.5)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.bootstrap-horizon .frame .frame-drawer.show:after {
  -webkit-transform: translate(280px, 0);
  -moz-transform: translate(280px, 0);
  -ms-transform: translate(280px, 0);
  -o-transform: translate(280px, 0);
  transform: translate(280px, 0);
}
.bootstrap-horizon .frame .frame-drawer ~ * {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.bootstrap-horizon .frame .frame-drawer.show ~ * {
  -webkit-transform: translate(280px, 0);
  -moz-transform: translate(280px, 0);
  -ms-transform: translate(280px, 0);
  -o-transform: translate(280px, 0);
  transform: translate(280px, 0);
}
.bootstrap-horizon .frame.split-,
.bootstrap-horizon .frame .frame-split {
  /** Split a frame into two panes.

            Use the `split-` modifier only if the frame only contains two panes,
            and no header or footer.  Otherwise, wrap the two panes in a
            `frame-split` element.
            */
  position: relative;
}
.bootstrap-horizon .frame.split- > *,
.bootstrap-horizon .frame .frame-split > * {
  position: absolute;
}
.bootstrap-horizon .frame.split-.horizontal-,
.bootstrap-horizon .frame .frame-split.horizontal- {
  /** A frame which is split horizontally.
                By default the frame is split equally (1:1)
                */
  /**
               @example Two panes side-by-side
               <div class="headered- frame">
                 <header>A split frame</header>
                 <div class="horizontal- frame-split">
                   <div class="pane">
                       <p dummy>
                       <p dummy>
                   </div>
                   <div class="pane">
                       <p dummy>
                   </div>
               </div>
               */
  width: 100%;
}
.bootstrap-horizon .frame.split-.horizontal- > *,
.bootstrap-horizon .frame .frame-split.horizontal- > * {
  height: 100%;
  top: 0;
}
.bootstrap-horizon .frame.split-.horizontal- > :first-child,
.bootstrap-horizon .frame .frame-split.horizontal- > :first-child {
  left: 0;
}
.bootstrap-horizon .frame.split-.horizontal- > :last-child,
.bootstrap-horizon .frame .frame-split.horizontal- > :last-child {
  right: 0;
}
.bootstrap-horizon .frame.split-.horizontal- > :first-child,
.bootstrap-horizon .frame .frame-split.horizontal- > :first-child {
  width: 50%;
}
.bootstrap-horizon .frame.split-.horizontal- > :last-child,
.bootstrap-horizon .frame .frame-split.horizontal- > :last-child {
  width: 50%;
}
.bootstrap-horizon .frame.split-.horizontal-.one-two-,
.bootstrap-horizon .frame .frame-split.horizontal-.one-two- {
  /** Split the frame 1:2 */
}
.bootstrap-horizon .frame.split-.horizontal-.one-two- > :first-child,
.bootstrap-horizon .frame .frame-split.horizontal-.one-two- > :first-child {
  width: 33.33333333%;
}
.bootstrap-horizon .frame.split-.horizontal-.one-two- > :last-child,
.bootstrap-horizon .frame .frame-split.horizontal-.one-two- > :last-child {
  width: 66.66666667%;
}
.bootstrap-horizon .frame.split-.vertical-,
.bootstrap-horizon .frame .frame-split.vertical- {
  /** A frame which is split vertically.
                By default the frame is split equally (1:1)
                */
  height: 100%;
}
.bootstrap-horizon .frame.split-.vertical- > *,
.bootstrap-horizon .frame .frame-split.vertical- > * {
  width: 100%;
  left: 0;
}
.bootstrap-horizon .frame.split-.vertical- > *:first-child,
.bootstrap-horizon .frame .frame-split.vertical- > *:first-child {
  top: 0;
}
.bootstrap-horizon .frame.split-.vertical- > *:last-child,
.bootstrap-horizon .frame .frame-split.vertical- > *:last-child {
  bottom: 0;
}
.bootstrap-horizon .frame.split-.vertical- > :first-child,
.bootstrap-horizon .frame .frame-split.vertical- > :first-child {
  height: 50%;
}
.bootstrap-horizon .frame.split-.vertical- > :last-child,
.bootstrap-horizon .frame .frame-split.vertical- > :last-child {
  height: 50%;
}
.bootstrap-horizon .frame.split-.vertical-.one-two-,
.bootstrap-horizon .frame .frame-split.vertical-.one-two- {
  /** Split the frame 1:2 */
}
.bootstrap-horizon .frame.split-.vertical-.one-two- > :first-child,
.bootstrap-horizon .frame .frame-split.vertical-.one-two- > :first-child {
  height: 33.33333333%;
}
.bootstrap-horizon .frame.split-.vertical-.one-two- > :last-child,
.bootstrap-horizon .frame .frame-split.vertical-.one-two- > :last-child {
  height: 66.66666667%;
}
.bootstrap-horizon .frame.split-.vertical-.two-one-,
.bootstrap-horizon .frame .frame-split.vertical-.two-one- {
  /** Split the frame 2:1 */
}
.bootstrap-horizon .frame.split-.vertical-.two-one- > :first-child,
.bootstrap-horizon .frame .frame-split.vertical-.two-one- > :first-child {
  height: 66.66666667%;
}
.bootstrap-horizon .frame.split-.vertical-.two-one- > :last-child,
.bootstrap-horizon .frame .frame-split.vertical-.two-one- > :last-child {
  height: 33.33333333%;
}
.bootstrap-horizon .frame.tabbed- {
  /** TODO: A frame with tabs which select alternate panes to view. */
}
.bootstrap-horizon .pane {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 0;
}
.bootstrap-horizon .pane.has-overflow {
  /**
           If a pane contains elements which overflow,
           adding this class will allow them to be visible.
           */
  overflow: visible;
  z-index: auto;
}
.bootstrap-horizon .pane.scrollable- {
  /** A pane with scrolling content (in both directions).
            @example Scrolling in both directions
            <div class="scrollable- pane">
              <p dummy="25s">
              <p dummy="25s">
              <p dummy="25s">
              <p dummy="25s">
              <p dummy="25s">
            </div>
            <!-- demo style -->
            <style> p { width: 200%; } </style>
        **/
  overflow-x: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.bootstrap-horizon .pane.scrollable-.vertically- {
  /** A pane with vertically scrolling content.
                @example Vertical scrolling
                <div class="vertically- scrollable- pane">
                  <p dummy="15s">
                  <p dummy="15s">
                  <p dummy="15s">
                  <p dummy="15s">
                  <p dummy="15s">
                </div>
             */
  overflow-x: hidden;
}
.bootstrap-horizon .pane.scrollable-.horizontally- {
  /** A pane with horizontally scrolling content.
                @example Horizontal scrolling
                <div class="horizontally- scrollable- pane">
                  <p dummy>
                  <p dummy>
                  <p dummy>
                  <p dummy>
                  <p dummy>
                </div>
                <!-- demo style -->
                <style> p { width: 200%; } </style>
             */
  overflow-y: hidden;
}
.bootstrap-horizon .pane > .grid:first-child:last-child {
  min-height: 100%;
}
.bootstrap-horizon .chart {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  position: relative;
  width: 100%;
  height: 100%;
}
.bootstrap-horizon .chart svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bootstrap-horizon .chart .chart-graphic {
  /** The area of the chart reserved for a graphic,
            when a legend is being used. */
  position: absolute;
  width: 60%;
  height: 100%;
  left: 0;
  top: 0;
}
.bootstrap-horizon .chart .chart-legend {
  /** A legend for the chart.

            @example
            <div class="chart" style="width: 200px; height: 100px">
              <svg class="chart-graphic"><circle cx="50" cy="50" r="50" fill="#fc0"/></svg>
              <ul class="chart-legend">
                <li><b class="swatch" style="background-color: #fc0"></b> Pass
                <li><b class="swatch"></b> Fail
              </ul>
            </div>
            */
  position: absolute;
  max-width: 40%;
  right: 20%;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
.bootstrap-horizon .chart ul.chart-legend {
  list-style: none;
  font-size: 12px;
  margin: 0;
  color: #828082;
  font-weight: bold;
}
.bootstrap-horizon .chart ul.chart-legend > li {
  line-height: 1.2em;
  padding: .4em;
}
.bootstrap-horizon .chart ul.chart-legend .swatch {
  display: inline-block;
  margin-right: .5em;
  margin-left: -1.5em;
  height: 1em;
  width: 1em;
  background-color: #999;
  vertical-align: middle;
}
.bootstrap-horizon .factoid {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bootstrap-horizon .factoid .factoid-image {
  /** The image portion of the factoid.

            If applied to a `div` element,
            the `background-image` should be specified as an inline style.
            */
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.bootstrap-horizon .factoid svg.factoid-image,
.bootstrap-horizon .factoid img.factoid-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.bootstrap-horizon .factoid .factoid-quantity {
  /** The quantity (usually a number) portion of the factoid. */
  text-align: center;
  line-height: 1em;
  height: 1em;
  color: #444d56;
}
.bootstrap-horizon .factoid .factoid-label {
  /** The label (usually a number) portion of the factoid. */
  text-align: center;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 600;
  margin: 0;
  color: #b7b7b7;
}
.bootstrap-horizon .factoid .factoid-chart,
.bootstrap-horizon .factoid .factoid-image {
  position: relative;
}
.bootstrap-horizon .factoid .factoid-chart .factoid-quantity,
.bootstrap-horizon .factoid .factoid-image .factoid-quantity {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-weight: 300;
}
.bootstrap-horizon .factoid .factoid-chart .factoid-label,
.bootstrap-horizon .factoid .factoid-image .factoid-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.bootstrap-horizon .factoid .factoid-chart + .factoid-quantity,
.bootstrap-horizon .factoid .factoid-image + .factoid-quantity,
.bootstrap-horizon .factoid .factoid-chart + .factoid-label,
.bootstrap-horizon .factoid .factoid-image + .factoid-label {
  margin-top: .5em;
}
.bootstrap-horizon .factoid .factoid-quantity + .factoid-label {
  margin-top: .25em;
}
.bootstrap-horizon .factoid.left- {
  float: left;
}
.bootstrap-horizon .factoid.right- {
  float: right;
}
.bootstrap-horizon .factoid,
.bootstrap-horizon .factoid.stacked- {
  /** Show the image, quantity, and label stacked vertically. Default. */
  padding-left: 0;
}
.bootstrap-horizon .factoid .factoid-image,
.bootstrap-horizon .factoid.stacked- .factoid-image {
  margin-left: 0;
  float: none;
}
.bootstrap-horizon .factoid .factoid-quantity,
.bootstrap-horizon .factoid.stacked- .factoid-quantity {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  padding-top: 0;
}
.bootstrap-horizon .factoid.side-by-side- {
  /** Show the image to the left, with the  quantity and label
            centered beside it on the right. */
  padding-left: 50%;
  padding-right: 0;
}
.bootstrap-horizon .factoid.side-by-side-:after {
  display: block;
  content: "";
  clear: both;
}
.bootstrap-horizon .factoid.side-by-side- .factoid-image {
  margin-left: -100%;
  float: left;
}
.bootstrap-horizon .factoid.side-by-side- .factoid-quantity {
  padding-top: 37.5%;
  margin-top: -0.75em;
  font-size: 32px;
  font-weight: normal;
}
.bootstrap-horizon .spinner {
  position: relative;
  width: 40px;
  height: 40px;
  background: #444d56;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 25%;
  -moz-border-radius: 25%;
  border-radius: 25%;
}
.bootstrap-horizon .spinner:before {
  content: "";
  display: block;
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 60%;
  background: url(../images/spinner-96.gif);
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
}
.bootstrap-horizon .spinner-svg {
  height: 50px;
  width: 50px;
  fill: currentColor;
}
.bootstrap-horizon .spinner-svg.inline- {
  display: inline-block;
  vertical-align: middle;
}
.bootstrap-horizon .spinner-svg.center- {
  margin-left: auto;
  margin-right: auto;
}
.bootstrap-horizon .spinner-svg use {
  opacity: 0.3;
  -webkit-animation: spinner-animation 2s linear infinite;
  -moz-animation: spinner-animation 2s linear infinite;
  animation: spinner-animation 2s linear infinite;
}
.bootstrap-horizon .spinner-svg use:nth-child( 0) {
  -webkit-animation-delay: -0.16666667s;
  -moz-animation-delay: -0.16666667s;
  animation-delay: -0.16666667s;
}
.bootstrap-horizon .spinner-svg use:nth-child( 1) {
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  animation-delay: 0s;
}
.bootstrap-horizon .spinner-svg use:nth-child( 2) {
  -webkit-animation-delay: 0.16666667s;
  -moz-animation-delay: 0.16666667s;
  animation-delay: 0.16666667s;
}
.bootstrap-horizon .spinner-svg use:nth-child( 3) {
  -webkit-animation-delay: 0.33333333s;
  -moz-animation-delay: 0.33333333s;
  animation-delay: 0.33333333s;
}
.bootstrap-horizon .spinner-svg use:nth-child( 4) {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.bootstrap-horizon .spinner-svg use:nth-child( 5) {
  -webkit-animation-delay: 0.66666667s;
  -moz-animation-delay: 0.66666667s;
  animation-delay: 0.66666667s;
}
.bootstrap-horizon .spinner-svg use:nth-child( 6) {
  -webkit-animation-delay: 0.83333333s;
  -moz-animation-delay: 0.83333333s;
  animation-delay: 0.83333333s;
}
.bootstrap-horizon .spinner-svg use:nth-child( 7) {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}
.bootstrap-horizon .spinner-svg use:nth-child( 8) {
  -webkit-animation-delay: 1.16666667s;
  -moz-animation-delay: 1.16666667s;
  animation-delay: 1.16666667s;
}
.bootstrap-horizon .spinner-svg use:nth-child( 9) {
  -webkit-animation-delay: 1.33333333s;
  -moz-animation-delay: 1.33333333s;
  animation-delay: 1.33333333s;
}
.bootstrap-horizon .spinner-svg use:nth-child( 10) {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.bootstrap-horizon .spinner-svg use:nth-child( 11) {
  -webkit-animation-delay: 1.66666667s;
  -moz-animation-delay: 1.66666667s;
  animation-delay: 1.66666667s;
}
.bootstrap-horizon .spinner-svg use:nth-child( 12) {
  -webkit-animation-delay: 1.83333333s;
  -moz-animation-delay: 1.83333333s;
  animation-delay: 1.83333333s;
}
.bootstrap-horizon .spinner-svg.large {
  height: 100px;
  width: 100px;
}
@-moz-keyframes spinner-animation {
  0% {
    opacity: 0.3;
  }
  0.1% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.3;
  }
}
@-webkit-keyframes spinner-animation {
  0% {
    opacity: 0.3;
  }
  0.1% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.3;
  }
}
@keyframes spinner-animation {
  0% {
    opacity: 0.3;
  }
  0.1% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.3;
  }
}
.bootstrap-horizon > h2 {
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 30px;
}
.bootstrap-horizon h1,
.bootstrap-horizon h2,
.bootstrap-horizon h3 {
  margin-top: 0px;
}
.bootstrap-horizon h2 {
  font-size: 21px;
  line-height: 1;
}
.bootstrap-horizon h3 {
  font-size: 14px;
  line-height: 1;
}
.bootstrap-horizon .thumbnails {
  margin-top: 20px;
}
.bootstrap-horizon form.no-margin {
  margin-bottom: 0;
}
.bootstrap-horizon .catalog-item-details {
  word-wrap: break-word;
}
.bootstrap-horizon .catalog-item-details .icon {
  width: 100px;
  height: auto;
}
.bootstrap-horizon .indent-left {
  margin-left: 1em;
}
.bootstrap-horizon .indent-top {
  margin-top: 1em;
}
.bootstrap-horizon .indent-bottom {
  margin-bottom: 32px;
}
.bootstrap-horizon input[type="radio"].margin-top-9,
.bootstrap-horizon input[type="checkbox"].margin-top-9 {
  margin-top: 9px;
}
.bootstrap-horizon .field-instruction-help {
  float: none;
  width: auto;
  overflow: hidden;
  box-sizing: content-box;
  font-size: 13px;
  line-height: 1.14285714;
  color: #828082;
  clear: both;
  font-weight: 100;
}
.bootstrap-horizon .well-200 {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  max-height: 200px;
  overflow: auto;
}
.bootstrap-horizon .well-200 blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}
.bootstrap-horizon .long-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bootstrap-horizon .row-fluid .controls-row [class*="span"] + .tooltip + [class*="span"] {
  margin-left: 2.12765957%;
}
.bootstrap-horizon .row-fluid .controls-row [class*="span"] + .popover + [class*="span"] {
  margin-left: 2.12765957%;
}
.bootstrap-horizon .width-300 {
  width: 300px;
}
.bootstrap-horizon .scroll-400 {
  max-height: 400px;
  overflow: auto;
}
.bootstrap-horizon .scroll-300 {
  max-height: 300px;
  overflow: auto;
}
.bootstrap-horizon .scroll-100 {
  max-height: 100px;
  overflow: auto;
}
.bootstrap-horizon input[type="file"] {
  line-height: 0px;
  margin-top: 5px;
}
.bootstrap-horizon .gray-border {
  border: 1px solid #eeeeee;
}
.bootstrap-horizon .height-96 {
  height: 96px;
}
.bootstrap-horizon .width-350 {
  width: 350px;
}
.bootstrap-horizon .width-50 {
  width: 50px;
}
.bootstrap-horizon .width-95 {
  width: 95px;
}
.bootstrap-horizon .width-415 {
  width: 415px;
}
.bootstrap-horizon .opacity-30 {
  opacity: 0.3;
  filter: alpha(opacity=30);
}
.bootstrap-horizon .draggable {
  cursor: move;
}
.bootstrap-horizon .application-menu-header {
  color: #666666;
  padding-left: 20px;
  padding-right: 20px;
}
.bootstrap-horizon .dropdown-menu > li > a.application-menu-item {
  padding-left: 50px;
  padding-right: 20px;
}
.bootstrap-horizon .dropdown-menu.large {
  width: 180px;
}
.bootstrap-horizon .application-item-divider {
  margin-top: 6px;
}
.bootstrap-horizon .application-menu {
  padding-top: 6px;
  padding-bottom: 6px;
}
.bootstrap-horizon .btn-primary {
  background-color: #0095d3;
  background-image: linear-gradient(to bottom, #28b3e0, #187fcc);
}
.bootstrap-horizon .btn-primary:hover,
.bootstrap-horizon .btn-primary:focus,
.bootstrap-horizon .btn-primary:active,
.bootstrap-horizon .btn-primary.active,
.bootstrap-horizon .btn-primary.disabled,
.bootstrap-horizon .btn-primary[disabled] {
  background-color: #187fcc;
}
.bootstrap-horizon .btn-form-helper {
  margin-bottom: 10px;
}
.bootstrap-horizon .searchbox-container {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bootstrap-horizon .searchbox-container .searchbox {
  position: relative;
}
.bootstrap-horizon .searchbox-container input[type="text"].search-textbox {
  width: 100%;
  height: auto;
  padding-left: 1.6em;
  margin-bottom: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bootstrap-horizon .searchbox-container input[type="text"].search-textbox::-ms-clear {
  width: 0;
  height: 0;
}
.bootstrap-horizon .searchbox-container .search-search-img {
  position: absolute;
  left: 4px;
  top: 8px;
}
.bootstrap-horizon .search-search-img {
  display: inline-block;
  background-image: url('../images/button-search-bg.png');
  background-repeat: no-repeat;
  vertical-align: middle;
  height: 14px;
  width: 14px;
  border: medium none;
}
.bootstrap-horizon .thinapp-details-ta {
  padding: 6px;
  width: 518px;
}
.bootstrap-horizon .color-preview {
  padding: 4px 6px;
  height: 20px;
  width: 20px;
  float: left;
  margin-left: 10px;
  border: 1px solid darkgray;
}
.bootstrap-horizon .spanCenter {
  margin: 0 auto;
  clear: both;
}
.bootstrap-horizon .spanCenter .form-actions {
  padding-left: 300px;
}
.bootstrap-horizon .formContent {
  display: inline-block;
  width: 100%;
  padding-left: 9%;
  width: 80%;
}
.bootstrap-horizon .settingsBox {
  border-left: 1px solid #CCCCCC;
  padding: 0px 0 20px 30px;
}
.bootstrap-horizon .dbConfigLabel {
  font-size: 17px;
}
.bootstrap-horizon table.dbtable td {
  padding: 2px 15px 2px 0px;
}
.bootstrap-horizon .dbtable-link {
  margin-top: 10px;
}
.bootstrap-horizon .adsetup-link {
  margin-left: 20px;
  vertical-align: middle;
}
.bootstrap-horizon .licenseStatus {
  width: 25px;
  display: inline;
}
.bootstrap-horizon .licenseStatus .check- {
  color: #85c818;
}
.bootstrap-horizon .licenseStatus .x- {
  color: #eb1e2b;
}
.bootstrap-horizon .spanCenter .input-xlarge {
  width: 90%;
  max-width: 270px;
}
.bootstrap-horizon .message-box-center {
  margin: auto;
  width: 300px;
  text-align: center;
}
.bootstrap-horizon .message-box-center .glyph {
  font-size: 3em;
  margin-bottom: .5em;
  border-color: transparent;
  background-color: #C4C6CA;
  text-shadow: rgba(255, 255, 255, 0.5) 0 0.05em 0.05em;
  box-shadow: 0px 1px rgba(0, 0, 0, 0.5) inset;
}
.bootstrap-horizon .message-box-center .glyph:after {
  color: #3b3c3e;
  background: #3b3c3e -webkit-linear-gradient(transparent, transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bootstrap-horizon .message-box-right .glyph {
  font-size: 3em;
  margin-bottom: .5em;
  border-color: transparent;
  background-color: #C4C6CA;
  text-shadow: rgba(255, 255, 255, 0.5) 0 0.05em 0.05em;
  box-shadow: 0px 1px rgba(0, 0, 0, 0.5) inset;
}
.bootstrap-horizon .message-box-right .glyph:after {
  color: #f5f5f5;
  background: #f5f5f5 -webkit-linear-gradient(transparent, transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bootstrap-horizon .message-box-right {
  width: 560px;
  text-align: left;
  margin-left: auto;
  margin-bottom: 0;
}
.bootstrap-horizon .message-box-right .right-.box {
  text-align: left;
}
.bootstrap-horizon .app-module {
  border: 1px solid darkgray;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  color: #828082;
  padding: 0;
  position: relative;
}
.bootstrap-horizon .app-module .app-module-badge {
  position: absolute;
  display: block;
  top: 2%;
  right: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
  background-color: #6db33f;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  font-size: 10px;
  font-weight: bold;
  line-height: 12px;
  padding: 5px 10px;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  z-index: 1;
}
.bootstrap-horizon .app-module .info {
  padding: 20px;
}
.bootstrap-horizon .app-module .info .module-name {
  color: #666466;
  text-shadow: 1px 1px rgba(255, 255, 255, 0.5);
  line-height: 1.25em;
  margin-bottom: 20px;
  padding: .25em .25em 0 .25em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 579px) and (min-width: 452px), screen and (max-width: 359px) {
  .bootstrap-horizon .app-module .info .module-name {
    font-weight: normal;
  }
}
.bootstrap-horizon .app-module .icon {
  background-color: #e5e4e5;
  padding: 45px 0 25px 0;
}
.bootstrap-horizon .app-module .icon .ico-admin {
  border: 1px solid gray;
  margin: 0 auto;
  background-color: #ffffff;
}
.bootstrap-horizon .app-module .btn {
  display: block;
}
.bootstrap-horizon .padding-top-7 {
  padding: 7px 0px 0px 0px;
}
.bootstrap-horizon .portalHint {
  background-color: #fef3b5;
  padding: 4px;
  width: auto;
  border: 1px solid #fdcf08;
  border-radius: 3px;
  color: #565656;
}
.bootstrap-horizon .division-container {
  padding-top: 8px;
  border-top: 1px solid #eeeeee;
  margin-top: 4px;
  margin-bottom: 20px;
}
.bootstrap-horizon .division-container:after {
  display: block;
  content: "";
  clear: both;
}
.bootstrap-horizon .btn-group-link .btn + .btn {
  border-left: 1px solid #eeeeee;
}
.bootstrap-horizon .section-header {
  margin-bottom: 20px;
}
.bootstrap-horizon .section-header .top {
  position: relative;
  min-height: 20px;
  padding-bottom: 4px;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 4px;
}
.bootstrap-horizon .section-header .top h2,
.bootstrap-horizon .section-header .top h3 {
  position: absolute;
  bottom: 4px;
  margin: 0;
  margin-top: -10px;
}
.bootstrap-horizon .section-header.main-header .top {
  border-bottom: 0px;
  margin-bottom: 8px;
}
.bootstrap-horizon .info-row .label-span {
  font-weight: bold;
  min-height: 0;
}
.bootstrap-horizon .info-row .value-span {
  min-height: 0;
}
.bootstrap-horizon .dl-horizontal dt {
  width: 30%;
  text-align: left;
}
.bootstrap-horizon .dl-horizontal dd {
  margin-left: 33%;
}
.bootstrap-horizon .form-horizontal span.required {
  position: absolute;
  text-indent: 2px;
  color: #a00;
}
.bootstrap-horizon .tooltip {
  z-index: 2080;
  font-size: 13px;
}
.bootstrap-horizon .filter-input {
  display: inline-block;
  width: auto;
  height: 20px;
  min-width: 16px;
  padding: 4px 5px;
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
  text-align: center;
  text-shadow: 0 1px 0 #ffffff;
  background-color: #DDDDDD;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  margin: 0 -1px 0;
}
.bootstrap-horizon .filter-input [type="checkbox"] {
  margin: 0px;
}
.bootstrap-horizon .branding-logo-image {
  border: 1px solid #eeeeee;
  text-align: center;
  width: 352px;
  height: 57px;
  line-height: 55px;
}
.bootstrap-horizon .branding-favicon {
  border: 1px solid #eeeeee;
  text-align: center;
  width: 18px;
  height: 18px;
  line-height: 16px;
}
.bootstrap-horizon .branding-logo-image img,
.bootstrap-horizon .branding-favicon img {
  border: dotted 1px #eeeeee;
  margin: 0 auto;
  max-height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bootstrap-horizon .background-and-font-preview {
  text-align: center;
  width: 197px;
  margin-top: 20px;
}
.bootstrap-horizon .background-image-on-preview {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background-size: cover;
  height: 100%;
  background-repeat: no-repeat;
}
.bootstrap-horizon .big-app-icon {
  width: 48px;
  height: 48px;
  margin: auto;
  border-radius: 12px;
  background: rgba(255, 253, 255, 0.5);
}
.bootstrap-horizon .small-app-icon {
  border-width: 1px;
  border-color: #a8a6a8;
  border-style: solid;
  width: 42px;
  height: 42px;
  margin: 2px;
  background-color: white;
  float: left;
  border-radius: 10px;
}
.bootstrap-horizon .branding-preview-container {
  border: 1px solid #eeeeee;
  position: relative;
  height: 100%;
  float: left;
  width: 100%;
}
.bootstrap-horizon .branding-preview-app-icon-and-font {
  position: absolute;
  top: 12px;
  width: 100%;
}
.bootstrap-horizon .branding-preview-app-font {
  font-weight: bold;
  font-size: 12px;
  padding-top: 6px;
}
.bootstrap-horizon .login-page-preview {
  width: 400px;
  background-color: #D4D2D4;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.bootstrap-horizon .login-page-preview .preview-content {
  padding-bottom: 5px;
}
.bootstrap-horizon .preview-header {
  height: 20px;
  padding: 0 10px;
  background-size: auto 100%;
  background-color: #006990;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-position: top right;
  background-repeat: no-repeat;
}
.bootstrap-horizon .preview-input {
  margin: 18px auto 0;
  width: 60%;
  height: 16px;
}
.bootstrap-horizon .preview-button {
  margin: 24px auto 12px;
  width: 60%;
  height: 16px;
  background-color: lightblue;
}
.bootstrap-horizon .preview-content {
  width: 50%;
  height: 50%;
  margin: 75px auto;
  background-color: white;
}
.bootstrap-horizon .preview-title {
  width: 40%;
  overflow: visible;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 7px;
  line-height: 0px;
}
.bootstrap-horizon .preview-logo {
  height: 100%;
  width: 50%;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
}
.bootstrap-horizon .preview-app {
  padding: 5px;
}
.bootstrap-horizon .preview-app .preview-icon {
  height: 35px;
  width: 35px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  border-radius: 9px;
}
.bootstrap-horizon .preview-app .preview-icon .preview-outer-layer {
  background-color: #ffffff;
  height: 29px;
  width: 29px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  position: relative;
  top: 3px;
  left: 3px;
}
.bootstrap-horizon .preview-app .preview-name {
  width: 50%;
  height: 3px;
  margin: 0 auto;
  margin-top: 5px;
  background-color: #44525e;
}
.bootstrap-horizon .portal-preview {
  width: 400px;
  height: 300px;
}
.bootstrap-horizon .portal-preview .preview-header {
  background-color: #ffffff;
  height: 30px;
}
.bootstrap-horizon .portal-preview img {
  height: 24px;
  margin-top: 4px;
}
.bootstrap-horizon .portal-preview .preview-body {
  height: 270px;
  background-color: #D4D2D4;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.bootstrap-horizon .portal-preview .top-nav-container {
  border-bottom: solid 1px #cccccc;
  height: 25px;
  background: #fff;
  text-align: center;
}
.bootstrap-horizon .portal-preview .top-nav-tabs {
  font-size: 0;
  border-radius: 32px;
  display: inline-block;
  height: 25px;
  margin: 10px 0;
  text-align: center;
  position: relative;
}
.bootstrap-horizon .portal-preview .top-nav-tabs a {
  opacity: .7;
}
.bootstrap-horizon .portal-preview .top-nav-tabs .fade-in {
  opacity: 1;
}
.bootstrap-horizon .portal-preview .top-nav-tabs:before {
  background: 0 0;
  top: -5px;
  border-radius: 0;
  border-bottom: solid 2px;
  height: 20px;
  content: '';
  position: absolute;
  width: 65px;
  left: 5px;
  transition: all .35s;
}
.bootstrap-horizon .portal-preview .top-nav-catalog:before {
  transform: translate(65px);
}
.bootstrap-horizon .portal-preview .top-nav-tabs a {
  display: inline-block;
  line-height: 28px;
  font-size: 10px;
  padding: 0 5px;
  margin: -10px 0;
  z-index: 50;
  color: #07a9ed;
  overflow: hidden;
  text-shadow: none;
  width: 57px;
}
.bootstrap-horizon .portal-preview .no-bookmarks {
  text-align: center;
}
.bootstrap-horizon .portal-preview .bookmark-hint {
  font-size: 10px;
}
.bootstrap-horizon .portal-preview .bookmark-btn {
  display: block;
  width: 150px;
  height: 20px;
  line-height: 20px;
  margin: 0 auto;
  color: #fff;
  background: #07a9ed;
  font-size: 10px;
  border-radius: 5px;
}
.bootstrap-horizon .portal-preview .catalog-item-details {
  width: 80px;
  height: 100px;
  display: inline-block;
  line-height: 1.5em;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  margin: 0;
  color: inherit;
  font-size: 8px;
  padding: 2px;
  text-align: left;
  border-bottom: 0;
  transition: top 0.25s ease-out;
}
.bootstrap-horizon .portal-preview .catalog-item-details .catalog-item-click {
  position: relative;
  height: 100px;
  background: transparent;
}
.bootstrap-horizon .portal-preview .catalog-item-details .catalog-item-icon-container {
  width: 100%;
  height: 45px;
  text-align: center;
  background: transparent;
}
.bootstrap-horizon .portal-preview .catalog-item-details .catalog-item-icon {
  background-color: #ffffff;
  height: 35px;
  width: 35px;
  top: 3px;
  left: 3px;
  display: inline-block;
  background: transparent;
  padding: 0px 0px 5px 0px;
}
.bootstrap-horizon .portal-preview .catalog-item-details .catalog-item-text {
  font-size: 9px;
  text-align: center;
  margin: 0px;
  background: transparent;
}
.bootstrap-horizon .portal-preview .catalog-item-details .catalog-item-actions {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: center;
  background: rgba(123, 134, 143, 0.07);
  width: 100%;
  padding-right: 0;
  border-top: solid 1px #CDD0D3;
  height: 13px;
  background: transparent;
}
.bootstrap-horizon .portal-preview .catalog-item-details .catalog-item-actions .open-text {
  width: 60px;
  text-align: center;
  display: inline-block;
  font-size: 9px;
  padding-top: 1px;
}
.bootstrap-horizon .portal-preview .catalog-item-details .catalog-item-actions .icon-bookmark {
  width: 20px;
  height: 15px;
  float: right;
  margin-top: 0px;
}
.bootstrap-horizon .portal-preview .preview-nav {
  font-size: 8px;
  color: #434D55;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  width: 100%;
}
.bootstrap-horizon .portal-preview .preview-input {
  width: 38%;
  height: 16px;
  background-color: white;
  margin: 5px;
  padding-left: 5px;
  font-size: 10px;
}
.bootstrap-horizon .portal-preview .preview-username {
  margin: 5px 5px 5px 30px;
  font-size: 10px;
}
.bootstrap-horizon .portal-preview .preview-grid {
  width: 315px;
  margin: 0 auto;
}
.bootstrap-horizon .portal-preview .preview-name {
  background-color: #434D55;
}
.bootstrap-horizon .mobile-layout {
  width: 400px;
  margin-top: 30px;
}
.bootstrap-horizon .no-padding {
  padding: 0px;
}
.bootstrap-horizon .bookmark-icon-fill {
  fill-opacity: 0;
  fill: #fff;
  stroke: #07a9ed;
}
.bootstrap-horizon .gray-border-bottom {
  border-bottom: solid 1px #cccccc;
}
.bootstrap-horizon .preview-mobile {
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  padding: 24px 12px 12px;
  background-color: #FAFAFA;
}
.bootstrap-horizon .preview-mobile .preview-header {
  padding: 10px 16px;
}
.bootstrap-horizon .preview-mobile .top-nav-container {
  border-bottom: solid 1px #cccccc;
  height: 25px;
  background: #fff;
  text-align: center;
}
.bootstrap-horizon .preview-mobile .top-nav-tabs {
  font-size: 0;
  border-radius: 32px;
  display: inline-block;
  margin: 6px 0;
  text-align: center;
  position: relative;
  line-height: 5;
  border: solid 1px;
}
.bootstrap-horizon .preview-mobile .top-nav-tabs:before {
  background: #07a9ed;
  border-radius: 24px;
  border-bottom: solid 2px #07a9ed;
  height: 11px;
  content: '';
  position: absolute;
  width: 50px;
  transition: all .35s;
}
.bootstrap-horizon .preview-mobile .top-nav-catalog:before {
  transform: translate(50px);
}
.bootstrap-horizon .preview-mobile .top-nav-tabs a {
  display: inline-block;
  font-size: 8px;
  margin: -14px 0;
  z-index: 50;
  color: #07a9ed;
  overflow: hidden;
  text-shadow: none;
  width: 50px;
  padding-top: 1px;
  position: relative;
  line-height: 40px;
  height: 40px;
}
.bootstrap-horizon .preview-mobile .top-nav-tabs .selected {
  color: #ffffff;
}
.bootstrap-horizon .preview-mobile .no-bookmarks {
  text-align: center;
}
.bootstrap-horizon .preview-mobile svg {
  width: 60px;
  height: 60px;
}
.bootstrap-horizon .preview-mobile .mobile-bookmark-hint {
  font-size: 8px;
  line-height: 10px;
}
.bootstrap-horizon .preview-mobile .mobile-bookmark-btn {
  display: block;
  width: 100px;
  height: 17px;
  line-height: 17px;
  margin: 0 auto;
  color: #fff;
  background: #07a9ed;
  font-size: 8px;
  border-radius: 5px;
}
.bootstrap-horizon .preview-mobile .catalog-item-details {
  width: 130px;
  height: 35px;
  display: inline-block;
  line-height: 1.5em;
  margin: 0;
  color: inherit;
  font-size: 8px;
  padding: 3px;
  text-align: left;
  border-bottom: solid 1px #CDD0D3;
  transition: top 0.25s ease-out;
}
.bootstrap-horizon .preview-mobile .catalog-item-details .catalog-item-click {
  position: relative;
  height: 35px;
  cursor: pointer;
  background: transparent;
}
.bootstrap-horizon .preview-mobile .catalog-item-details .catalog-item-icon-container {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 90px;
  height: 25px;
  background: transparent;
}
.bootstrap-horizon .preview-mobile .catalog-item-details .catalog-item-icon {
  background-color: #ffffff;
  height: 25px;
  width: 25px;
  top: 3px;
  left: 3px;
  display: inline-block;
}
.bootstrap-horizon .preview-mobile .catalog-item-details .catalog-item-text {
  margin: 0px;
  font-size: 7px;
  color: inherit;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 60px;
  overflow: hidden;
}
.bootstrap-horizon .preview-mobile .catalog-item-details .catalog-item-labels {
  padding-left: 35px;
  padding-top: 3px;
  background: transparent;
}
.bootstrap-horizon .preview-mobile .catalog-item-details .catalog-item-actions {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: center;
  background: rgba(123, 134, 143, 0.07);
  width: 100%;
  padding-right: 0;
  border-top: solid 1px #CDD0D3;
  height: 13px;
}
.bootstrap-horizon .preview-mobile .catalog-item-details .catalog-item-actions .open-text {
  width: 65px;
  text-align: center;
  display: inline;
}
.bootstrap-horizon .preview-mobile .catalog-item-details .catalog-item-actions .icon-bookmark {
  width: 20px;
  height: 15px;
  float: right;
  margin-top: 0px;
}
.bootstrap-horizon .preview-mobile .catalog-item-details .bookmark-icon-container {
  position: absolute;
  right: 15px;
  top: 7px;
}
.bootstrap-horizon .preview-mobile .catalog-item-details .bookmark-icon-container svg {
  width: 15px;
  height: 15px;
}
.bootstrap-horizon .preview-mobile .preview-title {
  margin: 0 auto;
}
.bootstrap-horizon .preview-mobile .preview-content {
  width: 135px;
  height: 200px;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bootstrap-horizon .preview-mobile .preview-content .preview-catalog-app {
  width: 80%;
  border: 1px solid #D4D2D4;
  height: 25px;
  margin: 0 auto 15px;
}
.bootstrap-horizon .preview-mobile .preview-content .app-preview {
  width: 60%;
  background-color: white;
  height: 25px;
  float: left;
}
.bootstrap-horizon .preview-mobile .preview-content .app-preview .icon {
  height: 15px;
  width: 15px;
  border: 1px solid black;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin: 5px 0 0 5px;
  float: left;
}
.bootstrap-horizon .preview-mobile .preview-content .app-preview .app-name {
  width: 40%;
  background-color: gray;
  padding: 1px;
  float: left;
  margin: 10px 0 0 5px;
}
.bootstrap-horizon .preview-mobile .preview-content .status-preview {
  width: 40%;
  height: 25px;
  background-color: #61a1da;
  float: left;
}
.bootstrap-horizon .preview-mobile .preview-content .status-preview .app-status {
  padding: 1px;
  margin: 10px auto;
  width: 40%;
  background-color: #ffffff;
}
.bootstrap-horizon .preview-mobile .preview-home {
  height: 20px;
  width: 20px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #D4D2D4;
  margin: 12px auto 0;
}
.bootstrap-horizon .width-150 {
  width: 150px;
}
.bootstrap-horizon .height-150 {
  height: 150px;
}
.bootstrap-horizon .branding-background-image {
  background-image: url(../images/checkerboard.svg);
}
.bootstrap-horizon .branding-confirmation-image-box {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.bootstrap-horizon .branding-transparency-slider {
  width: 150px;
  margin-top: 8px;
}
.bootstrap-horizon .desktop-branding .welcome-screen-background-image {
  background-image: url(../images/checkerboard.svg);
  width: 150px;
}
.bootstrap-horizon .desktop-branding .welcome-message-control {
  width: 352px;
  height: 57px;
}
.bootstrap-horizon .desktop-branding .margin-top-30px {
  margin-top: 30px;
}
.bootstrap-horizon .desktop-branding .display-inline-block {
  display: inline-block;
}
.bootstrap-horizon .desktop-branding .clear-both {
  clear: both;
}
.bootstrap-horizon .desktop-branding .welcome-screen-preview {
  width: 100%;
  height: 250px;
  margin: 0px;
  background: transparent;
}
.bootstrap-horizon .desktop-branding .welcome-screen-preview .title-bar {
  height: 20px;
  font-size: 12px;
  padding: 5px 10px;
}
.bootstrap-horizon .desktop-branding .welcome-screen-preview .header-container {
  height: 40px;
  text-align: center;
  background: transparent;
}
.bootstrap-horizon .desktop-branding .welcome-screen-preview .logo-container {
  height: 70px;
  width: 70px;
  display: inline-block;
}
.bootstrap-horizon .desktop-branding .welcome-screen-preview .content {
  padding: 0px 15px 0px 30px;
  font-size: 11px;
  line-height: 15px;
  margin-top: 30px;
  margin-right: 30px;
  max-height: 100px;
  overflow: auto;
}
.bootstrap-horizon .desktop-branding .welcome-screen-preview .preview-btn {
  line-height: 1;
  font-size: 7px;
  border: 0px;
  padding: 5px;
  float: right;
  margin-right: 30px;
}
.bootstrap-horizon .desktop-branding .startup-screen .startup-screen-content {
  width: 100%;
  height: 250px;
  margin: 0px;
  background: transparent;
}
.bootstrap-horizon .desktop-branding .startup-screen .title-bar {
  height: 20px;
  font-size: 12px;
  padding: 5px 10px;
}
.bootstrap-horizon .desktop-branding .startup-screen .header-container {
  height: 200px;
  text-align: center;
  background: transparent;
}
.bootstrap-horizon .desktop-branding .startup-screen .logo-container {
  height: 100%;
  width: 100%;
  display: inline-block;
}
.bootstrap-horizon .desktop-branding .startup-screen .padding-top-5px {
  padding-top: 5px;
}
.bootstrap-horizon .desktop-branding .app-icons .branding-container {
  width: 200px;
  background: #215da4;
  background-image: url(../images/checkerboard.svg);
}
.bootstrap-horizon .sidenav {
  width: 100%;
  margin: 0 0 0;
  padding: 0;
  background-color: #ffffff;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
}
.bootstrap-horizon .sidenav > li > a {
  display: block;
  width: 190px \9;
  margin: 0 0 -1px;
  padding: 8px 14px;
  border: 1px solid #e5e5e5;
}
.bootstrap-horizon .sidenav > li > a:hover {
  background-color: #ebebeb;
}
.bootstrap-horizon .sidenav > li:first-child > a {
  -webkit-border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
}
.bootstrap-horizon .sidenav > li:last-child > a {
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
}
.bootstrap-horizon .sidenav > li:only-child > a {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.bootstrap-horizon .sidenav > .active > a {
  position: relative;
  z-index: 2;
  padding: 9px 15px;
  border-left: 0;
  border-right: 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.1);
}
.bootstrap-horizon .wellnav {
  margin: 0 0 0;
  padding: 0;
  margin-left: -19px;
  margin-right: -19px;
  margin-bottom: -20px;
  background-color: #f8f8f8;
}
.bootstrap-horizon .wellnav > li > a {
  display: block;
  margin: 0 0 -1px;
  padding: 8px 14px;
  border: 1px solid #e5e5e5;
  border-left-width: 0;
  border-right-width: 0;
}
.bootstrap-horizon .wellnav > li > a:hover {
  background-color: #e1e1e1;
}
.bootstrap-horizon .wellnav > li:last-child > a,
.bootstrap-horizon .wellnav ul > li:last-child > a {
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}
.bootstrap-horizon .wellnav > .active > a {
  position: relative;
  z-index: 2;
  padding: 9px 15px;
  margin: -1px;
  border: 1px solid #0088cc;
}
.bootstrap-horizon .wellnav ul > li > a {
  padding: 8px 14px;
  padding-left: 30px;
  border-bottom: 1px solid #e5e5e5;
  border-left-width: 0;
  border-right-width: 0;
}
.bootstrap-horizon .wellnav ul > .active > a,
.bootstrap-horizon .wellnav ul > .active a:hover {
  margin-left: -16px;
  margin-right: -16px;
}
.bootstrap-horizon .wellnav li + .nav-header {
  display: block;
  margin: 0 0 -1px;
  padding: 8px 14px;
  border: 1px solid #e5e5e5;
  border-left-width: 0;
  border-right-width: 0;
  color: #000000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bootstrap-horizon .sidenav .icon-chevron-right,
.bootstrap-horizon .wellnav .icon-chevron-right,
.bootstrap-horizon .sidenav .icon-chevron-down,
.bootstrap-horizon .wellnav .icon-chevron-down,
.bootstrap-horizon .sidenav .icon-ok,
.bootstrap-horizon .wellnav .icon-ok {
  float: right;
  margin-top: 2px;
  margin-right: -6px;
  opacity: .25;
}
.bootstrap-horizon .sidenav .icon-ok,
.bootstrap-horizon .wellnav .icon-ok {
  opacity: 0;
}
.bootstrap-horizon .sidenav a:hover .icon-chevron-right,
.bootstrap-horizon .wellnav a:hover .icon-chevron-right,
.bootstrap-horizon .sidenav a:hover .icon-chevron-down,
.bootstrap-horizon .wellnav a:hover .icon-chevron-down,
.bootstrap-horizon .sidenav a:hover .icon-ok,
.bootstrap-horizon .wellnav a:hover .icon-ok {
  opacity: .5;
}
.bootstrap-horizon .sidenav .active .icon-chevron-right,
.bootstrap-horizon .wellnav .active .icon-chevron-right,
.bootstrap-horizon .sidenav .active a:hover .icon-chevron-right,
.bootstrap-horizon .wellnav .active a:hover .icon-chevron-right,
.bootstrap-horizon .sidenav .active .icon-ok,
.bootstrap-horizon .wellnav .active .icon-ok,
.bootstrap-horizon .sidenav .active a:hover .icon-ok,
.bootstrap-horizon .wellnav .active a:hover .icon-ok {
  background-image: url('../images/glyphicons-halflings-white.png');
  opacity: 1;
}
.bootstrap-horizon .wellnav-disabled {
  color: #999999;
  background: transparent;
  opacity: 0.8;
  pointer-events: none;
}
.bootstrap-horizon .wellnav-disabled a {
  color: #999999;
}
.bootstrap-horizon .application-title {
  font-weight: normal;
  margin-bottom: 20px;
}
.bootstrap-horizon .margin-left0 {
  margin-left: 0 !important;
}
.bootstrap-horizon .modal {
  width: 680px;
  margin-left: -340px;
}
.bootstrap-horizon .modal-large {
  width: 800px;
  margin-left: -400px;
}
.bootstrap-horizon .modal-huge {
  width: 1000px;
  margin-left: -500px;
}
.bootstrap-horizon .modal-close {
  background: url(../images/close.png) no-repeat top right;
  display: block;
  height: 24px;
  overflow: hidden;
  position: absolute;
  right: 15px;
  text-indent: -9999px;
  top: 15px;
  width: 24px;
}
.bootstrap-horizon .modal-body label {
  margin-bottom: 0px;
  cursor: default;
  line-height: 1.2;
  font-size: 13px;
  display: inline;
}
.bootstrap-horizon .modal-body input {
  font-size: 13px;
  line-height: normal;
  height: auto;
}
.bootstrap-horizon .modal-body .dialog-content-controls {
  bottom: 7px;
  position: absolute;
  right: 15px;
}
.bootstrap-horizon .modal-body .dialog-content-controls .dialog-close {
  border-right: 1px dotted #ddd;
  float: left;
  margin: 6px 15px 0 0;
  padding: 3px 30px 5px 0;
  text-indent: 0;
  background: none;
  position: static;
}
.bootstrap-horizon .modal-body .dialog-content-controls .field-submit {
  clear: none;
  margin-left: 66px;
}
.bootstrap-horizon .modal-body .dialog-content-controls-left {
  position: absolute;
  bottom: 36px;
  left: 20px;
}
.bootstrap-horizon .modal-body ._cancel-link {
  float: left;
  margin: 7px 10px 0 0;
  padding-right: 10px;
  border-right: 1px solid #ccc;
}
.bootstrap-horizon .modal-body .required-field {
  bottom: 50px;
  color: #777;
  left: 20px;
  margin: 0;
  position: absolute;
}
.bootstrap-horizon .modal-body .required-field strong {
  color: #a00;
}
.bootstrap-horizon .modal-body ._dialog-message {
  padding: 10px;
  text-align: center;
  margin-bottom: 20px;
  cursor: pointer;
}
.bootstrap-horizon .modal-body .field {
  margin-bottom: 1.5em;
}
.bootstrap-horizon .modal-body .field .field-label {
  padding-top: 0px;
  line-height: 1.2;
  padding-top: 5px;
}
.bootstrap-horizon .modal-body .field .field-input .ti {
  width: 78%;
}
.bootstrap-horizon .modal-body .field .field-input .ta {
  height: 200px;
  width: 78%;
}
.bootstrap-horizon .modal-body .field .field-input .ta.ta-small {
  height: 100px;
}
.bootstrap-horizon .modal-body .auto-scroll-wrapper {
  height: 335px;
  overflow-x: hidden;
  overflow-y: auto;
}
.bootstrap-horizon .modal-body .form-action-bar {
  position: absolute;
  right: 0;
  bottom: -65px;
  color: #ddd;
}
.bootstrap-horizon .modal-body .form-action-bar .cancel-btn {
  line-height: 30px;
  padding-right: 5px;
}
.bootstrap-horizon .modal-body .form-action-bar .submit-btn {
  float: right;
  margin-left: 5px;
}
.bootstrap-horizon .modal-body .form-legend {
  position: absolute;
  bottom: -35px;
  left: 0;
  color: #777;
}
.bootstrap-horizon .modal-body .form-legend strong {
  color: #AA0000;
}
.bootstrap-horizon .modal-body .add-entitlement-link {
  margin: 5px 10px 0 0;
}
.bootstrap-horizon .modal .ui-autocomplete {
  /* Hack for IE7 and IE8 (running in IE7 document mode) */
  /* jQuery UI has trouble calculating the width of the autocomplete box in IE7 */
  /* This fix is to ensure that the sutocomplete dropdown in the electric eel widget gets the correct width */
  /* TODO: Fix the autocomplete widget */
  *width: 520px;
}
.bootstrap-horizon .modal .dialog-nav {
  bottom: 15px;
  position: absolute;
  width: 95%;
}
.bootstrap-horizon .modal .dialog-nav .wait-img {
  position: relative;
  top: 5px;
}
.bootstrap-horizon .modal-body-ftl-as-dialog {
  height: 250px;
}
.bootstrap-horizon .grid-style {
  border: 1px solid #dddddd;
  width: 100%;
  overflow-x: hidden;
  font-size: 12px;
}
.bootstrap-horizon .grid-style .icon {
  width: 20px;
  height: 20px;
  border: none;
}
.bootstrap-horizon .grid-style span {
  text-align: left;
  text-overflow: ellipsis;
}
.bootstrap-horizon .grid-style .ngCellLinks {
  line-height: 20px;
  padding: 5px;
}
.bootstrap-horizon .grid-style .ngRow.selected {
  background-color: #ffffdd;
}
.bootstrap-horizon .grid-style .ngRowAlignment {
  line-height: 25px;
}
.bootstrap-horizon .grid-style .help-icon {
  position: absolute;
  left: 21px;
  top: 10px;
}
.bootstrap-horizon .grid-style-200 {
  border: 1px solid #dddddd;
  width: 100%;
  overflow-x: hidden;
  font-size: 12px;
  height: 200px;
  max-height: 200px;
}
.bootstrap-horizon .grid-style-200 .icon {
  width: 20px;
  height: 20px;
  border: none;
}
.bootstrap-horizon .grid-style-200 span {
  text-align: left;
  text-overflow: ellipsis;
}
.bootstrap-horizon .grid-style-200 .ngCellLinks {
  line-height: 20px;
  padding: 5px;
}
.bootstrap-horizon .grid-style-200 .ngRow.selected {
  background-color: #ffffdd;
}
.bootstrap-horizon .grid-style-200 .ngRowAlignment {
  line-height: 25px;
}
.bootstrap-horizon .grid-style-200 .help-icon {
  position: absolute;
  left: 21px;
  top: 10px;
}
.bootstrap-horizon .grid-style-300 {
  border: 1px solid #dddddd;
  width: 100%;
  overflow-x: hidden;
  font-size: 12px;
  height: 300px;
  max-height: 300px;
}
.bootstrap-horizon .grid-style-300 .icon {
  width: 20px;
  height: 20px;
  border: none;
}
.bootstrap-horizon .grid-style-300 span {
  text-align: left;
  text-overflow: ellipsis;
}
.bootstrap-horizon .grid-style-300 .ngCellLinks {
  line-height: 20px;
  padding: 5px;
}
.bootstrap-horizon .grid-style-300 .ngRow.selected {
  background-color: #ffffdd;
}
.bootstrap-horizon .grid-style-300 .ngRowAlignment {
  line-height: 25px;
}
.bootstrap-horizon .grid-style-300 .help-icon {
  position: absolute;
  left: 21px;
  top: 10px;
}
.bootstrap-horizon .grid-style-400 {
  border: 1px solid #dddddd;
  width: 100%;
  overflow-x: hidden;
  font-size: 12px;
  height: 400px;
  max-height: 400px;
}
.bootstrap-horizon .grid-style-400 .icon {
  width: 20px;
  height: 20px;
  border: none;
}
.bootstrap-horizon .grid-style-400 span {
  text-align: left;
  text-overflow: ellipsis;
}
.bootstrap-horizon .grid-style-400 .ngCellLinks {
  line-height: 20px;
  padding: 5px;
}
.bootstrap-horizon .grid-style-400 .ngRow.selected {
  background-color: #ffffdd;
}
.bootstrap-horizon .grid-style-400 .ngRowAlignment {
  line-height: 25px;
}
.bootstrap-horizon .grid-style-400 .help-icon {
  position: absolute;
  left: 21px;
  top: 10px;
}
.bootstrap-horizon .grid-style-720 {
  border: 1px solid #dddddd;
  width: 100%;
  overflow-x: hidden;
  font-size: 12px;
  height: 720px;
  max-height: 720px;
}
.bootstrap-horizon .grid-style-720 .icon {
  width: 20px;
  height: 20px;
  border: none;
}
.bootstrap-horizon .grid-style-720 span {
  text-align: left;
  text-overflow: ellipsis;
}
.bootstrap-horizon .grid-style-720 .ngCellLinks {
  line-height: 20px;
  padding: 5px;
}
.bootstrap-horizon .grid-style-720 .ngRow.selected {
  background-color: #ffffdd;
}
.bootstrap-horizon .grid-style-720 .ngRowAlignment {
  line-height: 25px;
}
.bootstrap-horizon .grid-style-720 .help-icon {
  position: absolute;
  left: 21px;
  top: 10px;
}
.bootstrap-horizon .ngGrid {
  background-color: none;
}
.bootstrap-horizon .ngGrid input[type="checkbox"] {
  margin: 0;
  padding: 0;
}
.bootstrap-horizon .ngGrid input {
  vertical-align: top;
}
.bootstrap-horizon .ngGrid.unselectable {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.bootstrap-horizon .ngViewport {
  overflow: auto;
  min-height: 20px;
}
.bootstrap-horizon .ngViewport:focus {
  outline: none;
}
.bootstrap-horizon .ngCanvas {
  position: relative;
}
.bootstrap-horizon .ngNoClick {
  cursor: default;
}
.bootstrap-horizon .ngVerticalBar {
  position: absolute;
  right: 0;
  width: 0;
}
.bootstrap-horizon .ngVerticalBarVisible {
  width: 1px;
  background-color: #dddddd;
}
.bootstrap-horizon .ngHeaderContainer {
  position: relative;
  overflow: hidden;
  font-weight: bold;
  background-color: inherit;
}
.bootstrap-horizon .ngHeaderCell {
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: inherit;
}
.bootstrap-horizon .ngHeaderCell.pinned {
  z-index: 1;
}
.bootstrap-horizon .ngHeaderSortColumn {
  position: absolute;
  overflow: hidden;
}
.bootstrap-horizon .ngTopPanel {
  position: relative;
  z-index: 1;
  background-color: #eae8e4;
  border-bottom: 1px solid #dddddd;
  font-size: 10px;
  text-transform: uppercase;
}
.bootstrap-horizon .ngSortButtonDown {
  position: absolute;
  top: 3px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  border-color: gray transparent;
  border-style: solid;
  border-width: 0 5px 5px 5px;
  height: 0;
  width: 0;
}
.bootstrap-horizon .ngNoSort {
  cursor: default;
}
.bootstrap-horizon .ngHeaderButton {
  position: absolute;
  right: 2px;
  top: 8px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  z-index: 1;
  background-color: #9fbbb4;
  cursor: pointer;
}
.bootstrap-horizon .ngSortButtonUp {
  position: absolute;
  top: 3px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  border-color: gray transparent;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  height: 0;
  width: 0;
}
.bootstrap-horizon .ngHeaderScroller {
  position: absolute;
  background-color: inherit;
}
.bootstrap-horizon .ngSortPriority {
  position: absolute;
  top: -5px;
  left: 1px;
  font-size: 6pt;
  font-weight: bold;
}
.bootstrap-horizon .ngHeaderGrip {
  cursor: col-resize;
  width: 10px;
  right: -5px;
  top: 0;
  height: 100%;
  position: absolute;
  background-color: transparent;
}
.bootstrap-horizon .ngHeaderText {
  padding: 5px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
.bootstrap-horizon .ngHeaderButtonArrow {
  position: absolute;
  top: 4px;
  left: 3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6.5px 4.5px 0 4.5px;
  border-color: #4d4d4d transparent transparent transparent;
}
.bootstrap-horizon .ngPinnedIcon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOwgAADsIBFShKgAAAABp0RVh0U29mdHdhcmUAUGFpbnQuTkVUIHYzLjUuMTAw9HKhAAAAmElEQVQoU33PQapBURjA8UtkwJuaWYGSgfQWYBMvczPmTCzAAGVuaA228BZhRCkDGSmE31FucuRfvzq3vr5zT/JSjSU7DsypEPXDkDVn2hSIytJhw4kWGaLCxgHh2gt/RBuLzNhz5caWPjnSqqw4EraFfwznf8qklWjwy4IRTerkiQoPGtPl40OehcEJvcfXl8LglLfBJLkDcMgbgHlHhK8AAAAASUVORK5CYII=);
  background-repeat: no-repeat;
  position: absolute;
  right: 5px;
  top: 5px;
  height: 10px;
  width: 10px;
}
.bootstrap-horizon .ngUnPinnedIcon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOwgAADsIBFShKgAAAABp0RVh0U29mdHdhcmUAUGFpbnQuTkVUIHYzLjUuMTAw9HKhAAAAlElEQVQoU33PPQrCQBRF4fFnI2KfZVi5ARvdgo1l6mwmkCJVOgluwd5OwUoDtnoOxAei8cLXTN7cvEl/skCNDCMPfsUPO5zQwOHIDEvYtMURHe6wOVLgigvOePRyeDkyR4ln7wZ//7XfFBu8B23+aDJjrHGAwza7hjtHJvDmHg7b7Bru7AMjK7Rw2ObBVHDY5oGk9AKQNB2zy8MBTgAAAABJRU5ErkJggg==);
  background-repeat: no-repeat;
  position: absolute;
  height: 10px;
  width: 10px;
  right: 5px;
  top: 5px;
}
.bootstrap-horizon .ngColMenu {
  right: 2px;
  padding: 5px;
  top: 25px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background-color: #bdd0cb;
  position: absolute;
  border: 2px solid #d4d4d4;
  z-index: 1;
}
.bootstrap-horizon .ngColListCheckbox {
  position: relative;
  right: 3px;
  top: 4px;
}
.bootstrap-horizon .ngColList {
  list-style-type: none;
}
.bootstrap-horizon .ngColListItem {
  position: relative;
  right: 17px;
  top: 2px;
  white-space: nowrap;
}
.bootstrap-horizon .ngMenuText {
  position: relative;
  top: 2px;
  left: 2px;
}
.bootstrap-horizon .ngGroupPanel {
  background-color: #eaeaea;
  overflow: hidden;
  border-bottom: 1px solid #d4d4d4;
}
.bootstrap-horizon .ngGroupPanelDescription {
  margin-top: 5px;
  margin-left: 5px;
}
.bootstrap-horizon .ngGroupList {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.bootstrap-horizon .ngAggHeader {
  position: absolute;
  border: none;
}
.bootstrap-horizon .ngGroupElement {
  float: left;
  height: 100%;
  width: 100%;
}
.bootstrap-horizon .ngGroupIcon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAANCAYAAACZ3F9/AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAAAEFJREFUKFNjoAhISkr+h2J5JDZODNXGwGBsbPwfhIGAA8bGh6HaGBiAGhxAGJmND4M1gQCSM0adCsVQbcPcqQwMALWDGyDvWPefAAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  height: 15px;
  width: 15px;
  position: absolute;
  right: -2px;
  top: 2px;
}
.bootstrap-horizon .ngGroupedByIcon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAANCAYAAACZ3F9/AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAAAElJREFUKFNjoAhISkr+R8LyaHwMDNXGwGBsbPwfhoGAA5mPDUO1oWpE52PDYE0gALTFAYbR+dgwWBMIoPlh1I9ADNU2NPzIwAAAFQYI9E4OLvEAAAAASUVORK5CYII=);
  background-repeat: no-repeat;
  height: 15px;
  width: 15px;
  position: absolute;
  right: -2px;
  top: 2px;
}
.bootstrap-horizon .ngGroupName {
  background-color: #fdfdfd;
  border: 1px solid #d4d4d4;
  padding: 3px 10px;
  float: left;
  margin-left: 0;
  margin-top: 2px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font-weight: bold;
}
.bootstrap-horizon .ngGroupArrow {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid black;
  margin-top: 10px;
  margin-left: 5px;
  margin-right: 5px;
  float: right;
}
.bootstrap-horizon .ngGroupingNumber {
  position: absolute;
  right: -10px;
  top: -2px;
}
.bootstrap-horizon .ngAggArrowCollapsed {
  position: absolute;
  left: 8px;
  bottom: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8.7px;
  border-color: transparent transparent transparent #000000
;
}
.bootstrap-horizon .ngGroupItem {
  float: left;
}
.bootstrap-horizon .ngGroupItem:first-child {
  margin-left: 2px;
}
.bootstrap-horizon .ngRemoveGroup {
  width: 5px;
  -moz-opacity: 0.4;
  opacity: 0.4;
  margin-top: -1px;
  margin-left: 5px;
}
.bootstrap-horizon .ngRemoveGroup:hover {
  color: black;
  text-decoration: none;
  cursor: pointer;
  -moz-opacity: 0.7;
  opacity: 0.7;
}
.bootstrap-horizon .ngAggArrowExpanded {
  position: absolute;
  left: 8px;
  bottom: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 9px 9px;
  border-color: transparent transparent #000000 transparent
;
}
.bootstrap-horizon .ngAggregate {
  position: absolute;
  background-color: #c9dde1;
  border-bottom: 1px solid beige;
  overflow: hidden;
  top: 0;
  bottom: 0;
  right: -1px;
  left: 0;
}
.bootstrap-horizon .ngAggregateText {
  position: absolute;
  left: 27px;
  top: 5px;
  line-height: 20px;
  white-space: nowrap;
}
.bootstrap-horizon .ngRow {
  position: absolute;
  border-bottom: 1px solid #d4d4d4;
}
.bootstrap-horizon .grid-flexible-height {
  min-height: 69px;
}
.bootstrap-horizon .grid-flexible-height .ngRow {
  border-bottom: 0;
}
.bootstrap-horizon .ngRow.odd {
  background-color: #f9f9f9;
}
.bootstrap-horizon .ngRow.even {
  background-color: transparent;
}
.bootstrap-horizon .ngRow.selected {
  background-color: #ffffdd;
}
.bootstrap-horizon .ngCell {
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: inherit;
}
.bootstrap-horizon .ngCell.pinned {
  z-index: 1;
}
.bootstrap-horizon .ngCellText {
  padding: 5px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
.bootstrap-horizon .ngSelectionCell {
  margin-top: 9px;
  margin-left: 6px;
}
.bootstrap-horizon .ngSelectionHeader {
  position: absolute;
  top: 11px;
  left: 6px;
}
.bootstrap-horizon .ngCellElement:focus {
  outline: 0;
  background-color: #b3c4c7;
}
.bootstrap-horizon .ngRow.canSelect {
  cursor: pointer;
}
.bootstrap-horizon .ngSelectionCheckbox {
  margin-top: 9px;
  margin-left: 6px;
}
.bootstrap-horizon .ngFooterPanel {
  background-color: #eaeaea;
  padding: 0;
  border-top: 1px solid #d4d4d4;
  position: relative;
}
.bootstrap-horizon .nglabel {
  display: block;
  float: left;
  font-weight: bold;
  padding-right: 5px;
}
.bootstrap-horizon .ngTotalSelectContainer {
  float: left;
  margin: 5px;
  margin-top: 7px;
}
.bootstrap-horizon .ngFooterSelectedItems {
  padding: 2px;
}
.bootstrap-horizon .ngFooterTotalItems.ngnoMultiSelect {
  padding: 0 !important;
}
.bootstrap-horizon .ngPagerFirstBar {
  width: 10px;
  border-left: 2px solid #4d4d4d;
  margin-top: -6px;
  height: 12px;
  margin-left: -3px;
}
.bootstrap-horizon .ngPagerButton {
  height: 25px;
  min-width: 26px;
}
.bootstrap-horizon .ngPagerFirstTriangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 8.7px 5px 0;
  border-color: transparent #4d4d4d transparent transparent
;
  margin-left: 2px;
}
.bootstrap-horizon .ngPagerNextTriangle {
  margin-left: 1px;
}
.bootstrap-horizon .ngPagerPrevTriangle {
  margin-left: 0;
}
.bootstrap-horizon .ngPagerLastTriangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8.7px;
  border-color: transparent transparent transparent #4d4d4d
;
  margin-left: -1px;
}
.bootstrap-horizon .ngPagerLastBar {
  width: 10px;
  border-left: 2px solid #4d4d4d;
  margin-top: -6px;
  height: 12px;
  margin-left: 1px;
}
.bootstrap-horizon .ngFooterTotalItems {
  padding: 2px;
}
.bootstrap-horizon .has-switch {
  display: inline-block;
  cursor: pointer;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  position: relative;
  text-align: left;
  overflow: hidden;
  line-height: 8px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  vertical-align: middle;
  min-width: 100px;
}
.bootstrap-horizon .has-switch.switch-mini {
  min-width: 72px;
}
.bootstrap-horizon .has-switch.switch-mini i.switch-mini-icons {
  height: 1.20em;
  line-height: 9px;
  vertical-align: text-top;
  text-align: center;
  transform: scale(0.6);
  margin-top: -1px;
  margin-bottom: -1px;
}
.bootstrap-horizon .has-switch.switch-small {
  min-width: 80px;
}
.bootstrap-horizon .has-switch.switch-large {
  min-width: 120px;
}
.bootstrap-horizon .has-switch.deactivate {
  opacity: 0.5;
  filter: alpha(opacity=50);
  cursor: default !important;
}
.bootstrap-horizon .has-switch.deactivate label,
.bootstrap-horizon .has-switch.deactivate span {
  cursor: default !important;
}
.bootstrap-horizon .has-switch > div {
  display: inline-block;
  width: 150%;
  position: relative;
  top: 0;
}
.bootstrap-horizon .has-switch > div.switch-animate {
  -webkit-transition: left 0.5s;
  -moz-transition: left 0.5s;
  -o-transition: left 0.5s;
  transition: left 0.5s;
}
.bootstrap-horizon .has-switch > div.switch-off {
  left: -50%;
}
.bootstrap-horizon .has-switch > div.switch-on {
  left: 0%;
}
.bootstrap-horizon .has-switch input[type=radio],
.bootstrap-horizon .has-switch input[type=checkbox] {
  display: none;
}
.bootstrap-horizon .has-switch span,
.bootstrap-horizon .has-switch label {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  display: inline-block;
  height: 100%;
  padding-bottom: 4px;
  padding-top: 4px;
  font-size: 14px;
  line-height: 20px;
}
.bootstrap-horizon .has-switch span.switch-mini,
.bootstrap-horizon .has-switch label.switch-mini {
  padding-bottom: 4px;
  padding-top: 4px;
  font-size: 10px;
  line-height: 9px;
}
.bootstrap-horizon .has-switch span.switch-small,
.bootstrap-horizon .has-switch label.switch-small {
  padding-bottom: 3px;
  padding-top: 3px;
  font-size: 12px;
  line-height: 18px;
}
.bootstrap-horizon .has-switch span.switch-large,
.bootstrap-horizon .has-switch label.switch-large {
  padding-bottom: 9px;
  padding-top: 9px;
  font-size: 16px;
  line-height: normal;
}
.bootstrap-horizon .has-switch label {
  text-align: center;
  margin-top: -1px;
  margin-bottom: -1px;
  z-index: 100;
  width: 34%;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  color: #333333;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: transparent;
  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;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #e6e6e6;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.bootstrap-horizon .has-switch label:hover,
.bootstrap-horizon .has-switch label:focus,
.bootstrap-horizon .has-switch label:active,
.bootstrap-horizon .has-switch label.active,
.bootstrap-horizon .has-switch label.disabled,
.bootstrap-horizon .has-switch label[disabled] {
  color: #333333;
  background-color: #e6e6e6;
  *background-color: #d9d9d9;
}
.bootstrap-horizon .has-switch label:active,
.bootstrap-horizon .has-switch label.active {
  background-color: #cccccc \9;
}
.bootstrap-horizon .has-switch label:hover,
.bootstrap-horizon .has-switch label:focus,
.bootstrap-horizon .has-switch label:active,
.bootstrap-horizon .has-switch label.active,
.bootstrap-horizon .has-switch label.disabled,
.bootstrap-horizon .has-switch label[disabled] {
  color: #333333;
  background-color: #e6e6e6;
  *background-color: #d9d9d9;
}
.bootstrap-horizon .has-switch label:active,
.bootstrap-horizon .has-switch label.active {
  background-color: #cccccc \9;
}
.bootstrap-horizon .has-switch label i {
  color: #000;
  text-shadow: 0 1px 0 #fff;
  line-height: 18px;
  pointer-events: none;
}
.bootstrap-horizon .has-switch span {
  text-align: center;
  z-index: 1;
  width: 33%;
}
.bootstrap-horizon .has-switch span.switch-left {
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
}
.bootstrap-horizon .has-switch span.switch-right {
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  color: #333333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  background-color: transparent;
  background-color: #f0f0f0;
  background-image: -moz-linear-gradient(top, #e6e6e6, #ffffff);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e6e6e6), to(#ffffff));
  background-image: -webkit-linear-gradient(top, #e6e6e6, #ffffff);
  background-image: -o-linear-gradient(top, #e6e6e6, #ffffff);
  background-image: linear-gradient(to bottom, #e6e6e6, #ffffff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe6e6e6', endColorstr='#ffffffff', GradientType=0);
  border-color: #ffffff #ffffff #d9d9d9;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #ffffff;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.bootstrap-horizon .has-switch span.switch-right:hover,
.bootstrap-horizon .has-switch span.switch-right:focus,
.bootstrap-horizon .has-switch span.switch-right:active,
.bootstrap-horizon .has-switch span.switch-right.active,
.bootstrap-horizon .has-switch span.switch-right.disabled,
.bootstrap-horizon .has-switch span.switch-right[disabled] {
  color: #333333;
  background-color: #ffffff;
  *background-color: #f2f2f2;
}
.bootstrap-horizon .has-switch span.switch-right:active,
.bootstrap-horizon .has-switch span.switch-right.active {
  background-color: #e6e6e6 \9;
}
.bootstrap-horizon .has-switch span.switch-right:hover,
.bootstrap-horizon .has-switch span.switch-right:focus,
.bootstrap-horizon .has-switch span.switch-right:active,
.bootstrap-horizon .has-switch span.switch-right.active,
.bootstrap-horizon .has-switch span.switch-right.disabled,
.bootstrap-horizon .has-switch span.switch-right[disabled] {
  color: #333333;
  background-color: #ffffff;
  *background-color: #f2f2f2;
}
.bootstrap-horizon .has-switch span.switch-right:active,
.bootstrap-horizon .has-switch span.switch-right.active {
  background-color: #e6e6e6 \9;
}
.bootstrap-horizon .has-switch span.switch-primary,
.bootstrap-horizon .has-switch span.switch-left {
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: transparent;
  background-color: #005fcc;
  background-image: -moz-linear-gradient(top, #0044cc, #0088cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0044cc), to(#0088cc));
  background-image: -webkit-linear-gradient(top, #0044cc, #0088cc);
  background-image: -o-linear-gradient(top, #0044cc, #0088cc);
  background-image: linear-gradient(to bottom, #0044cc, #0088cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0044cc', endColorstr='#ff0088cc', GradientType=0);
  border-color: #0088cc #0088cc #005580;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #0088cc;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.bootstrap-horizon .has-switch span.switch-primary:hover,
.bootstrap-horizon .has-switch span.switch-left:hover,
.bootstrap-horizon .has-switch span.switch-primary:focus,
.bootstrap-horizon .has-switch span.switch-left:focus,
.bootstrap-horizon .has-switch span.switch-primary:active,
.bootstrap-horizon .has-switch span.switch-left:active,
.bootstrap-horizon .has-switch span.switch-primary.active,
.bootstrap-horizon .has-switch span.switch-left.active,
.bootstrap-horizon .has-switch span.switch-primary.disabled,
.bootstrap-horizon .has-switch span.switch-left.disabled,
.bootstrap-horizon .has-switch span.switch-primary[disabled],
.bootstrap-horizon .has-switch span.switch-left[disabled] {
  color: #ffffff;
  background-color: #0088cc;
  *background-color: #0077b3;
}
.bootstrap-horizon .has-switch span.switch-primary:active,
.bootstrap-horizon .has-switch span.switch-left:active,
.bootstrap-horizon .has-switch span.switch-primary.active,
.bootstrap-horizon .has-switch span.switch-left.active {
  background-color: #006699 \9;
}
.bootstrap-horizon .has-switch span.switch-primary:hover,
.bootstrap-horizon .has-switch span.switch-left:hover,
.bootstrap-horizon .has-switch span.switch-primary:focus,
.bootstrap-horizon .has-switch span.switch-left:focus,
.bootstrap-horizon .has-switch span.switch-primary:active,
.bootstrap-horizon .has-switch span.switch-left:active,
.bootstrap-horizon .has-switch span.switch-primary.active,
.bootstrap-horizon .has-switch span.switch-left.active,
.bootstrap-horizon .has-switch span.switch-primary.disabled,
.bootstrap-horizon .has-switch span.switch-left.disabled,
.bootstrap-horizon .has-switch span.switch-primary[disabled],
.bootstrap-horizon .has-switch span.switch-left[disabled] {
  color: #ffffff;
  background-color: #0088cc;
  *background-color: #0077b3;
}
.bootstrap-horizon .has-switch span.switch-primary:active,
.bootstrap-horizon .has-switch span.switch-left:active,
.bootstrap-horizon .has-switch span.switch-primary.active,
.bootstrap-horizon .has-switch span.switch-left.active {
  background-color: #006699 \9;
}
.bootstrap-horizon .has-switch span.switch-info {
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: transparent;
  background-color: #41a7c5;
  background-image: -moz-linear-gradient(top, #2f96b4, #5bc0de);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#2f96b4), to(#5bc0de));
  background-image: -webkit-linear-gradient(top, #2f96b4, #5bc0de);
  background-image: -o-linear-gradient(top, #2f96b4, #5bc0de);
  background-image: linear-gradient(to bottom, #2f96b4, #5bc0de);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff2f96b4', endColorstr='#ff5bc0de', GradientType=0);
  border-color: #5bc0de #5bc0de #28a1c5;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #5bc0de;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.bootstrap-horizon .has-switch span.switch-info:hover,
.bootstrap-horizon .has-switch span.switch-info:focus,
.bootstrap-horizon .has-switch span.switch-info:active,
.bootstrap-horizon .has-switch span.switch-info.active,
.bootstrap-horizon .has-switch span.switch-info.disabled,
.bootstrap-horizon .has-switch span.switch-info[disabled] {
  color: #ffffff;
  background-color: #5bc0de;
  *background-color: #46b8da;
}
.bootstrap-horizon .has-switch span.switch-info:active,
.bootstrap-horizon .has-switch span.switch-info.active {
  background-color: #31b0d5 \9;
}
.bootstrap-horizon .has-switch span.switch-info:hover,
.bootstrap-horizon .has-switch span.switch-info:focus,
.bootstrap-horizon .has-switch span.switch-info:active,
.bootstrap-horizon .has-switch span.switch-info.active,
.bootstrap-horizon .has-switch span.switch-info.disabled,
.bootstrap-horizon .has-switch span.switch-info[disabled] {
  color: #ffffff;
  background-color: #5bc0de;
  *background-color: #46b8da;
}
.bootstrap-horizon .has-switch span.switch-info:active,
.bootstrap-horizon .has-switch span.switch-info.active {
  background-color: #31b0d5 \9;
}
.bootstrap-horizon .has-switch span.switch-success {
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: transparent;
  background-color: #58b058;
  background-image: -moz-linear-gradient(top, #51a351, #62c462);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#51a351), to(#62c462));
  background-image: -webkit-linear-gradient(top, #51a351, #62c462);
  background-image: -o-linear-gradient(top, #51a351, #62c462);
  background-image: linear-gradient(to bottom, #51a351, #62c462);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff51a351', endColorstr='#ff62c462', GradientType=0);
  border-color: #62c462 #62c462 #3b9e3b;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #62c462;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.bootstrap-horizon .has-switch span.switch-success:hover,
.bootstrap-horizon .has-switch span.switch-success:focus,
.bootstrap-horizon .has-switch span.switch-success:active,
.bootstrap-horizon .has-switch span.switch-success.active,
.bootstrap-horizon .has-switch span.switch-success.disabled,
.bootstrap-horizon .has-switch span.switch-success[disabled] {
  color: #ffffff;
  background-color: #62c462;
  *background-color: #4fbd4f;
}
.bootstrap-horizon .has-switch span.switch-success:active,
.bootstrap-horizon .has-switch span.switch-success.active {
  background-color: #42b142 \9;
}
.bootstrap-horizon .has-switch span.switch-success:hover,
.bootstrap-horizon .has-switch span.switch-success:focus,
.bootstrap-horizon .has-switch span.switch-success:active,
.bootstrap-horizon .has-switch span.switch-success.active,
.bootstrap-horizon .has-switch span.switch-success.disabled,
.bootstrap-horizon .has-switch span.switch-success[disabled] {
  color: #ffffff;
  background-color: #62c462;
  *background-color: #4fbd4f;
}
.bootstrap-horizon .has-switch span.switch-success:active,
.bootstrap-horizon .has-switch span.switch-success.active {
  background-color: #42b142 \9;
}
.bootstrap-horizon .has-switch span.switch-warning {
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: transparent;
  background-color: #f9a123;
  background-image: -moz-linear-gradient(top, #f89406, #fbb450);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f89406), to(#fbb450));
  background-image: -webkit-linear-gradient(top, #f89406, #fbb450);
  background-image: -o-linear-gradient(top, #f89406, #fbb450);
  background-image: linear-gradient(to bottom, #f89406, #fbb450);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff89406', endColorstr='#fffbb450', GradientType=0);
  border-color: #fbb450 #fbb450 #f89406;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #fbb450;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.bootstrap-horizon .has-switch span.switch-warning:hover,
.bootstrap-horizon .has-switch span.switch-warning:focus,
.bootstrap-horizon .has-switch span.switch-warning:active,
.bootstrap-horizon .has-switch span.switch-warning.active,
.bootstrap-horizon .has-switch span.switch-warning.disabled,
.bootstrap-horizon .has-switch span.switch-warning[disabled] {
  color: #ffffff;
  background-color: #fbb450;
  *background-color: #faa937;
}
.bootstrap-horizon .has-switch span.switch-warning:active,
.bootstrap-horizon .has-switch span.switch-warning.active {
  background-color: #fa9f1e \9;
}
.bootstrap-horizon .has-switch span.switch-warning:hover,
.bootstrap-horizon .has-switch span.switch-warning:focus,
.bootstrap-horizon .has-switch span.switch-warning:active,
.bootstrap-horizon .has-switch span.switch-warning.active,
.bootstrap-horizon .has-switch span.switch-warning.disabled,
.bootstrap-horizon .has-switch span.switch-warning[disabled] {
  color: #ffffff;
  background-color: #fbb450;
  *background-color: #faa937;
}
.bootstrap-horizon .has-switch span.switch-warning:active,
.bootstrap-horizon .has-switch span.switch-warning.active {
  background-color: #fa9f1e \9;
}
.bootstrap-horizon .has-switch span.switch-danger {
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: transparent;
  background-color: #d14641;
  background-image: -moz-linear-gradient(top, #bd362f, #ee5f5b);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#bd362f), to(#ee5f5b));
  background-image: -webkit-linear-gradient(top, #bd362f, #ee5f5b);
  background-image: -o-linear-gradient(top, #bd362f, #ee5f5b);
  background-image: linear-gradient(to bottom, #bd362f, #ee5f5b);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbd362f', endColorstr='#ffee5f5b', GradientType=0);
  border-color: #ee5f5b #ee5f5b #e51d18;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #ee5f5b;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.bootstrap-horizon .has-switch span.switch-danger:hover,
.bootstrap-horizon .has-switch span.switch-danger:focus,
.bootstrap-horizon .has-switch span.switch-danger:active,
.bootstrap-horizon .has-switch span.switch-danger.active,
.bootstrap-horizon .has-switch span.switch-danger.disabled,
.bootstrap-horizon .has-switch span.switch-danger[disabled] {
  color: #ffffff;
  background-color: #ee5f5b;
  *background-color: #ec4844;
}
.bootstrap-horizon .has-switch span.switch-danger:active,
.bootstrap-horizon .has-switch span.switch-danger.active {
  background-color: #e9322d \9;
}
.bootstrap-horizon .has-switch span.switch-danger:hover,
.bootstrap-horizon .has-switch span.switch-danger:focus,
.bootstrap-horizon .has-switch span.switch-danger:active,
.bootstrap-horizon .has-switch span.switch-danger.active,
.bootstrap-horizon .has-switch span.switch-danger.disabled,
.bootstrap-horizon .has-switch span.switch-danger[disabled] {
  color: #ffffff;
  background-color: #ee5f5b;
  *background-color: #ec4844;
}
.bootstrap-horizon .has-switch span.switch-danger:active,
.bootstrap-horizon .has-switch span.switch-danger.active {
  background-color: #e9322d \9;
}
.bootstrap-horizon .has-switch span.switch-default {
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  color: #333333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  background-color: transparent;
  background-color: #f0f0f0;
  background-image: -moz-linear-gradient(top, #e6e6e6, #ffffff);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e6e6e6), to(#ffffff));
  background-image: -webkit-linear-gradient(top, #e6e6e6, #ffffff);
  background-image: -o-linear-gradient(top, #e6e6e6, #ffffff);
  background-image: linear-gradient(to bottom, #e6e6e6, #ffffff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe6e6e6', endColorstr='#ffffffff', GradientType=0);
  border-color: #ffffff #ffffff #d9d9d9;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #ffffff;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.bootstrap-horizon .has-switch span.switch-default:hover,
.bootstrap-horizon .has-switch span.switch-default:focus,
.bootstrap-horizon .has-switch span.switch-default:active,
.bootstrap-horizon .has-switch span.switch-default.active,
.bootstrap-horizon .has-switch span.switch-default.disabled,
.bootstrap-horizon .has-switch span.switch-default[disabled] {
  color: #333333;
  background-color: #ffffff;
  *background-color: #f2f2f2;
}
.bootstrap-horizon .has-switch span.switch-default:active,
.bootstrap-horizon .has-switch span.switch-default.active {
  background-color: #e6e6e6 \9;
}
.bootstrap-horizon .has-switch span.switch-default:hover,
.bootstrap-horizon .has-switch span.switch-default:focus,
.bootstrap-horizon .has-switch span.switch-default:active,
.bootstrap-horizon .has-switch span.switch-default.active,
.bootstrap-horizon .has-switch span.switch-default.disabled,
.bootstrap-horizon .has-switch span.switch-default[disabled] {
  color: #333333;
  background-color: #ffffff;
  *background-color: #f2f2f2;
}
.bootstrap-horizon .has-switch span.switch-default:active,
.bootstrap-horizon .has-switch span.switch-default.active {
  background-color: #e6e6e6 \9;
}
.bootstrap-horizon .chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  zoom: 1;
  *display: inline;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.bootstrap-horizon .chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  left: -9999px;
  z-index: 1010;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}
.bootstrap-horizon .chosen-container.chosen-with-drop .chosen-drop {
  left: 0;
}
.bootstrap-horizon .chosen-container a {
  cursor: pointer;
}
.bootstrap-horizon .chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 23px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4));
  background: -webkit-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background: -moz-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background: -o-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background: linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background-clip: padding-box;
  box-shadow: 0 0 3px #ffffff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px;
}
.bootstrap-horizon .chosen-container-single .chosen-default {
  color: #999;
}
.bootstrap-horizon .chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bootstrap-horizon .chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px;
}
.bootstrap-horizon .chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url('../images/chosen-sprite.png') -42px 1px no-repeat;
  font-size: 1px;
}
.bootstrap-horizon .chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px;
}
.bootstrap-horizon .chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px;
}
.bootstrap-horizon .chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%;
}
.bootstrap-horizon .chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  background: url('../images/chosen-sprite.png') no-repeat 0px 2px;
}
.bootstrap-horizon .chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap;
}
.bootstrap-horizon .chosen-container-single .chosen-search input[type="text"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  background: #ffffff url('../images/chosen-sprite.png') no-repeat 100% -20px;
  background: url('../images/chosen-sprite.png') no-repeat 100% -20px, -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
  background: url('../images/chosen-sprite.png') no-repeat 100% -20px, -webkit-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background: url('../images/chosen-sprite.png') no-repeat 100% -20px, -moz-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background: url('../images/chosen-sprite.png') no-repeat 100% -20px, -o-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background: url('../images/chosen-sprite.png') no-repeat 100% -20px, linear-gradient(#eeeeee 1%, #ffffff 15%);
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}
.bootstrap-horizon .chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box;
}
.bootstrap-horizon .chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  left: -9999px;
}
.bootstrap-horizon .chosen-container .chosen-results {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch;
}
.bootstrap-horizon .chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
}
.bootstrap-horizon .chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}
.bootstrap-horizon .chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default;
}
.bootstrap-horizon .chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
  background-image: -webkit-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: -moz-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: -o-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
  color: #fff;
}
.bootstrap-horizon .chosen-container .chosen-results li.no-results {
  display: list-item;
  background: #f4f4f4;
}
.bootstrap-horizon .chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default;
}
.bootstrap-horizon .chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}
.bootstrap-horizon .chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline;
}
.bootstrap-horizon .chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto !important;
  height: 1%;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
  background-image: -webkit-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: -moz-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: -o-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: linear-gradient(#eeeeee 1%, #ffffff 15%);
  cursor: text;
}
.bootstrap-horizon .chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}
.bootstrap-horizon .chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.bootstrap-horizon .chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  margin: 1px 0;
  padding: 5px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none;
  color: #666;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}
.bootstrap-horizon .chosen-container-multi .chosen-choices li.search-field .default {
  color: #999;
}
.bootstrap-horizon .chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 0 3px 5px;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  border-radius: 3px;
  background-color: #e4e4e4;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
  background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-clip: padding-box;
  box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default;
}
.bootstrap-horizon .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  background: url('../images/chosen-sprite.png') -42px 1px no-repeat;
  font-size: 1px;
}
.bootstrap-horizon .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px;
}
.bootstrap-horizon .chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
  background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  color: #666;
}
.bootstrap-horizon .chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4;
}
.bootstrap-horizon .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px;
}
.bootstrap-horizon .chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0;
}
.bootstrap-horizon .chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default;
}
.bootstrap-horizon .chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.bootstrap-horizon .chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  -moz-border-radius-bottomright: 0;
  border-bottom-right-radius: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-left-radius: 0;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #eeeeee), color-stop(80%, #ffffff));
  background-image: -webkit-linear-gradient(#eeeeee 20%, #ffffff 80%);
  background-image: -moz-linear-gradient(#eeeeee 20%, #ffffff 80%);
  background-image: -o-linear-gradient(#eeeeee 20%, #ffffff 80%);
  background-image: linear-gradient(#eeeeee 20%, #ffffff 80%);
  box-shadow: 0 1px 0 #fff inset;
}
.bootstrap-horizon .chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent;
}
.bootstrap-horizon .chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px;
}
.bootstrap-horizon .chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.bootstrap-horizon .chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #111 !important;
}
.bootstrap-horizon .chosen-disabled {
  opacity: 0.5 !important;
  cursor: default;
}
.bootstrap-horizon .chosen-disabled .chosen-single {
  cursor: default;
}
.bootstrap-horizon .chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}
.bootstrap-horizon .chosen-rtl {
  text-align: right;
}
.bootstrap-horizon .chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0;
}
.bootstrap-horizon .chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl;
}
.bootstrap-horizon .chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px;
}
.bootstrap-horizon .chosen-rtl .chosen-single div {
  right: auto;
  left: 3px;
}
.bootstrap-horizon .chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px;
}
.bootstrap-horizon .chosen-rtl .chosen-choices li {
  float: right;
}
.bootstrap-horizon .chosen-rtl .chosen-choices li.search-field input[type="text"] {
  direction: rtl;
}
.bootstrap-horizon .chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px;
}
.bootstrap-horizon .chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px;
}
.bootstrap-horizon .chosen-rtl.chosen-container-single-nosearch .chosen-search,
.bootstrap-horizon .chosen-rtl .chosen-drop {
  left: 9999px;
}
.bootstrap-horizon .chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0;
}
.bootstrap-horizon .chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0;
}
.bootstrap-horizon .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none;
}
.bootstrap-horizon .chosen-rtl .chosen-search input[type="text"] {
  padding: 4px 5px 4px 20px;
  background: #ffffff url('../images/chosen-sprite.png') no-repeat -30px -20px;
  background: url('../images/chosen-sprite.png') no-repeat -30px -20px, -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
  background: url('../images/chosen-sprite.png') no-repeat -30px -20px, -webkit-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background: url('../images/chosen-sprite.png') no-repeat -30px -20px, -moz-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background: url('../images/chosen-sprite.png') no-repeat -30px -20px, -o-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background: url('../images/chosen-sprite.png') no-repeat -30px -20px, linear-gradient(#eeeeee 1%, #ffffff 15%);
  direction: rtl;
}
.bootstrap-horizon .chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px;
}
.bootstrap-horizon .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi) {
  .bootstrap-horizon .chosen-rtl .chosen-search input[type="text"],
  .bootstrap-horizon .chosen-container-single .chosen-single abbr,
  .bootstrap-horizon .chosen-container-single .chosen-single div b,
  .bootstrap-horizon .chosen-container-single .chosen-search input[type="text"],
  .bootstrap-horizon .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
  .bootstrap-horizon .chosen-container .chosen-results-scroll-down span,
  .bootstrap-horizon .chosen-container .chosen-results-scroll-up span {
    background-image: url('../images/chosen-sprite@2x.png') !important;
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important;
  }
}
.bootstrap-horizon .device {
  position: relative;
}
.bootstrap-horizon .device a:hover {
  text-decoration: none;
}
.bootstrap-horizon .device .btn-group {
  text-align: center;
}
.bootstrap-horizon .device input {
  font-size: 12px;
  margin: 5px;
}
.bootstrap-horizon .device > .phone {
  width: 300px;
  height: 580px;
  background-color: #fafafa;
  border: 1px solid #cccccc;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  -webkit-box-shadow: 0 1px 20px rgba(0, 0, 0, 0.165);
  -moz-box-shadow: 0 1px 20px rgba(0, 0, 0, 0.165);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.165);
}
.bootstrap-horizon .device > .phone > .phone--overlay,
.bootstrap-horizon .device > .phone > .phone-apps-overlay,
.bootstrap-horizon .device > .phone > .phone-info-overlay {
  overflow-y: auto;
  margin-top: 60px;
  margin-left: 15px;
  width: 270px;
  height: 460px;
  border: 1px solid #cccccc;
  background-image: url("../images/devices/iphone-wallpaper.png");
  -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.1);
}
.bootstrap-horizon .device > .phone > .phone-apps-overlay {
  padding-top: 80px;
  height: 380px;
}
.bootstrap-horizon .device > .phone > .phone-info-overlay {
  padding-top: 40px;
  height: 420px;
}
.bootstrap-horizon .device > .phone > .phone-info-overlay.mvp,
.bootstrap-horizon .device > .phone > .phone-info-overlay.law {
  padding-top: 0px;
  height: 460px;
}
.bootstrap-horizon .device > .phone > .phone-controls {
  height: 80px;
  position: absolute;
  top: 61px;
  left: 17px;
  width: 270px;
  z-index: 3;
}
.bootstrap-horizon .device > .phone > .phone-controls .section-controls {
  width: 270px;
  padding: 5px 0px;
  background-color: rgba(0, 0, 0, 0.4);
}
.bootstrap-horizon .device > .phone > .phone-controls .sub-section-controls {
  background-color: rgba(0, 0, 0, 0.3);
}
.bootstrap-horizon .device > .phone > .phone-controls .sub-section-controls input {
  width: 165px;
}
.bootstrap-horizon .device > .phone > .phone-controls .sub-section-controls .view-selector {
  padding: 9px 5px;
}
.bootstrap-horizon .device > .tablet {
  width: 600px;
  height: 744px;
  margin-bottom: 40px;
  background-color: #fafafa;
  border: 1px solid #cccccc;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  -webkit-box-shadow: 0 1px 20px rgba(0, 0, 0, 0.165);
  -moz-box-shadow: 0 1px 20px rgba(0, 0, 0, 0.165);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.165);
}
.bootstrap-horizon .device > .tablet > .tablet--overlay,
.bootstrap-horizon .device > .tablet > .tablet-apps-overlay,
.bootstrap-horizon .device > .tablet > .tablet-info-overlay {
  overflow-y: auto;
  margin-top: 40px;
  margin-left: 20px;
  width: 560px;
  height: 660px;
  border: 1px solid #cccccc;
  background-image: url("../images/devices/ipad-wallpaper.png");
  background-size: contain;
  -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.1);
}
.bootstrap-horizon .device > .tablet > .tablet-apps-overlay {
  padding-top: 80px;
  height: 580px;
}
.bootstrap-horizon .device > .tablet > .tablet-info-overlay {
  padding-top: 40px;
  height: 620px;
}
.bootstrap-horizon .device > .tablet > .tablet-controls {
  height: 80px;
  position: absolute;
  top: 42px;
  left: 22px;
  width: 560px;
  z-index: 3;
}
.bootstrap-horizon .device > .tablet > .tablet-controls .section-controls {
  width: 560px;
  padding: 5px 0px;
  background-color: rgba(0, 0, 0, 0.4);
}
.bootstrap-horizon .device > .tablet > .tablet-controls .sub-section-controls {
  background-color: rgba(0, 0, 0, 0.3);
}
.bootstrap-horizon .device > .tablet > .tablet-controls .sub-section-controls input {
  width: 450px;
}
.bootstrap-horizon .device > .tablet > .tablet-controls .sub-section-controls .view-selector {
  padding: 9px 5px;
}
.bootstrap-horizon .device .apps .app-uninstalled {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.bootstrap-horizon .device .apps .grid ul {
  list-style: none;
  margin: 5px;
}
.bootstrap-horizon .device .apps .grid li {
  float: left;
  margin: 5px;
  position: relative;
  z-index: 0;
}
.bootstrap-horizon .device .apps .grid li a,
.bootstrap-horizon .device .apps .grid li div {
  width: 54px;
  display: block;
}
.bootstrap-horizon .device .apps .grid li a .app-icon {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  overflow: hidden;
  height: 54px;
  width: 54px;
}
.bootstrap-horizon .device .apps .grid li a .app-name {
  text-align: center;
  font-size: 10px;
  color: #ffffff;
}
.bootstrap-horizon .device .apps .grid li a .status-icon {
  position: absolute;
  right: 0px;
  bottom: 20px;
  width: 24px;
  height: 20px;
}
.bootstrap-horizon .device .apps .grid li a .status-icon .status-ok {
  background-color: rgba(0, 255, 0, 0.9);
  -webkit-border-bottom-right-radius: 8px;
  -moz-border-radius-bottomright: 8px;
  border-bottom-right-radius: 8px;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  width: 20px;
  height: 20px;
  padding-left: 4px;
}
.bootstrap-horizon .device .apps .grid li a .status-icon .status-error {
  background-color: rgba(255, 0, 0, 0.9);
  -webkit-border-bottom-right-radius: 8px;
  -moz-border-radius-bottomright: 8px;
  border-bottom-right-radius: 8px;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  width: 20px;
  height: 20px;
  padding-left: 4px;
}
.bootstrap-horizon .device .apps .list ul {
  list-style: none;
  margin: 5px;
}
.bootstrap-horizon .device .apps .list li {
  margin: 5px 0px;
  position: relative;
  z-index: 0;
  width: auto;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}
.bootstrap-horizon .device .apps .list li a {
  width: 100%;
  height: 54px;
  display: block;
}
.bootstrap-horizon .device .apps .list li a div {
  height: 44px;
  padding-left: 59px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 5px;
}
.bootstrap-horizon .device .apps .list li a .app-icon {
  -webkit-border-top-left-radius: 8px;
  -moz-border-radius-topleft: 8px;
  border-top-left-radius: 8px;
  -webkit-border-bottom-left-radius: 8px;
  -moz-border-radius-bottomleft: 8px;
  border-bottom-left-radius: 8px;
  border-color: #ffffff;
  background-color: #ffffff;
  overflow: hidden;
  height: 54px;
  width: 54px;
}
.bootstrap-horizon .device .apps .list li a .status-icon {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 24px;
  height: 20px;
  padding: 0px;
}
.bootstrap-horizon .device .apps .list li a .status-icon .status-ok {
  background-color: rgba(0, 255, 0, 0.9);
  -webkit-border-bottom-right-radius: 8px;
  -moz-border-radius-bottomright: 8px;
  border-bottom-right-radius: 8px;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  width: 20px;
  height: 20px;
  padding: 0px;
  padding-left: 4px;
}
.bootstrap-horizon .device .apps .list li a .status-icon .status-error {
  background-color: rgba(255, 0, 0, 0.9);
  -webkit-border-bottom-right-radius: 8px;
  -moz-border-radius-bottomright: 8px;
  border-bottom-right-radius: 8px;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  width: 20px;
  height: 20px;
  padding: 0px;
  padding-left: 4px;
}
.bootstrap-horizon .device .apps .list li a .app-name {
  font-size: 12px;
  color: #000000;
}
.bootstrap-horizon .device .apps .list li a .app-status {
  font-size: 10px;
  color: #000000;
}
.bootstrap-horizon .device .info {
  margin: 3px;
}
.bootstrap-horizon .device .info table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0px auto;
  width: 100%;
  background-color: #ffffff;
}
.bootstrap-horizon .device .info tr {
  border: 1px solid #e5e5e5;
  border-top: 0px;
}
.bootstrap-horizon .device .info tr td:first-child {
  font-weight: bold;
  color: #000000;
}
.bootstrap-horizon .device .info tr td:last-child {
  text-align: right;
  color: #385487;
}
.bootstrap-horizon .device .info td {
  border: 0px;
  padding: 8px;
  vertical-align: top;
}
.bootstrap-horizon .device .device-message {
  text-align: center;
  width: 100%;
  margin-top: 140px;
  color: #ffffff;
}
.bootstrap-horizon .phone-margin {
  margin-left: 330px;
}
.bootstrap-horizon .tablet-margin {
  margin-left: 630px;
}
.bootstrap-horizon .workspace-actions .btn {
  position: relative;
  padding: 35px 4px 4px;
  line-height: 16px;
  width: 90px;
  height: 80px;
  font-size: 12px;
  overflow: hidden;
  margin: 5px;
}
.bootstrap-horizon .workspace-actions .btn [class^="icon-"],
.bootstrap-horizon .workspace-actions .btn [class*=" icon-"] {
  position: absolute;
  top: 10px;
  left: 31px;
  margin: 0px;
  width: 26px;
  height: 26px;
  background-position: 0px;
}
.bootstrap-horizon dl {
  margin-bottom: 0px;
}
.bootstrap-horizon .icon-erase {
  background-image: url("../images/glyphicons/glyphicons_016_bin.png");
}
.bootstrap-horizon .icon-disable,
.bootstrap-horizon .icon-lock {
  background-image: url("../images/glyphicons/glyphicons_203_lock.png");
}
.bootstrap-horizon .icon-enable,
.bootstrap-horizon .icon-unlock {
  background-image: url("../images/glyphicons/glyphicons_204_unlock.png");
}
.bootstrap-horizon .icon-wipe {
  background-image: url("../images/glyphicons/glyphicons_199_ban.png");
}
.bootstrap-horizon .icon-reset-password {
  background-image: url("../images/glyphicons/glyphicons_240_rotation_lock.png");
}
.bootstrap-horizon .icon-retrieve-logs {
  background-image: url("../images/glyphicons/glyphicons_087_log_book.png");
}
.bootstrap-horizon .icon-sync {
  background-image: url("../images/glyphicons/glyphicons_081_refresh.png");
}
.bootstrap-horizon .icon-delete {
  background-image: url("../images/glyphicons/glyphicons_256_delete.png");
}
.bootstrap-horizon .table {
  font-size: 12px;
}
.bootstrap-horizon .table th {
  background-color: #eae8e4;
  text-transform: uppercase;
  font-size: 10px;
}
.bootstrap-horizon .table-bordered {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.bootstrap-horizon .table-bordered thead:first-child tr:first-child > th:first-child,
.bootstrap-horizon .table-bordered tbody:first-child tr:first-child > td:first-child,
.bootstrap-horizon .table-bordered tbody:first-child tr:first-child > th:first-child {
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topleft: 0;
  border-top-left-radius: 0;
}
.bootstrap-horizon .table-bordered thead:first-child tr:first-child > th:last-child,
.bootstrap-horizon .table-bordered tbody:first-child tr:first-child > td:last-child,
.bootstrap-horizon .table-bordered tbody:first-child tr:first-child > th:last-child {
  -webkit-border-top-right-radius: 0;
  -moz-border-radius-topright: 0;
  border-top-right-radius: 0;
}
.bootstrap-horizon .table-bordered thead:last-child tr:last-child > th:first-child,
.bootstrap-horizon .table-bordered tbody:last-child tr:last-child > td:first-child,
.bootstrap-horizon .table-bordered tbody:last-child tr:last-child > th:first-child,
.bootstrap-horizon .table-bordered tfoot:last-child tr:last-child > td:first-child,
.bootstrap-horizon .table-bordered tfoot:last-child tr:last-child > th:first-child {
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-left-radius: 0;
}
.bootstrap-horizon .table-bordered thead:last-child tr:last-child > th:last-child,
.bootstrap-horizon .table-bordered tbody:last-child tr:last-child > td:last-child,
.bootstrap-horizon .table-bordered tbody:last-child tr:last-child > th:last-child,
.bootstrap-horizon .table-bordered tfoot:last-child tr:last-child > td:last-child,
.bootstrap-horizon .table-bordered tfoot:last-child tr:last-child > th:last-child {
  -webkit-border-bottom-right-radius: 0;
  -moz-border-radius-bottomright: 0;
  border-bottom-right-radius: 0;
}
.bootstrap-horizon .table-bordered caption + thead tr:first-child th:first-child,
.bootstrap-horizon .table-bordered caption + tbody tr:first-child td:first-child,
.bootstrap-horizon .table-bordered colgroup + thead tr:first-child th:first-child,
.bootstrap-horizon .table-bordered colgroup + tbody tr:first-child td:first-child {
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topleft: 0;
  border-top-left-radius: 0;
}
.bootstrap-horizon .table-bordered caption + thead tr:first-child th:last-child,
.bootstrap-horizon .table-bordered caption + tbody tr:first-child td:last-child,
.bootstrap-horizon .table-bordered colgroup + thead tr:first-child th:last-child,
.bootstrap-horizon .table-bordered colgroup + tbody tr:first-child td:last-child {
  -webkit-border-top-right-radius: 0;
  -moz-border-radius-topright: 0;
  border-top-right-radius: 0;
}
.bootstrap-horizon .table-striped tbody > tr:nth-child(odd) > td,
.bootstrap-horizon .table-striped tbody > tr:nth-child(odd) > th {
  background-color: inherit;
}
.bootstrap-horizon .table-striped tbody > tr:nth-child(even) > td,
.bootstrap-horizon .table-striped tbody > tr:nth-child(even) > th {
  background-color: #f9f9f9;
}
.bootstrap-horizon .table thead tr th.success,
.bootstrap-horizon .table tbody tr td.success {
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
  color: #468847;
}
.bootstrap-horizon .table thead tr th.error,
.bootstrap-horizon .table tbody tr td.error {
  background-color: #f2dede;
  border: 1px solid #eed3d7;
  color: #b94a48;
}
.bootstrap-horizon .table thead tr th.warning,
.bootstrap-horizon .table tbody tr td.warning {
  background-color: #fcf8e3;
  border: 1px solid #fbeed5;
  color: #c09853;
}
.bootstrap-horizon .table thead tr th.info,
.bootstrap-horizon .table tbody tr td.info {
  background-color: #d9edf7;
  border: 1px solid #bce8f1;
  color: #3a87ad;
}
.bootstrap-horizon .table thead tr th.accent,
.bootstrap-horizon .table tbody tr td.accent {
  background-color: #f9f9f9;
  border: 1px solid #dddddd;
}
.bootstrap-horizon .table-header-buttons {
  margin-bottom: 20px;
}
.bootstrap-horizon tr.no-wrap-cells > td,
.bootstrap-horizon tr.no-wrap-cells > th {
  white-space: nowrap;
}
.bootstrap-horizon .policy-list {
  width: 800px;
}
.bootstrap-horizon .policy-list-spaced {
  width: 800px;
}
.bootstrap-horizon .policy-list-spaced li {
  padding: 5px;
  margin-bottom: 5px;
}
.bootstrap-horizon .round-list-container-transparent {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
  margin-bottom: 5px;
}
.bootstrap-horizon .round-list-container-transparent .round-list-header {
  border-bottom: 1px solid #eeeeee;
}
.bootstrap-horizon .round-list-container-transparent .round-list-header div {
  font-weight: bold;
}
.bootstrap-horizon .round-list-container {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
  margin-bottom: 5px;
  background-color: #ffffff;
}
.bootstrap-horizon .round-list-container .round-list-header {
  border-bottom: 1px solid #eeeeee;
}
.bootstrap-horizon .round-list-container .round-list-header div {
  font-weight: bold;
}
.bootstrap-horizon .round-list-container-gray {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
  margin-bottom: 5px;
  background-color: #f5f5f5;
}
.bootstrap-horizon .round-list-container-gray .round-list-header {
  border-bottom: 1px solid #eeeeee;
}
.bootstrap-horizon .round-list-container-gray .round-list-header div {
  font-weight: bold;
}
.bootstrap-horizon .round-list-container-gray .row-fluid {
  padding-left: 0;
  padding-right: 0;
}
.bootstrap-horizon .round-list-container-blue {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
  margin-bottom: 5px;
  background-color: #d9edf7;
}
.bootstrap-horizon .round-list-container-blue .round-list-header {
  border-bottom: 1px solid #eeeeee;
}
.bootstrap-horizon .round-list-container-blue .round-list-header div {
  font-weight: bold;
}
.bootstrap-horizon .round-list-container-blue .row-fluid {
  padding-left: 0;
  padding-right: 0;
}
.bootstrap-horizon .policy-header-row.row-fluid {
  padding-left: 5px;
  padding-right: 5px;
  font-weight: bold;
  border-bottom: 1px solid #999999;
  margin-bottom: 10px;
}
.bootstrap-horizon .policy-header-row.row-fluid [class*="span"] {
  white-space: nowrap;
  min-height: 25px;
}
.bootstrap-horizon .dashboard-page #dashboard-timeline-gradient stop {
  stop-color: #3383aa;
}
.bootstrap-horizon .dashboard-page #dashboard-timeline-gradient stop[offset="0%"] {
  stop-opacity: 1;
}
.bootstrap-horizon .dashboard-page #dashboard-timeline-gradient stop[offset="100%"] {
  stop-opacity: 0;
}
.bootstrap-horizon .dashboard-page .frame.headered- {
  padding-top: 24px;
}
.bootstrap-horizon .dashboard-page .frame > header,
.bootstrap-horizon .dashboard-page .frame > .frame-header,
.bootstrap-horizon .dashboard-page .frame > .frame-body > .frame-header {
  height: 24px;
}
.bootstrap-horizon .dashboard-page .frame.footered- {
  padding-bottom: 16px;
}
.bootstrap-horizon .dashboard-page .frame > footer,
.bootstrap-horizon .dashboard-page .frame > .frame-footer,
.bootstrap-horizon .dashboard-page .frame > .frame-body > .frame-footer {
  height: 16px;
}
.bootstrap-horizon .dashboard-page .frame > header,
.bootstrap-horizon .dashboard-page .frame .frame-header {
  border-style: none;
  color: white;
  padding: 0 20px;
  font-size: 14px;
  line-height: 24px;
  -webkit-font-smoothing: antialiased;
}
.bootstrap-horizon .dashboard-page .frame > header h3,
.bootstrap-horizon .dashboard-page .frame .frame-header h3,
.bootstrap-horizon .dashboard-page .frame > header h4,
.bootstrap-horizon .dashboard-page .frame .frame-header h4 {
  font-size: inherit;
  line-height: inherit;
  font-weight: 600;
  margin: 0;
  padding: 0;
}
.bootstrap-horizon .dashboard-page .frame .vertical-.frame-split > :last-child {
  padding: 10px 0;
  border-top: 1px solid #c2c2c2;
}
.bootstrap-horizon .dashboard-page .frame .vertical-.frame-split > :last-child:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 10px;
  width: 100%;
  background: #ffffff;
}
.bootstrap-horizon .dashboard-page .frame .pane {
  padding: 0 20px;
}
.bootstrap-horizon .dashboard-page .frame .frame-footer {
  text-align: right;
  font-size: 12px;
  line-height: 16px;
  padding: 0 20px;
  border-style: none;
}
.bootstrap-horizon .dashboard-page .frame .frame-split .frame-footer {
  bottom: -16px;
  height: 16px;
}
.bootstrap-horizon .dashboard-page .frame .table td,
.bootstrap-horizon .dashboard-page .frame .table th {
  height: 20px;
}
.bootstrap-horizon .dashboard-page .dashboard-header-content {
  background-color: #394747;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #fff;
}
.bootstrap-horizon .dashboard-page .dashboard-header-content .frame {
  height: 140px;
}
.bootstrap-horizon .dashboard-page .dashboard-header-content .frame .frame-footer {
  text-align: center;
}
.bootstrap-horizon .dashboard-page .dashboard-header-content .factoid .factoid-quantity,
.bootstrap-horizon .dashboard-page .dashboard-header-content .factoid .factoid-label {
  color: #fff;
}
.bootstrap-horizon .dashboard-page .dashboard-header-content .glyph {
  margin-bottom: 10px;
}
.bootstrap-horizon .dashboard-page .dashboard-body {
  background-color: #eee;
  padding-top: 10px;
  font-size: 14px;
}
.bootstrap-horizon .dashboard-page .dashboard-body .frame {
  background-color: #ffffff;
}
.bootstrap-horizon .dashboard-page .dashboard-body .frame > header {
  background-color: #c2c2c2;
}
.bootstrap-horizon .dashboard-page .dashboard-body .nav-vertical {
  background-color: #656E6E;
  color: #fff;
}
.bootstrap-horizon .dashboard-page .dashboard-body .nav-vertical hr {
  margin: 0;
  border-top: none;
}
.bootstrap-horizon .dashboard-page .dashboard-body .nav-vertical li {
  line-height: 65px;
  padding-right: 20px;
  font-weight: lighter;
  word-break: break-all;
  border-bottom: solid 1px;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
  position: relative;
}
.bootstrap-horizon .dashboard-page .dashboard-body .nav-vertical li:hover {
  cursor: pointer;
}
.bootstrap-horizon .dashboard-page .dashboard-body .nav-vertical li .check-,
.bootstrap-horizon .dashboard-page .dashboard-body .nav-vertical li .x- {
  margin-right: 10px;
}
.bootstrap-horizon .dashboard-page .dashboard-body .nav-vertical li .pull-right {
  position: absolute;
  top: 36px;
  right: 0;
}
.bootstrap-horizon .dashboard-page .dashboard-body .nav-vertical ul {
  list-style-type: none;
  margin: 0;
}
.bootstrap-horizon .dashboard-page .dashboard-body .va-details .spinner {
  margin: 100px auto;
}
.bootstrap-horizon .dashboard-page .dashboard-body .results-block .glyph {
  padding: 20px;
}
.bootstrap-horizon .dashboard-page .dashboard-body .results-block .results-text {
  margin-left: 60px;
  padding: 20px 0;
  border-bottom: 1px solid gray;
}
.bootstrap-horizon .dashboard-page .dashboard-body .results-block .results-text .results-title {
  font-weight: bold;
}
.bootstrap-horizon .dashboard-page .dashboard-body .property-block {
  margin-top: 10px;
}
.bootstrap-horizon .dashboard-page .dashboard-body .property-block .property-row {
  line-height: 18px;
  overflow: auto;
}
.bootstrap-horizon .dashboard-page .dashboard-body .property-block .property-row .property-name {
  padding-right: 10px;
  font-weight: bold;
  float: left;
}
.bootstrap-horizon .dashboard-page .dashboard-body .property-block .property-row .property-value {
  word-wrap: break-word;
}
.bootstrap-horizon .dashboard-page .spinner {
  margin: 10px auto;
}
.bootstrap-horizon .dashboard-page .dashboard-user-logins .factoid-chart {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
  height: 150px;
}
.bootstrap-horizon .dashboard-page .dashboard-user-logins .nvd3.nv-pie path {
  stroke: none;
}
.bootstrap-horizon .dashboard-page .dashboard-timeline nvd3 {
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
}
.bootstrap-horizon .dashboard-page .dashboard-timeline .nvtooltip {
  top: 0 !important;
}
.bootstrap-horizon .dashboard-page .dashboard-timeline text.nv-axislabel {
  fill: #fff;
  font-size: 14px;
}
.bootstrap-horizon .dashboard-page .dashboard-users-groups {
  height: 840px;
}
.bootstrap-horizon .dashboard-page .dashboard-users-groups .frame-split > :first-child {
  height: 23.07692308%;
}
.bootstrap-horizon .dashboard-page .dashboard-users-groups .frame-split > :last-child {
  height: 76.92307692%;
}
.bootstrap-horizon .dashboard-page .dashboard-users-groups .factoid {
  padding: 30px 10px;
  width: 40%;
}
@media screen and (max-width: 979px) {
  .bootstrap-horizon .dashboard-page .dashboard-users-groups .factoid {
    padding: 30px 0;
  }
}
.bootstrap-horizon .dashboard-page .dashboard-users-groups .table td:first-child:not(:empty):before {
  font-family: "hznglyphs";
  width: 1em;
  display: inline-block;
  text-align: center;
  font-size: 114.28571429%;
  margin-right: .5em;
}
.bootstrap-horizon .dashboard-page .dashboard-app-popularity {
  height: 840px;
}
.bootstrap-horizon .dashboard-page .dashboard-app-popularity .frame-split > :first-child {
  height: 30.76923077%;
}
.bootstrap-horizon .dashboard-page .dashboard-app-popularity .frame-split > :last-child {
  height: 69.23076923%;
}
.bootstrap-horizon .dashboard-page .dashboard-apps-launched {
  z-index: 0;
  height: 240px;
}
.bootstrap-horizon .dashboard-page .dashboard-apps-launched .box-module {
  padding-left: 0;
}
.bootstrap-horizon .dashboard-page .dashboard-app-adoption {
  height: 420px;
}
.bootstrap-horizon .dashboard-page .dashboard-app-adoption .nvtooltip {
  -webkit-transform: translate(-50px, -50px);
  -moz-transform: translate(-50px, -50px);
  -ms-transform: translate(-50px, -50px);
  -o-transform: translate(-50px, -50px);
  transform: translate(-50px, -50px);
}
.bootstrap-horizon .dashboard-page .dashboard-app-adoption .nvd3.nv-multibarHorizontal .nv-group.nv-series-1 {
  fill-opacity: 0.25 !important;
}
.bootstrap-horizon .dashboard-page .dashboard-app-adoption .nvd3.nv-multibarHorizontal .nv-group rect {
  stroke-opacity: 1;
  stroke-width: 2;
  stroke: #fff;
}
.bootstrap-horizon .dashboard-page .dashboard-app-adoption .nvd3 .nv-axis text {
  fill: #444d56;
  font-weight: normal;
}
.bootstrap-horizon .dashboard-page .dashboard-desktops {
  height: 180px;
}
.bootstrap-horizon .dashboard-page .dashboard-desktops .factoid {
  padding-top: 10px;
}
.bootstrap-horizon .dashboard-page .database-info-box {
  border: 1px solid #707070;
  margin: 20px 0;
  padding: 10px;
}
.bootstrap-horizon .dashboard-page .database-info-box .status-grid {
  float: left;
  width: 20%;
  text-align: center;
}
.bootstrap-horizon .dashboard-page .database-info-box .info-grid {
  float: right;
  width: 80%;
}
.bootstrap-horizon .dashboard-page .database-info-box .info-grid .word-break {
  word-break: break-all;
}
.bootstrap-horizon .dashboard-page .database-info-box dl {
  margin: 0;
}
.bootstrap-horizon .dashboard-page .database-info-box dt {
  float: left;
  padding-right: 10px;
  color: #707070;
  width: 10%;
}
.bootstrap-horizon .dashboard-page .database-info-box dd {
  margin-left: 15%;
  font-weight: 100;
  letter-spacing: 0.5px;
}
.bootstrap-horizon .dashboard-page .database-info-box.height- {
  height: 100px;
}
.bootstrap-horizon .dashboard-page .va-status-box .va-status {
  text-align: center;
  float: left;
  padding: 0 10px;
}
.bootstrap-horizon .dashboard-page .va-status-box .va-icon-box {
  width: 40px;
  height: 40px;
  margin: auto;
  line-height: 40px;
  border: 1px solid gray;
  margin-bottom: 5px;
}
.bootstrap-horizon .dashboard-page .va-status-box .va-icon-box:hover {
  cursor: pointer;
}
.bootstrap-horizon .dashboard-page .va-status-box .va-icon-box.active {
  border-color: #0088cc;
}
.bootstrap-horizon .dashboard-page .va-status-box .va-status-text {
  font-weight: 100;
  font-size: 11px;
  letter-spacing: 0.5px;
}
.bootstrap-horizon .dashboard-page .table {
  table-layout: fixed;
}
.bootstrap-horizon .dashboard-page .table td,
.bootstrap-horizon .dashboard-page .table th {
  color: #444d56;
  font-size: 12px;
  line-height: 1em;
  padding: 0 8px;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bootstrap-horizon .dashboard-page .table td:first-child,
.bootstrap-horizon .dashboard-page .table th:first-child {
  padding-left: 0;
}
.bootstrap-horizon .dashboard-page .table td:last-child,
.bootstrap-horizon .dashboard-page .table th:last-child {
  padding-right: 0;
  text-align: right;
}
.bootstrap-horizon .dashboard-page .table td {
  border-top: none;
}
.bootstrap-horizon .dashboard-page .table th {
  text-transform: none;
  background-color: transparent;
}
.bootstrap-horizon .dashboard-page h2,
.bootstrap-horizon .dashboard-page h3,
.bootstrap-horizon .dashboard-page h4 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  border-bottom: none;
}
@media (min-width: 1700px) {
  .bootstrap-horizon .dashboard-page .box.dashboard-timeline {
    width: 1320px;
  }
  .bootstrap-horizon .dashboard-page .box.dashboard-app-popularity {
    width: 720px;
  }
  .bootstrap-horizon .dashboard-page .box.dashboard-app-adoption {
    width: 600px;
    height: 600px;
  }
  .bootstrap-horizon .dashboard-page .box.dashboard-desktops {
    width: 240px;
    height: 240px;
  }
  .bootstrap-horizon .dashboard-page .box.dashboard-desktops .pane {
    padding: 0 10%;
  }
  .bootstrap-horizon .dashboard-page .box.dashboard-desktops .factoid {
    padding-left: 0;
    width: 80%;
    margin: 20px auto;
  }
  .bootstrap-horizon .dashboard-page .box.dashboard-desktops .factoid .factoid-image {
    margin-left: 0;
    float: none;
  }
  .bootstrap-horizon .dashboard-page .box.dashboard-desktops .factoid .factoid-quantity {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    padding-top: 0;
  }
  .bootstrap-horizon .dashboard-page .box.dashboard-modules {
    width: 720px;
  }
}
@media screen and (max-width: 1339px) {
  .bootstrap-horizon .dashboard-page .box.dashboard-timeline {
    width: 600px;
  }
  .bootstrap-horizon .dashboard-page .box.dashboard-app-adoption {
    width: 600px;
  }
  .bootstrap-horizon .dashboard-page .box.dashboard-modules {
    width: 960px;
  }
}
@media screen and (max-width: 979px) {
  .bootstrap-horizon .dashboard-page .box.dashboard-timeline,
  .bootstrap-horizon .dashboard-page .box.dashboard-app-popularity {
    width: 480px;
  }
  .bootstrap-horizon .dashboard-page .box.dashboard-users-groups,
  .bootstrap-horizon .dashboard-page .box.dashboard-user-logins {
    width: 240px;
  }
  .bootstrap-horizon .dashboard-page .box.dashboard-app-adoption {
    width: 360px;
  }
  .bootstrap-horizon .dashboard-page .box.va-details .grid-sidebar.five-.left- {
    width: 240px;
  }
  .bootstrap-horizon .dashboard-page .box.va-details .grid-sidebar.five-.left- ~ .grid-row {
    padding-left: 240px;
  }
  .bootstrap-horizon .dashboard-page .box.va-details .eleven- {
    width: 480px;
  }
  .bootstrap-horizon .dashboard-page .dashboard-users-groups .factoid {
    width: 50%;
  }
}
.bootstrap-horizon .dashboard-page .dropdown:hover {
  cursor: pointer;
}
.bootstrap-horizon .dashboard-page .dashboard-dropdown {
  float: right;
  padding: 0;
  padding-bottom: 0;
  overflow: visible;
  font-size: 12px;
}
.bootstrap-horizon .dashboard-page .dashboard-dropdown .dashboard-dropdown-menu {
  font-size: 14px;
  color: black;
  left: auto;
  right: 0;
  text-align: right;
  padding: 10px;
  top: 100%;
  min-width: 100%;
  white-space: nowrap;
}
.bootstrap-horizon .dashboard-page .grid.responsive- {
  min-width: 720px;
}
.bootstrap-horizon .dashboard-page .zero-data-msg {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
  padding: 15px 15px 15px 105px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bootstrap-horizon .dashboard-page .zero-data-msg:after {
  display: block;
  content: "";
  clear: both;
}
.bootstrap-horizon .dashboard-page .zero-data-msg h6 {
  font-size: inherit;
  margin: 0;
}
.bootstrap-horizon .dashboard-page .zero-data-msg img {
  width: 75px;
  float: left;
  margin-left: -90px;
}
.bootstrap-horizon .dashboard-page .dashboard-app-popularity .zero-data-msg {
  padding: 15px;
  text-align: center;
}
.bootstrap-horizon .dashboard-page .dashboard-app-popularity .zero-data-msg img {
  float: none;
  margin: 0 auto;
}
.bootstrap-horizon .dashboard-page .instanceDiagnosticDiv {
  height: 100vh;
}
.bootstrap-horizon .dashboard-page .bang-margin {
  margin-right: 10px;
}
.bootstrap-horizon .dashboard-page .spinner-margin {
  margin: 0px;
  border-radius: 0px;
}
.bootstrap-horizon .dashboard-page .disabled-link {
  pointer-events: none;
  color: #ccc;
}
.bootstrap-horizon .dashboard-page .ipAddressDiv {
  margin-top: -38px;
  text-align: left;
  padding-left: 43px;
}
.bootstrap-horizon .dashboard-page .datacenter-text {
  font-weight: 100;
  font-size: 11px;
  letter-spacing: 0.5px;
  margin: 5px;
}
.bootstrap-horizon .dashboard-page .datacenter-text:after {
  content: ':';
}
.bootstrap-horizon .dashboard-page + .modal.screenshot-modal {
  width: 90%;
  margin-left: -45%;
  height: 90%;
  overflow-y: auto;
}
.bootstrap-horizon .dashboard-page + .modal.screenshot-modal .modal-header {
  text-align: right;
  font-size: 1.5em;
}
.bootstrap-horizon .dashboard-page + .modal.screenshot-modal .modal-header .glyph {
  cursor: pointer;
}
.bootstrap-horizon .dashboard-page + .modal.screenshot-modal .modal-body {
  max-height: none;
  padding: 0;
  overflow: visible;
}
.bootstrap-horizon .dashboard-page + .modal.screenshot-modal .modal-body img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.bootstrap-horizon .dashboard-page .datacenter-box-module {
  width: auto;
  margin: 20px 20px 15px 0px;
  height: 132px;
  display: inline-block;
}
.bootstrap-horizon .dashboard-page .datacenter-box-module.active {
  border-color: #0088cc;
}
.bootstrap-horizon .dashboard-page .datacenterId-margin {
  margin-left: 5px;
}
.bootstrap-horizon .dashboard-page .pencil-edit-icon:after,
.bootstrap-horizon .dashboard-page .pencil-edit-icon:before {
  content: "\270E";
  transform: rotate(90deg);
}
.bootstrap-horizon .dashboard-page .edit-icon {
  color: #ffffff;
  font-size: 17px;
}
.bootstrap-horizon .dashboard-page .diagnostics-box {
  float: none;
  display: inline-block;
}
.bootstrap-horizon .provisioning-page {
  margin-top: -157px;
  margin-left: -5%;
}
.bootstrap-horizon .provisioning-legend {
  margin-left: 34%;
  width: 66%;
}
.bootstrap-horizon .provisioningAppInfo {
  position: absolute;
  top: 0;
  z-index: 0;
  margin-top: 162px;
}
.bootstrap-horizon .office-policy .box {
  float: none;
  padding: 15px 0px;
}
.bootstrap-horizon .office-policy .reorder-:after {
  content: "";
  width: 30px;
  height: 30px;
  background: url("../images/reorder.svg") no-repeat;
  background-size: 20px;
  background-position-x: 2px;
  display: inline-block;
  background-position-y: 8px;
  filter: drop-shadow(0 -1px 1px #666666);
  opacity: 0.6;
}
.bootstrap-horizon .office-policy .datagrid {
  width: 100%;
  text-align: center;
  color: #444d56;
}
.bootstrap-horizon .office-policy .datagrid .thead {
  background: #eee;
}
.bootstrap-horizon .office-policy .datagrid .thead th {
  padding: 10px;
}
.bootstrap-horizon .office-policy .datagrid .thead th.actions {
  width: 10%;
}
.bootstrap-horizon .office-policy .datagrid .thead th.actions .action-button {
  border: 1px solid #eee;
}
.bootstrap-horizon .office-policy .datagrid .thead th:first-child {
  width: 3%;
}
.bootstrap-horizon .office-policy .datagrid .tbody {
  font-size: 14px;
}
.bootstrap-horizon .office-policy .datagrid .tbody td {
  padding: 10px;
  word-wrap: break-word;
}
.bootstrap-horizon .office-policy .datagrid .tbody .reorder {
  background: rgba(238, 238, 238, 0.4);
}
.bootstrap-horizon .office-policy .datagrid .tbody tr td.actions {
  width: 10%;
}
.bootstrap-horizon .office-policy .datagrid .tbody tr td:first-child {
  width: 3%;
}
.bootstrap-horizon .office-policy .datagrid .action-button {
  color: #3b832f;
  border: 1px solid #fff;
  background: none;
  padding: 5px;
  font-size: 16px;
}
.bootstrap-horizon .office-policy .datagrid .action-button:hover {
  border-color: #3b832f;
}
.bootstrap-horizon .office-policy .datagrid.tableBodyScroll tbody {
  display: block;
  max-height: 300px;
  overflow-y: scroll;
}
.bootstrap-horizon .office-policy .datagrid.tableBodyScroll tbody tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.bootstrap-horizon .office-policy .datagrid.tableBodyScroll thead {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.bootstrap-horizon .office-policy .web-auth .hint-block {
  padding-bottom: 10px;
}
.bootstrap-horizon .office-policy .link- {
  color: #4990c2;
  background: transparent;
  border: 1px solid transparent;
  padding: 4px 10px;
}
.bootstrap-horizon .office-policy .link-:hover {
  border-color: #4990c2;
}
.bootstrap-horizon .office-policy .form-actions {
  background: transparent;
  border: none;
}
.bootstrap-horizon .office-policy .help-inline {
  margin-right: -5px;
  margin-top: -4px;
  margin-left: -2px;
}
.bootstrap-horizon .office-policy-modal {
  max-height: 365px;
  padding: 10px 20px;
}
.bootstrap-horizon .office-policy-modal .hide {
  display: none;
}
.bootstrap-horizon .office-policy-modal .control-label {
  width: 350px;
  text-align: left;
  padding-left: 30px;
}
.bootstrap-horizon .office-policy-modal .controls {
  margin-left: 240px;
}
.bootstrap-horizon .office-policy-modal .input-xlarge {
  width: 300px;
}
.bootstrap-horizon .office-policy-modal .input-txt {
  font-size: 14px;
  height: 20px;
  width: 285px;
}
.bootstrap-horizon .office-policy-modal ._select-check {
  width: 17px;
}
.bootstrap-horizon .office-policy-modal .user-group-list {
  list-style: none;
  margin: 0;
  width: 292px;
  padding-top: 5px;
  padding-left: 5px;
  border: 1px solid #cccccc;
  overflow: scroll;
  max-height: 200px;
}
.bootstrap-horizon .office-policy-modal .edit-group {
  padding: 7px 12px;
}
.bootstrap-horizon .office-policy-modal .edit-group-hint {
  margin-left: 27%;
  margin-top: 1%;
}
.bootstrap-horizon .office-policy-modal .browse-header {
  padding-right: 10px;
}
.bootstrap-horizon .office-policy-modal .header-right {
  float: right;
  text-align: right;
}
.bootstrap-horizon .office-policy-modal .group-table {
  width: 100%;
  text-align: left;
  color: #444d56;
}
.bootstrap-horizon .office-policy-modal .group-table thead {
  display: table;
  width: 100%;
  table-layout: fixed;
  background: #eee;
}
.bootstrap-horizon .office-policy-modal .group-table thead th {
  padding: 10px;
}
.bootstrap-horizon .office-policy-modal .group-table thead th:nth-child(1) {
  width: 15%;
}
.bootstrap-horizon .office-policy-modal .group-table tbody {
  font-size: 13px;
  display: block;
  max-height: 272px;
  overflow-y: scroll;
}
.bootstrap-horizon .office-policy-modal .group-table tbody tr {
  display: table;
  width: 100%;
  table-layout: fixed;
  padding: 10px;
  word-wrap: break-word;
  border-bottom: 1px solid #eee;
}
.bootstrap-horizon .office-policy-modal .group-table tbody tr td {
  padding: 10px;
}
.bootstrap-horizon .office-policy-modal .group-table tbody tr td:nth-child(1) {
  width: 15%;
}
.bootstrap-horizon .fbtn {
  display: inline-block;
  padding-left: 1.5em;
  padding-right: 1.5em;
  min-width: 5em;
  font-weight: 600;
  font-family: 'Helvetica Neue', Helvetica, Arial, 'Franklin Gothic Medium', 'Microsoft San Serif', sans-serif;
  text-decoration: none;
  color: #717171;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  -webkit-font-smoothing: antialiased;
  border: 1px solid #bbbbbb;
  border-radius: 2px;
  outline: none;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), inset 0 1px rgba(255, 255, 255, 0.5);
  background-color: #f3f3f3;
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
  background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
  background-image: -ms-linear-gradient(top, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
  -webkit-transition: background-image 5s;
  -moz-transition: background-image 5s;
  -o-transition: background-image 5s;
  transition: background-image 5s;
  vertical-align: baseline;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  line-height: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 12px;
}
.bootstrap-horizon .fbtn:before {
  background-image: -webkit-linear-gradient(top left, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
}
.bootstrap-horizon .fbtn.primary- {
  color: #ffffff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  background-color: #3498db;
  border-color: #2980b9;
}
.bootstrap-horizon .fbtn.primary-:hover {
  background-color: #57bee8;
}
.bootstrap-horizon .fbtn.primary-:active,
.bootstrap-horizon .fbtn.primary-.is-active {
  background-color: #379edd;
}
.bootstrap-horizon .fbtn.primary-:disabled,
.bootstrap-horizon .fbtn.primary-.is-disabled {
  cursor: default;
  opacity: 0.5;
  box-shadow: none;
}
.bootstrap-horizon .fbtn.next-,
.bootstrap-horizon .fbtn.previous- {
  position: relative;
  overflow: visible;
}
.bootstrap-horizon .fbtn.next-:before,
.bootstrap-horizon .fbtn.previous-:before {
  content: ' ';
  position: absolute;
  top: -1px;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  border: inherit;
  background-color: inherit;
  border-radius: inherit;
}
.bootstrap-horizon .fbtn.next- {
  border-right-width: 0;
  margin-right: 18px;
  padding-left: 3em;
  padding-right: 2.5em;
}
.bootstrap-horizon .fbtn.previous- {
  border-left-width: 0;
  margin-left: 18px;
  padding-left: 2.5em;
  padding-right: 3em;
}
.bootstrap-horizon .fbtn.next-:before {
  left: 100%;
  border-width: 1px 1px 0 0;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.5);
}
.bootstrap-horizon .fbtn.previous-:before {
  left: 0;
  border-width: 0 0 1px 1px;
  box-shadow: inset 1px 0 rgba(255, 255, 255, 0.5);
}
.bootstrap-horizon .fbtn.next-:before,
.bootstrap-horizon .fbtn.previous-:before {
  width: 19.8px;
  height: 19.0px;
}
.bootstrap-horizon .fbtn.primary- {
  font-size: 14px;
}
.bootstrap-horizon .right- {
  float: right;
}
.bootstrap-horizon .display-inline-block {
  display: inline-block;
}
.bootstrap-horizon .frame-container {
  border: solid 1px #ccc;
  width: 70%;
  display: inline-block;
  padding: 15px 15px 15px 20px;
  border-radius: 10px;
}
.bootstrap-horizon .tosContainer {
  width: 98%;
  height: 250px;
  background: white !important;
  cursor: auto !important;
  border: 1px solid #cccccc;
  border-radius: 5px;
  line-height: 20px;
  padding: 4px 6px;
  margin-bottom: 10px;
  font-size: 14px;
}
.bootstrap-horizon .margin-20px {
  margin: 20px;
}
.bootstrap-horizon .margin-top-10px {
  margin-top: 10px;
}
.bootstrap-horizon .margin-left10px {
  margin: 0px 0px 0px 10px;
}
.bootstrap-horizon .margin-left15px {
  margin: 0px 0px 0px 15px;
}
.bootstrap-horizon .hintText {
  width: 60%;
  display: inline-block;
  padding: 10px;
}
.bootstrap-horizon .spinner-parent {
  height: 300px;
  text-align: center;
}
.bootstrap-horizon .spinner-parent:before {
  content: ' ';
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.bootstrap-horizon .spinner-child {
  display: inline-block;
  vertical-align: middle;
}
.bootstrap-horizon .spinner {
  position: relative;
  width: 50px;
  height: 50px;
  background: #444d56;
  box-sizing: border-box;
  border-radius: 25%;
}
.bootstrap-horizon .spinner:before {
  content: "";
  display: block;
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 60%;
  background: url(../images/spinner-96.gif) no-repeat;
  background-size: contain;
}
.bootstrap-horizon .text-align-center {
  text-align: center;
}
.bootstrap-horizon a:hover,
.bootstrap-horizon a:focus {
  text-decoration: none !important;
}
.bootstrap-horizon .font-weight-bold {
  font-weight: bold;
}
.bootstrap-horizon .console-container {
  width: 74%;
}
.bootstrap-horizon .margin-top-20px {
  margin-top: 20px;
}
.bootstrap-horizon .no-margin {
  margin: 0px !important;
}
.bootstrap-horizon .console-fbtn {
  display: inline-block;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 500;
  text-decoration: none;
  color: #292929;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  -webkit-font-smoothing: antialiased;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: 0;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), inset 0 1px rgba(255, 255, 255, 0.5);
  background-color: #f3f3f3;
  background-image: -webkit-linear-gradient(to bottom, rgba(135, 135, 135, 0.1), rgba(72, 71, 71, 0.1));
  background-image: -moz-linear-gradient(to bottom, rgba(135, 135, 135, 0.1), rgba(72, 71, 71, 0.1));
  background-image: -ms-linear-gradient(to bottom, rgba(135, 135, 135, 0.1), rgba(72, 71, 71, 0.1));
  background-image: linear-gradient(to bottom, rgba(135, 135, 135, 0.1), rgba(72, 71, 71, 0.1));
  vertical-align: baseline;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  font-size: 14px;
  padding: 4.6px 1.5em;
}
.bootstrap-horizon .cancel-fbtn {
  color: #4990c2;
  background-color: transparent;
  border-color: transparent;
  text-shadow: none;
  background: 0 0;
  box-shadow: none;
  font-size: 14px;
}
.bootstrap-horizon .cancel-fbtn:hover,
.bootstrap-horizon .cancel-fbtn:focus {
  border-color: #4990c2;
  color: #4990c2;
}
.bootstrap-horizon .cancel-btn:hover {
  border: 1px solid #bbb;
  border-radius: 2px;
}
.bootstrap-horizon .frame-modal {
  width: 380px !important;
  margin-left: -240px !important;
  position: fixed;
  top: 14%;
  left: 50%;
  z-index: 1050;
  width: 560px;
  margin-left: -280px;
  background-color: #ffffff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
  outline: none;
}
.bootstrap-horizon .frame-modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background: rgba(200, 200, 200, 0.4);
}
.bootstrap-horizon .people-search .checkbox {
  width: 24px;
  height: 24px;
  margin-top: -10px;
  margin-left: 5px;
}
.bootstrap-horizon .people-search .spinner-margin {
  margin-left: 25%;
  position: absolute;
  margin-top: 4%;
}
.bootstrap-horizon .people-search .width80 {
  width: 80%;
}
.bootstrap-horizon .people-search .datagrid {
  width: 100%;
  text-align: left;
  color: #444d56;
}
.bootstrap-horizon .people-search .datagrid .thead {
  background: #eee;
}
.bootstrap-horizon .people-search .datagrid .thead th {
  padding: 10px;
}
.bootstrap-horizon .people-search .datagrid .tbody tr {
  border-bottom: 1px solid #eee;
}
.bootstrap-horizon .people-search .datagrid .tbody td {
  padding: 10px;
  word-wrap: break-word;
}
.bootstrap-horizon .people-search .datagrid .action-button {
  color: #3b832f;
  border: 1px solid #fff;
  background: none;
  font-size: 16px;
  margin-top: -10px;
}
.bootstrap-horizon .people-search .datagrid .action-button:hover {
  border-color: #3b832f;
}
.bootstrap-horizon .people-search .syncmessage {
  width: 80%;
  margin: 10px 0;
  color: #444d56;
  border: 1px solid #828082;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  padding: 5px 2em;
  overflow: hidden;
}
.bootstrap-horizon .people-search .syncmessage.error- {
  border-color: #df464b;
  background-color: #f6cecf;
}
.bootstrap-horizon .people-search .syncmessage.warning- {
  border-color: #fdb813;
  background-color: #feecc0;
}
.bootstrap-horizon .people-search .margin-bottom-0 {
  margin-bottom: 0;
}
.bootstrap-horizon .workspaceOne-Customization .checkbox-margin,
.bootstrap-horizon .telemetry-page .checkbox-margin {
  margin-top: 9px;
}
.bootstrap-horizon .workspaceOne-Customization .radio-button-padding,
.bootstrap-horizon .telemetry-page .radio-button-padding {
  padding-top: 7px;
}
.bootstrap-horizon .workspaceOne-Customization input[type="radio"],
.bootstrap-horizon .telemetry-page input[type="radio"] {
  margin-top: 0px;
}
.bootstrap-horizon .workspaceOne-Customization .custom-tab-location-margin,
.bootstrap-horizon .telemetry-page .custom-tab-location-margin {
  margin-left: 20px;
}
.bootstrap-horizon .workspaceOne-Customization .hint,
.bootstrap-horizon .telemetry-page .hint {
  color: #777;
  font-style: italic;
  margin-top: 15px;
}
.bootstrap-horizon .workspaceOne-Customization .error,
.bootstrap-horizon .telemetry-page .error {
  color: #E4331E;
  margin: 6px;
  display: inline-block;
}
.bootstrap-horizon .workspaceOne-Customization .input-parent-div,
.bootstrap-horizon .telemetry-page .input-parent-div {
  height: 20px;
  width: 100%;
}
.bootstrap-horizon .workspaceOne-Customization div.required-url > div > label::after,
.bootstrap-horizon .telemetry-page div.required-url > div > label::after {
  content: "*";
  color: #E4331E;
}
.bootstrap-horizon .network-modal {
  padding: 20px 20px 0px 20px;
}
.bootstrap-horizon .network-modal .margin-top-20 {
  margin: 20px 0 0 0;
}
.bootstrap-horizon .network-modal .network-modal-footer {
  margin: 20px -20px 0px -20px;
}
.bootstrap-horizon .network-modal .url-port-input {
  width: 100px;
}
.bootstrap-horizon .network-modal form {
  margin: 0px;
}
.bootstrap-horizon .network-modal .no-padding-top {
  padding-top: 0px;
}
.bootstrap-horizon .network-modal .percent-width-20 {
  width: 20%;
}
.bootstrap-horizon .network-modal .percent-width-10 {
  width: 10%;
}
.bootstrap-horizon .network-modal .percent-width-30 {
  width: 30%;
}
.bootstrap-horizon .network-modal .half-width- {
  width: 50%;
}
.bootstrap-horizon .network-modal .full-width- {
  width: 100%;
}
.bootstrap-horizon .network-modal .network-modal-btn {
  color: #3b832f;
  display: inline-block;
  text-shadow: none;
  font-size: 18px;
  background: 0 0;
  box-shadow: none;
  border-radius: 2px;
  outline: 0;
  vertical-align: baseline;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  padding: 5px;
  border-color: transparent;
}
.bootstrap-horizon .network-modal .network-modal-audienceInJWT {
  width: 200px;
}
.bootstrap-horizon .network-modal .network-add-modal-btn:hover {
  border: solid 1px #3b832f;
}
.bootstrap-horizon .network-modal .network-remove-modal-btn:hover {
  border: solid 1px #f35958;
}
.bootstrap-horizon .network-modal .input-btn-padding {
  padding: 4px 0px 4px 4px;
}
.bootstrap-horizon .network-modal .table-container {
  max-height: 400px;
  overflow: auto;
}
.bootstrap-horizon .network-modal .error-msg {
  font-size: 20px;
}
.bootstrap-horizon .network-modal .text-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  max-width: 70px;
  text-overflow: ellipsis;
}
.bootstrap-horizon .network-modal .max-width-60px {
  max-width: 60px;
}
.bootstrap-horizon .network-modal .max-width-150px {
  max-width: 150px;
}
.bootstrap-horizon .network-modal .max-width-100px {
  max-width: 100px;
}
.bootstrap-horizon .network-modal .is-loading {
  position: relative;
  color: transparent !important;
  text-shadow: none !important;
  cursor: wait !important;
  background-color: rgba(55, 158, 221, 0.7) !important;
  border-color: rgba(41, 128, 185, 0.2) !important;
  color: transparent;
}
.bootstrap-horizon .network-modal .is-loading:after {
  background-image: linear-gradient(to right, transparent 0, transparent 3px, rgba(255, 255, 255, 0.5) 3px, rgba(255, 255, 255, 0.5) 9px, transparent 9px, transparent 15px, rgba(255, 255, 255, 0.5) 15px, rgba(255, 255, 255, 0.5) 21px, transparent 21px, transparent 27px, rgba(255, 255, 255, 0.5) 27px, rgba(255, 255, 255, 0.5) 33px, transparent 33px, transparent 39px, #ffffff 39px, #ffffff 45px, transparent 45px, transparent 48px);
  content: '';
  display: block;
  position: absolute;
  height: 1em;
  width: 30px;
  top: 50%;
  left: 50%;
  margin-top: -0.5em;
  margin-left: -15px;
  background-size: 48px 1em;
  background-position: -3px 0;
  animation: button-is-loading-animation 1.5s step-end infinite;
}
@keyframes button-is-loading-animation {
  0% {
    background-position: 11.75px 0;
  }
  16.66667% {
    background-position: 23.75px 0;
  }
  33.33333% {
    background-position: 12px 0;
  }
  50% {
    background-position: 35.75px 0;
  }
  66.66666% {
    background-position: 12px 0;
  }
  83.33333% {
    background-position: 47.7px 0;
  }
}
.bootstrap-horizon .hub-container {
  font-family: Metropolis, Avenir Next, Helvetica Neue, Arial, sans-serif;
}
.bootstrap-horizon .hub-container .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}
.bootstrap-horizon .hub-container .col-md-4 {
  width: 27%;
  padding-right: 20px;
  padding-left: 20px;
}
.bootstrap-horizon .hub-container button {
  margin-left: 10px;
  margin-top: 15px;
}
.bootstrap-horizon .hub-container .content-header {
  border-bottom: 0;
  margin-bottom: 5px;
  padding-bottom: 0;
}
.bootstrap-horizon .hub-container .hub-config-button {
  border-color: #007cbb;
  background-color: #007cbb;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  -webkit-appearance: none!important;
  border-radius: .125rem;
  border: 1px solid #007cbb;
  min-width: 5rem;
  max-width: 19rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  line-height: 1.5rem;
  letter-spacing: .12em;
  font-size: .7rem;
  font-weight: 500;
  height: 2.3rem;
  padding: 0 .5rem;
  margin: .25rem .5rem .25rem 0;
  font-family: Metropolis, Avenir Next, Helvetica Neue, Arial, sans-serif;
}
.bootstrap-horizon .hub-container .hub-config-button:hover {
  background-color: #004a70;
  color: #e1f1f6;
}
.horizon svg {
  width: auto;
  height: auto;
}
.horizon svg text {
  -webkit-font-smoothing: antialiased;
}
.horizon nvd3 {
  display: block;
  overflow: visible;
}
.horizon nvd3 > svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.horizon .nvd3 .nv-axis line,
.horizon .nvd3 .nv-axis path {
  stroke: none;
}
.horizon .nvd3 .nv-axis text {
  stroke: none;
  fill: #828082;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 300;
  text-rendering: optimizeLegibility;
}
.horizon .nvd3 .nv-axis .nv-axislabel {
  font-size: 12px;
  font-weight: bold;
}
.horizon .nvd3.nv-multiBarWithLegend .nv-axis.nv-y .tick line {
  stroke: #eeeeee;
}
.horizon .nvd3.nv-multiBarWithLegend .nv-axis.nv-x text {
  text-transform: uppercase;
}
.horizon .nvd3.nv-multiBarWithLegend .nv-bar.negative {
  display: none;
}
.horizon .nvd3.nv-pie path {
  stroke-width: 2;
}
.horizon .nvd3.nv-pie .nv-pieLabels text {
  fill: #fff;
}
.horizon .nvd3.nv-lineChart path.nv-line {
  stroke: #0a96d8;
}
.horizon .nvd3.nv-lineChart .nv-axis.nv-x text {
  text-transform: uppercase;
}
.horizon .nvd3.nv-lineChart .nv-axis.nv-y .tick line {
  stroke: rgba(100, 100, 100, 0.5);
}
.horizon .nvd3.nv-stackedarea .nv-groups .nv-point {
  stroke-opacity: 1;
  fill-opacity: 1;
}
.horizon .nvd3.nv-stackedAreaChart .nv-axis.nv-x text {
  text-transform: uppercase;
}
.horizon .nvd3.nv-stackedAreaChart .nv-axis.nv-y .tick line {
  stroke: rgba(100, 100, 100, 0.5);
}
.horizon .nvd3.nv-multibar .nv-group,
.horizon .nvd3.nv-multibarHorizontal .nv-group {
  fill-opacity: 1 !important;
}
.horizon .nvd3.nv-multibar .nv-group rect:hover,
.horizon .nvd3.nv-multibarHorizontal .nv-group rect:hover {
  fill-opacity: 0.7;
}
.horizon .nvtooltip {
  font-family: "Lucida Grande", "Lucida Sans Unicode", sans-serif;
  font-size: 12px;
  padding: .5em 2em;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  text-shadow: 0 1px rgba(0, 0, 0, 0.5);
  border-radius: 3px;
}
.horizon .nvtooltip h3,
.horizon .nvtooltip td.key {
  display: inline;
  font-size: inherit;
  font-weight: bold;
  text-transform: capitalize;
  background-color: transparent;
  border: none;
  padding: 0;
  margin-right: .5em;
}
.horizon .nvtooltip p,
.horizon .nvtooltip td.value {
  display: inline;
  font-size: inherit;
  font-weight: normal;
  padding: 0;
}
.horizon .nvtooltip table {
  margin: 0;
}
.horizon .nvtooltip thead,
.horizon .nvtooltip th,
.horizon .nvtooltip td.legend-color-guide {
  display: none;
}
.horizon .nvtooltip tr {
  display: inline;
}
.horizon .nvtooltip tr + tr:before {
  content: '|';
  margin: 0 .5em;
}
@media screen and (max-width: 979px) {
  .horizon .search .ti {
    width: 200px;
  }
}
.horizon .htmlFormValues {
  height: 200px;
}
/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInRhcmdldC9vbGQtYWRtaW4tdWkvaG9yaXpvbi9sZXNzL2xpYi91eGNsL21peGlucy5sZXNzIiwidGFyZ2V0L29sZC1hZG1pbi11aS9ob3Jpem9uL2xlc3MvbGliL3V4Y2wvYm94Lmxlc3MiLCJ0YXJnZXQvb2xkLWFkbWluLXVpL2hvcml6b24vbGVzcy9saWIvdXhjbC9ncmlkLmxlc3MiLCJzcmMvbWFpbi93ZWJhcHAvaG9yaXpvbi9sZXNzL2Jvb3RzdHJhcC1ob3Jpem9uL2Jvb3RzdHJhcC1ob3Jpem9uLmxlc3MiLCJzcmMvbWFpbi93ZWJhcHAvaG9yaXpvbi9sZXNzL2Jvb3RzdHJhcC1ob3Jpem9uL3ZhcmlhYmxlcy5sZXNzIiwidGFyZ2V0L29sZC1hZG1pbi11aS9ob3Jpem9uL2xlc3MvbGliL2Jvb3RzdHJhcC9yZXNldC5sZXNzIiwidGFyZ2V0L29sZC1hZG1pbi11aS9ob3Jpem9uL2xlc3MvbGliL2Jvb3RzdHJhcC9taXhpbnMubGVzcyIsInNyYy9tYWluL3dlYmFwcC9ob3Jpem9uL2xlc3MvYm9vdHN0cmFwLWhvcml6b24vYm9vdHN0cmFwLXN3aXRjaC9kZXBzL21peGlucy5sZXNzIiwidGFyZ2V0L29sZC1hZG1pbi11aS9ob3Jpem9uL2xlc3MvbGliL2Jvb3RzdHJhcC9zY2FmZm9sZGluZy5sZXNzIiwidGFyZ2V0L29sZC1hZG1pbi11aS9ob3Jpem9uL2xlc3MvbGliL2Jvb3RzdHJhcC92YXJpYWJsZXMubGVzcyIsInRhcmdldC9vbGQtYWRtaW4tdWkvaG9yaXpvbi9sZXNzL2xpYi9ib290c3RyYXAvZ3JpZC5sZXNzIiwidGFyZ2V0L29sZC1hZG1pbi11aS9ob3Jpem9uL2xlc3MvbGliL2Jvb3RzdHJhcC9sYXlvdXRzLmxlc3MiLCJ0YXJnZXQvb2xkLWFkbWluLXVpL2hvcml6b24vbGVzcy9saWIvYm9vdHN0cmFwL3R5cGUubGVzcyIsInRhcmdldC9vbGQtYWRtaW4tdWkvaG9yaXpvbi9sZXNzL2xpYi9ib290c3RyYXAvY29kZS5sZXNzIiwidGFyZ2V0L29sZC1hZG1pbi11aS9ob3Jpem9uL2xlc3MvbGliL2Jvb3RzdHJhcC9mb3Jtcy5sZXNzIiwidGFyZ2V0L29sZC1hZG1pbi11aS9ob3Jpem9uL2xlc3MvbGliL2Jvb3RzdHJhcC90YWJsZXMubGVzcyIsInRhcmdldC9vbGQtYWRtaW4tdWkvaG9yaXpvbi9sZXNzL2xpYi9ib290c3RyYXAvc3ByaXRlcy5sZXNzIiwidGFyZ2V0L29sZC1hZG1pbi11aS9ob3Jpem9uL2xlc3MvbGliL2Jvb3RzdHJhcC9kcm9wZG93bnMubGVzcyIsInRhcmdldC9vbGQtYWRtaW4tdWkvaG9yaXpvbi9sZXNzL2xpYi9ib290c3RyYXAvd2VsbHMubGVzcyIsInRhcmdldC9vbGQtYWRtaW4tdWkvaG9yaXpvbi9sZXNzL2xpYi9ib290c3RyYXAvY29tcG9uZW50LWFuaW1hdGlvbnMubGVzcyIsInRhcmdldC9vbGQtYWRtaW4tdWkvaG9yaXpvbi9sZXNzL2xpYi9ib290c3RyYXAvY2xvc2UubGVzcyIsInRhcmdldC9vbGQtYWRtaW4tdWkvaG9yaXpvbi9sZXNzL2xpYi9ib290c3RyYXAvYnV0dG9ucy5sZXNzIiwidGFyZ2V0L29sZC1hZG1pbi11aS9ob3Jpem9uL2xlc3MvbGliL2Jvb3RzdHJhcC9idXR0b24tZ3JvdXBzLmxlc3MiLCJ0YXJnZXQvb2xkLWFkbWluLXVpL2hvcml6b24vbGVzcy9saWIvYm9vdHN0cmFwL2FsZXJ0cy5sZXNzIiwidGFyZ2V0L29sZC1hZG1pbi11aS9ob3Jpem9uL2xlc3MvbGliL2Jvb3RzdHJhcC9uYXZzLmxlc3MiLCJ0YXJnZXQvb2xkLWFkbWluLXVpL2hvcml6b24vbGVzcy9saWIvYm9vdHN0cmFwL25hdmJhci5sZXNzIiwidGFyZ2V0L29sZC1hZG1pbi11aS9ob3Jpem9uL2xlc3MvbGliL2Jvb3RzdHJhcC9icmVhZGNydW1icy5sZXNzIiwidGFyZ2V0L29sZC1hZG1pbi11aS9ob3Jpem9uL2xlc3MvbGliL2Jvb3RzdHJhcC9wYWdpbmF0aW9uLmxlc3MiLCJ0YXJnZXQvb2xkLWFkbWluLXVpL2hvcml6b24vbGVzcy9saWIvYm9vdHN0cmFwL3BhZ2VyLmxlc3MiLCJ0YXJnZXQvb2xkLWFkbWluLXVpL2hvcml6b24vbGVzcy9saWIvYm9vdHN0cmFwL21vZGFscy5sZXNzIiwidGFyZ2V0L29sZC1hZG1pbi11aS9ob3Jpem9uL2xlc3MvbGliL2Jvb3RzdHJhcC90b29sdGlwLmxlc3MiLCJ0YXJnZXQvb2xkLWFkbWluLXVpL2hvcml6b24vbGVzcy9saWIvYm9vdHN0cmFwL3BvcG92ZXJzLmxlc3MiLCJ0YXJnZXQvb2xkLWFkbWluLXVpL2hvcml6b24vbGVzcy9saWIvYm9vdHN0cmFwL3RodW1ibmFpbHMubGVzcyIsInRhcmdldC9vbGQtYWRtaW4tdWkvaG9yaXpvbi9sZXNzL2xpYi9ib290c3RyYXAvbWVkaWEubGVzcyIsInRhcmdldC9vbGQtYWRtaW4tdWkvaG9yaXpvbi9sZXNzL2xpYi9ib290c3RyYXAvbGFiZWxzLWJhZGdlcy5sZXNzIiwidGFyZ2V0L29sZC1hZG1pbi11aS9ob3Jpem9uL2xlc3MvbGliL2Jvb3RzdHJhcC9wcm9ncmVzcy1iYXJzLmxlc3MiLCJ0YXJnZXQvb2xkLWFkbWluLXVpL2hvcml6b24vbGVzcy9saWIvYm9vdHN0cmFwL2FjY29yZGlvbi5sZXNzIiwidGFyZ2V0L29sZC1hZG1pbi11aS9ob3Jpem9uL2xlc3MvbGliL2Jvb3RzdHJhcC9jYXJvdXNlbC5sZXNzIiwidGFyZ2V0L29sZC1hZG1pbi11aS9ob3Jpem9uL2xlc3MvbGliL2Jvb3RzdHJhcC9oZXJvLXVuaXQubGVzcyIsInRhcmdldC9vbGQtYWRtaW4tdWkvaG9yaXpvbi9sZXNzL2xpYi9ib290c3RyYXAvdXRpbGl0aWVzLmxlc3MiLCJ0YXJnZXQvb2xkLWFkbWluLXVpL2hvcml6b24vbGVzcy9saWIvdXhjbC9nbHlwaC5sZXNzIiwidGFyZ2V0L29sZC1hZG1pbi11aS9ob3Jpem9uL2xlc3MvbGliL3V4Y2wvaHpuZ2x5cGhzLmxlc3MiLCJzcmMvbWFpbi93ZWJhcHAvaG9yaXpvbi9sZXNzL2Jvb3RzdHJhcC1ob3Jpem9uL3BhZ2UuZGFzaGJvYXJkLmxlc3MiLCJ0YXJnZXQvb2xkLWFkbWluLXVpL2hvcml6b24vbGVzcy9saWIvdXhjbC9mcmFtZS5sZXNzIiwidGFyZ2V0L29sZC1hZG1pbi11aS9ob3Jpem9uL2xlc3MvbGliL3V4Y2wvcGFuZS5sZXNzIiwidGFyZ2V0L29sZC1hZG1pbi11aS9ob3Jpem9uL2xlc3MvbGliL3V4Y2wvY2hhcnQubGVzcyIsInRhcmdldC9vbGQtYWRtaW4tdWkvaG9yaXpvbi9sZXNzL2xpYi91eGNsL2ZvbnRzLmxlc3MiLCJ0YXJnZXQvb2xkLWFkbWluLXVpL2hvcml6b24vbGVzcy9saWIvdXhjbC9mYWN0b2lkLmxlc3MiLCJ0YXJnZXQvb2xkLWFkbWluLXVpL2hvcml6b24vbGVzcy9saWIvdXhjbC9zcGlubmVyLmxlc3MiLCJzcmMvbWFpbi93ZWJhcHAvaG9yaXpvbi9sZXNzL2Jvb3RzdHJhcC1ob3Jpem9uL2hvcml6b24ubGVzcyIsInNyYy9tYWluL3dlYmFwcC9ob3Jpem9uL2xlc3MvYm9vdHN0cmFwLWhvcml6b24vZGlyZWN0aXZlcy5sZXNzIiwic3JjL21haW4vd2ViYXBwL2hvcml6b24vbGVzcy9ib290c3RyYXAtaG9yaXpvbi9icmFuZGluZy5sZXNzIiwic3JjL21haW4vd2ViYXBwL2hvcml6b24vbGVzcy9ib290c3RyYXAtaG9yaXpvbi9zaWRlbmF2Lmxlc3MiLCJzcmMvbWFpbi93ZWJhcHAvaG9yaXpvbi9sZXNzL2Jvb3RzdHJhcC1ob3Jpem9uL21vZGFscy5sZXNzIiwic3JjL21haW4vd2ViYXBwL2hvcml6b24vbGVzcy9ib290c3RyYXAtaG9yaXpvbi9uZy1ncmlkLmxlc3MiLCJzcmMvbWFpbi93ZWJhcHAvaG9yaXpvbi9sZXNzL2Jvb3RzdHJhcC1ob3Jpem9uL2Jvb3RzdHJhcC1zd2l0Y2gvYm9vdHN0cmFwLXN3aXRjaC5sZXNzIiwic3JjL21haW4vd2ViYXBwL2hvcml6b24vbGVzcy9ib290c3RyYXAtaG9yaXpvbi9jaG9zZW4ubGVzcyIsInNyYy9tYWluL3dlYmFwcC9ob3Jpem9uL2xlc3MvYm9vdHN0cmFwLWhvcml6b24vd29ya3NwYWNlLmxlc3MiLCJzcmMvbWFpbi93ZWJhcHAvaG9yaXpvbi9sZXNzL2Jvb3RzdHJhcC1ob3Jpem9uL3RhYmxlcy5sZXNzIiwic3JjL21haW4vd2ViYXBwL2hvcml6b24vbGVzcy9ib290c3RyYXAtaG9yaXpvbi9wb2xpY2llcy5sZXNzIiwic3JjL21haW4vd2ViYXBwL2hvcml6b24vbGVzcy9ib290c3RyYXAtaG9yaXpvbi9wYWdlLnByb3Zpc2lvbmluZy5sZXNzIiwic3JjL21haW4vd2ViYXBwL2hvcml6b24vbGVzcy9ib290c3RyYXAtaG9yaXpvbi9vZmZpY2UucG9saWN5Lmxlc3MiLCJzcmMvbWFpbi93ZWJhcHAvaG9yaXpvbi9sZXNzL2Jvb3RzdHJhcC1ob3Jpem9uL2ZyYW1lLmxlc3MiLCJzcmMvbWFpbi93ZWJhcHAvaG9yaXpvbi9sZXNzL2Jvb3RzdHJhcC1ob3Jpem9uL3Blb3BsZXNlYXJjaC5sZXNzIiwic3JjL21haW4vd2ViYXBwL2hvcml6b24vbGVzcy9ib290c3RyYXAtaG9yaXpvbi93b3Jrc3BhY2VPbmVDdXN0b21pemF0aW9uLmxlc3MiLCJzcmMvbWFpbi93ZWJhcHAvaG9yaXpvbi9sZXNzL2Jvb3RzdHJhcC1ob3Jpem9uL25ldHdvcmtSYW5nZS5sZXNzIiwic3JjL21haW4vd2ViYXBwL2hvcml6b24vbGVzcy9ib290c3RyYXAtaG9yaXpvbi9odWItY29uZmlndXJhdGlvbi5sZXNzIiwic3JjL21haW4vd2ViYXBwL2hvcml6b24vbGVzcy9ib290c3RyYXAtaG9yaXpvbi9udmQzLWhvcml6b24ubGVzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFNRSxTQUFDO0VBQ0MsY0FBQTtFQUNBLFNBQVMsRUFBVDtFQUNBLFdBQUE7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUNzQko7RUFTSSxjQUFBO0VEaURBLDJCQUFBO0VBQ0ssc0JBQUE7RUNyREQsYUFBQTtFQU1KLFdBQUE7RUFDQSxlQUFBO0VBQ0EsZ0JB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QSxPQVlFO0VBQ0UsZUFBQTtFQUNBLGNBQUE7O0FYOUJKLGtCV21DQTtBWG5DQSxrQldvQ0E7QVhwQ0Esa0JXcUNBO0FYckNBLGtCV3NDQTtBWHRDQSxrQld1Q0E7RVJnRkksZUFBQTtFQUNBLG1CQUFBO0VBQ0EsaUJBQUE7O0FIekhKLGtCVzBDQTtBWDFDQSxrQlcyQ0E7QVgzQ0Esa0JXNENBO0FYNUNBLGtCVzZDQTtFQUNFLGFMSnNCLDhDS0l0Qjs7QVg5Q0Ysa0JXa0RBO0VBQ0UsY0FBQTtFQUNBLGtCQUFBOztBWHBERixrQlcyREE7QVgzREEsa0JXNERBO0FYNURBLGtCVzZEQSxNQUFLO0FYN0RMLGtCVzhEQSxNQUFLO0FYOURMLGtCVytEQSxNQUFLO0FYL0RMLGtCV2dFQSxNQUFLO0FYaEVMLGtCV2lFQSxNQUFLO0FYakVMLGtCV2tFQSxNQUFLO0FYbEVMLGtCV21FQSxNQUFLO0FYbkVMLGtCV29FQSxNQUFLO0FYcEVMLGtCV3FFQSxNQUFLO0FYckVMLGtCV3NFQSxNQUFLO0FYdEVMLGtCV3VFQSxNQUFLO0FYdkVMLGtCV3dFQSxNQUFLO0FYeEVMLGtCV3lFQSxNQUFLO0FYekVMLGtCVzBFQSxNQUFLO0FYMUVMLGtCVzJFQTtFQUNFLHFCQUFBO0VBQ0EsWUFBQTtFQUNBLGdCQUFBO0VBQ0EsbUJBQUE7RUFDQSxlQUFBO0VBQ0EsaUJBQUE7RUFDQSxjQUFBO0VQckZBLDBCQUFBO0VBQ0EsdUJBQUE7RUFDQSxrQkFBQTtFT3FGQSxzQkFBQTs7QVhwRkYsa0JXeUZBO0FYekZBLGtCVzBGQTtBWDFGQSxrQlcyRkE7RUFDRSxZQUFBOztBWDVGRixrQlcrRkE7RUFDRSxZQUFBOztBWGhHRixrQldtR0E7QVhuR0Esa0JXb0dBLE1BQUs7QVhwR0wsa0JXcUdBLE1BQUs7QVhyR0wsa0JXc0dBLE1BQUs7QVh0R0wsa0JXdUdBLE1BQUs7QVh2R0wsa0JXd0dBLE1BQUs7QVh4R0wsa0JXeUdBLE1BQUs7QVh6R0wsa0JXMEdBLE1BQUs7QVgxR0wsa0JXMkdBLE1BQUs7QVgzR0wsa0JXNEdBLE1BQUs7QVg1R0ws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SztBSHZwQnZDLGtCR3VwQmlELGtCQUFpQixLQUFLO0VBTWpFLFlBQUE7O0FIN3BCTixrQkd1cEJNLE1BQUssS0FBSztBSHZwQmhCLGtCR3VwQjBCLFNBQVEsS0FBSztBSHZwQnZDLGtCR3VwQmlELGtCQUFpQixLQUFLO0VBTWpFLFlBQUE7O0FIN3BCTixrQkd1cEJNLE1BQUssS0FBSztBSHZwQmhCLGtCR3VwQjBCLFNBQVEsS0FBSztBSHZwQnZDLGtCR3VwQmlELGtCQUFpQixLQUFLO0VBTWpFLFlBQUE7O0FIN3BCTixrQkd1cEJNLE1BQUssS0FBSztBSHZwQmhCLGtCR3VwQjBCLFNBQVEsS0FBSztBSHZwQnZDLGtCR3VwQmlELGtCQUFpQixLQUFLO0VBTWpFLFlBQUE7O0FIN3BCTixrQkd1cEJNLE1BQUssS0FBSztBSHZwQmhCLGtCR3VwQjBCLFNBQVEsS0FBSztBSHZwQnZDLGtCR3VwQmlELGtCQUFpQixLQUFLO0VBTWpFLFlBQUE7O0FIN3BCTixrQkd1cEJNLE1BQUssS0FBSztBSHZwQmhCLGtCR3VwQjBCLFNBQVEsS0FBSztBSHZwQnZDLGtCR3VwQmlELGtCQUFpQixLQUFLO0VBTWpFLFlBQUE7O0FIN3BCTixrQkd1cEJNLE1BQUssS0FBSztBSHZwQmhCLGtCR3VwQjBCLFNBQVEsS0FBSztBSHZwQnZDLGtCR3VwQmlELGtCQUFpQixLQUFLO0VBTWpFLFlBQUE7O0FIN3BCTixrQkd1cEJNLE1BQUssS0FBSztBSHZwQmhCLGtCR3VwQjBCLFNBQVEsS0FBSztBSHZwQnZDLGtCR3VwQmlELGtCQUFpQixLQUFLO0VBTWpFLFlBQUE7O0FIN3BCTixrQkd1cEJNLE1BQUssS0FBSztBSHZwQmhCLGtCR3VwQjBCLFNBQVEsS0FBSztBSHZwQnZDLGtCR3VwQmlELGtCQUFpQixLQUFLO0VBTWpFLFlBQUE7O0FIN3BCTixrQkd1cEJNLE1BQUssS0FBSztBSHZwQmhCLGtCR3VwQjBCLFNBQVEsS0FBSztBSHZwQnZDLGtCR3VwQmlELGtCQUFpQixLQUFLO0VBTWpFLFdBQUE7O0FBcnBCSixrQlFtU0YsY1JuU0c7RUFDQyxjQUFBO0VBQ0EsU0FBUyxFQUFUO0VBQ0EsV0FBQTs7QUhYSixrQldnVEEsY0FBYztBWGhUZCxrQldrVEEsV0FBVyxjQUFjO0VBQ3ZCLFdBQUE7O0FYblRGLGtCV3NUQSxjQUFjLFVBQVM7QVh0VHZCLGtCV3VUQSxjQUFjLE9BQU07RUFDbEIsZ0JBQUE7O0FYeFRGLGtCV2tVQSxNQUFLO0FYbFVMLGtCV21VQSxPQUFNO0FYblVOLGtCV29VQSxTQUFRO0FYcFVSLGtCV3FVQSxNQUFLO0FYclVMLGtCV3NVQSxPQUFNO0FYdFVOLGtCV3VVQSxTQUFRO0VBQ04sbUJBQUE7RUFDQSx5QkFBQTs7QVh6VUYsa0JXNFVBLE1BQUssY0FBYztBWDVVbkIsa0JXNlVBLE1BQUssaUJBQWlCO0FYN1V0QixrQlc4VUEsTUFBSyxjQUFjO0FYOVVuQixrQlcrVUEsTUFBSyxpQkFBaUI7RUFDcEIsNkJBQUE7O0FYaFZGLGtCVzBWQSxlQUFjLFFSaE1aO0FIMUpGLGtCVzBWQSxlQUFjLFFSL0xaO0FIM0pGLGtCVzBWQSxlQUFjLFFSOUxaO0VBQ0UsY0FBQTs7QUg3Skosa0JXMFZBLGVBQWMsUVIxTFo7QUhoS0Ysa0JXMFZBLGVBQWMsUVJ6TFo7QUhqS0Ysa0JXMFZBLGVBQWMsUVJ4TFo7QUhsS0Ysa0JXMFZBLGVBQWMsUVJ2TFo7QUhuS0Ysa0JXMFZBLGVBQWMsUVJ0TFo7RUFDRSxjQUFBOztBSHJLSixrQlcwVkEsZUFBYyxRUm5MWjtBSHZLRixrQlcwVkEsZUFBYyxRUmxMWjtBSHhLRixrQlcwVkEsZUFBYyxRUmpMWjtFQUNFLHFCQUFBO0VBdUVGLHdEQUFBO0VBQ0cscURBQUE7RUFDSyxnREFBQTs7QUF2RU4sa0JROEtKLGVBQWMsUVJuTFosTUFLRztBQUFELGtCUThLSixlQUFjLFFSbExaLE9BSUc7QUFBRCxrQlE4S0osZUFBYyxRUmpMWixTQUdHO0VBQ0MscUJBQUE7RUFvRUoseUVBQUE7RUFDRyxzRUFBQTtFQUNLLGlFQUFBOztBSG5QVixrQlcwVkEsZUFBYyxRUnZLWixlQUFlO0FIbkxqQixrQlcwVkEsZUFBYyxRUnRLWixjQUFjO0VBQ1osY0FBQTtFQUNBLHlCQUFBO0VBQ0EscUJBQUE7O0FIdkxKLGtCVzhWQSxlQUFjLE1ScE1aO0FIMUpGLGtCVzhWQSxlQUFjLE1Sbk1aO0FIM0pGLGtCVzhWQSxlQUFjLE1SbE1aO0VBQ0UsY0FBQTs7QUg3Skosa0JXOFZBLGVBQWMsTVI5TFo7QUhoS0Ysa0JXOFZBLGVBQWMsTVI3TFo7QUhqS0Ysa0JXOFZBLGVBQWMsTVI1TFo7QUhsS0Ysa0JXOFZBLGVBQWMsTVIzTFo7QUhuS0Ysa0JXOFZBLGVBQWMsTVIxTFo7RUFDRSxjQUFBOztBSHJLSixrQlc4VkEsZUFBYyxNUnZMWjtBSHZLRixrQlc4VkEsZUFBYyxNUnRMWjtBSHhLRixrQlc4VkEsZUFBYyxNUnJMWjtFQUNFLHFCQUFBO0VBdUVGLHdEQUFBO0VBQ0cscURBQUE7RUFDSyxnREFBQTs7QUF2RU4sa0JRa0xKLGVBQWMsTVJ2TFosTUFLRztBQUFELGtCUWtMSixlQUFjLE1SdExaLE9BSUc7QUFBRCxrQlFrTEosZUFBYyxNUnJMWixTQUdHO0VBQ0MscUJBQUE7RUFvRUoseUVBQUE7RUFDRyxzRUFBQTtFQUNLLGlFQUFBOztBSG5QVixrQlc4VkEsZUFBYyxNUjNLWixlQUFlO0FIbkxqQixrQlc4VkEsZUFBYyxNUjFLWixjQUFjO0VBQ1osY0FBQTtFQUNBLHlCQUFBO0VBQ0EscUJBQUE7O0FIdkxKLGtCV2tXQSxlQUFjLFFSeE1aO0FIMUpGLGtCV2tXQSxlQUFjLFFSdk1aO0FIM0pGLGtCV2tXQSxlQUFjLFFSdE1aO0VBQ0UsY0FBQTs7QUg3Skosa0JXa1dBLGVBQWMsUVJsTVo7QUhoS0Ysa0JXa1dBLGVBQWMsUVJqTVo7QUhqS0Ysa0JXa1dBLGVBQWMsUVJoTVo7QUhsS0Ysa0JXa1dBLGVBQWMsUVIvTFo7QUhuS0Ysa0JXa1dBLGVBQWMsUVI5TFo7RUFDRSxjQUFBOztBSHJLSixrQldrV0EsZUFBYyxRUjNMWjtBSHZLRixrQldrV0EsZUFBYyxRUjFMWjtBSHhLRixrQldrV0EsZUFBYyxRUnpMWjtFQUNFLHFCQUFBO0VB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QUFjO0VQOWlCekIsb0NBQUE7RUFDQSxpQ0FBQTtFQUNBLDRCQUFBOztBSkNGLGtCVzhpQkEsYUFBYSxlQUFlO0VQampCMUIsb0NBQUE7RUFDQSxpQ0FBQTtFQUNBLDRCQUFBOztBSkNGLGtCV2lqQkEsYUFBYSxlQUFlO0VQcGpCMUIsb0NBQUE7RUFDQSxpQ0FBQTtFQUNBLDRCQUFBOztBSkNGLGtCVzhqQkEsYUFHRTtBWGprQkYsa0JXK2pCQSxhQUVFO0FYamtCRixrQldna0JBLGlCQUNFO0FYamtCRixrQlc4akJBLGFBSUU7QVhsa0JGLGtCVytqQkEsYUFHRTtBWGxrQkYsa0JXZ2tCQSxpQkFFRTtBWGxrQkYsa0JXOGpCQSxhQUtFO0FYbmtCRixrQlcrakJBLGFBSUU7QVhua0JGLGtCV2drQkEsaUJBR0U7QVhua0JGLGtCVzhqQkEsYUFNRTtBWHBrQkYsa0JXK2pCQSxhQUtFO0FYcGtCRixrQldna0JBLGlCQUlFO0FYcGtCRixrQlc4akJBLGFBT0U7QVhya0JGLGtCVytqQkEsYUFNRTtBWHJrQkYsa0JXZ2tCQSxpQkFLRTtBWHJrQkYsa0JXOGpCQSxhQVFFO0FYdGtCRixrQlcrakJBLGFBT0U7QVh0a0JGLGtCV2drQkEsaUJBTUU7QVh0a0JGLGtCVzhqQkEsYUFTRTtBWHZrQkYsa0JXK2pCQSxhQVFFO0FYdmtCRixrQldna0JBLGlCQU9FO0VBQ0UscUJBQUE7RVJwaUJGLGdCQUFBOztFQUNBLFFBQUE7RVFxaUJFLGdCQUFBO0VBQ0Esc0JBQUE7O0FYM2tCSixrQlc4akJBLGFBZ0JFO0FYOWtCRixrQlcrakJBLGFBZUU7QVg5a0JGLGtCV2drQkEsaUJBY0U7RUFDRSxhQUFBOztBWC9rQkosa0JXa2xCQSxhQUFhO0FYbGxCYixrQldtbEJBLGFBQWE7QVhubEJiLGtCV29sQkEsYUFBYTtBWHBsQmIsa0JXcWxCQSxhQUFhO0VBQ1gscUJBQUE7O0FYdGxCRixrQld5bEJBLGFBQWE7QVh6bEJiLGtCVzBsQkEsYUFBYTtBWDFsQmIsa0JXMmxCQSxhQUFhO0FYM2xCYixrQlc0bEJBLGFBQWE7RUFDWCxnQkFB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YnJFM0Isa0Jhc0VBO0VBQTJCLGdDQUFBOztBYnRFM0Isa0JhdUVBO0VBQTJCLGdDQUFBOztBYnZFM0Isa0Jhd0VBO0VBQTJCLGdDQUFBOztBYnhFM0Isa0JheUVBO0VBQTJCLGlDQUFBOztBYnpFM0Isa0JhMEVBO0VBQTJCLGlDQUFBOztBYjFFM0Isa0JhMkVBO0VBQTJCLGlDQUFBOztBYjNFM0Isa0JhNEVBO0VBQTJCLGlDQUFBOztBYjVFM0Isa0JhNkVBO0VBQTJCLGlDQUFBOztBYjdFM0Isa0JhOEVBO0VBQTJCLGlDQUFBOztBYjlFM0Isa0JhK0VBO0VBQTJCLGlDQUFBOztBYi9FM0Isa0JhZ0ZBO0VBQTJCLGlDQUFBOztBYmhGM0Isa0JhaUZBO0VBQTJCLGlDQUFBOztBYmpGM0Isa0Jha0ZBO0VBQTJCLGlDQUFBOztBYmxGM0Isa0JhbUZBO0VBQTJCLGlDQUFBOztBYm5GM0Isa0Jhb0ZBO0VBQTJCLGlDQUFBOztBYnBGM0Isa0JhcUZBO0VBQTJCLGlDQUFBOztBYnJGM0Isa0Jhc0ZBO0VBQTJCLGlDQUFBOztBYnRGM0Isa0JhdUZBO0VBQTJCLGlDQUFBOztBYnZGM0Isa0JheUZBO0VBQTJCLDRCQUFBOztBYnpGM0Isa0JhMEZBO0VBQTJCLGdDQUFBOztBYjFGM0Isa0JhMkZBO0VBQTJCLGdDQUFBOztBYjNGM0Isa0JhNEZBO0VBQTJCLGdDQUFBOztBYjVGM0Isa0JhNkZBO0VBQTJCLGdDQUFBOztBYjdGM0Isa0JhOEZBO0VBQTJCLGlDQUFBOztBYjlGM0Isa0JhK0ZBO0VBQTJCLGlDQUFBOztBYi9GM0Isa0JhZ0dBO0VBQTJCLGlDQUFBOztBYmhHM0Isa0JhaUdBO0VBQTJCLGlDQUFBOztBYmpHM0Isa0Jha0dBO0VBQTJCLGlDQUFBOztBYmxHM0Isa0JhbUdBO0VBQTJCLGlDQUFBOztBYm5HM0Isa0Jhb0dBO0VBQTJCLGlDQUFBOztBYnBHM0Isa0JhcUdBO0VBQTJCLGlDQUFBOztBYnJHM0Isa0Jhc0dBO0VBQTJCLGlDQUFBOztBYnRHM0Isa0JhdUdBO0VBQTJCLGlDQUFBOztBYnZHM0Isa0Jhd0dBO0VBQTJCLGlDQUFBOztBYnhHM0Isa0JheUdBO0VBQTJCLGlDQUFBOztBYnpHM0Isa0JhMEdBO0VBQTJCLGlDQUFBOztBYjFHM0Isa0JhMkdBO0VBQTJCLGlDQUFBOztBYjNHM0Isa0JhNEdBO0VBQTJCLGlDQUFBOztBYjVHM0Isa0JhOEdBO0VBQTJCLDRCQUFBOztBYjlHM0Isa0JhK0dBO0VBQTJCLGdDQUFBOztBYi9HM0Isa0JhZ0hBO0VBQTJCLGdDQUFBOztBYmhIM0Isa0JhaUhBO0VBQTJCLGdDQUFBOztBYmpIM0Isa0Jha0hBO0VBQTJCLGdDQUFBOztBYmxIM0Isa0JhbUhBO0VBQTJCLGlDQUFBOztBYm5IM0Isa0Jhb0hBO0VBQTJCLGlDQUFBOztBYnBIM0Isa0JhcUhBO0VBQTJCLGlDQUFBOztBYnJIM0Isa0Jhc0hBO0VBQTJCLGlDQUFBOztBYnRIM0Isa0JhdUhBO0VBQTJCLGlDQUFBOztBYnZIM0Isa0Jhd0hBO0VBQTJCLGlDQUFBOztBYnhIM0Isa0JheUhBO0VBQTJCLGlDQUFBOztBYnpIM0Isa0JhMEhBO0VBQTJCLGlDQUFBOztBYjFIM0Isa0JhMkhBO0VBQTJCLGlDQUFBOztBYjNIM0Isa0JhNEhBO0VBQTJCLGlDQUFBOztBYjVIM0Isa0JhNkhBO0VBQTJCLGlDQUFBOztBYjdIM0Isa0JhOEhBO0VBQTJCLGlDQUFBOztBYjlIM0Isa0JhK0hBO0VBQTJCLGlDQUFBOztBYi9IM0Isa0JhZ0lBO0VBQTJCLGlDQUFBOztBYmhJM0Isa0JhaUlBO0VBQTJCLGlDQUFBOztBYmpJM0Isa0JhbUlBO0VBQTJCLDRCQUFBOztBYm5JM0Isa0Jhb0lBO0VBQTJCLGdDQUFBOztBYnBJM0Isa0JhcUlBO0VBQTJCLGdDQUFBOztBYnJJM0Isa0Jhc0lBO0VBQTJCLGdDQUFBOztBYnRJM0Isa0JhdUlBO0VBQTJCLGdDQUFBOztBYnZJM0Isa0Jhd0lBO0VBQTJCLGlDQUFBOztBYnhJM0Isa0JheUlBO0VBQTJCLGlDQUFBOztBYnpJM0Isa0JhMElBO0VBQTJCLGlDQUFBOztBYjFJM0Isa0JhMklBO0VBQTJCLGlDQUFBOztBYjNJM0Isa0JhNElBO0VBQTJCLGlDQUFBOztBYjVJM0Isa0JhNklBO0VBQTJCLGlDQUFBOztBYjdJM0Isa0JhOElBO0VBQTJCLGlDQUFBOztBYjlJM0Isa0JhK0lBO0VBQTJCLGlDQUFBOztBYi9JM0Isa0JhZ0pBO0VBQTJCLGlDQUFBOztBYmhKM0Isa0JhaUpBO0VBQTJCLGlDQUFBOztBYmpKM0Isa0Jha0pBO0VBQTJCLGlDQUFBOztBYmxKM0Isa0JhbUpBO0VBQTJCLGlDQUFBOztBYm5KM0Isa0Jhb0pBO0VBQTJCLGlDQUFBOztBYnBKM0Isa0JhcUpBO0VBQTJCLGlDQUFBOztBYnJKM0Isa0Jhc0pBO0VBQTJCLGlDQUFBOztBYnRKM0Isa0Jhd0pBO0VBQTJCLDZCQUFBOztBYnhKM0Isa0JheUpBO0VBQTJCLGlDQUFBOztBYnpKM0Isa0JhMEpBO0VBQTJCLGlDQUFBOztBYjFKM0Isa0JhMkpBO0VBQTJCLGlDQUFBOztBYjNKM0Isa0JhNEpBO0VBQTJCLGlDQUFBOztBYjVKM0Isa0JhNkpBO0VBQTJCLGtDQUFBOztBYjdKM0Isa0JhOEpBO0VBQTJCLGtDQUFBOztBYjlKM0Isa0JhK0pBO0VBQTJCLGtDQUFBOztBYi9KM0Isa0JhZ0tBO0VBQTJCLGtDQUFBOztBYmhLM0Isa0JhaUtBO0VBQTJCLGtDQUFBO0VBQW9DLFdBQUE7O0FiaksvRCxrQmFrS0E7RUFBMkIsa0NBQUE7O0FibEszQixrQmFtS0E7RUFBMkIsa0NBQUE7O0FibkszQixrQmFvS0E7RUFBMkIsa0NBQUE7O0FicEszQixrQmFxS0E7RUFBMkIsa0NBQUE7O0FickszQixrQmFzS0E7RUFBMkIsa0NBQUE7O0FidEszQixrQmF1S0E7RUFBMkIsa0NBQUE7O0FidkszQixrQmF3S0E7RUFBMkIsa0NBQUE7RUFBb0MsV0FBQTs7QWJ4Sy9ELGtCYXlLQTtFQUEyQixrQ0FBQTtFQUFvQyxXQUFBOztBYnpLL0Qsa0JhMEtBO0VBQTJCLGtDQUFBOztBYjFLM0Isa0JhMktBO0VBQTJCLGtDQUFBOztBYjNLM0Isa0JhNktBO0VBQWdDLDZC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akIsT0FnQ0MsWUQwSmlCO0VBQVUsU0MxSkgsT0QwSkc7O0FBQXBCLGtCQzFMUixPQW1DQyxNRHVKUTtBQUFRLGtCQzFMakIsT0FtQ0MsTUR1SmlCO0VBQVUsU0N2SlQsT0R1SlM7O0FBQXBCLGtCQzFMUixPQXNDQyxNRG9KUTtBQUFRLGtCQzFMakIsT0FzQ0MsTURvSmlCO0VBQVUsU0NwSlQsT0RvSlM7O0FBQXBCLGtCQzFMUixPQXlDQyxXRGlKUTtBQUFRLGtCQzFMakIsT0F5Q0MsV0RpSmlCO0VBQVUsU0NqSkosT0RpSkk7O0FBQXBCLGtCQzFMUixPQTRDQyxRRDhJUTtBQUFRLGtCQzFMakIsT0E0Q0MsUUQ4SWlCO0VBQVUsU0M5SVAsT0Q4SU87O0FBQXBCLGtCQzFMUixPQStDQyxHRDJJUTtBQUFRLGtCQzFMakIsT0ErQ0MsR0QySWlCO0VBQVUsU0MzSVosT0QySVk7O0FBQXBCLGtCQzFMUixPQWtEQyxRRHdJUTtBQUFRLGtCQzFMakIsT0FrREMsUUR3SWlCO0VBQVUsU0N4SVAsT0R3SU87O0FBQXBCLGtCQzFMUixPQXFEQyxNRHFJUTtBQUFRLGtCQzFMakIsT0FxREMsTURxSWlCO0VBQVUsU0NySVQsT0RxSVM7O0FBQXBCLGtCQzFMUixPQXdEQyxNRGtJUTtBQUFRLGtCQzFMakIsT0F3REMsTURrSWlCO0VBQVUsU0NsSVQsT0RrSVM7O0FBQXBCLGtCQzFMUixPQTJEQyxtQkQrSFE7QUFBUSxrQkMxTGpCLE9BMkRDLG1CRCtIaUI7RUFBVSxTQy9ISSxPRCtISjs7QUFBcEIsa0JDMUxSLE9BOERDLGFENEhRO0FBQVEsa0JDMUxqQixPQThEQyxhRDRIaUI7RUFBVSxTQzVIRixPRDRIRTs7QUFBcEIsa0JDMUxSLE9BaUVDLE1EeUhRO0FBQVEsa0JDMUxqQixPQWlFQyxNRHlIaUI7RUFBVSxTQ3pIVCxPRHlIUzs7QUFBcEIsa0JDMUxSLE9Bb0VDLE1Ec0hRO0FBQVEsa0JDMUxqQixPQW9FQyxNRHNIaUI7RUFBVSxTQ3RIVCxPRHNIUzs7QUFBcEIsa0JDMUxSLE9BdUVDLE1EbUhRO0FBQVEsa0JDMUxqQixPQXVFQyxNRG1IaUI7RUFBVSxTQ25IVCxPRG1IUzs7QUFBcEIsa0JDMUxSLE9BMEVDLE9EZ0hRO0FBQVEsa0JDMUxqQixPQTBFQyxPRGdIaUI7RUFBVSxTQ2hIUixPRGdIUTs7QUFBcEIsa0JDMUxSLE9BNkVDLFFENkdRO0FBQVEsa0JDMUxqQixPQTZFQyxRRDZHaUI7RUFBVSxTQzdHUCxPRDZHTzs7QUFBcEIsa0JDMUxSLE9BZ0ZDLGNEMEdRO0FBQVEsa0JDMUxqQixPQWdGQyxjRDBHaUI7RUFBVSxTQzFHRCxPRDBHQzs7QUFBcEIsa0JDMUxSLE9BbUZDLE9EdUdRO0FBQVEsa0JDMUxqQixPQW1GQyxPRHVHaUI7RUFBVSxTQ3ZHUixPRHVHUTs7QUFBcEIsa0JDMUxSLE9Bc0ZDLFFEb0dRO0FBQVEsa0JDMUxqQixPQXNGQyxRRG9HaUI7RUFBVSxTQ3BHUCxPRG9HTzs7QUFBcEIsa0JDMUxSLE9BeUZDLFlEaUdRO0FBQVEsa0JDMUxqQixPQXlGQyxZRGlHaUI7RUFBVSxTQ2pHSCxPRGlHRzs7QUFBcEIsa0JDMUxSLE9BNEZDLGNEOEZRO0FBQVEsa0JDMUxqQixPQTRGQyxjRDhGaUI7RUFBVSxTQzlGRCxPRDhGQzs7QUFBcEIsa0JDMUxSLE9BK0ZDLE1EMkZRO0FBQVEsa0JDMUxqQixPQStGQyxNRDJGaUI7RUFBVSxTQzNGVCxPRDJGUzs7QUFBcEIsa0JDMUxSLE9Ba0dDLE1Ed0ZRO0FBQVEsa0JDMUxqQixPQWtHQyxNRHdGaUI7RUFBVSxTQ3hGVCxPRHdGUzs7QUFBcEIsa0JDMUxSLE9BcUdDLE9EcUZRO0FBQVEsa0JDMUxqQixPQXFHQyxPRHFGaUI7RUFBVSxTQ3JGUixPRHFGUTs7QUFBcEIsa0JDMUxSLE9Bd0dDLFlEa0ZRO0FBQVEsa0JDMUxqQixPQXdHQyxZRGtGaUI7RUFBVSxTQ2xGSCxPRGtGRzs7QUFBcEIsa0JDMUxSLE9BMkdDLE1EK0VRO0FBQVEsa0JDMUxqQixPQTJHQyxNRCtFaUI7QUVrREYsa0JBblBoQixnQkFtT0ksd0JBYUksT0FDSSxHQUFFLFlBQVksSUFBSSxRQUViO0VGbERX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 */