/*
Version: 3.5.2 Timestamp: Sat Nov  1 14:43:36 EDT 2014
*/
.select2-container {
    margin: 0;
    position: relative;
    display: inline-block;
    /* inline-block for ie7 */
    zoom: 1;
    *display: inline;
    vertical-align: middle;
}

.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.
    More Info : http://www.quirksmode.org/css/box.html
  */
  -webkit-box-sizing: border-box; /* webkit */
     -moz-box-sizing: border-box; /* firefox */
          box-sizing: border-box; /* css3 */
}

.select2-container .select2-choice {
    display: block;
    height: 26px;
    padding: 0 0 0 8px;
    overflow: hidden;
    position: relative;

    border: 1px solid #aaa;
    white-space: nowrap;
    line-height: 26px;
    color: #444;
    text-decoration: none;

    border-radius: 4px;

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    background-color: #fff;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
    background-image: linear-gradient(to top, #eee 0%, #fff 50%);
}

html[dir="rtl"] .select2-container .select2-choice {
    padding: 0 8px 0 0;
}

.select2-container.select2-drop-above .select2-choice {
    border-bottom-color: #aaa;

    border-radius: 0 0 4px 4px;

    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
    background-image: linear-gradient(to bottom, #eee 0%, #fff 90%);
}

.select2-container.select2-allowclear .select2-choice .select2-chosen {
    margin-right: 42px;
}

.select2-container .select2-choice > .select2-chosen {
    margin-right: 26px;
    display: block;
    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
    float: none;
    width: auto;
}

html[dir="rtl"] .select2-container .select2-choice > .select2-chosen {
    margin-left: 26px;
    margin-right: 0;
}

.select2-container .select2-choice abbr {
    display: none;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 24px;
    top: 8px;

    font-size: 1px;
    text-decoration: none;

    border: 0;
    background: url('../bundles/blockbookstercore/css/select2.png') right top no-repeat;
    cursor: pointer;
    outline: 0;
}

.select2-container.select2-allowclear .select2-choice abbr {
    display: inline-block;
}

.select2-container .select2-choice abbr:hover {
    background-position: right -11px;
    cursor: pointer;
}

.select2-drop-mask {
    border: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 9998;
    /* styles required for IE to work */
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-drop {
    width: 100%;
    margin-top: -1px;
    position: absolute;
    z-index: 9999;
    top: 100%;

    background: #fff;
    color: #000;
    border: 1px solid #aaa;
    border-top: 0;

    border-radius: 0 0 4px 4px;

    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
}

.select2-drop.select2-drop-above {
    margin-top: 1px;
    border-top: 1px solid #aaa;
    border-bottom: 0;

    border-radius: 4px 4px 0 0;

    -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
}

.select2-drop-active {
    border: 1px solid #5897fb;
    border-top: none;
}

.select2-drop.select2-drop-above.select2-drop-active {
    border-top: 1px solid #5897fb;
}

.select2-drop-auto-width {
    border-top: 1px solid #aaa;
    width: auto;
}

.select2-drop-auto-width .select2-search {
    padding-top: 4px;
}

.select2-container .select2-choice .select2-arrow {
    display: inline-block;
    width: 18px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;

    border-left: 1px solid #aaa;
    border-radius: 0 4px 4px 0;

    background-clip: padding-box;

    background: #ccc;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
    background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
    background-image: linear-gradient(to top, #ccc 0%, #eee 60%);
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow {
    left: 0;
    right: auto;

    border-left: none;
    border-right: 1px solid #aaa;
    border-radius: 4px 0 0 4px;
}

.select2-container .select2-choice .select2-arrow b {
    display: block;
    width: 100%;
    height: 100%;
    background: url('../bundles/blockbookstercore/css/select2.png') no-repeat 0 1px;
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow b {
    background-position: 2px 1px;
}

.select2-search {
    display: inline-block;
    width: 100%;
    min-height: 26px;
    margin: 0;
    padding-left: 4px;
    padding-right: 4px;

    position: relative;
    z-index: 10000;

    white-space: nowrap;
}

.select2-search input {
    width: 100%;
    height: auto !important;
    min-height: 26px;
    padding: 4px 20px 4px 5px;
    margin: 0;

    outline: 0;
    font-family: sans-serif;
    font-size: 1em;

    border: 1px solid #aaa;
    border-radius: 0;

    -webkit-box-shadow: none;
            box-shadow: none;

    background: #fff url('../bundles/blockbookstercore/css/select2.png') no-repeat 100% -22px;
    background: url('../bundles/blockbookstercore/css/select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('../bundles/blockbookstercore/css/select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('../bundles/blockbookstercore/css/select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('../bundles/blockbookstercore/css/select2.png') no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

html[dir="rtl"] .select2-search input {
    padding: 4px 5px 4px 20px;

    background: #fff url('../bundles/blockbookstercore/css/select2.png') no-repeat -37px -22px;
    background: url('../bundles/blockbookstercore/css/select2.png') no-repeat -37px -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('../bundles/blockbookstercore/css/select2.png') no-repeat -37px -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('../bundles/blockbookstercore/css/select2.png') no-repeat -37px -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('../bundles/blockbookstercore/css/select2.png') no-repeat -37px -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-drop.select2-drop-above .select2-search input {
    margin-top: 4px;
}

.select2-search input.select2-active {
    background: #fff url('../bundles/blockbookstercore/css/select2-spinner.gif') no-repeat 100%;
    background: url('../bundles/blockbookstercore/css/select2-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('../bundles/blockbookstercore/css/select2-spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('../bundles/blockbookstercore/css/select2-spinner.gif') no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('../bundles/blockbookstercore/css/select2-spinner.gif') no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;

    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
            box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.select2-dropdown-open .select2-choice {
    border-bottom-color: transparent;
    -webkit-box-shadow: 0 1px 0 #fff inset;
            box-shadow: 0 1px 0 #fff inset;

    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    background-color: #eee;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(to top, #fff 0%, #eee 50%);
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
    border: 1px solid #5897fb;
    border-top-color: transparent;

    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
}

.select2-dropdown-open .select2-choice .select2-arrow {
    background: transparent;
    border-left: none;
    filter: none;
}
html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow {
    border-right: none;
}

.select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -18px 1px;
}

html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -16px 1px;
}

.select2-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* results */
.select2-results {
    max-height: 200px;
    padding: 0 0 0 4px;
    margin: 4px 4px 4px 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html[dir="rtl"] .select2-results {
    padding: 0 4px 0 0;
    margin: 4px 0 4px 4px;
}

.select2-results ul.select2-result-sub {
    margin: 0;
    padding-left: 0;
}

.select2-results li {
    list-style: none;
    display: list-item;
    background-image: none;
}

.select2-results li.select2-result-with-children > .select2-result-label {
    font-weight: bold;
}

.select2-results .select2-result-label {
    padding: 3px 7px 4px;
    margin: 0;
    cursor: pointer;

    min-height: 1em;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
}

.select2-results-dept-1 .select2-result-label { padding-left: 20px }
.select2-results-dept-2 .select2-result-label { padding-left: 40px }
.select2-results-dept-3 .select2-result-label { padding-left: 60px }
.select2-results-dept-4 .select2-result-label { padding-left: 80px }
.select2-results-dept-5 .select2-result-label { padding-left: 100px }
.select2-results-dept-6 .select2-result-label { padding-left: 110px }
.select2-results-dept-7 .select2-result-label { padding-left: 120px }

.select2-results .select2-highlighted {
    background: #3875d7;
    color: #fff;
}

.select2-results li em {
    background: #feffde;
    font-style: normal;
}

.select2-results .select2-highlighted em {
    background: transparent;
}

.select2-results .select2-highlighted ul {
    background: #fff;
    color: #000;
}

.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-ajax-error,
.select2-results .select2-selection-limit {
    background: #f4f4f4;
    display: list-item;
    padding-left: 5px;
}

/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
    color: #666;
    background: #f4f4f4;
    display: list-item;
    cursor: default;
}
.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}

.select2-results .select2-selected {
    display: none;
}

.select2-more-results.select2-active {
    background: #f4f4f4 url('../bundles/blockbookstercore/css/select2-spinner.gif') no-repeat 100%;
}

.select2-results .select2-ajax-error {
    background: rgba(255, 50, 50, .2);
}

.select2-more-results {
    background: #f4f4f4;
    display: list-item;
}

/* disabled styles */

.select2-container.select2-container-disabled .select2-choice {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container.select2-container-disabled .select2-choice .select2-arrow {
    background-color: #f4f4f4;
    background-image: none;
    border-left: 0;
}

.select2-container.select2-container-disabled .select2-choice abbr {
    display: none;
}


/* multiselect */

.select2-container-multi .select2-choices {
    height: auto !important;
    height: 1%;
    margin: 0;
    padding: 0 5px 0 0;
    position: relative;

    border: 1px solid #aaa;
    cursor: text;
    overflow: hidden;

    background-color: #fff;
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
    background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: linear-gradient(to bottom, #eee 1%, #fff 15%);
}

html[dir="rtl"] .select2-container-multi .select2-choices {
    padding: 0 0 0 5px;
}

.select2-locked {
  padding: 3px 5px 3px 5px !important;
}

.select2-container-multi .select2-choices {
    min-height: 26px;
}

.select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;

    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
            box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
.select2-container-multi .select2-choices li {
    float: left;
    list-style: none;
}
html[dir="rtl"] .select2-container-multi .select2-choices li
{
    float: right;
}
.select2-container-multi .select2-choices .select2-search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.select2-container-multi .select2-choices .select2-search-field input {
    padding: 5px;
    margin: 1px 0;

    font-family: sans-serif;
    font-size: 100%;
    color: #666;
    outline: 0;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: transparent !important;
}

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
    background: #fff url('../bundles/blockbookstercore/css/select2-spinner.gif') no-repeat 100% !important;
}

.select2-default {
    color: #999 !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 18px;
    margin: 3px 0 3px 5px;
    position: relative;

    line-height: 13px;
    color: #333;
    cursor: default;
    border: 1px solid #aaaaaa;

    border-radius: 3px;

    -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
            box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    background-color: #e4e4e4;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
    background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: linear-gradient(to bottom, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}
html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice
{
    margin: 3px 5px 3px 0;
    padding: 3px 18px 3px 5px;
}
.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
    cursor: default;
}
.select2-container-multi .select2-choices .select2-search-choice-focus {
    background: #d4d4d4;
}

.select2-search-choice-close {
    display: block;
    width: 12px;
    height: 13px;
    position: absolute;
    right: 3px;
    top: 4px;

    font-size: 1px;
    outline: none;
    background: url('../bundles/blockbookstercore/css/select2.png') right top no-repeat;
}
html[dir="rtl"] .select2-search-choice-close {
    right: auto;
    left: 3px;
}

.select2-container-multi .select2-search-choice-close {
    left: 3px;
}

html[dir="rtl"] .select2-container-multi .select2-search-choice-close {
    left: auto;
    right: 2px;
}

.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px;
}
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
    background-position: right -11px;
}

/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 5px;
    border: 1px solid #ddd;
    background-image: none;
    background-color: #f4f4f4;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {    display: none;
    background: none;
}
/* end multiselect */


.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
    text-decoration: underline;
}

.select2-offscreen, .select2-offscreen:focus {
    clip: rect(0 0 0 0) !important;
    width: 1px !important;
    height: 1px !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    outline: 0 !important;
    left: 0px !important;
    top: 0px !important;
}

.select2-display-none {
    display: none;
}

.select2-measure-scrollbar {
    position: absolute;
    top: -10000px;
    left: -10000px;
    width: 100px;
    height: 100px;
    overflow: scroll;
}

/* Retina-ize icons */

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx)  {
    .select2-search input,
    .select2-search-choice-close,
    .select2-container .select2-choice abbr,
    .select2-container .select2-choice .select2-arrow b {
        background-image: url('../bundles/blockbookstercore/css/select2x2.png') !important;
        background-repeat: no-repeat !important;
        background-size: 60px 40px !important;
    }

    .select2-search input {
        background-position: 100% -21px !important;
    }
}

/*!
 * jQuery UI Bootstrap (0.5)
 * http://addyosmani.github.com/jquery-ui-bootstrap
 *
 * Copyright 2012 - 2013, Addy Osmani
 * Dual licensed under the MIT or GPL Version 2 licenses.
 *
 * Portions copyright jQuery UI & Twitter Bootstrap
 */


/* Layout helpers
----------------------------------*/
.ui-helper-hidden { display: none; }
.ui-helper-hidden-accessible {
  border: 0; clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
}
.ui-helper-clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.ui-helper-clearfix {
  /*display: inline-block; */
  display:block;
  min-height: 0; /* support: IE7 */
}
/* required comment for clearfix to work in Opera \*/
* html .ui-helper-clearfix {
  height:1%;
}

/* end clearfix */
.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter:Alpha(Opacity=0);
}
.ui-front {
  z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled { cursor: default !important; }


/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
 * jQuery UI Resizable 1.10.0
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/resizable/
 */

.ui-resizable {
  position: relative;
}
.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  z-index: 99999;
  display: block;
}
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle {
  display: none;
}
.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}
.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}
.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}
.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}
.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}
.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}
.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}
.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}

/*
 * jQuery UI Selectable 1.10.0
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://jqueryui.com/selectable/
 */
.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border:1px dotted black;
}

/*
 * jQuery UI CSS Framework 1.10.0
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 *
 *
 * To view and modify this theme, visit http://jqueryui.com/themeroller/
 */

/* Component containers
----------------------------------*/
.ui-widget {   font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size:13px; }
.ui-widget .ui-widget { font-size: 1em; }
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 1em; }
.ui-widget-content { border: 1px solid #aaaaaa; background: #ffffff url(../bundles/blockbookstercore/css/images/ui-bg_glass_75_ffffff_1x400.png) 50% 50% repeat-x; color: #404040; }
.ui-widget-content a { color: #404040; }
.ui-widget-header {
  font-weight:bold;
  border-color: #0064cd #0064cd #003f81;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  border:1px solid #666;

 }
.ui-widget-header a { color: #222222; }

/* Interaction states
----------------------------------*/
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {

  background-color: #e6e6e6;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);

  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);

  color: #333;
  font-size: 13px;
  line-height: normal;
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-transition: 0.1s linear background-image;
  -moz-transition: 0.1s linear background-image;
  -ms-transition: 0.1s linear background-image;
  -o-transition: 0.1s linear background-image;
  transition: 0.1s linear background-image;
   overflow: visible;

 }


.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555; text-decoration: none; }
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {
  background-position: 0 -15px;
  color: #333;
  text-decoration: none;
 }

.ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited { color: #212121; text-decoration: none; }
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #aaaaaa;  font-weight: normal; color: #212121; }
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121; text-decoration: none; }
.ui-widget :active { outline: none; }

/* Interaction Cues
----------------------------------*/


.ui-state-highlight p, .ui-state-error p, .ui-state-default p{
  font-size: 13px;
  font-weight: normal;
  line-height: 18px;
  margin:7px 15px;
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight  {


  position: relative;
  margin-bottom: 18px;
  color: #404040;
  background-color: #eedc94;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), to(#eedc94));
  background-image: -moz-linear-gradient(top, #fceec1, #eedc94);
  background-image: -ms-linear-gradient(top, #fceec1, #eedc94);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1), color-stop(100%, #eedc94));
  background-image: -webkit-linear-gradient(top, #fceec1, #eedc94);
  background-image: -o-linear-gradient(top, #fceec1, #eedc94);
  background-image: linear-gradient(top, #fceec1, #eedc94);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceec1', endColorstr='#eedc94', GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #eedc94 #eedc94 #e4c652;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border-width: 1px;
  border-style: solid;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);


}
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }
.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {


  position: relative;
  margin-bottom: 18px;
  color: #ffffff;
  border-width: 1px;
  border-style: solid;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
 background-color: #c43c35;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
  background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
  background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: linear-gradient(top, #ee5f5b, #c43c35);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #c43c35 #c43c35 #882a25;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);


}
.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a; }
.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a; }
.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
.ui-priority-secondary, .ui-widget-content .ui-priority-secondary,  .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none;  }
.ui-state-disabled .ui-icon { filter:Alpha(Opacity=35); } /* For IE8 - See #6059 */


/* Icons
----------------------------------*/

/* states and images */
.ui-icon { width: 16px; height: 16px; background-image: url(../bundles/blockbookstercore/css/images/ui-icons_222222_256x240.png); }
.ui-widget-content .ui-icon {background-image: url(../bundles/blockbookstercore/css/images/ui-icons_222222_256x240.png); }
.ui-widget-header .ui-icon {background-image: url(../bundles/blockbookstercore/css/images/ui-icons_222222_256x240.png); }
.ui-state-default .ui-icon { background-image: url(../bundles/blockbookstercore/css/images/ui-icons_888888_256x240.png); }
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(../bundles/blockbookstercore/css/images/ui-icons_454545_256x240.png); }
.ui-state-active .ui-icon {background-image: url(../bundles/blockbookstercore/css/images/ui-icons_454545_256x240.png); }
.ui-state-highlight .ui-icon {background-image: url(../bundles/blockbookstercore/css/images/ui-icons_2e83ff_256x240.png); }
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(../bundles/blockbookstercore/css/images/ui-icons_f6cf3b_256x240.png); }

/* positioning */
.ui-icon-carat-1-n { background-position: 0 0; }
.ui-icon-carat-1-ne { background-position: -16px 0; }
.ui-icon-carat-1-e { background-position: -32px 0; }
.ui-icon-carat-1-se { background-position: -48px 0; }
.ui-icon-carat-1-s { background-position: -64px 0; }
.ui-icon-carat-1-sw { background-position: -80px 0; }
.ui-icon-carat-1-w { background-position: -96px 0; }
.ui-icon-carat-1-nw { background-position: -112px 0; }
.ui-icon-carat-2-n-s { background-position: -128px 0; }
.ui-icon-carat-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -64px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -64px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-off { background-position: -96px -144px; }
.ui-icon-radio-on { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  -khtml-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  -khtml-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -khtml-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -khtml-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}


/* Overlays */

.ui-widget-overlay {
  background: #aaaaaa url(../bundles/blockbookstercore/css/images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
  opacity: .30;
  filter:Alpha(Opacity=30);
}

.ui-widget-shadow {
  margin: -8px 0 0 -8px;
  padding: 8px;
  background: #aaaaaa url(../bundles/blockbookstercore/css/images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
  opacity: .30;filter:Alpha(Opacity=30);
  -moz-border-radius: 8px;
  -khtml-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}

/*
 * jQuery UI Accordion 1.10.0
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://jqueryui.com/accordion/
 */

/* IE/Win - Fix animation bug - #4615 */

.ui-accordion {
  width: 100%;
}
.ui-accordion .ui-accordion-header {
  cursor: pointer;
  position: relative;
  margin-top: 1px;
  zoom: 1;
  font-weight:bold;
}
.ui-accordion .ui-accordion-li-fix {
  display: inline;
}
.ui-accordion .ui-accordion-header-active {
  border-bottom: 0 !important;
}
.ui-accordion .ui-accordion-header a {
  display: block;
  font-size: 1em;
  padding: .5em .5em .5em 1.7em;
}
.ui-accordion-icons .ui-accordion-header a {
  padding-left: 2.2em;
}
.ui-accordion .ui-accordion-header .ui-icon {
  position: absolute;
  left: .5em;
  top: 50%;
  margin-top: -8px;
}
.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  margin-top: -2px;
  position: relative;
  top: 1px;
  margin-bottom: 2px;
  overflow: auto;
  display: none;
  zoom: 1;
}
.ui-accordion .ui-accordion-content-active {
  display: block;
}

/*
 * jQuery UI Autocomplete 1.10.0
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://jqueryui.com/autocomplete/
 */

.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}

/*
 * jQuery UI Button 1.10.0
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Button#theming
 */

.ui-button {

  cursor: pointer;
  display: inline-block;
  background-color: #e6e6e6;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
  padding: 5px 14px 6px;
  margin: 0;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  color: #333;
  font-size: 13px;
  line-height: normal;
  border: 1px solid #ccc;
  border-bottom-color: #bbb;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-transition: 0.1s linear background-image;
  -moz-transition: 0.1s linear background-image;
  -ms-transition: 0.1s linear background-image;
  -o-transition: 0.1s linear background-image;
  transition: 0.1s linear background-image;
   overflow: visible;
} /* the overflow property removes extra width in IE */

.ui-button-primary {
  color: #ffffff;
  background-color: #0064cd;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
  background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
  background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  background-image: linear-gradient(top, #049cdb, #0064cd);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #0064cd #0064cd #003f81;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}


.ui-button-success{
  color:#ffffff;
  background-color: #57a957;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
  background-image: -moz-linear-gradient(top, #62c462, #57a957);
  background-image: -ms-linear-gradient(top, #62c462, #57a957);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));
  background-image: -webkit-linear-gradient(top, #62c462, #57a957);
  background-image: -o-linear-gradient(top, #62c462, #57a957);
  background-image: linear-gradient(top, #62c462, #57a957);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #57a957 #57a957 #3d773d;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

.ui-button-error{
  color:#ffffff;
  background-color: #c43c35;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
  background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
  background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: linear-gradient(top, #ee5f5b, #c43c35);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #c43c35 #c43c35 #882a25;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

.ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */
button.ui-button-icon-only { } /* button elements seem to need a little more width */
.ui-button-icons-only { width: 3.4em; }
button.ui-button-icons-only { width: 3.7em; }

/*button text element */

.ui-button .ui-button-text { display: block;   }
.ui-button-text-only .ui-button-text {  }
.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; /*tempfix*/ display:none;}
.ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; }
.ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; }
.ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; }
/* no icon support for input elements, provide padding by default */
/* input.ui-button { padding: .4em 1em; } */

/*button icon element(s) */
.ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { top: 50%; margin-top:-3px; margin-bottom:3px; }
.ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; }
.ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; }
.ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
.ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }

/*button sets*/


.ui-buttonset { margin-right: 7px; }
.ui-buttonset .ui-state-active {
  color: #ffffff;
  background-color: #0064cd;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
  background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
  background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  background-image: linear-gradient(top, #049cdb, #0064cd);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #0064cd #0064cd #003f81;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
.ui-buttonset .ui-button { margin-left: 0; margin-right: -.4em; }

/* workarounds */
button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */


/*
 * jQuery UI Menu 1.10.0
 *
* Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Menu#theming
 */

.ui-menu { list-style:none; padding: 2px; margin: 0; display:block; float:left; outline: none; }
.ui-menu .ui-menu { margin-top: -3px; position: absolute; }
.ui-menu .ui-menu-item { margin: 0; padding: 0; zoom: 1;float: left;clear: left; width: 100%; }
.ui-menu .ui-menu-divider { margin: 5px -2px 5px -2px; height: 0; font-size: 0; line-height: 0; border-width: 1px 0 0 0; }
.ui-menu .ui-menu-item a { text-decoration: none; display: block; padding: 2px .4em; line-height: 1.5; zoom: 1; font-weight: normal; }
.ui-menu .ui-menu-item a.ui-state-focus,
.ui-menu .ui-menu-item a.ui-state-active {
  font-weight: normal;
  margin: 0;
  color: #ffffff;
  background: #0064cd;
  background-color: #0064cd;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
  background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
  background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  background-image: linear-gradient(top, #049cdb, #0064cd);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #0064cd #0064cd #003f81;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
/* Fix problem with border in ui-state-active */
.ui-menu .ui-menu-item a.ui-state-active {
  padding: 1px .4em;
}

.ui-menu .ui-state-disabled { font-weight: normal; margin: .4em 0 .2em; line-height: 1.5; }
.ui-menu .ui-state-disabled a { cursor: default; }

/* icon support */
.ui-menu-icons { position: relative; }
.ui-menu-icons .ui-menu-item a { position: relative; padding-left: 2em; }

/* left-aligned */
.ui-menu .ui-icon { position: absolute; top: .2em; left: .2em; }

/* right-aligned */
.ui-menu .ui-menu-icon { position: static; float: right; }

.ui-menu { width: 200px; margin-bottom: 2em; }


/*
 * jQuery UI spinner 1.10.0
 *
* Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Menu#theming
 */

.ui-spinner { position:relative; display: inline-block; overflow: hidden; padding: 0; vertical-align: middle; }
.ui-spinner-input { border: none; background: none; padding: 0; margin: .2em 0; vertical-align: middle; margin-left: .4em; margin-right: 22px; }
.ui-spinner{}
.ui-spinner-button { width: 16px; height: 50%; font-size: .5em; padding: 0; margin: 0; text-align: center; position: absolute; cursor: default; display: block; overflow: hidden; right: 0; }
.ui-spinner a.ui-spinner-button { border-top: none; border-bottom: none; border-right: none; } /* more specificity required here to overide default borders */
.ui-spinner .ui-icon { position: absolute; margin-top: -8px; top: 50%; left: 0; } /* vertical centre icon */
.ui-spinner-up { top: 0; }
.ui-spinner-down { bottom: 0; }

/* TR overrides */
.ui-spinner .ui-icon-triangle-1-s {
    /* need to fix icons sprite */
    background-position:-65px -16px;
}

/*
 * jQuery UI Dialog 1.10.0
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Dialog#theming
 */
.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: .2em;
  width: 300px;
  overflow: hidden;
  outline: 0;
  background-clip: padding-box;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 6px 6px 6px 6px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  /*left: 50%;
  margin-left: -280px;*/
  outline: medium none;
  position: fixed;
  /*top: 10%;
  width: 560px;*/
  z-index: 1050;
}
.ui-dialog .ui-dialog-titlebar { /*padding: .4em 1em;*/
  position: relative;
  padding:5px 15px;
  border:0px 0px 0px 1px solid;
  border-color: white;
  padding: 5px 15px;
  font-size: 18px;
  text-decoration:none;
  background:none;
  -moz-border-radius-bottomright: 0px;
  -webkit-border-bottom-right-radius: 0px;
  -khtml-border-bottom-right-radius: 0px;

  -moz-border-radius-bottomleft: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -khtml-border-bottom-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom:1px solid #ccc;
}
.ui-dialog .ui-dialog-title {
  float: left;
  color:#404040;
  font-weight:bold;
  margin-top:5px;
  margin-bottom:5px;
  padding:5px;
  text-overflow: ellipsis;
  overflow: hidden;
}
.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: .3em;
  top: 50%;
  width: 19px;
  margin: -20px 0 0 0;
  padding: 1px;
  height: 18px;
  font-size: 20px;
  font-weight: bold;
  line-height: 13.5px;
  text-shadow: 0 1px 0 #ffffff;
  filter: alpha(opacity=25);
  -khtml-opacity: 0.25;
  -moz-opacity: 0.25;
  opacity: 0.25;
  background:none;
  border-width: 0;
  border:none;
  box-shadow: none;
}

.ui-dialog .ui-dialog-titlebar-close span {
  display: block;
  margin: 1px;
  text-indent: 9999px;
}

.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 1px;   filter: alpha(opacity=90);
  -khtml-opacity: 0.90;
  -moz-opacity: 0.90;
  opacity: 0.90;
}

.ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }

.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin: .5em 0 0 0;
  background-color: #f5f5f5;
  padding: 5px 15px 5px;
  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;
  zoom: 1;
  margin-bottom: 0;

}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
.ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
.ui-draggable .ui-dialog-titlebar { cursor: move; }

.ui-dialog-buttonpane .ui-dialog-buttonset .ui-button{
  color: #ffffff;
  background-color: #0064cd;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
  background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
  background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  background-image: linear-gradient(top, #049cdb, #0064cd);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #0064cd #0064cd #003f81;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
/*
 * jQuery UI Slider 1.8.16
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Slider#theming
 */
.ui-slider { position: relative; text-align: left; }
.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0;

  color: #ffffff;
  background-color: #0064cd;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
  background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
  background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  background-image: linear-gradient(top, #049cdb, #0064cd);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #0064cd #0064cd #003f81;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);

}

.ui-slider-horizontal { height: .8em; }
.ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
.ui-slider-horizontal .ui-slider-range-min { left: 0; }
.ui-slider-horizontal .ui-slider-range-max { right: 0; }

.ui-slider-vertical { width: .8em; height: 100px; }
.ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
.ui-slider-vertical .ui-slider-range-min { bottom: 0; }
.ui-slider-vertical .ui-slider-range-max { top: 0; }

/*
 * jQuery UI Tabs 1.9.2
 *
 * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://jqueryui.com/tabs/
 */
 .ui-tabs .ui-tabs-nav{ background:none; border-color: #ddd;border-style: solid;border-width: 0 0 1px;}
.ui-tabs { position: relative; padding: .2em; zoom: 1; border:0px;} /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */


.ui-tabs .ui-tabs-nav li:hover, .ui-tabs .ui-tabs-nav li a:hover{
  background:whiteSmoke;
  border-bottom:1px solid #ddd;
  padding-bottom:0px;
   color:#00438A;
}

.ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; border-bottom:1px solid #DDD; }
.ui-tabs .ui-tabs-nav li {  text-decoration: none; list-style: none; float: left; position: relative; top: 1px; padding: 0px 0px 1px 0px; white-space: nowrap; background:none; border:0px; }

.ui-tabs-nav .ui-state-default{
  -webkit-box-shadow: 0px 0px 0px #ffffff; /* Saf3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
     -moz-box-shadow: 0px 0px 0px #ffffff; /* FF3.5 - 3.6 */
          box-shadow: 0px 0px 0px #ffffff; /* Opera 10.5, IE9, FF4+, Chrome 6+, iOS 5 */
}
.ui-tabs .ui-tabs-nav li a {
  float: left;
  text-decoration: none;
  cursor: text;
  padding: 0 15px;
  margin-right: 2px;
  line-height: 34px;
  border: 1px solid transparent;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;


 }

.ui-tabs .ui-tabs-nav li.ui-tabs-active { margin-bottom: 0; padding-bottom: 0px; outline:none;}
.ui-tabs .ui-tabs-nav li.ui-tabs-active , .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-bottom-color: #ffffff;
  cursor: default;
  color:gray;
  outline:none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active a{background-color: #ffffff;outline:none;border:none;}
.ui-tabs .ui-tabs-nav li.ui-tabs-active:hover{
  background:#ffffff;
  outline:none;
  margin-bottom:0px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-tabs-loading a { cursor: text; }
.ui-tabs .ui-tabs-nav li a, .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a { cursor: pointer; color:#0069D6; background:none; font-weight:normal; margin-bottom:-1px;}
/* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }
.ui-tabs-panel .ui-button{text-decoration:none;}
.ui-tabs .ui-tabs-hide { display: none !important; }


/* IE fix for background inheritance from ui-widget*/
.ui-tabs .ui-tabs-nav li{
  filter:none;
}

/*
 * jQuery UI Tooltip 1.9.0
 *
 * Copyright 2012-10-11, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://jqueryui.com/tooltip/
 */
.ui-tooltip {
    padding:8px;
    position:absolute;
    z-index:9999;
    max-width: 300px;
    -o-box-shadow: 0 0 5px #ddd;
    -moz-box-shadow: 0 0 5px #ddd;
    -webkit-box-shadow: 0 0 5px #ddd;
    /*box-shadow: 0 2px 5px #ddd;*/
    box-shadow: inset 0 1px 0 #ffffff;
}

body .ui-tooltip { border-width:2px; }

/*
 * jQuery UI Datepicker 1.9.0
 *
 * Copyright 2012-10-11, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://jqueryui.com/datepicker/
 */
.ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; }
.ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; border:0px; font-weight: bold; width: 100%; padding: 4px 0; background-color: #f5f5f5; color: #808080; }
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }

.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { /*top: 1px;*/ }
.ui-datepicker .ui-datepicker-prev { left:2px; }
.ui-datepicker .ui-datepicker-next { right:2px; }

.ui-datepicker .ui-datepicker-prev-hover { /*left:1px;*/ }
.ui-datepicker .ui-datepicker-next-hover { /*right:1px;*/ }

.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px;  }
.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year { width: 49%;}
.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0;  }
.ui-datepicker td { border: 0; padding: 1px; }
.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi { width:auto; }
.ui-datepicker-multi .ui-datepicker-group { float:left; }
.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
.ui-datepicker-row-break { clear:both; width:100%; font-size:0em; }

/* RTL support */
.ui-datepicker-rtl { direction: rtl; }
.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
.ui-datepicker-rtl .ui-datepicker-group { float:right; }
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }

/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
.ui-datepicker-cover {
  display: none; /*sorry for IE5*/
  display/**/: block; /*sorry for IE5*/
  position: absolute; /*must have*/
  z-index: -1; /*must have*/
  filter: mask(); /*must have*/
  top: -4px; /*must have*/
  left: -4px; /*must have*/
  width: 200px; /*must have*/
  height: 200px; /*must have*/
}

.ui-datepicker th{
  font-weight: bold;
  color: gray;
}

.ui-datepicker-today a:hover{
  background-color: #808080;
  color: #ffffff;

}
.ui-datepicker-today a{
  background-color: #BFBFBF;
  cursor: pointer;
  padding: 0 4px;
  margin-bottom:0px;

}


.ui-datepicker td a{
  margin-bottom:0px;
  border:0px;
}

.ui-datepicker td:hover{
    color: #ffffff;
}

.ui-datepicker td .ui-state-default {
  border:0px;
  background:none;
  margin-bottom:0px;
  padding:5px;
  color:gray;
  text-align: center;
  filter:none;
}


.ui-datepicker td .ui-state-active{
  background:#BFBFBF;
  margin-bottom:0px;
  font-size:normal;
  text-shadow: 0px;
  color: #ffffff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.ui-datepicker td .ui-state-hover {
    color: #ffffff;
    background: #0064cd;
    background-color: #0064cd;
    background-repeat: repeat-x;
    background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
    background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
    background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
    background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
    background-image: -o-linear-gradient(top, #049cdb, #0064cd);
    background-image: linear-gradient(top, #049cdb, #0064cd);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    border-color: #0064cd #0064cd #003f81;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -khtml-border-radius: 4px;
    border-radius: 4px;
}

/*
 * jQuery UI Progressbar 1.8.16
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Progressbar#theming
 */
.ui-progressbar { height:2em; text-align: left; }
.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%;

/*this can be removed if ui-widget-header is blue*/
    color: #ffffff;
  background-color: #0064cd;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
  background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
  background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  background-image: linear-gradient(top, #049cdb, #0064cd);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #0064cd #0064cd #003f81;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
 }



/*** Input field styling from Bootstrap **/
 input, textarea {
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
  -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
input:focus, textarea:focus {
  outline: 0;
  border-color: rgba(82, 168, 236, 0.8);
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
}
input[type=file]:focus, input[type=checkbox]:focus, select:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: 1px dotted #666;
}


input[type="password"],
.ui-autocomplete-input,
textarea,
.uneditable-input {
  display: inline-block;
  padding: 4px;
  font-size: 13px;
  line-height: 18px;
  color: #808080;
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}



/**Toolbar**/

.ui-toolbar{
  padding: 7px 14px;
  margin: 0 0 18px;
  background-color: #f5f5f5;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#ffffff), to(#f5f5f5));
  background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f5f5f5));
  background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: linear-gradient(top, #ffffff, #f5f5f5);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
  border: 1px solid #ddd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 0 #ffffff;
  -moz-box-shadow: inset 0 1px 0 #ffffff;
  box-shadow: inset 0 1px 0 #ffffff;
}


/***Dialog fixes**/

.ui-dialog-buttonset .ui-button:nth-child(2){
  cursor: pointer;
  display: inline-block;
  background-color: #e6e6e6;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
  padding: 5px 14px 6px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  color: #333;
  font-size: 13px;
  line-height: normal;
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-transition: 0.1s linear all;
  -moz-transition: 0.1s linear all;
  -ms-transition: 0.1s linear all;
  -o-transition: 0.1s linear all;
  transition: 0.1s linear all;
   overflow: visible;
}



/***Wijmo Theming**/

div.wijmo-wijmenu{
  padding:0 20px;
  background-color: #222;
  background-color: #222222;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
  background-image: -moz-linear-gradient(top, #333333, #222222);
  background-image: -ms-linear-gradient(top, #333333, #222222);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
  background-image: -webkit-linear-gradient(top, #333333, #222222);
  background-image: -o-linear-gradient(top, #333333, #222222);
  background-image: linear-gradient(top, #333333, #222222);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.wijmo-wijmenu .ui-state-default{
  box-shadow: none;
  color:#BFBFBF;
}

.wijmo-wijmenu .ui-state-default .wijmo-wijmenu-text{
  color:#BFBFBF;
}

.wijmo-wijmenu .ui-state-hover{
  background: #444;
  background: rgba(255, 255, 255, 0.05);
}

.wijmo-wijmenu .ui-state-hover .wijmo-wijmenu-text{
  color:#ffffff;
}

div.wijmo-wijmenu .ui-widget-header h3{
  position: relative;
  margin-top:1px;
  padding:0;
}

.wijmo-wijmenu h3 a{
  color: #FFFFFF;
  display: block;
  float: left;
  font-size: 20px;
  font-weight: 200;
  line-height: 1;
  margin-left: -20px;
  margin-top:1px;
  padding: 8px 20px 12px;
}

.wijmo-wijmenu h3 a:hover{
  background-color: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  text-decoration: none;
}

.wijmo-wijmenu .ui-widget-header{
  border:0px;
}

.wijmo-wijmenu .wijmo-wijmenu-parent .wijmo-wijmenu-child{
  padding: 0.3em 0;
}

div.wijmo-wijmenu .wijmo-wijmenu-item .wijmo-wijmenu-child{
  background: #333;
  border:0;
  margin:0;
  padding: 6px 0;
  width:160px;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

div.wijmo-wijmenu .wijmo-wijmenu-item{
  margin:0;
  border:0;
}

.wijmo-wijmenu a.wijmo-wijmenu-link{
  margin:0;
  line-height: 19px;
  padding: 10px 10px 11px;
  border:0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius:0;
}

div.wijmo-wijmenu .wijmo-wijmenu-child .wijmo-wijmenu-link{
  display:block;
  float:none;
  padding: 4px 15px;
  width:auto;
}

div.wijmo-wijmenu .wijmo-wijmenu-child .wijmo-wijmenu-text
{
  float:none;
}

.wijmo-wijmenu .wijmo-wijmenu-item .wijmo-wijmenu-child .ui-state-hover {
  background: #191919;
}

.wijmo-wijmenu .wijmo-wijmenu-item .wijmo-wijmenu-separator{
  padding: 5px 0;
  background-image: none;
  background-color: #222;
  border-top: 1px solid #444;
  border-bottom:0;
  border-left:0;
  border-right:0;
}

.wijmo-wijmenu .wijmo-wijmenu-item input {
  -moz-transition: none 0s ease 0s;
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid #111111;
  border-radius: 4px 4px 4px 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.75);
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  line-height: 1;
  margin: 5px 10px 0 10px;
  padding: 4px 9px;
  width:100px;
}

.wijmo-wijmenu .wijmo-wijmenu-item input:hover {
  background-color: rgba(255, 255, 255, 0.5);
  color: #FFFFFF;
}

.wijmo-wijmenu .wijmo-wijmenu-item input:focus {
  background-color: #FFFFFF;
  border: 0 none;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  color: #404040;
  outline: 0 none;
  padding: 5px 10px;
  text-shadow: 0 1px 0 #FFFFFF;
}


.wijmo-wijmenu .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  text-shadow:none;
}


.wijmo-wijmenu .ui-state-default{
  box-shadow: none;
  color:#BFBFBF;
  filter: none;
}


@charset "UTF-8";
/*! normalize.css v2.1.2 | MIT License | git.io/normalize */
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
    display: block
}

audio, canvas, video {
    display: inline-block
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden] {
    display: none
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

a:focus {
    outline: thin dotted
}

a:active, a:hover {
    outline: 0
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

abbr[title] {
    border-bottom: 1px dotted
}

b, strong {
    font-weight: 700
}

dfn {
    font-style: italic
}

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0
}

mark {
    background: #ff0;
    color: #000
}

code, kbd, pre, samp {
    font-family: monospace, serif;
    font-size: 1em
}

pre {
    white-space: pre-wrap
}

q {
    quotes: "\201C" "\201D" "\2018" "\2019"
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -.5em
}

sub {
    bottom: -.25em
}

img {
    border: 0
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 0
}

fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: .35em .625em .75em
}

legend {
    border: 0;
    padding: 0
}

button, input, select, textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0
}

button, input {
    line-height: normal
}

button, select {
    text-transform: none
}

button, html input[type=button], input[type=reset], input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer
}

button[disabled], html input[disabled] {
    cursor: default
}

input[type=checkbox], input[type=radio] {
    box-sizing: border-box;
    padding: 0
}

input[type=search] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto;
    vertical-align: top
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

ul {
    list-style: none;
    padding: 0
}

p {
    margin: 0
}

/* '' */

.bx-wrapper {
    position: relative;
    margin: 0 auto;
    padding: 0;
    *zoom: 1
}

.bx-wrapper img {
    max-width: 100%;
    display: block
}

.bx-wrapper .bx-viewport {
    -webkit-transform: translatez(0);
    -moz-transform: translatez(0);
    -ms-transform: translatez(0);
    -o-transform: translatez(0);
    transform: translatez(0)
}

.bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {
    position: absolute;
    bottom: -30px;
    width: 100%
}

.bx-wrapper .bx-pager {
    text-align: center;
    font-size: .85em;
    font-family: Arial;
    font-weight: 700;
    color: #666;
    padding-top: 20px
}

.bx-wrapper .bx-pager .bx-pager-item, .bx-wrapper .bx-controls-auto .bx-controls-auto-item {
    display: inline-block;
    *zoom: 1;
    *display: inline
}

.bx-wrapper .bx-pager.bx-default-pager a {
    background: #666;
    text-indent: -9999px;
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    outline: 0;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px
}

.bx-wrapper .bx-pager.bx-default-pager a:hover, .bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #000
}

.bx-wrapper .bx-prev {
    left: -70px;
    background: url(../bundles/blockbookstercore/assets/images/btn-slider.png) no-repeat 0 0
}

.bx-wrapper .bx-next {
    right: -70px;
    background: url(../bundles/blockbookstercore/assets/images/btn-slider.png) no-repeat 0 0;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg)
}

.bx-wrapper .bx-controls-direction a {
    position: absolute;
    top: 50%;
    margin-top: -35px;
    outline: 0;
    width: 30px;
    height: 70px;
    text-indent: -9999px;
    z-index: 9999;
    background-size: contain
}

@media (max-width: 1024px) {
    .bx-wrapper .bx-controls-direction a {
        width: 15px;
        height: 36px
    }

    .bx-wrapper .bx-prev {
        left: -50px
    }

    .bx-wrapper .bx-next {
        right: -50px
    }
}

.bx-wrapper .bx-controls-direction a.disabled {
    display: none
}

.bx-wrapper .bx-controls-auto {
    text-align: center
}

.bx-wrapper .bx-controls-auto .bx-start {
    display: block;
    text-indent: -9999px;
    width: 10px;
    height: 11px;
    outline: 0;
    background: url(../bundles/blockbookstercore/css/images/controls.png) -86px -11px no-repeat;
    margin: 0 3px
}

.bx-wrapper .bx-controls-auto .bx-start:hover, .bx-wrapper .bx-controls-auto .bx-start.active {
    background-position: -86px 0
}

.bx-wrapper .bx-controls-auto .bx-stop {
    display: block;
    text-indent: -9999px;
    width: 9px;
    height: 11px;
    outline: 0;
    background: url(../bundles/blockbookstercore/css/images/controls.png) -86px -44px no-repeat;
    margin: 0 3px
}

.bx-wrapper .bx-controls-auto .bx-stop:hover, .bx-wrapper .bx-controls-auto .bx-stop.active {
    background-position: -86px -33px
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
    text-align: left;
    width: 80%
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
    right: 0;
    width: 35px
}

.bx-wrapper .bx-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #666 \9;
    background: rgba(80, 80, 80, .75);
    width: 100%
}

.bx-wrapper .bx-caption span {
    color: #fff;
    font-family: Arial;
    display: block;
    font-size: .85em;
    padding: 10px
}

/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
    display: block
}

audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden], template {
    display: none
}

a {
    background: transparent
}

a:active, a:hover {
    outline: 0
}

abbr[title] {
    border-bottom: 1px dotted
}

b, strong {
    font-weight: 700
}

dfn {
    font-style: italic
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

mark {
    background: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -.5em
}

sub {
    bottom: -.25em
}

img {
    border: 0
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 1em 40px
}

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0
}

pre {
    overflow: auto
}

code, kbd, pre, samp {
    font-family: monospace, monospace;
    font-size: 1em
}

button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0
}

button {
    overflow: visible
}

button, select {
    text-transform: none
}

button, html input[type=button], input[type=reset], input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer
}

button[disabled], html input[disabled] {
    cursor: default
}

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input {
    line-height: normal
}

input[type=checkbox], input[type=radio] {
    box-sizing: border-box;
    padding: 0
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    height: auto
}

input[type=search] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: .35em .625em .75em
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: 700
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td, th {
    padding: 0
}

@media print {
    * {
        text-shadow: none !important;
        color: #000 !important;
        background: transparent !important;
        box-shadow: none !important
    }

    a, a:visited {
        text-decoration: underline
    }

    a[href]:after {
        content: " (" attr(href) ")"
    }

    abbr[title]:after {
        content: " (" attr(title) ")"
    }

    a[href^="javascript:"]:after, a[href^="#"]:after {
        content: ""
    }

    pre, blockquote {
        border: 1px solid #999;
        page-break-inside: avoid
    }

    thead {
        display: table-header-group
    }

    tr, img {
        page-break-inside: avoid
    }

    img {
        max-width: 100% !important
    }

    p, h2, h3 {
        orphans: 3;
        widows: 3
    }

    h2, h3 {
        page-break-after: avoid
    }

    select {
        background: #fff !important
    }

    .navbar {
        display: none
    }

    .table td, .table th {
        background-color: #fff !important
    }

    .btn > .caret, .dropup > .btn > .caret {
        border-top-color: #000 !important
    }

    .label {
        border: 1px solid #000
    }

    .table {
        border-collapse: collapse !important
    }

    .table-bordered th, .table-bordered td {
        border: 1px solid #ddd !important
    }
}

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url(../bundles/blockbookstercore/assets/fonts/bootstrap/glyphicons-halflings-regular.eot);
    src: url(../bundles/blockbookstercore/assets/fonts/bootstrap/glyphicons-halflings-regular.eot) format("embedded-opentype"), url(../bundles/blockbookstercore/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf) format("woff"), url(../bundles/blockbookstercore/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf) format("truetype"), url(../bundles/blockbookstercore/assets/fonts/bootstrap/glyphicons-halflings-regular.svg) format("svg")
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.glyphicon-asterisk:before {
    content: "\2a"
}

.glyphicon-plus:before {
    content: "\2b"
}

.glyphicon-euro:before {
    content: "\20ac"
}

.glyphicon-minus:before {
    content: "\2212"
}

.glyphicon-cloud:before {
    content: "\2601"
}

.glyphicon-envelope:before {
    content: "\2709"
}

.glyphicon-pencil:before {
    content: "\270f"
}

.glyphicon-glass:before {
    content: "\e001"
}

.glyphicon-music:before {
    content: "\e002"
}

.glyphicon-search:before {
    content: "\e003"
}

.glyphicon-heart:before {
    content: "\e005"
}

.glyphicon-star:before {
    content: "\e006"
}

.glyphicon-star-empty:before {
    content: "\e007"
}

.glyphicon-user:before {
    content: "\e008"
}

.glyphicon-film:before {
    content: "\e009"
}

.glyphicon-th-large:before {
    content: "\e010"
}

.glyphicon-th:before {
    content: "\e011"
}

.glyphicon-th-list:before {
    content: "\e012"
}

.glyphicon-ok:before {
    content: "\e013"
}

.glyphicon-remove:before {
    content: "\e014"
}

.glyphicon-zoom-in:before {
    content: "\e015"
}

.glyphicon-zoom-out:before {
    content: "\e016"
}

.glyphicon-off:before {
    content: "\e017"
}

.glyphicon-signal:before {
    content: "\e018"
}

.glyphicon-cog:before {
    content: "\e019"
}

.glyphicon-trash:before {
    content: "\e020"
}

.glyphicon-home:before {
    content: "\e021"
}

.glyphicon-file:before {
    content: "\e022"
}

.glyphicon-time:before {
    content: "\e023"
}

.glyphicon-road:before {
    content: "\e024"
}

.glyphicon-download-alt:before {
    content: "\e025"
}

.glyphicon-download:before {
    content: "\e026"
}

.glyphicon-upload:before {
    content: "\e027"
}

.glyphicon-inbox:before {
    content: "\e028"
}

.glyphicon-play-circle:before {
    content: "\e029"
}

.glyphicon-repeat:before {
    content: "\e030"
}

.glyphicon-refresh:before {
    content: "\e031"
}

.glyphicon-list-alt:before {
    content: "\e032"
}

.glyphicon-lock:before {
    content: "\e033"
}

.glyphicon-flag:before {
    content: "\e034"
}

.glyphicon-headphones:before {
    content: "\e035"
}

.glyphicon-volume-off:before {
    content: "\e036"
}

.glyphicon-volume-down:before {
    content: "\e037"
}

.glyphicon-volume-up:before {
    content: "\e038"
}

.glyphicon-qrcode:before {
    content: "\e039"
}

.glyphicon-barcode:before {
    content: "\e040"
}

.glyphicon-tag:before {
    content: "\e041"
}

.glyphicon-tags:before {
    content: "\e042"
}

.glyphicon-book:before {
    content: "\e043"
}

.glyphicon-bookmark:before {
    content: "\e044"
}

.glyphicon-print:before {
    content: "\e045"
}

.glyphicon-camera:before {
    content: "\e046"
}

.glyphicon-font:before {
    content: "\e047"
}

.glyphicon-bold:before {
    content: "\e048"
}

.glyphicon-italic:before {
    content: "\e049"
}

.glyphicon-text-height:before {
    content: "\e050"
}

.glyphicon-text-width:before {
    content: "\e051"
}

.glyphicon-align-left:before {
    content: "\e052"
}

.glyphicon-align-center:before {
    content: "\e053"
}

.glyphicon-align-right:before {
    content: "\e054"
}

.glyphicon-align-justify:before {
    content: "\e055"
}

.glyphicon-list:before {
    content: "\e056"
}

.glyphicon-indent-left:before {
    content: "\e057"
}

.glyphicon-indent-right:before {
    content: "\e058"
}

.glyphicon-facetime-video:before {
    content: "\e059"
}

.glyphicon-picture:before {
    content: "\e060"
}

.glyphicon-map-marker:before {
    content: "\e062"
}

.glyphicon-adjust:before {
    content: "\e063"
}

.glyphicon-tint:before {
    content: "\e064"
}

.glyphicon-edit:before {
    content: "\e065"
}

.glyphicon-share:before {
    content: "\e066"
}

.glyphicon-check:before {
    content: "\e067"
}

.glyphicon-move:before {
    content: "\e068"
}

.glyphicon-step-backward:before {
    content: "\e069"
}

.glyphicon-fast-backward:before {
    content: "\e070"
}

.glyphicon-backward:before {
    content: "\e071"
}

.glyphicon-play:before {
    content: "\e072"
}

.glyphicon-pause:before {
    content: "\e073"
}

.glyphicon-stop:before {
    content: "\e074"
}

.glyphicon-forward:before {
    content: "\e075"
}

.glyphicon-fast-forward:before {
    content: "\e076"
}

.glyphicon-step-forward:before {
    content: "\e077"
}

.glyphicon-eject:before {
    content: "\e078"
}

.glyphicon-chevron-left:before {
    content: "\e079"
}

.glyphicon-chevron-right:before {
    content: "\e080"
}

.glyphicon-plus-sign:before {
    content: "\e081"
}

.glyphicon-minus-sign:before {
    content: "\e082"
}

.glyphicon-remove-sign:before {
    content: "\e083"
}

.glyphicon-ok-sign:before {
    content: "\e084"
}

.glyphicon-question-sign:before {
    content: "\e085"
}

.glyphicon-info-sign:before {
    content: "\e086"
}

.glyphicon-screenshot:before {
    content: "\e087"
}

.glyphicon-remove-circle:before {
    content: "\e088"
}

.glyphicon-ok-circle:before {
    content: "\e089"
}

.glyphicon-ban-circle:before {
    content: "\e090"
}

.glyphicon-arrow-left:before {
    content: "\e091"
}

.glyphicon-arrow-right:before {
    content: "\e092"
}

.glyphicon-arrow-up:before {
    content: "\e093"
}

.glyphicon-arrow-down:before {
    content: "\e094"
}

.glyphicon-share-alt:before {
    content: "\e095"
}

.glyphicon-resize-full:before {
    content: "\e096"
}

.glyphicon-resize-small:before {
    content: "\e097"
}

.glyphicon-exclamation-sign:before {
    content: "\e101"
}

.glyphicon-gift:before {
    content: "\e102"
}

.glyphicon-leaf:before {
    content: "\e103"
}

.glyphicon-fire:before {
    content: "\e104"
}

.glyphicon-eye-open:before {
    content: "\e105"
}

.glyphicon-eye-close:before {
    content: "\e106"
}

.glyphicon-warning-sign:before {
    content: "\e107"
}

.glyphicon-plane:before {
    content: "\e108"
}

.glyphicon-calendar:before {
    content: "\e109"
}

.glyphicon-random:before {
    content: "\e110"
}

.glyphicon-comment:before {
    content: "\e111"
}

.glyphicon-magnet:before {
    content: "\e112"
}

.glyphicon-chevron-up:before {
    content: "\e113"
}

.glyphicon-chevron-down:before {
    content: "\e114"
}

.glyphicon-retweet:before {
    content: "\e115"
}

.glyphicon-shopping-cart:before {
    content: "\e116"
}

.glyphicon-folder-close:before {
    content: "\e117"
}

.glyphicon-folder-open:before {
    content: "\e118"
}

.glyphicon-resize-vertical:before {
    content: "\e119"
}

.glyphicon-resize-horizontal:before {
    content: "\e120"
}

.glyphicon-hdd:before {
    content: "\e121"
}

.glyphicon-bullhorn:before {
    content: "\e122"
}

.glyphicon-bell:before {
    content: "\e123"
}

.glyphicon-certificate:before {
    content: "\e124"
}

.glyphicon-thumbs-up:before {
    content: "\e125"
}

.glyphicon-thumbs-down:before {
    content: "\e126"
}

.glyphicon-hand-right:before {
    content: "\e127"
}

.glyphicon-hand-left:before {
    content: "\e128"
}

.glyphicon-hand-up:before {
    content: "\e129"
}

.glyphicon-hand-down:before {
    content: "\e130"
}

.glyphicon-circle-arrow-right:before {
    content: "\e131"
}

.glyphicon-circle-arrow-left:before {
    content: "\e132"
}

.glyphicon-circle-arrow-up:before {
    content: "\e133"
}

.glyphicon-circle-arrow-down:before {
    content: "\e134"
}

.glyphicon-globe:before {
    content: "\e135"
}

.glyphicon-wrench:before {
    content: "\e136"
}

.glyphicon-tasks:before {
    content: "\e137"
}

.glyphicon-filter:before {
    content: "\e138"
}

.glyphicon-briefcase:before {
    content: "\e139"
}

.glyphicon-fullscreen:before {
    content: "\e140"
}

.glyphicon-dashboard:before {
    content: "\e141"
}

.glyphicon-paperclip:before {
    content: "\e142"
}

.glyphicon-heart-empty:before {
    content: "\e143"
}

.glyphicon-link:before {
    content: "\e144"
}

.glyphicon-phone:before {
    content: "\e145"
}

.glyphicon-pushpin:before {
    content: "\e146"
}

.glyphicon-usd:before {
    content: "\e148"
}

.glyphicon-gbp:before {
    content: "\e149"
}

.glyphicon-sort:before {
    content: "\e150"
}

.glyphicon-sort-by-alphabet:before {
    content: "\e151"
}

.glyphicon-sort-by-alphabet-alt:before {
    content: "\e152"
}

.glyphicon-sort-by-order:before {
    content: "\e153"
}

.glyphicon-sort-by-order-alt:before {
    content: "\e154"
}

.glyphicon-sort-by-attributes:before {
    content: "\e155"
}

.glyphicon-sort-by-attributes-alt:before {
    content: "\e156"
}

.glyphicon-unchecked:before {
    content: "\e157"
}

.glyphicon-expand:before {
    content: "\e158"
}

.glyphicon-collapse-down:before {
    content: "\e159"
}

.glyphicon-collapse-up:before {
    content: "\e160"
}

.glyphicon-log-in:before {
    content: "\e161"
}

.glyphicon-flash:before {
    content: "\e162"
}

.glyphicon-log-out:before {
    content: "\e163"
}

.glyphicon-new-window:before {
    content: "\e164"
}

.glyphicon-record:before {
    content: "\e165"
}

.glyphicon-save:before {
    content: "\e166"
}

.glyphicon-open:before {
    content: "\e167"
}

.glyphicon-saved:before {
    content: "\e168"
}

.glyphicon-import:before {
    content: "\e169"
}

.glyphicon-export:before {
    content: "\e170"
}

.glyphicon-send:before {
    content: "\e171"
}

.glyphicon-floppy-disk:before {
    content: "\e172"
}

.glyphicon-floppy-saved:before {
    content: "\e173"
}

.glyphicon-floppy-remove:before {
    content: "\e174"
}

.glyphicon-floppy-save:before {
    content: "\e175"
}

.glyphicon-floppy-open:before {
    content: "\e176"
}

.glyphicon-credit-card:before {
    content: "\e177"
}

.glyphicon-transfer:before {
    content: "\e178"
}

.glyphicon-cutlery:before {
    content: "\e179"
}

.glyphicon-header:before {
    content: "\e180"
}

.glyphicon-compressed:before {
    content: "\e181"
}

.glyphicon-earphone:before {
    content: "\e182"
}

.glyphicon-phone-alt:before {
    content: "\e183"
}

.glyphicon-tower:before {
    content: "\e184"
}

.glyphicon-stats:before {
    content: "\e185"
}

.glyphicon-sd-video:before {
    content: "\e186"
}

.glyphicon-hd-video:before {
    content: "\e187"
}

.glyphicon-subtitles:before {
    content: "\e188"
}

.glyphicon-sound-stereo:before {
    content: "\e189"
}

.glyphicon-sound-dolby:before {
    content: "\e190"
}

.glyphicon-sound-5-1:before {
    content: "\e191"
}

.glyphicon-sound-6-1:before {
    content: "\e192"
}

.glyphicon-sound-7-1:before {
    content: "\e193"
}

.glyphicon-copyright-mark:before {
    content: "\e194"
}

.glyphicon-registration-mark:before {
    content: "\e195"
}

.glyphicon-cloud-download:before {
    content: "\e197"
}

.glyphicon-cloud-upload:before {
    content: "\e198"
}

.glyphicon-tree-conifer:before {
    content: "\e199"
}

.glyphicon-tree-deciduous:before {
    content: "\e200"
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

:before, :after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

html {
    font-size: 10px;
    -webkit-tap-highlight-color: transparent
}

body {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.42857;
    color: #000;
    background-color: #fff
}

@media (max-width: 767px) {
    body {
        font-size: 12px
    }
}

input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

a {
    color: #f66;
    text-decoration: none
}

a:hover, a:focus {
    color: #b93d30;
    text-decoration: underline
}

a:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

figure {
    margin: 0
}

img {
    vertical-align: middle
}

.img-responsive {
    display: block;
    width: 100% \9;
    max-width: 100%;
    height: auto
}

.img-rounded {
    border-radius: 6px
}

.img-thumbnail {
    padding: 4px;
    line-height: 1.42857;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    display: inline-block;
    width: 100% \9;
    max-width: 100%;
    height: auto
}

.img-circle {
    border-radius: 50%
}

hr {
    margin-top: 21px;
    margin-bottom: 21px;
    border: 0;
    border-top: 1px solid #eee
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}

code, kbd, pre, samp {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace
}

code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px
}

kbd {
    padding: 2px 4px;
    font-size: 90%;
    color: #fff;
    background-color: #333;
    border-radius: 3px;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25)
}

kbd kbd {
    padding: 0;
    font-size: 100%;
    box-shadow: none
}

pre {
    display: block;
    padding: 10px;
    margin: 0 0 10.5px;
    font-size: 14px;
    line-height: 1.42857;
    word-break: break-all;
    word-wrap: break-word;
    color: #333;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px
}

pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0
}

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll
}

.container {
    width: 1170px;
    margin: 0 auto
}

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px
}

.container-fluid:before, .container-fluid:after {
    content: " ";
    display: table
}

.container-fluid:after {
    clear: both
}

.row {
    margin-left: -15px;
    margin-right: -15px
}

.row:before, .row:after {
    content: " ";
    display: table
}

.row:after {
    clear: both
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    display: inline-block;
    vertical-align: top
}

.col-xs-1 {
    width: 8.03333%
}

.col-xs-2 {
    width: 16.36667%
}

.col-xs-3 {
    width: 24.7%
}

.col-xs-4 {
    width: 33.03333%
}

.col-xs-5 {
    width: 41.36667%
}

.col-xs-6 {
    width: 49.7%
}

.col-xs-7 {
    width: 58.03333%
}

.col-xs-8 {
    width: 66.36667%
}

.col-xs-9 {
    width: 74.7%
}

.col-xs-10 {
    width: 83.03333%
}

.col-xs-11 {
    width: 91.36667%
}

.col-xs-12 {
    width: 99.7%
}

.col-xs-pull-0 {
    right: auto
}

.col-xs-pull-1 {
    right: 8.33333%
}

.col-xs-pull-2 {
    right: 16.66667%
}

.col-xs-pull-3 {
    right: 25%
}

.col-xs-pull-4 {
    right: 33.33333%
}

.col-xs-pull-5 {
    right: 41.66667%
}

.col-xs-pull-6 {
    right: 50%
}

.col-xs-pull-7 {
    right: 58.33333%
}

.col-xs-pull-8 {
    right: 66.66667%
}

.col-xs-pull-9 {
    right: 75%
}

.col-xs-pull-10 {
    right: 83.33333%
}

.col-xs-pull-11 {
    right: 91.66667%
}

.col-xs-pull-12 {
    right: 100%
}

.col-xs-push-0 {
    left: auto
}

.col-xs-push-1 {
    left: 8.33333%
}

.col-xs-push-2 {
    left: 16.66667%
}

.col-xs-push-3 {
    left: 25%
}

.col-xs-push-4 {
    left: 33.33333%
}

.col-xs-push-5 {
    left: 41.66667%
}

.col-xs-push-6 {
    left: 50%
}

.col-xs-push-7 {
    left: 58.33333%
}

.col-xs-push-8 {
    left: 66.66667%
}

.col-xs-push-9 {
    left: 75%
}

.col-xs-push-10 {
    left: 83.33333%
}

.col-xs-push-11 {
    left: 91.66667%
}

.col-xs-push-12 {
    left: 100%
}

.col-xs-offset-0 {
    margin-left: 0
}

.col-xs-offset-1 {
    margin-left: 8.33333%
}

.col-xs-offset-2 {
    margin-left: 16.66667%
}

.col-xs-offset-3 {
    margin-left: 25%
}

.col-xs-offset-4 {
    margin-left: 33.33333%
}

.col-xs-offset-5 {
    margin-left: 41.66667%
}

.col-xs-offset-6 {
    margin-left: 50%
}

.col-xs-offset-7 {
    margin-left: 58.33333%
}

.col-xs-offset-8 {
    margin-left: 66.66667%
}

.col-xs-offset-9 {
    margin-left: 75%
}

.col-xs-offset-10 {
    margin-left: 83.33333%
}

.col-xs-offset-11 {
    margin-left: 91.66667%
}

.col-xs-offset-12 {
    margin-left: 100%
}

@media (min-width: 768px) {
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
        display: inline-block;
        vertical-align: top
    }

    .col-sm-1 {
        width: 8.03333%
    }

    .col-sm-2 {
        width: 16.36667%
    }

    .col-sm-3 {
        width: 24.7%
    }

    .col-sm-4 {
        width: 33.03333%
    }

    .col-sm-5 {
        width: 41.36667%
    }

    .col-sm-6 {
        width: 49.7%
    }

    .col-sm-7 {
        width: 58.03333%
    }

    .col-sm-8 {
        width: 66.36667%
    }

    .col-sm-9 {
        width: 74.7%
    }

    .col-sm-10 {
        width: 83.03333%
    }

    .col-sm-11 {
        width: 91.36667%
    }

    .col-sm-12 {
        width: 99.7%
    }

    .col-sm-pull-0 {
        right: auto
    }

    .col-sm-pull-1 {
        right: 8.33333%
    }

    .col-sm-pull-2 {
        right: 16.66667%
    }

    .col-sm-pull-3 {
        right: 25%
    }

    .col-sm-pull-4 {
        right: 33.33333%
    }

    .col-sm-pull-5 {
        right: 41.66667%
    }

    .col-sm-pull-6 {
        right: 50%
    }

    .col-sm-pull-7 {
        right: 58.33333%
    }

    .col-sm-pull-8 {
        right: 66.66667%
    }

    .col-sm-pull-9 {
        right: 75%
    }

    .col-sm-pull-10 {
        right: 83.33333%
    }

    .col-sm-pull-11 {
        right: 91.66667%
    }

    .col-sm-pull-12 {
        right: 100%
    }

    .col-sm-push-0 {
        left: auto
    }

    .col-sm-push-1 {
        left: 8.33333%
    }

    .col-sm-push-2 {
        left: 16.66667%
    }

    .col-sm-push-3 {
        left: 25%
    }

    .col-sm-push-4 {
        left: 33.33333%
    }

    .col-sm-push-5 {
        left: 41.66667%
    }

    .col-sm-push-6 {
        left: 50%
    }

    .col-sm-push-7 {
        left: 58.33333%
    }

    .col-sm-push-8 {
        left: 66.66667%
    }

    .col-sm-push-9 {
        left: 75%
    }

    .col-sm-push-10 {
        left: 83.33333%
    }

    .col-sm-push-11 {
        left: 91.66667%
    }

    .col-sm-push-12 {
        left: 100%
    }

    .col-sm-offset-0 {
        margin-left: 0
    }

    .col-sm-offset-1 {
        margin-left: 8.33333%
    }

    .col-sm-offset-2 {
        margin-left: 16.66667%
    }

    .col-sm-offset-3 {
        margin-left: 25%
    }

    .col-sm-offset-4 {
        margin-left: 33.33333%
    }

    .col-sm-offset-5 {
        margin-left: 41.66667%
    }

    .col-sm-offset-6 {
        margin-left: 50%
    }

    .col-sm-offset-7 {
        margin-left: 58.33333%
    }

    .col-sm-offset-8 {
        margin-left: 66.66667%
    }

    .col-sm-offset-9 {
        margin-left: 75%
    }

    .col-sm-offset-10 {
        margin-left: 83.33333%
    }

    .col-sm-offset-11 {
        margin-left: 91.66667%
    }

    .col-sm-offset-12 {
        margin-left: 100%
    }
}

@media (min-width: 992px) {
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        display: inline-block;
        vertical-align: top
    }

    .col-md-1 {
        width: 8.03333%
    }

    .col-md-2 {
        width: 16.36667%
    }

    .col-md-3 {
        width: 24.7%
    }

    .col-md-4 {
        width: 33.03333%
    }

    .col-md-5 {
        width: 41.36667%
    }

    .col-md-6 {
        width: 49.7%
    }

    .col-md-7 {
        width: 58.03333%
    }

    .col-md-8 {
        width: 66.36667%
    }

    .col-md-9 {
        width: 74.7%
    }

    .col-md-10 {
        width: 83.03333%
    }

    .col-md-11 {
        width: 91.36667%
    }

    .col-md-12 {
        width: 99.7%
    }

    .col-md-pull-0 {
        right: auto
    }

    .col-md-pull-1 {
        right: 8.33333%
    }

    .col-md-pull-2 {
        right: 16.66667%
    }

    .col-md-pull-3 {
        right: 25%
    }

    .col-md-pull-4 {
        right: 33.33333%
    }

    .col-md-pull-5 {
        right: 41.66667%
    }

    .col-md-pull-6 {
        right: 50%
    }

    .col-md-pull-7 {
        right: 58.33333%
    }

    .col-md-pull-8 {
        right: 66.66667%
    }

    .col-md-pull-9 {
        right: 75%
    }

    .col-md-pull-10 {
        right: 83.33333%
    }

    .col-md-pull-11 {
        right: 91.66667%
    }

    .col-md-pull-12 {
        right: 100%
    }

    .col-md-push-0 {
        left: auto
    }

    .col-md-push-1 {
        left: 8.33333%
    }

    .col-md-push-2 {
        left: 16.66667%
    }

    .col-md-push-3 {
        left: 25%
    }

    .col-md-push-4 {
        left: 33.33333%
    }

    .col-md-push-5 {
        left: 41.66667%
    }

    .col-md-push-6 {
        left: 50%
    }

    .col-md-push-7 {
        left: 58.33333%
    }

    .col-md-push-8 {
        left: 66.66667%
    }

    .col-md-push-9 {
        left: 75%
    }

    .col-md-push-10 {
        left: 83.33333%
    }

    .col-md-push-11 {
        left: 91.66667%
    }

    .col-md-push-12 {
        left: 100%
    }

    .col-md-offset-0 {
        margin-left: 0
    }

    .col-md-offset-1 {
        margin-left: 8.33333%
    }

    .col-md-offset-2 {
        margin-left: 16.66667%
    }

    .col-md-offset-3 {
        margin-left: 25%
    }

    .col-md-offset-4 {
        margin-left: 33.33333%
    }

    .col-md-offset-5 {
        margin-left: 41.66667%
    }

    .col-md-offset-6 {
        margin-left: 50%
    }

    .col-md-offset-7 {
        margin-left: 58.33333%
    }

    .col-md-offset-8 {
        margin-left: 66.66667%
    }

    .col-md-offset-9 {
        margin-left: 75%
    }

    .col-md-offset-10 {
        margin-left: 83.33333%
    }

    .col-md-offset-11 {
        margin-left: 91.66667%
    }

    .col-md-offset-12 {
        margin-left: 100%
    }
}

@media (min-width: 1200px) {
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
        display: inline-block;
        vertical-align: top
    }

    .col-lg-1 {
        width: 8.03333%
    }

    .col-lg-2 {
        width: 16.36667%
    }

    .col-lg-3 {
        width: 24.7%
    }

    .col-lg-4 {
        width: 33.03333%
    }

    .col-lg-5 {
        width: 41.36667%
    }

    .col-lg-6 {
        width: 49.7%
    }

    .col-lg-7 {
        width: 58.03333%
    }

    .col-lg-8 {
        width: 66.36667%
    }

    .col-lg-9 {
        width: 74.7%
    }

    .col-lg-10 {
        width: 83.03333%
    }

    .col-lg-11 {
        width: 91.36667%
    }

    .col-lg-12 {
        width: 99.7%
    }

    .col-lg-pull-0 {
        right: auto
    }

    .col-lg-pull-1 {
        right: 8.33333%
    }

    .col-lg-pull-2 {
        right: 16.66667%
    }

    .col-lg-pull-3 {
        right: 25%
    }

    .col-lg-pull-4 {
        right: 33.33333%
    }

    .col-lg-pull-5 {
        right: 41.66667%
    }

    .col-lg-pull-6 {
        right: 50%
    }

    .col-lg-pull-7 {
        right: 58.33333%
    }

    .col-lg-pull-8 {
        right: 66.66667%
    }

    .col-lg-pull-9 {
        right: 75%
    }

    .col-lg-pull-10 {
        right: 83.33333%
    }

    .col-lg-pull-11 {
        right: 91.66667%
    }

    .col-lg-pull-12 {
        right: 100%
    }

    .col-lg-push-0 {
        left: auto
    }

    .col-lg-push-1 {
        left: 8.33333%
    }

    .col-lg-push-2 {
        left: 16.66667%
    }

    .col-lg-push-3 {
        left: 25%
    }

    .col-lg-push-4 {
        left: 33.33333%
    }

    .col-lg-push-5 {
        left: 41.66667%
    }

    .col-lg-push-6 {
        left: 50%
    }

    .col-lg-push-7 {
        left: 58.33333%
    }

    .col-lg-push-8 {
        left: 66.66667%
    }

    .col-lg-push-9 {
        left: 75%
    }

    .col-lg-push-10 {
        left: 83.33333%
    }

    .col-lg-push-11 {
        left: 91.66667%
    }

    .col-lg-push-12 {
        left: 100%
    }

    .col-lg-offset-0 {
        margin-left: 0
    }

    .col-lg-offset-1 {
        margin-left: 8.33333%
    }

    .col-lg-offset-2 {
        margin-left: 16.66667%
    }

    .col-lg-offset-3 {
        margin-left: 25%
    }

    .col-lg-offset-4 {
        margin-left: 33.33333%
    }

    .col-lg-offset-5 {
        margin-left: 41.66667%
    }

    .col-lg-offset-6 {
        margin-left: 50%
    }

    .col-lg-offset-7 {
        margin-left: 58.33333%
    }

    .col-lg-offset-8 {
        margin-left: 66.66667%
    }

    .col-lg-offset-9 {
        margin-left: 75%
    }

    .col-lg-offset-10 {
        margin-left: 83.33333%
    }

    .col-lg-offset-11 {
        margin-left: 91.66667%
    }

    .col-lg-offset-12 {
        margin-left: 100%
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 10px;
        width: auto
    }

    .row {
        margin-left: -15px;
        margin-right: -15px
    }
}

@media (min-width: 768px) {
    html {
        min-width: 1200px
    }
}

table {
    background-color: transparent
}

th {
    text-align: left
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 21px
}

.table > thead > tr > th, .table > thead > tr > td, .table > tbody > tr > th, .table > tbody > tr > td, .table > tfoot > tr > th, .table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.42857;
    vertical-align: top;
    border-top: 1px solid #ddd
}

.table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd
}

.table > caption + thead > tr:first-child > th, .table > caption + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > td, .table > thead:first-child > tr:first-child > th, .table > thead:first-child > tr:first-child > td {
    border-top: 0
}

.table > tbody + tbody {
    border-top: 2px solid #ddd
}

.table .table {
    background-color: #fff
}

.table-condensed > thead > tr > th, .table-condensed > thead > tr > td, .table-condensed > tbody > tr > th, .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > th, .table-condensed > tfoot > tr > td {
    padding: 5px
}

.table-bordered {
    border: 1px solid #ddd
}

.table-bordered > thead > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > th, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > th, .table-bordered > tfoot > tr > td {
    border: 1px solid #ddd
}

.table-bordered > thead > tr > th, .table-bordered > thead > tr > td {
    border-bottom-width: 2px
}

.table-striped > tbody > tr:nth-child(odd) > td, .table-striped > tbody > tr:nth-child(odd) > th {
    background-color: #f9f9f9
}

.table-hover > tbody > tr:hover > td, .table-hover > tbody > tr:hover > th {
    background-color: #f5f5f5
}

table col[class*=col-] {
    position: static;
    float: none;
    display: table-column
}

table td[class*=col-], table th[class*=col-] {
    position: static;
    float: none;
    display: table-cell
}

.table > thead > tr > td.active, .table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th, .table > tbody > tr > td.active, .table > tbody > tr > th.active, .table > tbody > tr.active > td, .table > tbody > tr.active > th, .table > tfoot > tr > td.active, .table > tfoot > tr > th.active, .table > tfoot > tr.active > td, .table > tfoot > tr.active > th {
    background-color: #f5f5f5
}

.table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th {
    background-color: #e8e8e8
}

.table > thead > tr > td.success, .table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr > td.success, .table > tbody > tr > th.success, .table > tbody > tr.success > td, .table > tbody > tr.success > th, .table > tfoot > tr > td.success, .table > tfoot > tr > th.success, .table > tfoot > tr.success > td, .table > tfoot > tr.success > th {
    background-color: #dff0d8
}

.table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th {
    background-color: #d0e9c6
}

.table > thead > tr > td.info, .table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr > td.info, .table > tbody > tr > th.info, .table > tbody > tr.info > td, .table > tbody > tr.info > th, .table > tfoot > tr > td.info, .table > tfoot > tr > th.info, .table > tfoot > tr.info > td, .table > tfoot > tr.info > th {
    background-color: #d9edf7
}

.table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th {
    background-color: #c4e3f3
}

.table > thead > tr > td.warning, .table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr > td.warning, .table > tbody > tr > th.warning, .table > tbody > tr.warning > td, .table > tbody > tr.warning > th, .table > tfoot > tr > td.warning, .table > tfoot > tr > th.warning, .table > tfoot > tr.warning > td, .table > tfoot > tr.warning > th {
    background-color: #fcf8e3
}

.table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th {
    background-color: #faf2cc
}

.table > thead > tr > td.danger, .table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr > td.danger, .table > tbody > tr > th.danger, .table > tbody > tr.danger > td, .table > tbody > tr.danger > th, .table > tfoot > tr > td.danger, .table > tfoot > tr > th.danger, .table > tfoot > tr.danger > td, .table > tfoot > tr.danger > th {
    background-color: #f2dede
}

.table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th {
    background-color: #ebcccc
}

@media screen and (max-width: 767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15.75px;
        overflow-y: hidden;
        overflow-x: auto;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
        -webkit-overflow-scrolling: touch
    }

    .table-responsive > .table {
        margin-bottom: 0
    }

    .table-responsive > .table > thead > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > tfoot > tr > td {
        white-space: nowrap
    }

    .table-responsive > .table-bordered {
        border: 0
    }

    .table-responsive > .table-bordered > thead > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child {
        border-left: 0
    }

    .table-responsive > .table-bordered > thead > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child {
        border-right: 0
    }

    .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > td {
        border-bottom: 0
    }
}

fieldset {
    padding: 0;
    margin: 0;
    border: 0;
    min-width: 0
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 21px;
    font-size: 22.5px;
    line-height: inherit;
    color: #333;
    border: 0;
    border-bottom: 1px solid #e5e5e5
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700
}

input[type=search] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

input[type=radio], input[type=checkbox] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal
}

input[type=file] {
    display: block
}

input[type=range] {
    display: block;
    width: 100%
}

select[multiple], select[size] {
    height: auto
}

input[type=file]:focus, input[type=radio]:focus, input[type=checkbox]:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

output {
    display: block;
    padding-top: 7px;
    font-size: 15px;
    line-height: 1.42857;
    color: #666
}

.form-control {
    display: block;
    margin-bottom: 15px;
    width: 100%;
    height: 35px;
    padding: 6px 12px;
    font-size: 15px;
    line-height: 1.42857;
    color: #666;
    background-color: #fff;
    background-image: none;
    border: 1px solid #666;
    border-radius: 2px
}

.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6)
}

.form-control::-moz-placeholder {
    color: #999;
    opacity: 1
}

.form-control:-ms-input-placeholder {
    color: #999
}

.form-control::-webkit-input-placeholder {
    color: #999
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    cursor: not-allowed;
    background-color: #eee;
    opacity: 1
}

input[type=submit] {
    border-radius: 2px;
    border: 0;
    text-transform: uppercase;
    color: #fff;
    background-color: #f66;
    font-weight: 600;
    text-align: center;
    width: 240px;
    padding: 8px
}

input[type=submit]:hover {
    background-color: #b93d30
}

.btn-send {
    position: relative
}

.btn-send:before {
    font-family: Flaticon;
    position: absolute;
    right: 13px;
    top: 0;
    color: #fff
}

textarea {
    min-height: 245px
}

textarea.form-control {
    height: auto
}

input[type=search] {
    -webkit-appearance: none
}

input[type=date], input[type=time], input[type=datetime-local], input[type=month] {
    line-height: 35px;
    line-height: 1.42857 \0
}

input[type=date].input-sm, .form-horizontal .form-group-sm input[type=date].form-control, .input-group-sm > input[type=date].form-control, .input-group-sm > input[type=date].input-group-addon, .input-group-sm > .input-group-btn > input[type=date].btn, input[type=time].input-sm, .form-horizontal .form-group-sm input[type=time].form-control, .input-group-sm > input[type=time].form-control, .input-group-sm > input[type=time].input-group-addon, .input-group-sm > .input-group-btn > input[type=time].btn, input[type=datetime-local].input-sm, .form-horizontal .form-group-sm input[type=datetime-local].form-control, .input-group-sm > input[type=datetime-local].form-control, .input-group-sm > input[type=datetime-local].input-group-addon, .input-group-sm > .input-group-btn > input[type=datetime-local].btn, input[type=month].input-sm, .form-horizontal .form-group-sm input[type=month].form-control, .input-group-sm > input[type=month].form-control, .input-group-sm > input[type=month].input-group-addon, .input-group-sm > .input-group-btn > input[type=month].btn {
    line-height: 30px
}

input[type=date].input-lg, .form-horizontal .form-group-lg input[type=date].form-control, .input-group-lg > input[type=date].form-control, .input-group-lg > input[type=date].input-group-addon, .input-group-lg > .input-group-btn > input[type=date].btn, input[type=time].input-lg, .form-horizontal .form-group-lg input[type=time].form-control, .input-group-lg > input[type=time].form-control, .input-group-lg > input[type=time].input-group-addon, .input-group-lg > .input-group-btn > input[type=time].btn, input[type=datetime-local].input-lg, .form-horizontal .form-group-lg input[type=datetime-local].form-control, .input-group-lg > input[type=datetime-local].form-control, .input-group-lg > input[type=datetime-local].input-group-addon, .input-group-lg > .input-group-btn > input[type=datetime-local].btn, input[type=month].input-lg, .form-horizontal .form-group-lg input[type=month].form-control, .input-group-lg > input[type=month].form-control, .input-group-lg > input[type=month].input-group-addon, .input-group-lg > .input-group-btn > input[type=month].btn {
    line-height: 48px
}

.form-group {
    margin-bottom: 15px
}

.radio, .checkbox {
    position: relative;
    display: block;
    min-height: 21px;
    margin-top: 10px;
    margin-bottom: 10px
}

.radio label, .checkbox label {
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer
}

.radio input[type=radio], .radio-inline input[type=radio], .checkbox input[type=checkbox], .checkbox-inline input[type=checkbox] {
    position: absolute;
    margin-left: -20px;
    margin-top: 4px \9
}

.radio + .radio, .checkbox + .checkbox {
    margin-top: -5px
}

.radio-inline, .checkbox-inline {
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    vertical-align: middle;
    font-weight: 400;
    cursor: pointer
}

.radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline {
    margin-top: 0;
    margin-left: 10px
}

input[type=radio][disabled], input[type=radio].disabled, fieldset[disabled] input[type=radio], input[type=checkbox][disabled], input[type=checkbox].disabled, fieldset[disabled] input[type=checkbox] {
    cursor: not-allowed
}

.radio-inline.disabled, fieldset[disabled] .radio-inline, .checkbox-inline.disabled, fieldset[disabled] .checkbox-inline {
    cursor: not-allowed
}

.radio.disabled label, fieldset[disabled] .radio label, .checkbox.disabled label, fieldset[disabled] .checkbox label {
    cursor: not-allowed
}

.form-control-static {
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0
}

.form-control-static.input-lg, .form-horizontal .form-group-lg .form-control-static.form-control, .input-group-lg > .form-control-static.form-control, .input-group-lg > .form-control-static.input-group-addon, .input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .form-horizontal .form-group-sm .form-control-static.form-control, .input-group-sm > .form-control-static.form-control, .input-group-sm > .form-control-static.input-group-addon, .input-group-sm > .input-group-btn > .form-control-static.btn {
    padding-left: 0;
    padding-right: 0
}

.input-sm, .form-horizontal .form-group-sm .form-control, .input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

select.input-sm, .form-horizontal .form-group-sm select.form-control, .input-group-sm > select.form-control, .input-group-sm > select.input-group-addon, .input-group-sm > .input-group-btn > select.btn {
    height: 30px;
    line-height: 30px
}

textarea.input-sm, .form-horizontal .form-group-sm textarea.form-control, .input-group-sm > textarea.form-control, .input-group-sm > textarea.input-group-addon, .input-group-sm > .input-group-btn > textarea.btn, select[multiple].input-sm, .form-horizontal .form-group-sm select[multiple].form-control, .input-group-sm > select[multiple].form-control, .input-group-sm > select[multiple].input-group-addon, .input-group-sm > .input-group-btn > select[multiple].btn {
    height: auto
}

.input-lg, .form-horizontal .form-group-lg .form-control, .input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn {
    height: 48px;
    padding: 10px 16px;
    font-size: 19px;
    line-height: 1.33;
    border-radius: 6px
}

select.input-lg, .form-horizontal .form-group-lg select.form-control, .input-group-lg > select.form-control, .input-group-lg > select.input-group-addon, .input-group-lg > .input-group-btn > select.btn {
    height: 48px;
    line-height: 48px
}

textarea.input-lg, .form-horizontal .form-group-lg textarea.form-control, .input-group-lg > textarea.form-control, .input-group-lg > textarea.input-group-addon, .input-group-lg > .input-group-btn > textarea.btn, select[multiple].input-lg, .form-horizontal .form-group-lg select[multiple].form-control, .input-group-lg > select[multiple].form-control, .input-group-lg > select[multiple].input-group-addon, .input-group-lg > .input-group-btn > select[multiple].btn {
    height: auto
}

.has-feedback {
    position: relative
}

.has-feedback .form-control {
    padding-right: 43.75px
}

.form-control-feedback {
    position: absolute;
    top: 26px;
    right: 0;
    z-index: 2;
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center
}

.input-lg + .form-control-feedback, .form-horizontal .form-group-lg .form-control + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, .input-group-lg > .input-group-addon + .form-control-feedback, .input-group-lg > .input-group-btn > .btn + .form-control-feedback {
    width: 48px;
    height: 48px;
    line-height: 48px
}

.input-sm + .form-control-feedback, .form-horizontal .form-group-sm .form-control + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, .input-group-sm > .input-group-addon + .form-control-feedback, .input-group-sm > .input-group-btn > .btn + .form-control-feedback {
    width: 30px;
    height: 30px;
    line-height: 30px
}

.has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline {
    color: #3c763d
}

.has-success .form-control {
    border-color: #3c763d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-success .form-control:focus {
    border-color: #2b542c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168
}

.has-success .input-group-addon {
    color: #3c763d;
    border-color: #3c763d;
    background-color: #dff0d8
}

.has-success .form-control-feedback {
    color: #3c763d
}

.has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline {
    color: #8a6d3b
}

.has-warning .form-control {
    border-color: #8a6d3b;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-warning .form-control:focus {
    border-color: #66512c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b
}

.has-warning .input-group-addon {
    color: #8a6d3b;
    border-color: #8a6d3b;
    background-color: #fcf8e3
}

.has-warning .form-control-feedback {
    color: #8a6d3b
}

.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline {
    color: #a94442
}

.has-error .form-control {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-error .form-control:focus {
    border-color: #843534;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483
}

.has-error .input-group-addon {
    color: #a94442;
    border-color: #a94442;
    background-color: #f2dede
}

.has-error .form-control-feedback {
    color: #a94442
}

.has-feedback label.sr-only ~ .form-control-feedback {
    top: 0
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #404040
}

@media (min-width: 768px) {
    .form-inline .form-group, .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle
    }

    .form-inline .form-control, .navbar-form .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .form-inline .input-group, .navbar-form .input-group {
        display: inline-table;
        vertical-align: middle
    }

    .form-inline .input-group .input-group-addon, .navbar-form .input-group .input-group-addon, .form-inline .input-group .input-group-btn, .navbar-form .input-group .input-group-btn, .form-inline .input-group .form-control, .navbar-form .input-group .form-control {
        width: auto
    }

    .form-inline .input-group > .form-control, .navbar-form .input-group > .form-control {
        width: 100%
    }

    .form-inline .control-label, .navbar-form .control-label {
        margin-bottom: 0;
        vertical-align: middle
    }

    .form-inline .radio, .navbar-form .radio, .form-inline .checkbox, .navbar-form .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle
    }

    .form-inline .radio label, .navbar-form .radio label, .form-inline .checkbox label, .navbar-form .checkbox label {
        padding-left: 0
    }

    .form-inline .radio input[type=radio], .navbar-form .radio input[type=radio], .form-inline .checkbox input[type=checkbox], .navbar-form .checkbox input[type=checkbox] {
        position: relative;
        margin-left: 0
    }

    .form-inline .has-feedback .form-control-feedback, .navbar-form .has-feedback .form-control-feedback {
        top: 0
    }
}

.form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 7px
}

.form-horizontal .radio, .form-horizontal .checkbox {
    min-height: 28px
}

.form-horizontal .form-group {
    margin-left: -15px;
    margin-right: -15px
}

.form-horizontal .form-group:before, .form-horizontal .form-group:after {
    content: " ";
    display: table
}

.form-horizontal .form-group:after {
    clear: both
}

@media (min-width: 768px) {
    .form-horizontal .control-label {
        text-align: right;
        margin-bottom: 0;
        padding-top: 7px
    }
}

.form-horizontal .has-feedback .form-control-feedback {
    top: 0;
    right: 15px
}

@media (min-width: 768px) {
    .form-horizontal .form-group-lg .control-label {
        padding-top: 14.3px
    }
}

@media (min-width: 768px) {
    .form-horizontal .form-group-sm .control-label {
        padding-top: 6px
    }
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 15px;
    line-height: 1.42857;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.btn:focus, .btn:active:focus, .btn.active:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

.btn:hover, .btn:focus {
    color: #333;
    text-decoration: none
}

.btn:active, .btn.active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125)
}

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc
}

.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad
}

.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
    background-image: none
}

.btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled]:active, .btn-default[disabled].active, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active {
    background-color: #fff;
    border-color: #ccc
}

.btn-default .badge {
    color: #fff;
    background-color: #333
}

.btn-primary {
    color: #fff;
    background-color: #f66;
    border-color: #ff4d4d
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #f33;
    border-color: #ff0f0f
}

.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
    background-image: none
}

.btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled]:active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {
    background-color: #f66;
    border-color: #ff4d4d
}

.btn-primary .badge {
    color: #f66;
    background-color: #fff
}

.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c
}

.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #449d44;
    border-color: #398439
}

.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
    background-image: none
}

.btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled]:active, .btn-success[disabled].active, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active {
    background-color: #5cb85c;
    border-color: #4cae4c
}

.btn-success .badge {
    color: #5cb85c;
    background-color: #fff
}

.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da
}

.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc
}

.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
    background-image: none
}

.btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled]:active, .btn-info[disabled].active, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active {
    background-color: #5bc0de;
    border-color: #46b8da
}

.btn-info .badge {
    color: #5bc0de;
    background-color: #fff
}

.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236
}

.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512
}

.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
    background-image: none
}

.btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled]:active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active {
    background-color: #f0ad4e;
    border-color: #eea236
}

.btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff
}

.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a
}

.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925
}

.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
    background-image: none
}

.btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled]:active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active {
    background-color: #d9534f;
    border-color: #d43f3a
}

.btn-danger .badge {
    color: #d9534f;
    background-color: #fff
}

.btn-link {
    color: #fff !important;
    background-color: #f66;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    width: 328px;
    text-align: center;
    padding: 7px 8px;
    display: inline-block;
    position: relative
}

.btn-link:hover, .btn-link:focus, .btn-link:active {
    background-color: #b93d30;
    color: #fff;
    text-decoration: none
}

.btn-link:before {
    position: absolute;
    right: 8px;
    top: 8px;
    font-family: Flaticon;
    font-weight: 400
}

@media (max-width: 767px) {
    .btn-link {
        width: auto;
        display: block
    }
}

.btn-lg, .btn-group-lg > .btn {
    padding: 10px 16px;
    font-size: 19px;
    line-height: 1.33;
    border-radius: 6px
}

.btn-sm, .btn-group-sm > .btn {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.btn-xs, .btn-group-xs > .btn {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.btn-block {
    display: block;
    width: 100%
}

.btn-block + .btn-block {
    margin-top: 5px
}

input[type=submit].btn-block, input[type=reset].btn-block, input[type=button].btn-block {
    width: 100%
}

.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear
}

.fade.in {
    opacity: 1
}

.collapse {
    display: none
}

.collapse.in {
    display: block
}

tr.collapse.in {
    display: table-row
}

tbody.collapse.in {
    display: table-row-group
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height .35s ease;
    -o-transition: height .35s ease;
    transition: height .35s ease
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}

.dropdown {
    position: relative
}

.dropdown-toggle:focus {
    outline: 0
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 15px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    background-clip: padding-box
}

.dropdown-menu.pull-right {
    right: 0;
    left: auto
}

.dropdown-menu .divider {
    height: 1px;
    margin: 9.5px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857;
    color: #333;
    white-space: nowrap
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    text-decoration: none;
    color: #262626;
    background-color: #f5f5f5
}

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    background-color: #f66
}

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
    color: #999
}

.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
    text-decoration: none;
    background-color: transparent;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    cursor: not-allowed
}

.open > .dropdown-menu {
    display: block
}

.open > a {
    outline: 0
}

.dropdown-menu-right {
    left: auto;
    right: 0
}

.dropdown-menu-left {
    left: 0;
    right: auto
}

.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.42857;
    color: #999;
    white-space: nowrap
}

.dropdown-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 990
}

.pull-right > .dropdown-menu {
    right: 0;
    left: auto
}

.dropup .caret, .navbar-fixed-bottom .dropdown .caret {
    border-top: 0;
    border-bottom: 4px solid;
    content: ""
}

.dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 1px
}

@media (min-width: 768px) {
    .navbar-right .dropdown-menu {
        right: 0;
        left: auto
    }

    .navbar-right .dropdown-menu-left {
        left: 0;
        right: auto
    }
}

.btn-group, .btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle
}

.btn-group > .btn, .btn-group-vertical > .btn {
    position: relative;
    float: left
}

.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn:hover, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn.active {
    z-index: 2
}

.btn-group > .btn:focus, .btn-group-vertical > .btn:focus {
    outline: 0
}

.btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group {
    margin-left: -1px
}

.btn-toolbar {
    margin-left: -5px
}

.btn-toolbar:before, .btn-toolbar:after {
    content: " ";
    display: table
}

.btn-toolbar:after {
    clear: both
}

.btn-toolbar .btn-group, .btn-toolbar .input-group {
    float: left
}

.btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group {
    margin-left: 5px
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0
}

.btn-group > .btn:first-child {
    margin-left: 0
}

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.btn-group > .btn-group {
    float: left
}

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0
}

.btn-group > .btn-group:first-child > .btn:last-child, .btn-group > .btn-group:first-child > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.btn-group > .btn-group:last-child > .btn:first-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
    outline: 0
}

.btn-group > .btn + .dropdown-toggle {
    padding-left: 8px;
    padding-right: 8px
}

.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
    padding-left: 12px;
    padding-right: 12px
}

.btn-group.open .dropdown-toggle {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125)
}

.btn-group.open .dropdown-toggle.btn-link {
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn .caret {
    margin-left: 0
}

.btn-lg .caret, .btn-group-lg > .btn .caret {
    border-width: 5px 5px 0;
    border-bottom-width: 0
}

.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
    border-width: 0 5px 5px
}

.btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%
}

.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
    content: " ";
    display: table
}

.btn-group-vertical > .btn-group:after {
    clear: both
}

.btn-group-vertical > .btn-group > .btn {
    float: none
}

.btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
    margin-top: -1px;
    margin-left: 0
}

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
    border-radius: 0
}

.btn-group-vertical > .btn:first-child:not(:last-child) {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical > .btn:last-child:not(:first-child) {
    border-bottom-left-radius: 4px;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0
}

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate
}

.btn-group-justified > .btn, .btn-group-justified > .btn-group {
    float: none;
    display: table-cell;
    width: 1%
}

.btn-group-justified > .btn-group .btn {
    width: 100%
}

.btn-group-justified > .btn-group .dropdown-menu {
    left: auto
}

[data-toggle=buttons] > .btn > input[type=radio], [data-toggle=buttons] > .btn > input[type=checkbox] {
    position: absolute;
    z-index: -1;
    opacity: 0;
    filter: alpha(opacity=0)
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate
}

.input-group[class*=col-] {
    float: none;
    padding-left: 0;
    padding-right: 0
}

.input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0
}

.input-group-addon, .input-group-btn, .input-group .form-control {
    display: table-cell
}

.input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) {
    border-radius: 0
}

.input-group-addon, .input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    color: #666;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px
}

.input-group-addon.input-sm, .form-horizontal .form-group-sm .input-group-addon.form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .input-group-addon.btn {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px
}

.input-group-addon.input-lg, .form-horizontal .form-group-lg .input-group-addon.form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .input-group-addon.btn {
    padding: 10px 16px;
    font-size: 19px;
    border-radius: 6px
}

.input-group-addon input[type=radio], .input-group-addon input[type=checkbox] {
    margin-top: 0
}

.input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.input-group-addon:first-child {
    border-right: 0
}

.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.input-group-addon:last-child {
    border-left: 0
}

.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap
}

.input-group-btn > .btn {
    position: relative
}

.input-group-btn > .btn + .btn {
    margin-left: -1px
}

.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
    z-index: 2
}

.input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group {
    margin-right: -1px
}

.input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group {
    margin-left: -1px
}

.nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none
}

.nav:before, .nav:after {
    content: " ";
    display: table
}

.nav:after {
    clear: both
}

.nav > li {
    position: relative;
    display: block
}

.nav > li > a {
    position: relative;
    display: block;
    padding: 10px 15px
}

.nav > li > a:hover, .nav > li > a:focus {
    text-decoration: none;
    background-color: #eee
}

.nav > li.disabled > a {
    color: #999
}

.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
    color: #999;
    text-decoration: none;
    background-color: transparent;
    cursor: not-allowed
}

.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    background-color: #eee;
    border-color: #f66
}

.nav .nav-divider {
    height: 1px;
    margin: 9.5px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.nav > li > a > img {
    max-width: none
}

.block-tabs {
    background-color: #f0f0f0;
    padding: 10px;
    text-align: left
}

.block-tabs .btn-del {
    font-size: 86%;
    color: #000
}

.block-tabs .btn-del:hover {
    color: #000
}

.nav-tabs {
    margin-top: 0
}

.nav-tabs > li {
    float: left
}

.nav-tabs > li > a {
    color: #666;
    margin-right: 2px;
    line-height: 1.42857;
    border-radius: 4px 4px 0 0
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    color: #666;
    background-color: #fff;
    cursor: default
}

.nav-pills > li {
    float: left
}

.nav-pills > li > a {
    border-radius: 4px
}

.nav-pills > li + li {
    margin-left: 2px
}

.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    color: #fff;
    background-color: #f66
}

.nav-stacked > li {
    float: none
}

.nav-stacked > li + li {
    margin-top: 2px;
    margin-left: 0
}

.nav-justified, .nav-tabs.nav-justified {
    width: 100%
}

.nav-justified > li, .nav-tabs.nav-justified > li {
    float: none
}

.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
    text-align: center;
    margin-bottom: 5px
}

.nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto
}

@media (min-width: 768px) {
    .nav-justified > li, .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%
    }

    .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
        margin-bottom: 0
    }
}

.nav-tabs-justified, .nav-tabs.nav-justified {
    border-bottom: 0
}

.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 4px
}

.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #ddd
}

@media (min-width: 768px) {
    .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0
    }

    .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus {
        border-bottom-color: #fff
    }
}

.tab-content {
    padding: 35px 100px;
    background: #fff
}

.tab-content > .tab-pane {
    display: none
}

.tab-content > .active {
    display: block
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 21px;
    border: 1px solid transparent
}

.navbar:before, .navbar:after {
    content: " ";
    display: table
}

.navbar:after {
    clear: both
}

@media (min-width: 768px) {
    .navbar {
        border-radius: 4px
    }
}

.navbar-header:before, .navbar-header:after {
    content: " ";
    display: table
}

.navbar-header:after {
    clear: both
}

@media (min-width: 768px) {
    .navbar-header {
        float: left
    }
}

.navbar-collapse {
    overflow-x: visible;
    padding-right: 15px;
    padding-left: 15px;
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
    -webkit-overflow-scrolling: touch
}

.navbar-collapse:before, .navbar-collapse:after {
    content: " ";
    display: table
}

.navbar-collapse:after {
    clear: both
}

.navbar-collapse.in {
    overflow-y: auto
}

@media (min-width: 768px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        box-shadow: none
    }

    .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important
    }

    .navbar-collapse.in {
        overflow-y: visible
    }

    .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
        padding-left: 0;
        padding-right: 0
    }
}

.navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    max-height: 340px
}

@media (max-width: 480px) and (orientation: landscape) {
    .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
        max-height: 200px
    }
}

.container > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-header, .container-fluid > .navbar-collapse {
    margin-right: -15px;
    margin-left: -15px
}

@media (min-width: 768px) {
    .container > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-header, .container-fluid > .navbar-collapse {
        margin-right: 0;
        margin-left: 0
    }
}

.navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px
}

@media (min-width: 768px) {
    .navbar-static-top {
        border-radius: 0
    }
}

.navbar-fixed-top, .navbar-fixed-bottom {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

@media (min-width: 768px) {
    .navbar-fixed-top, .navbar-fixed-bottom {
        border-radius: 0
    }
}

.navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px
}

.navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
    border-width: 1px 0 0
}

.navbar-brand {
    float: left;
    padding: 14.5px 15px;
    font-size: 19px;
    line-height: 21px;
    height: 50px
}

.navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none
}

@media (min-width: 768px) {
    .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
        margin-left: -15px
    }
}

.navbar-toggle {
    position: relative;
    float: right;
    margin-right: 15px;
    padding: 9px 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px
}

.navbar-toggle:focus {
    outline: 0
}

.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px
}

.navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px
}

@media (min-width: 768px) {
    .navbar-toggle {
        display: none
    }
}

.navbar-nav {
    margin: 7.25px -15px
}

.navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 21px
}

@media (max-width: 767px) {
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none
    }

    .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 25px
    }

    .navbar-nav .open .dropdown-menu > li > a {
        line-height: 21px
    }

    .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
        background-image: none
    }
}

@media (min-width: 768px) {
    .navbar-nav {
        float: left;
        margin: 0
    }

    .navbar-nav > li {
        float: left
    }

    .navbar-nav > li > a {
        padding-top: 14.5px;
        padding-bottom: 14.5px
    }

    .navbar-nav.navbar-right:last-child {
        margin-right: -15px
    }
}

@media (min-width: 768px) {
    .navbar-left {
        float: left !important
    }

    .navbar-right {
        float: right !important
    }
}

.navbar-form {
    margin-left: -15px;
    margin-right: -15px;
    padding: 10px 15px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
    margin-top: 7.5px;
    margin-bottom: 7.5px
}

@media (max-width: 767px) {
    .navbar-form .form-group {
        margin-bottom: 5px
    }
}

@media (min-width: 768px) {
    .navbar-form {
        width: auto;
        border: 0;
        margin-left: 0;
        margin-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .navbar-form.navbar-right:last-child {
        margin-right: -15px
    }
}

.navbar-nav > li > .dropdown-menu {
    margin-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.navbar-btn {
    margin-top: 7.5px;
    margin-bottom: 7.5px
}

.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
    margin-top: 10px;
    margin-bottom: 10px
}

.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
    margin-top: 14px;
    margin-bottom: 14px
}

.navbar-text {
    margin-top: 14.5px;
    margin-bottom: 14.5px
}

@media (min-width: 768px) {
    .navbar-text {
        float: left;
        margin-left: 15px;
        margin-right: 15px
    }

    .navbar-text.navbar-right:last-child {
        margin-right: 0
    }
}

.navbar-default {
    background-color: #f8f8f8;
    border-color: #e7e7e7
}

.navbar-default .navbar-brand {
    color: #777
}

.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
    color: #5e5e5e;
    background-color: transparent
}

.navbar-default .navbar-text {
    color: #777
}

.navbar-default .navbar-nav > li > a {
    color: #777
}

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
    color: #333;
    background-color: transparent
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
    color: #555;
    background-color: #e7e7e7
}

.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
    color: #ccc;
    background-color: transparent
}

.navbar-default .navbar-toggle {
    border-color: #ddd
}

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: #ddd
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #888
}

.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-color: #e7e7e7
}

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
    background-color: #e7e7e7;
    color: #555
}

@media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #777
    }

    .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #333;
        background-color: transparent
    }

    .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #555;
        background-color: #e7e7e7
    }

    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #ccc;
        background-color: transparent
    }
}

.navbar-default .navbar-link {
    color: #777
}

.navbar-default .navbar-link:hover {
    color: #333
}

.navbar-default .btn-link {
    color: #777
}

.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
    color: #333
}

.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus {
    color: #ccc
}

.navbar-inverse {
    background-color: #222;
    border-color: #090909
}

.navbar-inverse .navbar-brand {
    color: #999
}

.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
    color: #fff;
    background-color: transparent
}

.navbar-inverse .navbar-text {
    color: #999
}

.navbar-inverse .navbar-nav > li > a {
    color: #999
}

.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
    color: #fff;
    background-color: transparent
}

.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
    color: #fff;
    background-color: #090909
}

.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
    color: #444;
    background-color: transparent
}

.navbar-inverse .navbar-toggle {
    border-color: #333
}

.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
    background-color: #333
}

.navbar-inverse .navbar-toggle .icon-bar {
    background-color: #fff
}

.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
    border-color: #101010
}

.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
    background-color: #090909;
    color: #fff
}

@media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
        border-color: #090909
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #090909
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
        color: #999
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #fff;
        background-color: transparent
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #fff;
        background-color: #090909
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #444;
        background-color: transparent
    }
}

.navbar-inverse .navbar-link {
    color: #999
}

.navbar-inverse .navbar-link:hover {
    color: #fff
}

.navbar-inverse .btn-link {
    color: #999
}

.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
    color: #fff
}

.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus {
    color: #444
}

.breadcrumb {
    padding: 0;
    margin-bottom: 0;
    list-style: none;
    font-size: 80%
}

.breadcrumb > li {
    display: inline-block
}

.breadcrumb > li + li:before {
    content: "> ";
    padding: 0 5px;
    color: #000
}

.breadcrumb > li a {
    color: #000
}

.breadcrumb > .active {
    color: #000
}

@media (max-width: 767px) {
    .breadcrumb {
        display: none
    }
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 21px 0;
    border-radius: 4px
}

.pagination > li {
    display: inline
}

.pagination > li > a, .pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857;
    text-decoration: none;
    color: #f66;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px
}

.pagination > li:first-child > a, .pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px
}

.pagination > li:last-child > a, .pagination > li:last-child > span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px
}

.pagination > li > a:hover, .pagination > li > a:focus, .pagination > li > span:hover, .pagination > li > span:focus {
    color: #b93d30;
    background-color: #eee;
    border-color: #ddd
}

.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus, .pagination > .active > span, .pagination > .active > span:hover, .pagination > .active > span:focus {
    z-index: 2;
    color: #fff;
    background-color: #f66;
    border-color: #f66;
    cursor: default
}

.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus {
    color: #999;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed
}

.pagination-lg > li > a, .pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 19px
}

.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px
}

.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px
}

.pagination-sm > li > a, .pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px
}

.pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px
}

.pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px
}

.pager {
    padding-left: 0;
    margin: 21px 0;
    list-style: none;
    text-align: center
}

.pager:before, .pager:after {
    content: " ";
    display: table
}

.pager:after {
    clear: both
}

.pager li {
    display: inline
}

.pager li > a, .pager li > span {
    display: inline-block;
    padding: 5px 14px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px
}

.pager li > a:hover, .pager li > a:focus {
    text-decoration: none;
    background-color: #eee
}

.pager .next > a, .pager .next > span {
    float: right
}

.pager .previous > a, .pager .previous > span {
    float: left
}

.pager .disabled > a, .pager .disabled > a:hover, .pager .disabled > a:focus, .pager .disabled > span {
    color: #999;
    background-color: #fff;
    cursor: not-allowed
}

.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em
}

.label:empty {
    display: none
}

.btn .label {
    position: relative;
    top: -1px
}

a.label:hover, a.label:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}

.label-default {
    background-color: #999
}

.label-default[href]:hover, .label-default[href]:focus {
    background-color: gray
}

.label-primary {
    background-color: #f66
}

.label-primary[href]:hover, .label-primary[href]:focus {
    background-color: #f33
}

.label-success {
    background-color: #5cb85c
}

.label-success[href]:hover, .label-success[href]:focus {
    background-color: #449d44
}

.label-info {
    background-color: #5bc0de
}

.label-info[href]:hover, .label-info[href]:focus {
    background-color: #31b0d5
}

.label-warning {
    background-color: #f0ad4e
}

.label-warning[href]:hover, .label-warning[href]:focus {
    background-color: #ec971f
}

.label-danger {
    background-color: #d9534f
}

.label-danger[href]:hover, .label-danger[href]:focus {
    background-color: #c9302c
}

.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    vertical-align: baseline;
    white-space: nowrap;
    text-align: center;
    background-color: #999;
    border-radius: 10px
}

.badge:empty {
    display: none
}

.btn .badge {
    position: relative;
    top: -1px
}

.btn-xs .badge, .btn-group-xs > .btn .badge {
    top: 0;
    padding: 1px 5px
}

a.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
    color: #f66;
    background-color: #fff
}

.nav-pills > li > a > .badge {
    margin-left: 3px
}

a.badge:hover, a.badge:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}

.jumbotron {
    padding: 30px;
    margin-bottom: 30px;
    color: inherit;
    background-color: #eee
}

.jumbotron h1, .jumbotron .h1 {
    color: inherit
}

.jumbotron p {
    margin-bottom: 15px;
    font-size: 23px;
    font-weight: 200
}

.jumbotron > hr {
    border-top-color: #d5d5d5
}

.container .jumbotron {
    border-radius: 6px
}

.jumbotron .container {
    max-width: 100%
}

@media screen and (min-width: 768px) {
    .jumbotron {
        padding-top: 48px;
        padding-bottom: 48px
    }

    .container .jumbotron {
        padding-left: 60px;
        padding-right: 60px
    }

    .jumbotron h1, .jumbotron .h1 {
        font-size: 67.5px
    }
}

.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 21px;
    line-height: 1.42857;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

.thumbnail > img, .thumbnail a > img {
    display: block;
    width: 100% \9;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto
}

.thumbnail .caption {
    padding: 9px;
    color: #000
}

a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active {
    border-color: #f66
}

.alert {
    padding: 15px;
    margin-bottom: 21px;
    border: 1px solid transparent;
    border-radius: 4px
}

.alert h4 {
    margin-top: 0;
    color: inherit
}

.alert .alert-link {
    font-weight: 700
}

.alert > p, .alert > ul {
    margin-bottom: 0
}

.alert > p + p {
    margin-top: 5px
}

.alert-dismissable, .alert-dismissible {
    padding-right: 35px
}

.alert-dismissable .close, .alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit
}

.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d
}

.alert-success hr {
    border-top-color: #c9e2b3
}

.alert-success .alert-link {
    color: #2b542c
}

.alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f
}

.alert-info hr {
    border-top-color: #a6e1ec
}

.alert-info .alert-link {
    color: #245269
}

.alert-warning {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #8a6d3b
}

.alert-warning hr {
    border-top-color: #f7e1b5
}

.alert-warning .alert-link {
    color: #66512c
}

.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442
}

.alert-danger hr {
    border-top-color: #e4b9c0
}

.alert-danger .alert-link {
    color: #843534
}

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0
    }
    to {
        background-position: 0 0
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0
    }
    to {
        background-position: 0 0
    }
}

.progress {
    overflow: hidden;
    height: 21px;
    margin-bottom: 21px;
    background-color: #f5f5f5;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1)
}

.progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 21px;
    color: #fff;
    text-align: center;
    background-color: #f66;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease
}

.progress-striped .progress-bar, .progress-bar-striped {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
    background-size: 40px 40px
}

.progress.active .progress-bar, .progress-bar.active {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    -o-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite
}

.progress-bar[aria-valuenow="1"], .progress-bar[aria-valuenow="2"] {
    min-width: 30px
}

.progress-bar[aria-valuenow="0"] {
    color: #999;
    min-width: 30px;
    background-color: transparent;
    background-image: none;
    box-shadow: none
}

.progress-bar-success {
    background-color: #5cb85c
}

.progress-striped .progress-bar-success {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0))
}

.progress-bar-info {
    background-color: #5bc0de
}

.progress-striped .progress-bar-info {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0))
}

.progress-bar-warning {
    background-color: #f0ad4e
}

.progress-striped .progress-bar-warning {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0))
}

.progress-bar-danger {
    background-color: #d9534f
}

.progress-striped .progress-bar-danger {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0))
}

.media, .media-body {
    overflow: hidden;
    zoom: 1
}

.media, .media .media {
    margin-top: 15px
}

.media:first-child {
    margin-top: 0
}

.media-object {
    display: block
}

.media-heading {
    margin: 0 0 5px
}

.media > .pull-left {
    margin-right: 10px
}

.media > .pull-right {
    margin-left: 10px
}

.media-list {
    padding-left: 0;
    list-style: none
}

.list-group {
    margin-bottom: 20px;
    padding-left: 0
}

.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd
}

.list-group-item:first-child {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px
}

.list-group-item > .badge {
    float: right
}

.list-group-item > .badge + .badge {
    margin-right: 5px
}

a.list-group-item {
    color: #555
}

a.list-group-item .list-group-item-heading {
    color: #333
}

a.list-group-item:hover, a.list-group-item:focus {
    text-decoration: none;
    color: #555;
    background-color: #f5f5f5
}

.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
    background-color: #eee;
    color: #999
}

.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
    color: inherit
}

.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
    color: #999
}

.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
    z-index: 2;
    color: #fff;
    background-color: #f66;
    border-color: #f66
}

.list-group-item.active .list-group-item-heading, .list-group-item.active .list-group-item-heading > small, .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading > small, .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading > small, .list-group-item.active:focus .list-group-item-heading > .small {
    color: inherit
}

.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
    color: #fff
}

.list-group-item-success {
    color: #3c763d;
    background-color: #dff0d8
}

a.list-group-item-success {
    color: #3c763d
}

a.list-group-item-success .list-group-item-heading {
    color: inherit
}

a.list-group-item-success:hover, a.list-group-item-success:focus {
    color: #3c763d;
    background-color: #d0e9c6
}

a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus {
    color: #fff;
    background-color: #3c763d;
    border-color: #3c763d
}

.list-group-item-info {
    color: #31708f;
    background-color: #d9edf7
}

a.list-group-item-info {
    color: #31708f
}

a.list-group-item-info .list-group-item-heading {
    color: inherit
}

a.list-group-item-info:hover, a.list-group-item-info:focus {
    color: #31708f;
    background-color: #c4e3f3
}

a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus {
    color: #fff;
    background-color: #31708f;
    border-color: #31708f
}

.list-group-item-warning {
    color: #8a6d3b;
    background-color: #fcf8e3
}

a.list-group-item-warning {
    color: #8a6d3b
}

a.list-group-item-warning .list-group-item-heading {
    color: inherit
}

a.list-group-item-warning:hover, a.list-group-item-warning:focus {
    color: #8a6d3b;
    background-color: #faf2cc
}

a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus {
    color: #fff;
    background-color: #8a6d3b;
    border-color: #8a6d3b
}

.list-group-item-danger {
    color: #a94442;
    background-color: #f2dede
}

a.list-group-item-danger {
    color: #a94442
}

a.list-group-item-danger .list-group-item-heading {
    color: inherit
}

a.list-group-item-danger:hover, a.list-group-item-danger:focus {
    color: #a94442;
    background-color: #ebcccc
}

a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus {
    color: #fff;
    background-color: #a94442;
    border-color: #a94442
}

.list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px
}

.list-group-item-text {
    margin-bottom: 0;
    line-height: 1.3
}

.panel {
    margin-bottom: 21px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05)
}

.panel-body {
    padding: 15px
}

.panel-body:before, .panel-body:after {
    content: " ";
    display: table
}

.panel-body:after {
    clear: both
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px
}

.panel-heading > .dropdown .dropdown-toggle {
    color: inherit
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 17px;
    color: inherit
}

.panel-title > a {
    color: inherit
}

.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel > .list-group {
    margin-bottom: 0
}

.panel > .list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0
}

.panel > .list-group:first-child .list-group-item:first-child {
    border-top: 0;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px
}

.panel > .list-group:last-child .list-group-item:last-child {
    border-bottom: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel-heading + .list-group .list-group-item:first-child {
    border-top-width: 0
}

.list-group + .panel-footer {
    border-top-width: 0
}

.panel > .table, .panel > .table-responsive > .table, .panel > .panel-collapse > .table {
    margin-bottom: 0
}

.panel > .table:first-child, .panel > .table-responsive:first-child > .table:first-child {
    border-top-right-radius: 3px;
    border-top-left-radius: 3px
}

.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
    border-top-left-radius: 3px
}

.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
    border-top-right-radius: 3px
}

.panel > .table:last-child, .panel > .table-responsive:last-child > .table:last-child {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
    border-bottom-left-radius: 3px
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
    border-bottom-right-radius: 3px
}

.panel > .panel-body + .table, .panel > .panel-body + .table-responsive {
    border-top: 1px solid #ddd
}

.panel > .table > tbody:first-child > tr:first-child th, .panel > .table > tbody:first-child > tr:first-child td {
    border-top: 0
}

.panel > .table-bordered, .panel > .table-responsive > .table-bordered {
    border: 0
}

.panel > .table-bordered > thead > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0
}

.panel > .table-bordered > thead > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0
}

.panel > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
    border-bottom: 0
}

.panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: 0
}

.panel > .table-responsive {
    border: 0;
    margin-bottom: 0
}

.panel-group {
    margin-bottom: 21px
}

.panel-group .panel {
    margin-bottom: 0;
    border-radius: 4px
}

.panel-group .panel + .panel {
    margin-top: 5px
}

.panel-group .panel-heading {
    border-bottom: 0
}

.panel-group .panel-heading + .panel-collapse > .panel-body {
    border-top: 1px solid #ddd
}

.panel-group .panel-footer {
    border-top: 0
}

.panel-group .panel-footer + .panel-collapse .panel-body {
    border-bottom: 1px solid #ddd
}

.panel-default {
    border-color: #ddd
}

.panel-default > .panel-heading {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #ddd
}

.panel-default > .panel-heading .badge {
    color: #f5f5f5;
    background-color: #333
}

.panel-default > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ddd
}

.panel-primary {
    border-color: #f66
}

.panel-primary > .panel-heading {
    color: #fff;
    background-color: #f66;
    border-color: #f66
}

.panel-primary > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #f66
}

.panel-primary > .panel-heading .badge {
    color: #f66;
    background-color: #fff
}

.panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #f66
}

.panel-success {
    border-color: #d6e9c6
}

.panel-success > .panel-heading {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6
}

.panel-success > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #d6e9c6
}

.panel-success > .panel-heading .badge {
    color: #dff0d8;
    background-color: #3c763d
}

.panel-success > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #d6e9c6
}

.panel-info {
    border-color: #bce8f1
}

.panel-info > .panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1
}

.panel-info > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #bce8f1
}

.panel-info > .panel-heading .badge {
    color: #d9edf7;
    background-color: #31708f
}

.panel-info > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #bce8f1
}

.panel-warning {
    border-color: #faebcc
}

.panel-warning > .panel-heading {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc
}

.panel-warning > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #faebcc
}

.panel-warning > .panel-heading .badge {
    color: #fcf8e3;
    background-color: #8a6d3b
}

.panel-warning > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #faebcc
}

.panel-danger {
    border-color: #ebccd1
}

.panel-danger > .panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1
}

.panel-danger > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #ebccd1
}

.panel-danger > .panel-heading .badge {
    color: #f2dede;
    background-color: #a94442
}

.panel-danger > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ebccd1
}

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden
}

.embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0
}

.embed-responsive.embed-responsive-16by9 {
    padding-bottom: 56.25%
}

.embed-responsive.embed-responsive-4by3 {
    padding-bottom: 75%
}

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05)
}

.well blockquote {
    border-color: #ddd;
    border-color: rgba(0, 0, 0, .15)
}

.well-lg {
    padding: 24px;
    border-radius: 6px
}

.well-sm {
    padding: 9px;
    border-radius: 3px
}

.close {
    float: right;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .2;
    filter: alpha(opacity=20)
}

.close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .5;
    filter: alpha(opacity=50)
}

button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none
}

.modal-open {
    overflow: hidden
}

.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0
}

.modal.fade .modal-dialog {
    -webkit-transform: translate3d(0, -25%, 0);
    transform: translate3d(0, -25%, 0);
    -webkit-transition: -webkit-transform .3s ease-out;
    -moz-transition: -moz-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
    transition: transform .3s ease-out
}

.modal.in .modal-dialog {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px
}

.modal-content {
    position: relative;
    background-color: #fff;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: none;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    background-clip: padding-box;
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000
}

.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0)
}

.modal-backdrop.in {
    opacity: .8;
    filter: alpha(opacity=80)
}

.modal-header {
    padding: 15px;
    min-height: 16.42857px
}

.modal-header .icon-back-mobile {
    display: none
}

.modal-header .close {
    margin-top: -8px;
    line-height: .5em
}

.modal-title {
    margin: 0;
    line-height: 1.42857
}

.modal-body {
    position: relative;
    padding: 0 70px;
    max-height: 500px;
    overflow: auto
}

.modal-footer {
    padding: 30px;
    text-align: center
}

.modal-footer:before, .modal-footer:after {
    content: " ";
    display: table
}

.modal-footer:after {
    clear: both
}

.modal-footer .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0
}

.modal-footer .btn-group .btn + .btn {
    margin-left: -1px
}

.modal-footer .btn-block + .btn-block {
    margin-left: 0
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

@media (min-width: 768px) {
    .modal-dialog {
        width: auto;
        display: inline-block;
        margin: 30px auto
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, .5)
    }

    .modal-sm {
        width: 300px
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 900px
    }
}

@media (max-width: 767px) {
    .modal-dialog {
        margin: 10px;
        height: 100%;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0
    }

    .modal-content {
        height: 100%;
        overflow: auto
    }

    .modal-body {
        padding: 0 10px
    }

    .modal-body img {
        max-width: 100%;
        height: auto
    }

    .modal-footer {
        padding: 20px
    }
}

.modal-fullScreen {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0
}

.modal-fullScreen .modal-content {
    display: table;
    height: 100%;
    width: 100%;
    background: transparent;
    box-shadow: none;
    border: 0
}

.modal-fullScreen .modal-body, .modal-fullScreen .modal-header, .modal-fullScreen .modal-footer {
    padding: 0 !important;
    text-align: center
}

.modal-fullScreen .modal-body {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle
}

.modal-fullScreen .modal-body img {
    margin: 0 auto !important;
    max-width: 100vw;
    height: auto;
    width: auto;
    max-height: 90vh
}

.modal-fullScreen .close {
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 30px;
    position: fixed;
    z-index: 10001;
    font-weight: 200;
    opacity: 1
}

@media (max-width: 767px) {
    .modal-fullScreen .close {
        right: 10px;
        font-size: 50px
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    visibility: visible;
    font-size: 12px;
    line-height: 1.4;
    opacity: 0;
    filter: alpha(opacity=0)
}

.tooltip.in {
    opacity: .9;
    filter: alpha(opacity=90)
}

.tooltip.top {
    margin-top: -3px;
    padding: 5px 0
}

.tooltip.right {
    margin-left: 3px;
    padding: 0 5px
}

.tooltip.bottom {
    margin-top: 3px;
    padding: 5px 0
}

.tooltip.left {
    margin-left: -3px;
    padding: 0 5px
}

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: #000;
    border-radius: 4px
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.top-left .tooltip-arrow {
    bottom: 0;
    left: 5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    right: 5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    left: 5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    right: 5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    max-width: 276px;
    padding: 1px;
    text-align: left;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    white-space: normal
}

.popover.top {
    margin-top: -10px
}

.popover.right {
    margin-left: 10px
}

.popover.bottom {
    margin-top: 10px
}

.popover.left {
    margin-left: -10px
}

.popover-title {
    margin: 0;
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0
}

.popover-content {
    padding: 9px 14px
}

.popover > .arrow, .popover > .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.popover > .arrow {
    border-width: 11px
}

.popover > .arrow:after {
    border-width: 10px;
    content: ""
}

.popover.top > .arrow {
    left: 50%;
    margin-left: -11px;
    border-bottom-width: 0;
    border-top-color: #999;
    border-top-color: rgba(0, 0, 0, .25);
    bottom: -11px
}

.popover.top > .arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: #fff
}

.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, .25)
}

.popover.right > .arrow:after {
    content: " ";
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: #fff
}

.popover.bottom > .arrow {
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999;
    border-bottom-color: rgba(0, 0, 0, .25);
    top: -11px
}

.popover.bottom > .arrow:after {
    content: " ";
    top: 1px;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: #fff
}

.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, .25)
}

.popover.left > .arrow:after {
    content: " ";
    right: 1px;
    border-right-width: 0;
    border-left-color: #fff;
    bottom: -10px
}

.carousel {
    position: relative
}

.carousel-inner {
    position: relative;
    overflow: hidden;
    width: 100%
}

.carousel-inner > .item {
    display: none;
    position: relative;
    -webkit-transition: .6s ease-in-out left;
    -o-transition: .6s ease-in-out left;
    transition: .6s ease-in-out left
}

.carousel-inner > .item > img, .carousel-inner > .item > a > img {
    display: block;
    width: 100% \9;
    max-width: 100%;
    height: auto;
    line-height: 1
}

.carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev {
    display: block
}

.carousel-inner > .active {
    left: 0
}

.carousel-inner > .next, .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%
}

.carousel-inner > .next {
    left: 100%
}

.carousel-inner > .prev {
    left: -100%
}

.carousel-inner > .next.left, .carousel-inner > .prev.right {
    left: 0
}

.carousel-inner > .active.left {
    left: -100%
}

.carousel-inner > .active.right {
    left: 100%
}

.carousel-control {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 15%;
    opacity: .5;
    filter: alpha(opacity=50);
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6)
}

.carousel-control.left {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)
}

.carousel-control.right {
    left: auto;
    right: 0;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)
}

.carousel-control:hover, .carousel-control:focus {
    outline: 0;
    color: #fff;
    text-decoration: none;
    opacity: .9;
    filter: alpha(opacity=90)
}

.carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block
}

.carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px
}

.carousel-control .icon-next, .carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px
}

.carousel-control .icon-prev, .carousel-control .icon-next {
    width: 20px;
    height: 20px;
    margin-top: -10px;
    font-family: serif
}

.carousel-control .icon-prev:before {
    content: '\2039'
}

.carousel-control .icon-next:before {
    content: '\203a'
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    margin-left: -30%;
    padding-left: 0;
    list-style: none;
    text-align: center
}

.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #fff;
    border-radius: 10px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: transparent
}

.carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #fff
}

.carousel-caption {
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 20px;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6)
}

.carousel-caption .btn {
    text-shadow: none
}

@media screen and (min-width: 768px) {
    .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next {
        width: 30px;
        height: 30px;
        margin-top: -15px;
        font-size: 30px
    }

    .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
        margin-left: -15px
    }

    .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
        margin-right: -15px
    }

    .carousel-caption {
        left: 20%;
        right: 20%;
        padding-bottom: 30px
    }

    .carousel-indicators {
        bottom: 20px
    }
}

.clearfix:before, .clearfix:after {
    content: " ";
    display: table
}

.clearfix:after {
    clear: both
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.pull-right {
    float: right !important
}

.pull-left {
    float: left !important
}

.hide {
    display: none !important
}

.show {
    display: block !important
}

.invisible {
    visibility: hidden
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0
}

.hidden {
    display: none !important;
    visibility: hidden !important
}

.affix {
    position: fixed;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

@-ms-viewport {
    width: device-width
}

.visible-xs, .visible-sm, .visible-md, .visible-lg {
    display: none !important
}

.visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block {
    display: none !important
}

@media (max-width: 767px) {
    .visible-xs {
        display: block !important
    }

    table.visible-xs {
        display: table
    }

    tr.visible-xs {
        display: table-row !important
    }

    th.visible-xs, td.visible-xs {
        display: table-cell !important
    }
}

@media (max-width: 767px) {
    .visible-xs-block {
        display: block !important
    }
}

@media (max-width: 767px) {
    .visible-xs-inline {
        display: inline !important
    }
}

@media (max-width: 767px) {
    .visible-xs-inline-block {
        display: inline-block !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm {
        display: block !important
    }

    table.visible-sm {
        display: table
    }

    tr.visible-sm {
        display: table-row !important
    }

    th.visible-sm, td.visible-sm {
        display: table-cell !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-block {
        display: block !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline {
        display: inline !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline-block {
        display: inline-block !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md {
        display: block !important
    }

    table.visible-md {
        display: table
    }

    tr.visible-md {
        display: table-row !important
    }

    th.visible-md, td.visible-md {
        display: table-cell !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-block {
        display: block !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline {
        display: inline !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline-block {
        display: inline-block !important
    }
}

@media (min-width: 1200px) {
    .visible-lg {
        display: block !important
    }

    table.visible-lg {
        display: table
    }

    tr.visible-lg {
        display: table-row !important
    }

    th.visible-lg, td.visible-lg {
        display: table-cell !important
    }
}

@media (min-width: 1200px) {
    .visible-lg-block {
        display: block !important
    }
}

@media (min-width: 1200px) {
    .visible-lg-inline {
        display: inline !important
    }
}

@media (min-width: 1200px) {
    .visible-lg-inline-block {
        display: inline-block !important
    }
}

@media (max-width: 767px) {
    .hidden-xs {
        display: none !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important
    }
}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important
    }
}

.visible-print {
    display: none !important
}

@media print {
    .visible-print {
        display: block !important
    }

    table.visible-print {
        display: table
    }

    tr.visible-print {
        display: table-row !important
    }

    th.visible-print, td.visible-print {
        display: table-cell !important
    }
}

.visible-print-block {
    display: none !important
}

@media print {
    .visible-print-block {
        display: block !important
    }
}

.visible-print-inline {
    display: none !important
}

@media print {
    .visible-print-inline {
        display: inline !important
    }
}

.visible-print-inline-block {
    display: none !important
}

@media print {
    .visible-print-inline-block {
        display: inline-block !important
    }
}

@media print {
    .hidden-print {
        display: none !important
    }
}

.editing {
    display: none
}

.editing-mode {
    background: #000
}

.editing-mode .l-content-top, .editing-mode .block-row {
    overflow: hidden
}

.editing-mode .btn-help {
    position: fixed;
    right: -32px;
    top: 40%;
    display: block;
    background: #000;
    color: #fff;
    font-size: 120%;
    font-weight: 600;
    padding: 10px 0 10px 10px;
    border-radius: 5px 5px 0 0;
    transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    z-index: 1001;
    min-width: 110px;
    text-align: center;
    text-decoration: none
}

.editing-mode .btn-help:hover {
    background: #404040
}

.editing-mode .btn-help span {
    font-size: 20px;
    margin-left: 5px
}

.editing-mode .editing-panel {
    display: none
}

.editing-mode .block-row {
    padding: 10px 0
}

.editing-mode .zone-book .container, .editing-mode .zone-summary .container, .editing-mode .zone-personages .container, .editing-mode .zone-press .container, .editing-mode .zone-iframe .container, .editing-mode .zone-extract .container, .editing-mode .zone-gallery .container, .editing-mode .zone-pdf .container, .editing-mode .zone-review .container, .editing-mode .zone-questionnaire .container, .editing-mode .zone-links .container, .editing-mode .zone-quote .container, .editing-mode .zone-biography .container {

    position: relative
}

.editing-mode .zone-book .container .btn-param, .editing-mode .zone-book .container .btn-edit, .editing-mode .zone-summary .container .btn-param, .editing-mode .zone-summary .container .btn-edit, .editing-mode .zone-personages .container .btn-param, .editing-mode .zone-personages .container .btn-edit, .editing-mode .zone-press .container .btn-param, .editing-mode .zone-press .container .btn-edit, .editing-mode .zone-iframe .container .btn-param, .editing-mode .zone-iframe .container .btn-edit, .editing-mode .zone-extract .container .btn-param, .editing-mode .zone-extract .container .btn-edit, .editing-mode .zone-gallery .container .btn-param, .editing-mode .zone-gallery .container .btn-edit, .editing-mode .zone-pdf .container .btn-param, .editing-mode .zone-pdf .container .btn-edit, .editing-mode .zone-review .container .btn-edit, .editing-mode .zone-questionnaire .container .btn-param, .editing-mode .zone-questionnaire .container .btn-edit, .editing-mode .zone-links .container .btn-param, .editing-mode .zone-links .container .btn-edit, .editing-mode .zone-quote .container .btn-param, .editing-mode .zone-quote .container .btn-edit, .editing-mode .zone-biography .container .btn-param, .editing-mode .zone-biography .container .btn-edit {
    display: block;
    position: absolute;
    top: 5px;
    right: 5px;
    background: #1574de;
    color: #fff;
    padding: 3px 10px;
    height: 33px;
    border-radius: 3px;
    cursor: pointer;
    text-align: center
}

.editing-mode .zone-book .container .btn-param:hover, .editing-mode .zone-book .container .btn-edit:hover, .editing-mode .zone-summary .container .btn-param:hover, .editing-mode .zone-summary .container .btn-edit:hover, .editing-mode .zone-personages .container .btn-param:hover, .editing-mode .zone-personages .container .btn-edit:hover, .editing-mode .zone-press .container .btn-param:hover, .editing-mode .zone-press .container .btn-edit:hover, .editing-mode .zone-iframe .container .btn-param:hover, .editing-mode .zone-iframe .container .btn-edit:hover, .editing-mode .zone-extract .container .btn-param:hover, .editing-mode .zone-extract .container .btn-edit:hover, .editing-mode .zone-gallery .container .btn-param:hover, .editing-mode .zone-gallery .container .btn-edit:hover, .editing-mode .zone-pdf .container .btn-param:hover, .editing-mode .zone-pdf .container .btn-edit:hover, .editing-mode .zone-review .container .btn-edit:hover, .editing-mode .zone-questionnaire .container .btn-param:hover, .editing-mode .zone-questionnaire .container .btn-edit:hover, .editing-mode .zone-links .container .btn-param:hover, .editing-mode .zone-links .container .btn-edit:hover, .editing-mode .zone-quote .container .btn-param:hover, .editing-mode .zone-quote .container .btn-edit:hover, .editing-mode .zone-biography .container .btn-param:hover, .editing-mode .zone-biography .container .btn-edit:hover {
    background: #105fb6;
    text-decoration: none
}

.editing-mode .btn-param span, .editing-mode .btn-edit span{
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.editing-mode .zone-book .container .btn-param, .editing-mode .zone-summary .container .btn-param, .editing-mode .zone-personages .container .btn-param, .editing-mode .zone-press .container .btn-param, .editing-mode .zone-iframe .container .btn-param, .editing-mode .zone-extract .container .btn-param, .editing-mode .zone-gallery .container .btn-param, .editing-mode .zone-pdf .container .btn-param, .editing-mode .zone-questionnaire .container .btn-param, .editing-mode .zone-links .container .btn-param, .editing-mode .zone-quote .container .btn-param, .editing-mode .zone-biography .container .btn-param {
    font-family: fontello;
    font-size: 18px
}

.editing-mode .zone-book .container .btn-edit, .editing-mode .zone-summary .container .btn-edit, .editing-mode .zone-personages .container .btn-edit, .editing-mode .zone-press .container .btn-edit, .editing-mode .zone-iframe .container .btn-edit, .editing-mode .zone-extract .container .btn-edit, .editing-mode .zone-gallery .container .btn-edit, .editing-mode .zone-pdf .container .btn-edit, .editing-mode .zone-review .container .btn-edit, .editing-mode .zone-questionnaire .container .btn-edit, .editing-mode .zone-links .container .btn-edit, .editing-mode .zone-quote .container .btn-edit, .editing-mode .zone-biography .container .btn-edit {
    font-family: fontello;
    font-size: 18px
}

.editing-mode .editing label {
    font-weight: 400
}

.editing-mode .editing input[type=text] {
    display: block;
    width: 100%
}

.editing-mode .editing textarea {
    display: block;
    width: 100%
}

.editing-mode .editing input[type=submit], .editing-mode .editing input[type=reset] {
    width: auto;
    border-radius: 2px;
    border: 0;
    padding: 5px 15px;
    text-transform: none;
    color: #fff;
    margin-right: 10px;
    min-width: 80px
}

.editing-mode .editing input[type=submit] {
    background-color: #39ca74
}

.editing-mode .editing input[type=submit]:hover {
    background-color: #30ad63
}

.editing-mode .editing input[type=reset] {
    background-color: #f66
}

.editing-mode .editing input[type=reset]:hover {
    background-color: #b93d30
}

.page-book.editing-mode .editing-panel, .page-author.editing-mode .editing-panel {
    display: block;
    float: left;
    width: 275px;
    padding: 65px 10px;
    color: #fff
}

.page-book.editing-mode .container__header-page, .page-author.editing-mode .container__header-page {
    margin-left: 250px;
    background: #fff;
    overflow: hidden
}

.page-book.editing-mode header .title-nav .is-sticky, .page-author.editing-mode header .title-nav .is-sticky {
    left: 250px
}

@media (max-width: 1469px) {
    .page-book.editing-mode .container, .page-author.editing-mode .container {
        width: auto;
        margin: 0 30px
    }

    .page-book.editing-mode .header-fixed .container, .page-author.editing-mode .header-fixed .container, .page-author.editing-mode footer .container, .page-book.editing-mode footer .container {
        width: 1200px;
        margin: 0 auto
    }
}

@media (max-width: 1024px) {
    .editing-panel {
        display: none !important
    }

    .container__header-page {
        margin: 0 !important
    }

    .editing-mode header .header-fixed, .editing-mode header .title-nav .is-sticky {
        left: 0
    }

    .page-book.editing-mode header .title-nav .is-sticky, .page-author.editing-mode header .title-nav .is-sticky {
        left: 0;
        width: 1200px
    }
}

.f-left {
    float: left
}

.f-right {
    float: right
}

.theme-turquoise input[type=submit] {
    background-color: #1abc9c
}


header .header-fixed {

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    color: black;
    z-index: 100;
    height: 46px;
    font-size: 93%;
    padding: 0
}

header .header-fixed .btn-link {
    background-color: #f66 !important
}

header .header-fixed .btn-link:hover {
    background-color: #b93d30 !important
}

header .logo {
    float: left;
    margin-top: 10px;
    width: 100px
}

header .logo img {
    width: 120%;
    height: auto
}

header .menu-mob-wrapper {
    margin-left: 150px;
    position: relative
}

header .links-promo {
    display: inline-block;
    margin-left: 30px;
    font-weight: 700
}

header .links-promo a {
    color: #ccc;
    margin-right: 25px
}

header .links-promo a:hover {
    color: #ccc
}

header .links-promo a + a {
    color: #fff
}

header .links-promo a + a:hover {
    color: #fff
}

header #toggle-nav, header .btn-menu-mob {
    display: none
}

header .btn-link {
    text-transform: none;
    width: auto;
    padding: 4px 10px;
    margin: 8px 25px
}

header .search {
    display: inline-block;
    color: #8e8e93;
    margin-top: 9px
}

header .search input[type=text] {
    padding: 4px 5px 4px 25px;
    width: 250px;
    background: #fff url(../bundles/blockbookstercore/assets/images/icons/icon-search.png) no-repeat 5px 50%;
    border: 0;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px
}

header .bar-right {
    float: right;
    position: absolute;
    top: 0;
    right: 0
}

header .lang {
    display: inline-block;
    margin: 0;
    padding: 0;
    vertical-align: top;
    width: 100px;
    text-align: left
}

header .lang li {
    height: 45px;
    padding: 12px 10px 12px 15px;
    background: transparent;
    display: none
}

header .lang li:first-child {
    display: block;
    position: relative
}

header .lang li:first-child:after {
    content: "\25BE";
    font-size: 15px;
    line-height: 15px;
    vertical-align: middle;
    display: inline-block;
    position: absolute;
    top: 14px;
    right: 5px
}

header .lang li a {
    color: #fff;
    text-decoration: none
}

header .lang li + li {
    border-top: 1px solid #000
}

header .lang li + li:hover {
    background: #2ecc71
}

header .lang li + li:hover a {
    color: #fff
}

header .lang:hover li {
    display: block;
    background: #2a2a2a
}

header .footer-links {
    display: none
}

header .link-upgrade {
    font-weight: 700;
    background: #2a2a2a;
    border-radius: 2px;
    padding: 2px 6px 2px 3px;
    color: #fff;
    display: inline-block;
    margin-top: 10px
}

header .link-upgrade:hover {
    text-decoration: none;
    background: #404040
}

header .link-upgrade .icon-star {
    color: #fc0
}

header .premium {
    display: none;
    text-transform: uppercase;
    font-size: 16px;
    margin: 10px 20px 0 0;
    font-weight: 300
}

header .menu-login {
    display: inline-block;
    margin: 0 0 0 30px;
    vertical-align: top
}

header .menu-login > li {
    display: inline-block;
    min-width: 215px;
    font-size: 15px;
    position: relative;
    height: 46px;
    vertical-align: top
}

header .menu-login > li:after {
    content: "\25BE";
    font-size: 15px;
    line-height: 15px;
    display: inline-block;
    position: absolute;
    top: 14px;
    right: 5px
}

header .menu-login > li li + li {
    margin-left: 10px
}

header .menu-login > li:hover {
    background-color: #2a2a2a
}

header .menu-login > li:hover ul {
    display: block
}

header .menu-login > li .num {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background-color: #ed1c24;
    margin-left: 10px;
    text-align: center;
    font-size: 92%
}

header .menu-login > li img {
    display: inline-block;
    margin-right: 5px
}

header .menu-login > li ul {
    display: none;
    position: absolute;
    top: 46px;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #fff;
    overflow: hidden
}

header .menu-login > li ul li {
    padding: 12px 10px;
    margin: 0;
    border-top: 1px solid #000
}

header .menu-login > li ul li .num {
    margin-right: -5px;
    margin-left: 0;
    float: right
}

header .menu-login > li ul li a {
    color: #fff
}

header .menu-login > li ul li a:hover {
    text-decoration: none
}

header .menu-login > li ul li a span {
    margin: 0 5px 0 0;
    width: 20px;
    text-align: center;
    display: inline-block
}

header .menu-login > li ul li a span:before {
    margin: 0;
    font-size: 15px
}

header .menu-login > li ul li:hover {
    background-color: #2ecc71
}

header .menu-login input[type=checkbox] {
    display: none
}

header .menu-login #toggle-menu-author:checked ~ label, header .menu-login #toggle-menu-services:checked ~ label {
    background-color: #2a2a2a
}

header .menu-login label {
    font-weight: 400;
    padding: 12px;
    display: block;
    margin: 0
}

header .menu-login label img {
    display: inline-block;
    margin-top: -5px;
    margin-left: -3px;
    vertical-align: top
}

header .header-img {
    position: relative
}

header .header-img .big-img {
    overflow: hidden
}

header .header-img .big-img img {
    min-height: 325px
}

header .header-img img {
    width: 100%;
    height: auto
}

header .title-nav-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff
}

header .title-nav {
    display: table;
    height: 100%;
    table-layout: fixed;
    width: 100%;
    margin: 0 auto
}

header .title-nav > div, header .title-nav > nav {
    display: table-row;
    height: 100%;
    text-align: center
}

header .title-nav nav {
    background: rgba(0, 0, 0, .85)
}

header .title-nav nav a {
    color: #fff
}

header .title-nav .title, header .title-nav .menu-wrapper {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    padding: 13px 0
}

header .title-nav ul {
    width: 1000px;
    margin: 0 auto
}

header .title-nav li {
    display: inline-block;
    padding: 2px 10px;
    margin: 0 10px
}

header .title-nav li a:hover {
    text-decoration: none
}

header .title-nav li:hover {
    background-color: #f66;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px
}

header .title-nav .active {
    background-color: #f66;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px
}

header .title-nav .title h1, header .title-nav .title p {
    font-weight: 300;
    width: 830px;
    margin: 0 auto 10px
}

header .title-nav .title p {
    font-size: 146%;
    margin-bottom: 0
}

header .title-nav .is-sticky {
    position: fixed;
    display: block;
    top: 45px;
    right: 0;
    left: 0;
    height: auto;
    z-index: 99
}

header .title-nav .is-sticky .menu-wrapper {
    display: block
}

.header-logout .link-upgrade, .header-logout .menu-login {
    display: none
}

.header-logout .btn-login, .header-logout .links-promo {
    display: inline-block
}

.header-login .link-upgrade {
    display: inline-block
}

.header-login .btn-login, .header-login .links-promo {
    display: none
}

.btn-go-to-top {
    position: fixed;
    bottom: 40px;
    right: 100px;
    height: 64px;
    width: 64px;
    background: url(../bundles/blockbookstercore/assets/images/btn-go-to-top.png) no-repeat 0 0;
    text-indent: 1000px;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: opacity 3s ease-in-out;
    transition: opacity 3s ease-in-out
}

.page-author header .title-author {
    display: table-row
}

.page-author header .title-author .info-author-wrapper {
    height: 100%;
    width: 1170px;
    margin: 0 auto
}

.page-author header .title-author .info-author {
    width: 370px;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
    display: table
}

.page-author header .title-author .info-author .inner {
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle;
    padding: 15px
}

.page-author header .title-author .info-author .inner > img {
    display: block;
    width: 110px;
    height: 110px;
    border-radius: 110px;
    margin: 0 auto 2%
}

.page-author header .title-author .info-author .btn-link {
    display: inline-block;
    text-transform: none;
    width: auto;
    min-width: 115px;
    font-size: 93%;
    margin: 7% 10px
}

.page-author header .title-author .info-author .name {
    font-size: 165%;
    margin-bottom: 2%
}

.page-author header .title-author .info-author .sharing-btns > * {
    display: inline-block !important;
    vertical-align: middle !important;
    margin: 0 7px
}

.page-author header nav {
    /*
    comment couzinier menu
     background: #f4f5f6 !important;

    */
    color: #585858;
}

.page-author header nav a {
    color: #585858
}

.page-author header nav li:hover a, .page-author header nav li:hover .icon-email {
    color: #fff
}

.page-author header .menu-author {
    display: block
}

.page-author header .menu-book {
    display: none
}

.page-author header .bg-book {
    display: none
}

.page-author header .bg-author {
    display: block
}

.page-author header .title-book {
    display: none
}

.page-author .is-sticky .btn-go-to-top {
    opacity: 1
}

.page-book header .menu-author, .page-gallery header .menu-author {
    display: none
}

.page-book header .menu-book, .page-gallery header .menu-book {
    display: block
}

.page-book header .title-book, .page-gallery header .title-book {
    display: table-row
}

.page-book header .title-author, .page-gallery header .title-author {
    display: none
}

.page-book header .bg-book, .page-gallery header .bg-book {
    display: block
}

.page-book header .bg-author, .page-gallery header .bg-author {
    display: none
}

.page-book .is-sticky .btn-go-to-top, .page-gallery .is-sticky .btn-go-to-top {
    opacity: 1
}

.scrollme {
    overflow: hidden
}

.page-gallery .btn-go-to-top {
    display: none
}

.page-gallery header nav {
    display: none !important
}

@media (max-width: 767px) {
    header .container-mob {
        width: 270px;
        position: fixed;
        top: 46px;
        bottom: 0;
        right: -270px;
        background-color: #333;
        -webkit-transition: right .5s ease-out;
        transition: right .5s ease-out;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    header .links-promo {
        display: block;
        margin: 0;
        font-weight: 300;
        font-size: 13px;
        width: 100%
    }

    header .links-promo a {
        color: #fff;
        display: block;
        padding: 10px 15px 10px 35px;
        margin: 0
    }

    header .links-promo a:hover {
        color: #fff
    }

    header .links-promo a + a {
        border-top: 1px solid #000
    }

    header .bar-right {
        float: none;
        position: static
    }

    header .btn-login {
        background: transparent;
        color: #fff;
        display: block;
        padding: 10px 15px 10px 35px;
        margin: 0;
        font-weight: 300;
        font-size: 13px;
        text-align: left;
        border-top: 1px solid #000;
        border-radius: 0;
        width: 100%
    }

    header .btn-login:hover {
        background: transparent;
        text-decoration: underline
    }

    header .lang {
        margin: 0;
        display: block;
        width: auto;
        text-align: left;
        background-color: #000
    }

    header .lang:hover li {
        background-color: #000
    }

    header .lang li {
        display: block;
        font-size: 13px;
        padding: 10px 15px 10px 41px;
        font-weight: 300;
        height: auto
    }

    header .lang li:first-child:after {
        right: auto;
        left: 15px;
        top: 10px
    }

    header .footer-links {
        display: block;
        padding: 12px 5px;
        font-size: 9px;
        text-align: center
    }

    header .footer-links a {
        color: #ccc;
        margin: 0 3px;
        display: inline-blck
    }

    header .menu-login {
        display: block;
        margin: 0
    }

    header .menu-login > li {
        display: block;
        width: auto;
        height: auto;
        font-size: 13px;
        background-color: #2a2a2a
    }

    header .menu-login > li:after {
        display: none
    }

    header .menu-login > li label {
        cursor: pointer
    }

    header .menu-login > li img {
        width: 18px;
        height: 18px;
        margin: 0 8px 0 0
    }

    header .menu-login > li .num {
        width: 16px;
        height: 16px
    }

    header .menu-login > li ul {
        display: block !important;
        position: static;
        background: #000;
        height: 1px;
        -webkit-transition: height .5s ease-out;
        transition: height .5s ease-out;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    header .menu-login > li ul li {
        padding-left: 20px
    }

    header .menu-login > li ul li a span {
        width: 40px;
        display: inline-block
    }

    header .menu-login > li ul li .num {
        float: none;
        margin-left: 10px
    }

    header .menu-login #toggle-menu-services ~ label {
        padding-left: 41px
    }

    header .menu-login #toggle-menu-author:checked ~ ul {
        height: 280px
    }

    header .menu-login #toggle-menu-services:checked ~ ul {
        height: 140px
    }

    header .menu-login #toggle-menu-author:checked ~ label, header .menu-login #toggle-menu-services:checked ~ label {
        background-color: #2a2a2a
    }

    header #toggle-nav {
        display: none
    }

    header .btn-menu-mob {
        float: right;
        display: block;
        font-size: 16px;
        padding: 2px 3px;
        margin-top: 5px
    }

    header #toggle-nav:checked ~ .container-mob {
        right: 0
    }

    header #toggle-nav:checked ~ label {
        background: #383838;
        border-radius: 2px
    }

    header .search {
        display: block;
        margin-top: 0
    }

    header .search input[type=text] {
        width: 100%;
        border: 0;
        border-radius: 0;
        background-color: #f4f4f4;
        background-position: 12px 50%;
        padding: 15px 15px 15px 38px;
        font-size: 115%
    }

    header .link-upgrade {
        margin: 0;
        padding: 12px;
        display: block;
        border-radius: 0;
        font-size: 100%;
        font-size: 13px;
        width: 100%
    }

    header .link-upgrade span {
        width: 28px;
        display: inline-block
    }

    header .premium {
        margin: 8px 20px 8px 41px;
        font-weight: 300
    }

    .page-book .header-img {
        display: none
    }

    .page-author header .header-img .js-menu-sticky {
        display: none
    }

    .page-author header .header-img .big-img img {
        min-height: 82px
    }

    .page-author header .header-img .title-nav-wrapper {
        position: static
    }

    .page-author header .header-img .title-author .info-author-wrapper {
        display: block;
        width: auto;
        color: #000;
        margin-bottom: 20px
    }

    .page-author header .header-img .title-author .info-author {
        display: block;
        width: auto;
        background: transparent
    }

    .page-author header .header-img .title-author .info-author .inner {
        display: block;
        width: auto
    }

    .page-author header .header-img .title-author .info-author .inner > img {
        margin-top: -45px
    }
}

@media (max-width: 1366px) {
    .page-author header .title-author .info-author .inner {
        padding: 3px
    }

    .page-author header .title-author .info-author .inner > img {
        width: 85px;
        height: 85px;
        border-radius: 85px;
        margin: 0 auto 1%
    }

    .page-author header .title-author .info-author .btn-link {
        font-size: 90%;
        margin: 5% 10px
    }

    .page-author header .title-author .info-author .name {
        margin-bottom: 0
    }

    .page-author header .title-author .info-author .sharing-btns {
        overflow: hidden
    }

    .page-author header .title-nav .menu-wrapper {
        padding: 12px
    }
}

.header-premium .premium {
    display: inline-block
}

.header-premium .link-upgrade {
    display: none
}

@media (max-width: 767px) {
    .page-author header .place {
        color: #999
    }
}

footer {
    background: #000;
    color: #fff;
    font-size: 80%;
    padding: 10px
}

footer li {
    display: inline-block;
    margin-left: 35px
}

footer ul {
    margin: 0
}

footer .bar-right {
    float: right
}

footer a {
    color: #fff
}

footer a:hover {
    color: #fff
}

@media (max-width: 767px) {
    footer {
        display: none
    }
}

.editing-panel {
    display: none
}

.editing-panel .desktop-mode {
    text-align: center;
    margin-bottom: 20px
}

.editing-panel .desktop-mode a {
    color: #fff;
    font-size: 80%;
    word-wrap: break-word;
    display: block;
    margin: 0 20px
}

.editing-panel .desktop-mode .link-preview {
    font-size: 85%;
    background-color: #2a2a2a;
    border-radius: 3px;
    padding: 6px 15px;
    display: inline-block;
    margin: 0 0 20px;
    text-decoration: none
}

.editing-panel .desktop-mode .link-preview:hover {
    background-color: #404040
}

.editing-panel .desktop-mode .link-preview span {
    margin-right: 10px;
    font-size: 18px;
    vertical-align: middle;
    padding-bottom: 2px
}

.editing-panel .rubric-params p {
    text-transform: uppercase;
    color: #6c6c6c;
    font-weight: 700;
    font-size: 85%
}

.editing-panel .rubric-params .list-rubrics {
    padding: 5px 0;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
    margin: 5px 0
}

.editing-panel .rubric-params .list-rubrics li {
    background: #2a2a2a;
    border-radius: 3px;
    padding: 13px 10px;
    font-size: 85%;
    margin: 10px 0
}

.editing-panel .rubric-params .list-rubrics li span {
    float: right;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 3px;
    background-color: #404040;
    padding: 0 6px;
    text-align: center;
    font-size: 14px;
    margin: -7px -3px 0 10px;
    cursor: pointer
}

.editing-panel .rubric-params .list-rubrics li span:hover {
    background-color: #667071
}

.editing-panel .rubric-params .list-rubrics li .flaticon-ssl:before {
    margin: 0;
    font-size: 15px
}

.editing-panel .rubric-params .list-rubrics li .icon-trash-1 {
    font-size: 18px;
    padding: 0 4px
}

.editing-panel .rubric-params .list-rubrics .add-new {
    background: #1574de
}

.editing-panel .rubric-params .list-rubrics .add-new span {
    background: transparent;
    border: 1px solid #fff;
    padding: 0 5px;
    line-height: 30px
}

.editing-panel .rubric-params .list-rubrics .add-new span:hover {
    background: #fff;
    color: #1574de
}

.editing-panel .theme-params {
    padding: 10px 0 40px;
    border-top: 1px solid #2a2a2a
}

.editing-panel .theme-params ul {
    background-color: #fff;
    border-radius: 3px;
    color: #000;
    margin: 0
}

.editing-panel .theme-params ul li {
    padding: 13px 10px;
    font-size: 107%;
    position: relative
}

.editing-panel .theme-params ul li span {
    width: 33px;
    height: 33px;
    border-radius: 3px;
    background-color: #dfdfdf;
    padding: 6px;
    text-align: center;
    font-size: 14px;
    margin: -5px -2px 0 10px;
    cursor: pointer
}

.editing-panel .theme-params ul li span:hover {
    background-color: #bdc3c7
}

.editing-panel .theme-params ul li input[type=checkbox] {
    display: none
}

.editing-panel .theme-params ul li .btn-tooltip {
    float: right
}

.editing-panel .theme-params ul li .btn-tooltip .icon-font {
    font-family: Times New Roman;
    font-size: 22px;
    width: 33px;
    display: block;
    padding: 1px
}

.editing-panel .theme-params ul li + li {
    border-top: 1px solid #dfdfdf
}

.editing-panel .theme-params .tooltip {
    opacity: 0;
    width: 208px;
    right: -235px;
    top: -33px;
    background: #fff;
    border-radius: 3px;
    padding: 5px;
    -webkit-transition: opacity .3s linear;
    transition: opacity .3s linear;
    min-height: 120px;
    box-shadow: 5px 2px 8px rgba(0, 0, 0, .5);
    display: none
}

.editing-panel .theme-params .tooltip:before {
    content: "\27A7";
    color: #fff;
    position: absolute;
    display: block;
    font-size: 30px;
    left: -12px;
    position: absolute;
    top: 39px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg)
}

.editing-panel .theme-params input[type=checkbox]:checked ~ .tooltip {
    opacity: 1;
    display: block
}

.editing-panel .theme-params input[type=checkbox]:checked ~ .btn-tooltip span {
    background-color: #787878;
    color: #fff
}

.editing-panel .theme-params .colors-list li {
    border: 1px solid #fff;
    padding: 3px;
    width: 46%;
    margin: 1% 2%;
    float: left;
    border-radius: 3px
}

.editing-panel .theme-params .colors-list li:hover, .editing-panel .theme-params .colors-list li.selected {
    border: 1px solid #787878
}

.editing-panel .theme-params .colors-list li span {
    display: block;
    width: auto;
    margin: 0;
    border-radius: 3px;
    height: 18px;
    text-indent: 200px;
    overflow: hidden
}

.editing-panel .theme-params .colors-list li .turquoise {
    background: #1abc9c
}

.editing-panel .theme-params .colors-list li .green-sea {
    background: #16a085
}

.editing-panel .theme-params .colors-list li .peter-river {
    background: #3498db
}

.editing-panel .theme-params .colors-list li .belize-hole {
    background: #2980b9
}

.editing-panel .theme-params .colors-list li .amethyst {
    background: #9b59b6
}

.editing-panel .theme-params .colors-list li .wet-asphalt {
    background: #34495e
}

.editing-panel .theme-params .colors-list li .orange {
    background: #f39c12
}

.editing-panel .theme-params .colors-list li .pumpkin {
    background: #d35400
}

.editing-panel .theme-params .colors-list li .alizarin {
    background: #f66
}

.editing-panel .theme-params .colors-list li .pomegranate {
    background: #c0392b
}

.editing-panel .theme-params .colors-list li .silver {
    background: #bdc3c7
}

.editing-panel .theme-params .colors-list li .asbestos {
    background: #7f8c8d
}

.editing-panel .book-params, .editing-panel .autor-params {
    padding: 40px 0
}

.editing-panel .book-params ul, .editing-panel .autor-params ul {
    background-color: #fff;
    border-radius: 3px;
    color: #000;
    margin: 0
}

.editing-panel .book-params ul li, .editing-panel .autor-params ul li {
    padding: 13px 9px;
    font-size: 107%;
    position: relative
}

.editing-panel .book-params ul li [class^=icon-], .editing-panel .autor-params ul li [class^=icon-] {
    width: 32px;
    height: 32px;
    border-radius: 3px;
    border: 1px solid #1574de;
    background-color: #1574de;
    color: #fff;
    padding: 0 3px;
    line-height: 30px;
    text-align: center;
    font-size: 18px;
    margin: -5px -2px 0 10px;
    cursor: pointer;
    float: right
}

.editing-panel .book-params ul li .icon-cog:hover, .editing-panel .book-params ul li .editing-mode .zone-book .container .btn-param:hover, .editing-mode .zone-book .container .editing-panel .book-params ul li .btn-param:hover, .editing-panel .book-params ul li .editing-mode .zone-summary .container .btn-param:hover, .editing-mode .zone-summary .container .editing-panel .book-params ul li .btn-param:hover, .editing-panel .book-params ul li .editing-mode .zone-personages .container .btn-param:hover, .editing-mode .zone-personages .container .editing-panel .book-params ul li .btn-param:hover, .editing-panel .book-params ul li .editing-mode .zone-press .container .btn-param:hover, .editing-mode .zone-press .container .editing-panel .book-params ul li .btn-param:hover, .editing-panel .book-params ul li .editing-mode .zone-iframe .container .btn-param:hover, .editing-mode .zone-iframe .container .editing-panel .book-params ul li .btn-param:hover, .editing-panel .book-params ul li .editing-mode .zone-extract .container .btn-param:hover, .editing-mode .zone-extract .container .editing-panel .book-params ul li .btn-param:hover, .editing-panel .book-params ul li .editing-mode .zone-gallery .container .btn-param:hover, .editing-mode .zone-gallery .container .editing-panel .book-params ul li .btn-param:hover, .editing-panel .book-params ul li .editing-mode .zone-pdf .container .btn-param:hover, .editing-mode .zone-pdf .container .editing-panel .book-params ul li .btn-param:hover, .editing-panel .book-params ul li .editing-mode .zone-questionnaire .container .btn-param:hover, .editing-mode .zone-questionnaire .container .editing-panel .book-params ul li .btn-param:hover, .editing-panel .book-params ul li .editing-mode .zone-links .container .btn-param:hover, .editing-mode .zone-links .container .editing-panel .book-params ul li .btn-param:hover, .editing-panel .book-params ul li .editing-mode .zone-quote .container .btn-param:hover, .editing-mode .zone-quote .container .editing-panel .book-params ul li .btn-param:hover, .editing-panel .book-params ul li .editing-mode .zone-biography .container .btn-param:hover, .editing-mode .zone-biography .container .editing-panel .book-params ul li .btn-param:hover, .editing-panel .autor-params ul li .icon-cog:hover, .editing-panel .autor-params ul li .editing-mode .zone-book .container .btn-param:hover, .editing-mode .zone-book .container .editing-panel .autor-params ul li .btn-param:hover, .editing-panel .autor-params ul li .editing-mode .zone-summary .container .btn-param:hover, .editing-mode .zone-summary .container .editing-panel .autor-params ul li .btn-param:hover, .editing-panel .autor-params ul li .editing-mode .zone-personages .container .btn-param:hover, .editing-mode .zone-personages .container .editing-panel .autor-params ul li .btn-param:hover, .editing-panel .autor-params ul li .editing-mode .zone-press .container .btn-param:hover, .editing-mode .zone-press .container .editing-panel .autor-params ul li .btn-param:hover, .editing-panel .autor-params ul li .editing-mode .zone-iframe .container .btn-param:hover, .editing-mode .zone-iframe .container .editing-panel .autor-params ul li .btn-param:hover, .editing-panel .autor-params ul li .editing-mode .zone-extract .container .btn-param:hover, .editing-mode .zone-extract .container .editing-panel .autor-params ul li .btn-param:hover, .editing-panel .autor-params ul li .editing-mode .zone-gallery .container .btn-param:hover, .editing-mode .zone-gallery .container .editing-panel .autor-params ul li .btn-param:hover, .editing-panel .autor-params ul li .editing-mode .zone-pdf .container .btn-param:hover, .editing-mode .zone-pdf .container .editing-panel .autor-params ul li .btn-param:hover, .editing-panel .autor-params ul li .editing-mode .zone-questionnaire .container .btn-param:hover, .editing-mode .zone-questionnaire .container .editing-panel .autor-params ul li .btn-param:hover, .editing-panel .autor-params ul li .editing-mode .zone-links .container .btn-param:hover, .editing-mode .zone-links .container .editing-panel .autor-params ul li .btn-param:hover, .editing-panel .autor-params ul li .editing-mode .zone-quote .container .btn-param:hover, .editing-mode .zone-quote .container .editing-panel .autor-params ul li .btn-param:hover, .editing-panel .autor-params ul li .editing-mode .zone-biography .container .btn-param:hover, .editing-mode .zone-biography .container .editing-panel .autor-params ul li .btn-param:hover {
    background: #fff;
    color: #1574de;
    border: 1px solid #1574de
}

.editing-panel .book-params ul li + li, .editing-panel .autor-params ul li + li {
    border-top: 1px solid #dfdfdf
}

.editing-panel .book-params input[type=checkbox], .editing-panel .autor-params input[type=checkbox] {
    display: none
}

.editing-panel .book-params .ckeckbox-on-off, .editing-panel .autor-params .ckeckbox-on-off {
    float: right;
    overflow: hidden;
    text-indent: 50px;
    display: block;
    width: 50px;
    height: 30px;
    background: url(../bundles/blockbookstercore/assets/images/checkbox.png) no-repeat 0 0
}

.editing-panel .book-params input[type=checkbox]:checked ~ .ckeckbox-on-off, .editing-panel .autor-params input[type=checkbox]:checked ~ .ckeckbox-on-off {
    background-position: 0 -30px
}

.page-book .book-params {
    display: block
}

.page-book .autor-params {
    display: none
}

.page-author .book-params {
    display: none
}

.page-author .autor-params {
    display: block
}

.block-row {
    color: #000;
    padding: 10px 0;
    background-size: cover
}

.block-row .container {
    padding-top: 20px;
    padding-bottom: 20px
}

.block-row h2 {
    color: #666;
    text-align: center;
    font-weight: 300;
    margin: 0 0 30px
}

.block-row .btn-link {
    margin: 45px auto 0;
    display: block
}

.block-row:nth-child(2n-1) {
    background: #fff
}

.block-row:nth-child(2n) {
    background-image: url(../bundles/blockbookstercore/assets/images/content/blur-3b.jpg);
    background-repeat: no-repeat;
    background-position: 0 0;
    color: #fff
}

.block-row:nth-child(2n) h2 {
    color: #fff
}

.block-row p a {
    font-weight: 600;
    text-decoration: underline;
    color: #f66
}

.block-row p a:hover {
    color: #b93d30
}

.block-row .modal-footer .btn-link {
    margin-top: 0
}

.block-row .btn-param, .block-row .btn-edit {
    display: none
}

.block-row .editing {
    display: none
}

.block-row .publishing {
    display: block
}

.image-zoom {
    position: relative
}

.image-zoom .zoom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 27px;
    height: 27px;
    background-color: #f66;
    cursor: pointer;
    font-size: 16px;
    line-height: 27px;
    font-family: Flaticon
}

.image-zoom .zoom:hover {
    background-color: #b93d30
}

.image-zoom .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, .3);
    display: none
}

.image-zoom:hover .overlay {
    display: block
}

.page-title {
    color: #666;
    text-align: center;
    font-weight: 300;
    margin: 0 0 40px
}

.page-title .btn-back-mob {
    display: none
}

.editing-mode .editing-step1 .editing {
    display: none
}

.editing-mode .editing-step1 .publishing {
    display: block
}

.editing-mode .editing-step1 .page-title {
    width: 370px;
    margin: 0 auto 30px;
    border: 1px dashed #ccc;
    position: relative;
    padding: 5px
}

.editing-mode .editing-step1 .page-title .editing-btns {
    top: 2px !important;
    right: 4px !important
}

.editing-mode .editing-step2 .page-title {
    width: 470px;
    margin: 0 auto 30px;
    border: 1px dashed #ccc;
    position: relative;
    padding: 20px 50px 10px
}

.editing-mode .editing-step2 .page-title .editing-btns {
    top: 2px !important;
    right: 4px !important
}

.editing-mode .editing-step2 .editing {
    display: block
}

.editing-mode .editing-step2 .publishing {
    display: none
}

.no-display-desktop {
    display: none !important
}

.btn-back-desktop {
    margin-bottom: 70px
}

.btn-back-desktop:before {
    font-family: fontello;
    top: 5px;
    right: 15px;
    font-size: 18px
}

@media (max-width: 767px) {
    .block-row {
        padding: 0;
        background: #f4f4f4 !important
    }

    .block-row:nth-child(2n) {
        background: #f4f4f4 !important;
        color: #000
    }

    .block-row:nth-child(2n) h2 {
        color: #000
    }

    .block-row .container {
        padding: 0 10px
    }

    .block-row h2 {
        margin: 5px 0 20px;
        color: #000
    }

    .block-row .btn-link {
        width: auto;
        margin: 35px 0 20px
    }

    .bg-white-mobile {
        background: #fff;
        padding: 10px;
        margin-bottom: 15px
    }

    .no-display-mob {
        display: none !important
    }

    .no-display-desktop {
        display: block !important
    }

    .page-title {
        color: #fff;
        background-color: #f66;
        margin: 0 -10px 10px;
        padding: 3px 30px 3px 0;
        font-size: 175%
    }

    .page-title .btn-back-mob {
        float: left;
        color: #fff;
        text-decoration: none;
        font-size: 18px;
        margin-top: 2px;
        display: block
    }

    .page-title .btn-back-mob:hover {
        color: #fff
    }

    .btn-back-desktop {
        display: none
    }
}

.page-author .block-row:nth-child(2n-1) {
    background: #fff;
}

.page-author .block-row:nth-child(2n) {
    background-image: url(../bundles/blockbookstercore/assets/images/textures/natural_paper.png);
    background-repeat: repeat;
    background-position: 0 0;
    background-size: auto;
    color: #000
}

.page-author .block-row:nth-child(2n) h2 {
    color: #000
}

.block-summary {
    padding: 0 30px
}

.block-summary h2 {
    color: #000
}

@media (max-width: 767px) {
    .block-summary {
        padding: 0
    }
}

.zone-personages {
    text-align: center
}

.block-personage {
    padding: 0 20px;
    display: block;
    text-decoration: none;
    cursor: pointer
}

.block-personage h3 {
    font-weight: 300;
    font-size: 1.2em;
    margin: 25px 0 10px
}

.block-personage .image, .block-personage .no-image {
    display: block;
    margin: 0 auto;
    width: 85px;
    height: 85px;
    -moz-border-radius: 85px;
    -webkit-border-radius: 85px;
    border-radius: 85px;
    position: relative
}

.block-personage .image img, .block-personage .no-image img {
    width: 85px;
    height: 85px;
    -moz-border-radius: 85px;
    -webkit-border-radius: 85px;
    border-radius: 85px
}

.block-personage .image .overlay, .block-personage .no-image .overlay {
    width: 85px;
    height: 85px;
    -moz-border-radius: 85px;
    -webkit-border-radius: 85px;
    border-radius: 85px;
    background: rgba(235, 235, 235, .8);
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    color: #6b6b6b
}

.block-personage .image .flaticon-view6:before, .block-personage .image .zone-questionnaire .btn-more-questionnaire:before, .zone-questionnaire .block-personage .image .btn-more-questionnaire:before, .block-personage .no-image .flaticon-view6:before, .block-personage .no-image .zone-questionnaire .btn-more-questionnaire:before, .zone-questionnaire .block-personage .no-image .btn-more-questionnaire:before {
    font-size: 42px;
    display: block;
    margin: 13px 0 0
}

.block-personage .image:hover .overlay {
    display: block
}

.block-personage .no-image {
    border: 3px solid #fff
}

.block-personage .no-image .flaticon-super:before, .block-personage .no-image .btn-more-personages:before {
    font-size: 42px;
    margin: 10px 0 0;
    display: block
}

.block-personage .no-image:hover {
    border-color: #f66;
    color: #f66
}

.modal .block-personage {
    color: #000;
    margin: 0 30px;
    width: 500px
}

.modal .block-personage h3 {
    margin-bottom: 35px;
    font-size: 160%
}

.modal .block-personage p {
    text-align: left
}

.modal .block-personage .no-image {
    border-color: #000
}

.modal .block-personage .no-image:hover {
    color: #000
}

.modal .block-personage .image .overlay {
    display: none
}

@media (max-width: 767px) {
    .zone-personages h2 {
        margin-bottom: 0
    }

    .zone-personages .block-personage {
        margin-top: 35px
    }

    .zone-personages .block-personage h3 {
        color: #999;
        font-size: 125%;
        margin: 15px 0 8px
    }

    .modal .block-personage {
        color: #000;
        margin: 0 10px;
        width: auto
    }

    .modal .block-personage h3 {
        margin-bottom: 40px;
        font-size: 160%
    }

    .modal .block-personage p {
        text-align: left
    }

    .modal .block-personage .no-image {
        display: none
    }

    .modal .block-personage .image .overlay {
        display: none
    }
}

.zone-press {
    text-align: center
}

.zone-press .block-press {
    padding-left: 15px
}

.zone-press .image {
    float: left;
    width: 170px;
    margin-top: 5px
}

.zone-press .image img {
    width: 100%;
    height: auto;
    display: block
}

.zone-press .description {
    margin-left: 55px;
    text-align: left
}

.zone-press .image + .description {
    margin-left: 195px
}

.zone-press h3 {
    font-size: 120%;
    line-height: 1.2em;
    font-weight: 700;
    font-family: Open Sans Condensed;
    margin: 0 0 5px
}

.zone-press p {
    font-style: italic;
    line-height: 1.2em
}

.zone-press p a {
    text-decoration: underline;
    font-weight: 600
}

.zone-press .info {
    font-weight: 300;
    /*color: #999;*/
    margin-bottom: 10px
}

.modal .block-press {
    padding-left: 0
}

.modal .block-press .description {
    width: 630px;
    text-align: center;
    margin: 0 0 40px
}

.modal .block-press .description h3 {
    font-size: 160%;
    margin-bottom: 15px
}

.modal .block-press .description p {
    color: #a6a6a6;
    font-style: normal;
    line-height: 1.2em
}

.modal .block-press .description .info {
    margin-bottom: 15px;
    font-style: italic
}

.modal .block-press .text {
    width: 630px;
    text-align: left
}

.modal .block-press .text p {
    margin-bottom: 20px;
    font-style: normal;
    font-weight: 400
}

@media (max-width: 767px) {
    .zone-press .col-md-5:last-child {
        display: none
    }

    .zone-press .image {
        float: none;
        margin: 15px auto
    }

    .zone-press .image + .description {
        margin-left: 0
    }

    .zone-press h3 {
        font-size: 125%
    }

    .zone-press .modal .block-press .description, .zone-press .modal .block-press .text {
        width: auto
    }
}

.zone-iframe .description {
    padding: 25px 25px 0
}

.zone-iframe h3 {
    margin: 0 0 10px;
    font-weight: 300
}

.zone-iframe .editing textarea {
    min-height: 10em
}

.zone-iframe .editing .code {
    min-height: 5em
}

@media (max-width: 767px) {
    .zone-iframe iframe {
        width: 100%
    }

    .zone-iframe .description {
        padding: 10px 0 0
    }
}

.zone-extract {
    text-align: center
}

.zone-extract .block-extract {
    padding: 0 20px
}

.zone-extract .block-extract h3 {
    color: #999;
    font-weight: 300;
    margin: 0 0 7px
}

.zone-extract .block-extract p {
    margin: 0 0 10px
}

.zone-extract .modal .modal-body {
    height: 705px;
    overflow: auto
}

.zone-extract .modal .modal-body .text {
    width: 570px;
    text-align: left
}

.zone-extract .modal .modal-body h3 {
    display: inline-block;
    max-width: 570px;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    font-size: 386%;
    font-weight: 300;
    font-family: "Roboto Slab"
}

.zone-extract .modal .modal-header {
    border-bottom: 1px solid #c8c8c8;
    padding-left: 110px
}

.zone-extract .modal .modal-header p {
    display: inline-block
}

.zone-extract .modal .modal-header .text-plus, .zone-extract .modal .modal-header .text-min {
    float: right;
    background-color: #ebebeb;
    width: 26px;
    height: 26px;
    border-radius: 2px;
    margin: -3px 10px 0 0;
    cursor: pointer;
    text-align: center
}

.zone-extract .modal .modal-header .text-plus {
    margin-right: 30px;
    font-size: 21px;
    line-height: 21px;
    padding-top: 2px
}

.zone-extract .modal .modal-header .text-min {
    font-size: 12px;
    padding-top: 5px
}

.zone-extract .modal .modal-footer {
    padding: 20px
}

@media (max-width: 767px) {
    .zone-extract .block-extract h3 {
        font-size: 125%
    }

    .zone-extract .block-extract h3 a, .zone-extract .block-extract h3 a:hover {
        color: #999;
        text-decoration: underline
    }

    .zone-extract .modal .modal-body .text {
        width: auto
    }

    .zone-extract .modal .modal-body h3 {
        max-width: auto
    }

    .zone-extract .modal .modal-header {
        padding-left: 20px;
        text-align: left
    }

    .zone-extract .modal .modal-header p {
        display: inline-block
    }
}

.zone-gallery {
    text-align: center
}

.zone-gallery .image-zoom {
    margin-bottom: 20px;
    color: #fff
}

.zone-gallery .image-zoom img {
    width: 100%;
    height: auto;
    display: block
}

.zone-gallery .modal {
    text-align: center
}

.zone-gallery .modal .modal-body {
    padding: 20px
}

.zone-gallery .modal .modal-body p {
    max-width: 600px;
    margin: 0 auto;
    color: #a6a6a6
}

.zone-gallery .modal .modal-body img {
    display: block;
    margin: 0 auto 30px
}

.zone-gallery .modal .modal-footer {
    padding: 10px 20px 30px
}

.zone-masonry .item {
    width: 360px;
    float: left;
    margin: 0 15px 30px;
    padding: 20px;
    background: #fff
}

.page-gallery .container__header-page {
    background-color: #f4f5f6
}

.editing-mode .zone-masonry .container {
    border: 0
}

.editing-mode .zone-masonry .container .editing-btns {
    left: 10px;
    top: 10px;
    right: 10px
}

.editing-mode .zone-masonry .container .block-add {
    display: block;
    width: 360px;
    float: left;
    margin: 0 15px 30px;
    border: 20px solid #fff;
    background: #f0f0f0 url(../bundles/blockbookstercore/assets/images/icon-add-img.png) no-repeat 55% 38%;
    padding-top: 155px;
    color: #bfbfbf;
    text-align: center;
    height: 270px;
    cursor: pointer
}

.editing-mode .zone-masonry .container .block-add:hover {
    background-color: #dedede;
    color: #9c9b9b
}

.editing-mode .zoom {
    display: none
}

.editing-mode .btn-back-desktop {
    display: none
}

@media (max-width: 767px) {
    .js-bxslider-gallery {
        margin: 0
    }

    .js-bxslider-gallery .col-md-3 {
        padding: 0
    }

    .zone-gallery .bx-wrapper .bx-prev {
        left: -25px
    }

    .zone-gallery .bx-wrapper .bx-next {
        right: -25px
    }

    .zone-gallery .bg-white-mobile {
        overflow: hidden
    }

    .zone-masonry .item {
        width: auto;
        float: none;
        padding: 10px;
        margin: 0 10px 10px
    }

    .zone-masonry .item p {
        display: none
    }

    .zone-masonry .item .image-zoom {
        margin-bottom: 0
    }

    .page-gallery .header-img {
        display: none
    }
}

.zone-pdf {
    text-align: center
}

.zone-pdf .block-pdf .image {
    width: 172px;
    margin: 0 auto 30px
}

.zone-pdf .block-pdf .image img {
    width: 100%;
    height: auto
}

.zone-pdf .block-pdf h3 {
    font-weight: 300;
    color: #999;
    margin: 0 70px 10px
}

.zone-pdf .block-pdf a {
    font-weight: 600;
    text-decoration: underline
}

.zone-pdf .editing .img-pdf {
    width: 180px;
    float: left;
    text-align: center;
    padding-top: 20px
}

.zone-pdf .editing .img-pdf img {
    display: block;
    margin: 15px auto;
    width: 130px;
    height: auto;
    border: 1px solid #999
}

.zone-pdf .editing .img-pdf a {
    color: #1574de;
    text-decoration: underline;
    font-size: 80%;
    margin: 0 5px
}

.zone-pdf .editing .drop-pgf {
    margin-left: 200px;
    padding-top: 20px;
    text-align: center
}

.zone-pdf .editing .drop-pgf .drop-zone {
    height: 230px;
    background-color: #f0f0f0;
    border: 1px dashed #333;
    padding-top: 90px;
    margin-bottom: 15px
}

.zone-pdf .editing .drop-pgf .drop-zone .pdf-type {
    color: #6d6d6d;
    font-style: italic;
    font-size: 87%;
    margin-top: 5px
}

.zone-pdf .editing .drop-pgf a {
    color: #000;
    display: inline-block;
    margin-bottom: 40px;
    text-decoration: underline
}

.zone-pdf .editing .drop-pgf a:hover {
    color: #000
}

.zone-biography .image {
    text-align: right;
    margin: 45px 15px 0 0
}

.zone-biography .image img {
    display: inline-block;
    width: 125px;
    height: 125px;
    -moz-border-radius: 125px;
    -webkit-border-radius: 125px;
    border-radius: 125px
}

.zone-biography .image-zoom {
    text-align: right
}

.zone-biography .image-zoom img {
    max-width: 100%;
    height: auto
}

.zone-biography .image-zoom .zoom {
    color: #fff;
    text-align: center
}

.zone-biography .description h3 {
    font-weight: 300;
    margin: 0 0 15px
}

.zone-biography .description .btn-link {
    margin-top: 30px
}

.zone-biography .photo {
    float: left;
    width: 270px;
    margin-top: 20px
}

.zone-biography .photo img {
    border: 1px solid #999;
    margin-bottom: 20px
}

.zone-biography .photo a {
    color: #1574de;
    text-decoration: underline;
    font-size: 80%;
    margin: 0 5px
}

.zone-biography .textarea {
    margin-left: 300px;
    text-align: left
}

.zone-biography .editing {
    text-align: center
}

@media (max-width: 767px) {
    .zone-biography {
        text-align: center
    }

    .zone-biography .description {
        text-align: left
    }

    .zone-biography .description h3 {
        font-size: 125%;
        margin-bottom: 5px
    }

    .zone-biography .description .btn-link {
        margin-left: 30px;
        margin-right: 30px
    }

    .zone-biography .image {
        margin: 0 0 25px;
        text-align: center
    }

    .zone-biography .image img {
        width: 80px;
        height: 80px;
        -moz-border-radius: 80px;
        -webkit-border-radius: 80px;
        border-radius: 80px
    }

    .zone-biography .image-zoom {
        margin-bottom: 20px
    }
}

.drop-img {
    color: #fff;
    background-color: #eaeaea;
    border: 1px solid #999;
    width: 100%;
    margin-bottom: 20px;
    position: relative
}

.zone-questionnaire dd {
    margin: 0
}

.zone-questionnaire dt {
    /*color: #999;*/
    font-size: 120%;
    margin-bottom: 10px
}

.zone-questionnaire .number {
    /*color: #999;*/
    text-align: right;
    margin-right: 30px;
    font-size: 366%;
    font-family: Handlee
}

.zone-questionnaire .btn-more-questionnaire:before {
    font-size: 22px;
    margin: -7px 0 0
}

@media (max-width: 767px) {
    .zone-questionnaire .number {
        text-align: center
    }
}

.form-contact input[type=text], .form-contact textarea {
    display: block;
    width: 100%
}

.form-contact textarea {
    height: 160px
}

@media (max-width: 767px) {
    .form-contact {
        text-align: center
    }
}

.zone-book {
    overflow: hidden
}

.zone-book h2 {
    text-align: left;
    color: #000;
    margin: 0
}

.zone-book .sub-title {
    font-size: 120%;
    color: #999;
    /*margin-bottom: 20px*/
}

.zone-book .sub-title-author {
    font-size: 120%;
    color: #999;
    margin-bottom: 20px
}

.zone-book table {
    width: 100%;
    table-layout: fixed;
    margin-top: 30px
}

.zone-book table th {
    color: #999;
    width: 18%;
    text-align: right;
    padding-right: 15px
}

.zone-book table th, .zone-book table td {
    vertical-align: top
}

.zone-book .image {
    text-align: right;
    padding-top: 5px
}

.zone-book .image img {
    border: 1px solid #999
}

.zone-book .sharing {
    margin: 40px 0 0 30px
}

.zone-book .sharing p {
    background-color: #f66;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    padding: 10px 25px 10px 0;
    color: #fff;
    font-size: 90%;
    font-weight: 600;
    text-align: center
}

.zone-book .sharing p .flaticon-share11:before, .zone-book .sharing p .btn-shares:before {
    font-size: 12px;
    margin-right: 12px
}

.zone-book .sharing-btns {
    text-align: center;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    background: #f4f4f4;
    padding: 10px
}

.zone-book .sharing-btns > * {
    display: inline-block;
    vertical-align: bottom !important;
    margin: 0 5px
}

@media (max-width: 767px) {
    .zone-book .image img {
        width: 100%;
        height: auto
    }

    .zone-book .sharing {
        margin: 10px 0 0
    }

    .zone-book .sharing p {
        border-radius: 0
    }

    .zone-book .sharing .sharing-btns {
        padding: 15px
    }

    .zone-book table {
        margin: 0
    }

    .zone-book table th, .zone-book table td {
        display: inline-block;
        vertical-align: top
    }

    .zone-book table th {
        width: 40%
    }

    .zone-book table td {
        width: 58%
    }
}

.zone-list-books {
    text-align: center
}

.zone-list-books .block-book-item {
    background: #fff;
    padding: 10px 10px 25px;
    display: inline-block;
    width: 240px;
    margin: 0 9px 25px;
    vertical-align: top;
    position: relative
}

.zone-list-books .block-book-item .img {
    margin-bottom: 15px;
    position: relative
}

.zone-list-books .block-book-item .img img {
    display: block;
    margin-bottom: 0;
    width: 100%;
    height: auto
}

.zone-list-books .block-book-item .overlay {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .75);
    padding-top: 100px;
    color: #fff;
    text-align: center;
    text-decoration: none
}

.zone-list-books .block-book-item .overlay .flaticon-shopping66:before {
    margin: 0 auto 5px;
    display: block;
    font-size: 40px
}

.zone-list-books .block-book-item .overlay p {
    text-align: center;
    font-size: 93%
}

.zone-list-books .block-book-item .overlay .title {
    text-transform: uppercase;
    font-size: 107%;
    font-weight: 700;
    margin-bottom: 8px
}

.zone-list-books .block-book-item .img:hover .overlay {
    display: block
}

.zone-list-books .block-book-item .btn-link {
    width: auto;
    display: inline-block;
    padding: 7px 15px;
    margin-top: 20px
}

.zone-list-books .block-book-item h3, .zone-list-books .block-book-item p {
    text-align: left
}

.zone-list-books .block-book-item h3 {
    font-size: 133%;
    font-weight: 400;
    margin: 0
}

.zone-list-books .block-book-item .sub-title {
    font-weight: 300;
    color: #999;
    font-size: 120%;
    margin-bottom: 15px
}

.zone-list-books .item-push {
    padding: 20px;
    width: 770px;
    display: block;
    margin: 0 auto 25px
}

.zone-list-books .item-push .img {
    width: 250px;
    float: left;
    position: relative
}

.zone-list-books .item-push .description {
    margin-left: 280px
}

.zone-list-books .item-push .info {
    margin-bottom: 15px
}

.zone-list-books .item-push .info strong {
    color: #999;
    margin-right: 5px
}

.zone-list-books .item-push .btn-link {
    margin-top: 40px
}

.zone-list-books .item-add, .zone-list-books .editing-btns {
    display: none
}

.editing-btns {
    display: none
}

.editing-mode .editing-btns {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 99;
    display: block;
    text-align: right
}

.editing-mode .editing-btns span {
    display: inline-block;
    color: #fff;
    background: #1574de;
    border-radius: 3px;
    height: 33px;
    width: 33px;
    font-size: 18px;
    text-align: center;
    padding: 3px;
    margin: 0 0 0 3px;
    cursor: pointer
}

.editing-mode .editing-btns span:hover {
    color: #fff;
    background: #105fb6
}

.editing-mode .editing-btns .icon-star {
    float: left;
    color: #ffca13;
    background: rgba(0, 0, 0, .5)
}

.editing-mode .editing-btns .icon-star:hover {
    color: #ffca13;
    background: rgba(0, 0, 0, .5)
}

.editing-mode .zone-list-books .item-push {
    padding: 10px 10px 25px;
    width: 270px;
    margin: 0 9px 25px;
    display: inline-block
}

.editing-mode .zone-list-books .item-push .img {
    width: 100%;
    float: none;
    margin-bottom: 15px
}

.editing-mode .zone-list-books .item-push .description {
    margin-left: 0
}

.editing-mode .zone-list-books .item-push .info {
    display: none
}

.editing-mode .zone-list-books .item-add {
    display: inline-block;
    background: #f7f7f7 url(../bundles/blockbookstercore/assets/images/icon-add-book.png) no-repeat 55% 40%;
    border: 10px solid #fff;
    height: 405px;
    padding-top: 245px
}

.editing-mode .zone-list-books .item-add:hover {
    background: #dedede url(../bundles/blockbookstercore/assets/images/icon-add-book-hover.png) no-repeat 55% 40%
}

.editing-mode .zone-list-books .item-add:hover .btn-blue {
    background: #105fb6
}

.btn-blue {
    color: #fff;
    background: #1574de;
    border-radius: 3px;
    padding: 5px 12px 7px;
    display: inline-block
}

.btn-blue:hover {
    color: #fff;
    text-decoration: none;
    background: #105fb6
}

@media (max-width: 767px) {
    .zone-list-books {
        margin: 0 15px
    }

    .zone-list-books h2 {
        display: none
    }

    .zone-list-books .block-book-item {
        padding: 20px;
        display: block;
        width: auto;
        margin: 0 0 15px
    }

    .zone-list-books .block-book-item:last-child {
        margin-bottom: 0
    }

    .zone-list-books .block-book-item .img {
        width: 180px;
        display: block;
        margin: 0 auto 30px
    }

    .zone-list-books .block-book-item .btn-link {
        margin-bottom: 0;
        padding-left: 35px;
        padding-right: 35px
    }

    .zone-list-books .item-push {
        padding: 20px;
        display: block;
        width: auto;
        margin-bottom: 15px
    }

    .zone-list-books .item-push .img {
        width: 180px;
        display: block;
        margin: 0 auto 30px;
        float: none
    }

    .zone-list-books .item-push .description {
        margin-left: 0
    }

    .zone-list-books .item-push .info {
        display: none
    }

    .zone-list-books .item-add {
        display: none
    }

    .zone-list-books .bg-white-mobile {
        background: transparent;
        padding: 0;
        margin: 0
    }
}

.zone-slider-books {
    text-align: center
}

.zone-slider-books .slider-books {
    overflow: hidden
}

.zone-slider-books .slider-books a {
    display: block;
    color: #000;
    text-decoration: underline
}

.zone-slider-books .slider-books a:hover {
    color: #000
}

.zone-slider-books .slider-books a span {
    display: block
}

.zone-slider-books .slider-books a img {
    display: block;
    margin-bottom: 20px
}

.zone-slider-books .slider-books ul {
    margin: 0
}

.zone-buy {
    background: #f4f4f4 !important;
    color: #585858 !important;
    text-align: center;
    overflow: hidden
}

.zone-buy h2 {
    color: #585858 !important
}

.zone-buy .promo {
    padding: 15px 0 0;
    position: relative;
    margin-top: 25px
}

.zone-buy .promo:before {
    content: "";
    border-bottom: 1px solid #cfcfcf;
    display: block;
    height: 1px;
    width: 150px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -75px
}

.zone-buy .promo a {
    color: #06f;
    font-weight: 400;
    text-decoration: none
}

.zone-buy .promo a:hover {
    color: #06f;
    text-decoration: underline
}

.zone-buy .link-gift {
    color: #585858;
    text-decoration: underline;
    font-size: 80%
}

.zone-buy .book-version {
    border: 1px solid #ccc;
    margin-bottom: 8px;
    text-align: left;
    padding: 12px 15px;
    min-height: 67px;
    font-size: 92%
}

.zone-buy .book-version p {
    margin-bottom: 5px
}

.zone-buy .book-version .price {
    float: right;
    font-weight: 700
}

.zone-buy .book-version .info {
    font-size: 80%;
    color: #999;
    font-style: italic;
    margin-bottom: 0
}

.zone-buy .editing .btn-buy {
    background: #1574de;
    border-color: #105fb6;
    margin: 30px auto 50px;
    color: #fff
}

.zone-buy .editing .btn-buy:hover {
    background: #105fb6;
    color: #fff
}

@media (max-width: 767px) {
    .zone-buy {
        color: #000 !important
    }

    .zone-buy h2 {
        margin-bottom: 0
    }

    .zone-buy .book-version {
        border: 0;
        padding: 0;
        font-size: 100%;
        min-height: 10px;
        margin-top: 20px;
        margin-left: 10px;
        margin-right: 10px
    }

    .zone-buy .book-version p {
        margin-bottom: 0
    }

    .zone-buy .btn-buy {
        font-size: 105%;
        padding: 10px;
        margin-left: 10px;
        margin-right: 10px
    }

    .zone-buy .link-gift {
        font-size: 95%;
        color: #000;
        margin-left: 10px;
        margin-right: 10px
    }

    .zone-buy .promo {
        margin-top: 20px;
        padding-top: 10px
    }
}

.btn-buy {
    background-color: #39ca74;
    display: block;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #fff;
    font-weight: 700;
    font-size: 98%;
    text-align: cente;
    padding: 12px 10px;
    border-bottom: 2px solid #30ad63;
    margin-bottom: 10px
}

.btn-buy:hover {
    background-color: #30ad63;
    border-bottom-color: #1f914e;
    text-decoration: none;
    color: #fff
}

.zone-tweets {
    text-align: center
}

.zone-tweets .flaticon-social19 {
    margin-right: 10px
}

.zone-tweets .flaticon-social19:before {
    font-size: 24px !important
}

.zone-tweets .block-tweet, .zone-tweets .block-blog {
    text-align: left
}

.zone-tweets .block-blog .date {
    float: left;
    width: 70px;
    border-right: 1px solid #fff
}

.zone-tweets .block-blog .date span {
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-weight: 300;
    line-height: .9em
}

.zone-tweets .block-blog .date span:first-child {
    font-size: 183%;
    font-weight: 700
}

.zone-tweets .block-blog .date span:nth-child(2) {
    color: #f66;
    font-size: 117%
}

.zone-tweets .block-blog .date span:nth-child(3) {
    font-size: 90%
}

.zone-tweets .block-blog .description {
    margin-left: 90px
}

.zone-tweets .block-blog .description h3 {
    margin: 0;
    font-size: 100%
}

.zone-tweets .block-blog a {
    color: #fff
}

.zone-tweets .block-blog a:hover {
    color: #fff
}

.zone-tweets .block-tweet img {
    float: left
}

.zone-tweets .block-tweet .description {
    margin-left: 90px
}

.block-row:nth-child(2n-1) .block-blog a, .block-row:nth-child(2n-1) .block-blog a:hover {
    color: #000
}

.block-row:nth-child(2n-1) .block-blog .date {
    border-color: #000
}

.page-author .block-row:nth-child(2n) .block-blog a, .page-author .block-row:nth-child(2n) .block-blog a:hover {
    color: #000
}

.page-author .block-row:nth-child(2n) .block-blog .date {
    border-color: #000
}

@media (max-width: 767px) {
    .zone-tweets .block-tweet, .zone-tweets .block-blog {
        padding-bottom: 30px
    }

    .zone-tweets .block-tweet img {
        width: 45px;
        margin-left: 25px
    }

    .zone-tweets .flaticon-social19 {
        margin-right: 6px
    }

    .zone-tweets .flaticon-social19:before {
        font-size: 16px !important
    }

    .zone-tweets .block-blog a, .zone-tweets .block-blog a:hover {
        color: #000
    }
}

.zone-links {
    text-align: center
}

.zone-links .block-link {
    margin-bottom: 30px;
    padding: 0 30px
}

.zone-links h3 {
    font-weight: 600;
    margin-bottom: 5px
}

.zone-links h3 a {
    text-decoration: underline
}

.zone-links .editing {
    text-align: left
}

.zone-links .editing .form-control {
    margin-bottom: 7px
}

.zone-links .editing textarea {
    min-height: 7em
}

.zone-service {
    text-align: center;
    background: #f4f4f4 !important;
    color: #000 !important
}

.zone-service h2 {
    color: #666 !important
}

.zone-service p {
    font-style: italic;
    margin-bottom: 45px;
    font-weight: 300
}

.zone-service .p-24 {
    font-size: 160%
}

.zone-service .p-28 {
    font-size: 187%
}

.zone-service .p-35 {
    font-size: 300%
}

.zone-service .margin-left {
    margin-left: 165px
}

.zone-service .btn-service {
    background-color: #39ca74;
    display: inline-block;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #fff;
    font-weight: 600;
    font-size: 133%;
    text-align: cente;
    padding: 10px 15px;
    border-bottom: 2px solid #30ad63;
    margin-bottom: 10px;
    font-style: italic
}

.zone-service .btn-service:hover {
    background-color: #30ad63;
    border-bottom-color: #1f914e;
    text-decoration: none
}

.zone-quote {
    text-align: center
}

.zone-quote .block-quote {
    padding: 20px 40px;
    position: relative
}

.zone-quote .block-quote p {
    font-size: 150%;
    font-weight: 300
}

.zone-quote .block-quote:before, .zone-quote .block-quote:after {
    content: "";
    background: url(../bundles/blockbookstercore/assets/images/quote.png) no-repeat 0 0;
    display: block;
    width: 35px;
    height: 26px;
    position: absolute;
    top: 0;
    left: 0
}

.zone-quote .block-quote:after {
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg)
}

.zone-quote .editing form {
    text-align: left
}

@media (max-width: 767px) {
    body {
        background-color: #f4f4f4
    }

    .zone-quote .block-quote {
        padding: 10px 20px
    }

    .zone-quote .block-quote p {
        font-size: 120%
    }

    .zone-quote .block-quote:before, .zone-quote .block-quote:after {
        width: 18px;
        height: 13px;
        background-size: 100% 100%
    }
}

.zone-shares {
    background: #f66 !important;
    text-align: center
}

.zone-shares h2 {
    color: #fff !important
}

.zone-shares a {
    color: #fff;
    display: inline-block;
    width: 82px;
    height: 82px;
    border-radius: 82px;
    border: 1px solid #fff;
    text-align: center;
    font-size: 23px;
    margin: 0 15px;
    line-height: 82px
}

.zone-shares a:hover {
    background-color: #fff;
    color: #f66
}

@media (max-width: 767px) {
    .block-row.zone-shares {
        background: #f66 !important;
        padding: 10px 0
    }

    .block-row.zone-shares .container {
        padding: 0
    }

    .block-row.zone-shares .bg-white-mobile {
        background-color: transparent
    }

    .block-row.zone-shares a {
        width: 45px;
        height: 45px;
        border-radius: 45px;
        font-size: 14px;
        margin: 0 5px;
        line-height: 45px
    }
}

.theme-turquoise .btn-link, .theme-turquoise .image-zoom .zoom, .theme-turquoise .btn-send input[type=submit] {
    background-color: #1abc9c
}

.theme-turquoise .btn-link:hover, .theme-turquoise .image-zoom .zoom:hover, .theme-turquoise .btn-send input[type=submit]:hover {
    background-color: #15967d
}

.theme-turquoise header .title-nav li:hover, .theme-turquoise header .title-nav .active, .theme-turquoise .zone-book .sharing p {
    background-color: #1abc9c
}

.theme-turquoise .zone-tweets .block-blog .date span:nth-child(2) {
    color: #1abc9c
}

.theme-turquoise .zone-shares {
    background-color: #1abc9c !important
}

.theme-turquoise .zone-shares a:hover {
    color: #1abc9c
}

.theme-turquoise .block-personage .no-image:hover {
    color: #1abc9c;
    border-color: #1abc9c
}

.theme-turquoise .block-row p a, .theme-turquoise .zone-pdf .block-pdf a, .theme-turquoise .zone-links h3 a {
    color: #1abc9c
}

.theme-turquoise .block-row p a:hover, .theme-turquoise .zone-pdf .block-pdf a:hover, .theme-turquoise .zone-links h3 a:hover {
    color: #15967d
}

@media (max-width: 767px) {
    .theme-turquoise .page-title {
        background-color: #1abc9c
    }
}

.theme-green-sea .btn-link, .theme-green-sea .image-zoom .zoom, .theme-green-sea .btn-send input[type=submit] {
    background-color: #16a085
}

.theme-green-sea .btn-link:hover, .theme-green-sea .image-zoom .zoom:hover, .theme-green-sea .btn-send input[type=submit]:hover {
    background-color: #12806a
}

.theme-green-sea header .title-nav li:hover, .theme-green-sea header .title-nav .active, .theme-green-sea .zone-book .sharing p {
    background-color: #16a085
}

.theme-green-sea .zone-tweets .block-blog .date span:nth-child(2) {
    color: #16a085
}

.theme-green-sea .zone-shares {
    background-color: #16a085 !important
}

.theme-green-sea .zone-shares a:hover {
    color: #16a085
}

.theme-green-sea .block-personage .no-image:hover {
    color: #16a085;
    border-color: #16a085
}

.theme-green-sea .block-row p a, .theme-green-sea .zone-pdf .block-pdf a, .theme-green-sea .zone-links h3 a {
    color: #16a085
}

.theme-green-sea .block-row p a:hover, .theme-green-sea .zone-pdf .block-pdf a:hover, .theme-green-sea .zone-links h3 a:hover {
    color: #12806a
}

@media (max-width: 767px) {
    .theme-green-sea .page-title {
        background-color: #16a085
    }
}

.theme-peter-river .btn-link, .theme-peter-river .image-zoom .zoom, .theme-peter-river .btn-send input[type=submit] {
    background-color: #3498db
}

.theme-peter-river .btn-link:hover, .theme-peter-river .image-zoom .zoom:hover, .theme-peter-river .btn-send input[type=submit]:hover {
    background-color: #2a7aaf
}

.theme-peter-river header .title-nav li:hover, .theme-peter-river header .title-nav .active, .theme-peter-river .zone-book .sharing p {
    background-color: #3498db
}

.theme-peter-river .zone-tweets .block-blog .date span:nth-child(2) {
    color: #3498db
}

.theme-peter-river .zone-shares {
    background-color: #3498db !important
}

.theme-peter-river .zone-shares a:hover {
    color: #3498db
}

.theme-peter-river .block-personage .no-image:hover {
    color: #3498db;
    border-color: #3498db
}

.theme-peter-river .block-row p a, .theme-peter-river .zone-pdf .block-pdf a, .theme-peter-river .zone-links h3 a {
    color: #3498db
}

.theme-peter-river .block-row p a:hover, .theme-peter-river .zone-pdf .block-pdf a:hover, .theme-peter-river .zone-links h3 a:hover {
    color: #2a7aaf
}

@media (max-width: 767px) {
    .theme-peter-river .page-title {
        background-color: #3498db
    }
}

.theme-belize-hole .btn-link, .theme-belize-hole .image-zoom .zoom, .theme-belize-hole .btn-send input[type=submit] {
    background-color: #2980b9
}

.theme-belize-hole .btn-link:hover, .theme-belize-hole .image-zoom .zoom:hover, .theme-belize-hole .btn-send input[type=submit]:hover {
    background-color: #216694
}

.theme-belize-hole header .title-nav li:hover, .theme-belize-hole header .title-nav .active, .theme-belize-hole .zone-book .sharing p {
    background-color: #2980b9
}

.theme-belize-hole .zone-tweets .block-blog .date span:nth-child(2) {
    color: #2980b9
}

.theme-belize-hole .zone-shares {
    background-color: #2980b9 !important
}

.theme-belize-hole .zone-shares a:hover {
    color: #2980b9
}

.theme-belize-hole .block-personage .no-image:hover {
    color: #2980b9;
    border-color: #2980b9
}

.theme-belize-hole .block-row p a, .theme-belize-hole .zone-pdf .block-pdf a, .theme-belize-hole .zone-links h3 a {
    color: #2980b9
}

.theme-belize-hole .block-row p a:hover, .theme-belize-hole .zone-pdf .block-pdf a:hover, .theme-belize-hole .zone-links h3 a:hover {
    color: #216694
}

@media (max-width: 767px) {
    .theme-belize-hole .page-title {
        background-color: #2980b9
    }
}

.theme-amethyst .btn-link, .theme-amethyst .image-zoom .zoom, .theme-amethyst .btn-send input[type=submit] {
    background-color: #9b59b6
}

.theme-amethyst .btn-link:hover, .theme-amethyst .image-zoom .zoom:hover, .theme-amethyst .btn-send input[type=submit]:hover {
    background-color: #7c4792
}

.theme-amethyst header .title-nav li:hover, .theme-amethyst header .title-nav .active, .theme-amethyst .zone-book .sharing p {
    background-color: #9b59b6
}

.theme-amethyst .zone-tweets .block-blog .date span:nth-child(2) {
    color: #9b59b6
}

.theme-amethyst .zone-shares {
    background-color: #9b59b6 !important
}

.theme-amethyst .zone-shares a:hover {
    color: #9b59b6
}

.theme-amethyst .block-personage .no-image:hover {
    color: #9b59b6;
    border-color: #9b59b6
}

.theme-amethyst .block-row p a, .theme-amethyst .zone-pdf .block-pdf a, .theme-amethyst .zone-links h3 a {
    color: #9b59b6
}

.theme-amethyst .block-row p a:hover, .theme-amethyst .zone-pdf .block-pdf a:hover, .theme-amethyst .zone-links h3 a:hover {
    color: #7c4792
}

@media (max-width: 767px) {
    .theme-amethyst .page-title {
        background-color: #9b59b6
    }
}

.theme-wet-asphalt .btn-link, .theme-wet-asphalt .image-zoom .zoom, .theme-wet-asphalt .btn-send input[type=submit] {
    background-color: #34495e
}

.theme-wet-asphalt .btn-link:hover, .theme-wet-asphalt .image-zoom .zoom:hover, .theme-wet-asphalt .btn-send input[type=submit]:hover {
    background-color: #2a3a4b
}

.theme-wet-asphalt header .title-nav li:hover, .theme-wet-asphalt header .title-nav .active, .theme-wet-asphalt .zone-book .sharing p {
    background-color: #34495e
}

.theme-wet-asphalt .zone-tweets .block-blog .date span:nth-child(2) {
    color: #34495e
}

.theme-wet-asphalt .zone-shares {
    background-color: #34495e !important
}

.theme-wet-asphalt .zone-shares a:hover {
    color: #34495e
}

.theme-wet-asphalt .block-personage .no-image:hover {
    color: #34495e;
    border-color: #34495e
}

.theme-wet-asphalt .block-row p a, .theme-wet-asphalt .zone-pdf .block-pdf a, .theme-wet-asphalt .zone-links h3 a {
    color: #34495e
}

.theme-wet-asphalt .block-row p a:hover, .theme-wet-asphalt .zone-pdf .block-pdf a:hover, .theme-wet-asphalt .zone-links h3 a:hover {
    color: #2a3a4b
}

@media (max-width: 767px) {
    .theme-wet-asphalt .page-title {
        background-color: #34495e
    }
}

.theme-orange .btn-link, .theme-orange .image-zoom .zoom, .theme-orange .btn-send input[type=submit] {
    background-color: #f39c12
}

.theme-orange .btn-link:hover, .theme-orange .image-zoom .zoom:hover, .theme-orange .btn-send input[type=submit]:hover {
    background-color: #c27d0e
}

.theme-orange header .title-nav li:hover, .theme-orange header .title-nav .active, .theme-orange .zone-book .sharing p {
    background-color: #f39c12
}

.theme-orange .zone-tweets .block-blog .date span:nth-child(2) {
    color: #f39c12
}

.theme-orange .zone-shares {
    background-color: #f39c12 !important
}

.theme-orange .zone-shares a:hover {
    color: #f39c12
}

.theme-orange .block-personage .no-image:hover {
    color: #f39c12;
    border-color: #f39c12
}

.theme-orange .block-row p a, .theme-orange .zone-pdf .block-pdf a, .theme-orange .zone-links h3 a {
    color: #f39c12
}

.theme-orange .block-row p a:hover, .theme-orange .zone-pdf .block-pdf a:hover, .theme-orange .zone-links h3 a:hover {
    color: #c27d0e
}

@media (max-width: 767px) {
    .theme-orange .page-title {
        background-color: #f39c12
    }
}

.theme-pumpkin .btn-link, .theme-pumpkin .image-zoom .zoom, .theme-pumpkin .btn-send input[type=submit] {
    background-color: #d35400
}

.theme-pumpkin .btn-link:hover, .theme-pumpkin .image-zoom .zoom:hover, .theme-pumpkin .btn-send input[type=submit]:hover {
    background-color: #a94300
}

.theme-pumpkin header .title-nav li:hover, .theme-pumpkin header .title-nav .active, .theme-pumpkin .zone-book .sharing p {
    background-color: #d35400
}

.theme-pumpkin .zone-tweets .block-blog .date span:nth-child(2) {
    color: #d35400
}

.theme-pumpkin .zone-shares {
    background-color: #d35400 !important
}

.theme-pumpkin .zone-shares a:hover {
    color: #d35400
}

.theme-pumpkin .block-personage .no-image:hover {
    color: #d35400;
    border-color: #d35400
}

.theme-pumpkin .block-row p a, .theme-pumpkin .zone-pdf .block-pdf a, .theme-pumpkin .zone-links h3 a {
    color: #d35400
}

.theme-pumpkin .block-row p a:hover, .theme-pumpkin .zone-pdf .block-pdf a:hover, .theme-pumpkin .zone-links h3 a:hover {
    color: #a94300
}

@media (max-width: 767px) {
    .theme-pumpkin .page-title {
        background-color: #d35400
    }
}

.theme-alizarin .btn-link, .theme-alizarin .image-zoom .zoom, .theme-alizarin .btn-send input[type=submit] {
    background-color: #f66
}

.theme-alizarin .btn-link:hover, .theme-alizarin .image-zoom .zoom:hover, .theme-alizarin .btn-send input[type=submit]:hover {
    background-color: #b93d30
}

.theme-alizarin header .title-nav li:hover, .theme-alizarin header .title-nav .active, .theme-alizarin .zone-book .sharing p {
    background-color: #f66
}

.theme-alizarin .zone-tweets .block-blog .date span:nth-child(2) {
    color: #f66
}

.theme-alizarin .zone-shares {
    background-color: #f66 !important
}

.theme-alizarin .zone-shares a:hover {
    color: #f66
}

.theme-alizarin .block-personage .no-image:hover {
    color: #f66;
    border-color: #f66
}

.theme-alizarin .block-row p a, .theme-alizarin .zone-pdf .block-pdf a, .theme-alizarin .zone-links h3 a {
    color: #f66
}

.theme-alizarin .block-row p a:hover, .theme-alizarin .zone-pdf .block-pdf a:hover, .theme-alizarin .zone-links h3 a:hover {
    color: #b93d30
}

@media (max-width: 767px) {
    .theme-alizarin .page-title {
        background-color: #f66
    }
}

.theme-pomegranate .btn-link, .theme-pomegranate .image-zoom .zoom, .theme-pomegranate .btn-send input[type=submit] {
    background-color: #c0392b
}

.theme-pomegranate .btn-link:hover, .theme-pomegranate .image-zoom .zoom:hover, .theme-pomegranate .btn-send input[type=submit]:hover {
    background-color: #9a2e22
}

.theme-pomegranate header .title-nav li:hover, .theme-pomegranate header .title-nav .active, .theme-pomegranate .zone-book .sharing p {
    background-color: #c0392b
}

.theme-pomegranate .zone-tweets .block-blog .date span:nth-child(2) {
    color: #c0392b
}

.theme-pomegranate .zone-shares {
    background-color: #c0392b !important
}

.theme-pomegranate .zone-shares a:hover {
    color: #c0392b
}

.theme-pomegranate .block-personage .no-image:hover {
    color: #c0392b;
    border-color: #c0392b
}

.theme-pomegranate .block-row p a, .theme-pomegranate .zone-pdf .block-pdf a, .theme-pomegranate .zone-links h3 a {
    color: #c0392b
}

.theme-pomegranate .block-row p a:hover, .theme-pomegranate .zone-pdf .block-pdf a:hover, .theme-pomegranate .zone-links h3 a:hover {
    color: #9a2e22
}

@media (max-width: 767px) {
    .theme-pomegranate .page-title {
        background-color: #c0392b
    }
}

.theme-silver .btn-link, .theme-silver .image-zoom .zoom, .theme-silver .btn-send input[type=submit] {
    background-color: #bdc3c7
}

.theme-silver .btn-link:hover, .theme-silver .image-zoom .zoom:hover, .theme-silver .btn-send input[type=submit]:hover {
    background-color: #979c9f
}

.theme-silver header .title-nav li:hover, .theme-silver header .title-nav .active, .theme-silver .zone-book .sharing p {
    background-color: #bdc3c7
}

.theme-silver .zone-tweets .block-blog .date span:nth-child(2) {
    color: #bdc3c7
}

.theme-silver .zone-shares {
    background-color: #bdc3c7 !important
}

.theme-silver .zone-shares a:hover {
    color: #bdc3c7
}

.theme-silver .block-personage .no-image:hover {
    color: #bdc3c7;
    border-color: #bdc3c7
}

.theme-silver .block-row p a, .theme-silver .zone-pdf .block-pdf a, .theme-silver .zone-links h3 a {
    color: #bdc3c7
}

.theme-silver .block-row p a:hover, .theme-silver .zone-pdf .block-pdf a:hover, .theme-silver .zone-links h3 a:hover {
    color: #979c9f
}

@media (max-width: 767px) {
    .theme-silver .page-title {
        background-color: #bdc3c7
    }
}

.theme-asbestos .btn-link, .theme-asbestos .image-zoom .zoom, .theme-asbestos .btn-send input[type=submit] {
    background-color: #7f8c8d
}

.theme-asbestos .btn-link:hover, .theme-asbestos .image-zoom .zoom:hover, .theme-asbestos .btn-send input[type=submit]:hover {
    background-color: #667071
}

.theme-asbestos header .title-nav li:hover, .theme-asbestos header .title-nav .active, .theme-asbestos .zone-book .sharing p {
    background-color: #7f8c8d
}

.theme-asbestos .zone-tweets .block-blog .date span:nth-child(2) {
    color: #7f8c8d
}

.theme-asbestos .zone-shares {
    background-color: #7f8c8d !important
}

.theme-asbestos .zone-shares a:hover {
    color: #7f8c8d
}

.theme-asbestos .block-personage .no-image:hover {
    color: #7f8c8d;
    border-color: #7f8c8d
}

.theme-asbestos .block-row p a, .theme-asbestos .zone-pdf .block-pdf a, .theme-asbestos .zone-links h3 a {
    color: #7f8c8d
}

.theme-asbestos .block-row p a:hover, .theme-asbestos .zone-pdf .block-pdf a:hover, .theme-asbestos .zone-links h3 a:hover {
    color: #667071
}

@media (max-width: 767px) {
    .theme-asbestos .page-title {
        background-color: #7f8c8d
    }
}



.fileinput-button input {
    font-size: 12px;
}

/****** Overriding integration css ******/
header .header-fixed .btn-link{
    background-color: #eb0028!important;

}

.fan-area {
    display: inline-block;
}

.modal-backdrop {
    z-index: 0;
}

/*.container .btn-edit:after {*/
    /*content: '\e809';*/
/*}*/

#add_block:hover,.add_new_block:hover {
    text-decoration: none;
}

#add_block,.add_new_block:hover,
#add_block,.add_new_block:visited,
#add_block,.add_new_block:focus,
#add_block,.add_new_block {
    color: #fff;
}

div[id*="cke_blockbookster_"] {
    margin-bottom: 15px;
}

.link_cancel, .editing-mode .zone-shares .container a.link_cancel.default {
    width: auto;
    border-radius: 2px;
    border: 0;
    padding: 5px 15px;
    text-transform: none;
    color: #fff;
    margin-right: 10px;
    min-width: 80px;
    background-color: #f66;
    font-size: inherit;

}

.link_cancel:hover, .editing-mode .zone-shares .container a.link_cancel.default:hover {
    text-decoration: none;
    background-color: #b93d30;
    color: #fff;
}


.block-Request-press .form-Request-press .form-control {
    border: 1px solid #ADADAD;
    border-radius: 0 0 0 0;
    color: #000000;
    height: 35px;
    line-height: 30px;
    margin-bottom: 24px;
    padding: 6px 12px;
    width: 430px;
}

.form-Request-press .label-form {
    width: 125px;
    margin: 0 25px 0 0;
}

.form-Request-press .required-fields{
    margin: 0 0 41px 152px;
}


.form-contact .form-control[disabled] {
    background-color: #EEEEEE;
    cursor: not-allowed;
    opacity: 1;
}

.form-contact .btn-send input[type="submit"][disabled]{
    cursor: not-allowed;
    opacity: 0.6;
}

.contact_author .connect_invitation{
    margin-bottom:10px;
}

.sociel-btn span {
    padding: 0 56px;
}

#cke_blockbookster_pagebundle_bookcharacter_description {
    margin-left: 161px;
}

.title-editable {
    width: 470px;
    margin: 0 auto 30px;
    border: 1px dashed #ccc;
    position: relative;
    padding: 20px 50px 10px;
}

.title-editable .editing-btns {
    display: inline-block;
    color: #fff;
    background: #1574de;
    border-radius: 3px;
    height: 33px;
    width: 33px;
    font-size: 18px;
    text-align: center;
    padding: 3px;
    margin: 0 0 0 3px;
    cursor: pointer;
    top: 2px!important;
    right: 4px!important;

}

.title-editable .editing-btns {
    position: absolute;
    top: 2px!important;
    right: 4px!important;
}

.confirm-modal.modal-dialog {
    background-color: white;
}

@media (max-width: 767px) {
    body.no-background {
        background-color: white;
    }
}

.fileinput-button {
    position: relative;
}

.block-content-perso {
    margin: 0px auto 25px;
}

.text-size-max {
    font-size: large;
}

.text-size-min {
    font-size: inherit;
}

.page-book .sharing a.sharing-box { text-decoration : none;  color : white;  }
.page-book .sharing a.sharing-box:hover { text-decoration : none; color : white;  }
.page-book .sharing a.sharing-box:active,
.page-book .sharing a.sharing-box:focus { outline : none; }

#modalShareBox{ text-align: center;  }
#modalShareBox .modal-header .close{  color: #FFFFFF; line-height: 1em; opacity: 1;}
#modalShareBox .modal-header h3{ margin: 0px; }
#modalShareBox .modal-content { border-radius: 10px; text-align: center;}
#modalShareBox .modal-dialog {  width: 600px; }

#modalShareBox .modal-content .modal-header{
    background-color: #FF6666;
    border-radius: 10px 10px 0px 0px;
    color : white;
    font-family: "Open Sans Light",Helvetica,Arial,sans-serif;
}

#modalShareBox .modal-content .modal-body p{  margin : 20px; }
#modalShareBox .modal-content .modal-body .sharelinks.row { margin: 0; text-align: left}
#modalShareBox .modal-content .modal-body .sharelinks div a { color : #B1B2B4; font-size: 23px;}
#modalShareBox .modal-content .modal-body .sharelinks div a:hover { text-decoration : none; }
#modalShareBox .modal-content .modal-body .sharelinks div a:focus,
#modalShareBox .modal-content .modal-body .sharelinks div a:active { outline : none; }

#modalShareBox .modal-content .modal-body .sharelinks a span {
    display: inline-block;
    height: 20px;
    margin: -2px 20px 0 0;
    width: 20px;
}

#modalShareBox .modal-content .modal-body .sharelinks a.facebook span{background: url(../bundles/blockbookstercore/img/icons/share_facebook.png) 0 60% no-repeat}
#modalShareBox .modal-content .modal-body .sharelinks a.twitter span{background: url(../bundles/blockbookstercore/img/icons/share_twitter.png) 0 60% no-repeat}
#modalShareBox .modal-content .modal-body .sharelinks a.linkedin span{background: url(../bundles/blockbookstercore/img/icons/share_linkedin.png) 0 60% no-repeat}
#modalShareBox .modal-content .modal-body .sharelinks a.mail span{background: url(../bundles/blockbookstercore/img/icons/share_mail.png) 0 60% no-repeat}


.editing-panel .rubric-params .list-rubrics li .icon-trash-1{
    color: #fff;
}

.footer-fixed {
    position: fixed;
    bottom:0;
    left:0;
    right:0;
}
footer.footer .logo img {
    width: 100px;
}

.block-rubrique.disabled a.disabled:hover {
    opacity: 1;
    filter: alpha(opacity=100);
    cursor: not-allowed;
}

.page-gallery-editing {
    background-color: #f4f5f6;
}

.page-gallery-editing .container__header-page {
    margin-left: 0px !important;
    background-color: #f4f5f6 !important;
}

.page-gallery-editing .popin-link {
    text-decoration: none;
}
.page-gallery-editing .zone-pencil {
    border: 1px dashed #ccc;
    font-weight: 300;
    margin: 0 auto 59px;
    text-align: center;
    padding: 5px 0 6px 5px;
    position: relative;
    width: 370px;
    font-size: 160.8%;
    color: #666;
}

.page-gallery-editing .page-title {
    border: none !important;
    padding: 5px !important;
}

.editing-mode.page-gallery-editing .zone-masonry .container .editing-btns {
    left: auto;
}

.editing-mode.page-gallery-editing .zone-masonry .ajax-submit-title .editing-btns span {
    padding: 0px;
    margin: 0px;
    padding-right: 5px;
}
.editing-mode.page-gallery-editing .zone-masonry .container .block-add a {
    color: #bfbfbf;
}

.help-block.error {
    margin: 0 0 10px 202px;
    font-style: italic;
    color: #be3a31;
    font-size: 73.06%;
    display: inline-block;
}

.block-item-auth{
    width: 99.7%;
}

.authentification .block-item-auth .error {
    margin-left: 234px;
}

.block-item-auth h3 a{
    color: #727272;
    text-decoration: underline;
}

p.light span {
    display: inline-block;
    width: 300px;
}

.error-align {
    margin-left: 0px!important;
}

.editing-mode.page-gallery-editing .zone-masonry .container .image-zoom .editing-btns {
    left: 10px;
}
.editing-mode.page-gallery-editing .zone-masonry .container .image-zoom .editing-btns span:not(.icon-star) {
    border-radius: 0;
    padding: 0;
    margin: 0;
    height: auto;
    width: auto;
}
.editing-mode.page-gallery-editing .zone-masonry .container .image-zoom .editing-btns a.popin-link,
.editing-mode.page-gallery-editing .zone-masonry .container .image-zoom .editing-btns a.btn-delete {
    display: inline-block;
    color: #fff;
    background: #1574de;
    border-radius: 3px;
    height: 33px;
    width: 33px;
    font-size: 18px;
    text-align: center;
    padding: 3px;
    margin: 0 0 0 3px;
    cursor: pointer;
}

.btn-blue:focus {
    color: #fff;
    text-decoration: none;
}
.popin-rubrique .modal-body {
    max-height: 100%;
}

.edit_mode_launcher {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 140%;
    background-color: #2a2a2a;
    padding: 6px 15px;
    margin: 0 0 20px;
    border-radius: 3px;
    color: #fff;
    cursor: pointer !important;
}
.edit_mode_launcher:focus,
.edit_mode_launcher:active,
.edit_mode_launcher:hover {
    background-color:#404040;
    text-decoration: none;
    color: #fff;
}
.edit_mode_launcher.add_book_launcher {
    top: 86px;
}
.edit_mode_launcher span[class*="icon-"]:before{
    margin-left: 0;
}
.edit_mode_launcher span[class*="icon-"]{
    margin-right: 10px;
}
.editing-mode:not(.page-gallery-editing) .edit_mode_launcher {
    display: none;
}

@media (max-width: 767px) {
    .edit_mode_launcher {
        display: none;
    }

    #modalShareBox .modal-dialog {
        width: auto;
    }
}

div[id^="popin-extract-"] {
    color: #000000;
}

div[id^="content-tabs-"] {
    color: #000000;
}

.editing-mode .zone-list-books .editing-btns {
    z-index: 98;
}

#width-auto {
    width: auto !important;
}

#error-page p {
    text-align: center;
}

.help-block.contributor-error.error {
    margin: 0 0 10px 0;
}

.bx-wrapper .bx-controls-direction a {
    z-index: 98;
}

#blockbookster_pagebundle_imagegallery ul, #blockbookster_pagebundle_pressreview ul {
    text-align: left;
    font-style: italic;
    color: #be3a31;
    font-size: 73.06%;
}

.external_link_list span[class="help-block error"] {
    margin: 0 0 10px 0px;
}

.zone-form-achat img.visuel-left {
    width: 35px;
}

.collection span[class="help-block error"] {
    margin: 0 0 10px 0px;
}

.list-step li a.no-clikable:hover {
  color: #a6a6a6;
}
.list-step li a.no-clikable:hover .number-step {
    color: #cacaca;
    border-color: #cacaca;
}

.zone-extract .editing {
    margin-top : 60px;
}

header .menu-login>li{
    font-size:14px;
}

/*tooltips*/
div[class^='filed-'].inline .form-control {
    display: inline-block;

}
div[class^='filed-'] .picto-info {
    background: url(../bundles/blockbookstercore/assets/images/icons/picto-info2.png) no-repeat left top;
    height: 21px;
    margin-top: 0;
    width: 21px;
    margin-left: 13px;
    display: inline-block;
    vertical-align: middle;
}

div[class^='filed-'] .tooltip.right .tooltip-arrow{
    border-right-color: #dff0d7;
}

div[class^='filed-'] .tooltip-inner{
    text-align: left;
    background: #dff0d7;
    color: #000000;
    font-size: 13px;
    border-radius: 3px;
    padding: 14px 13px 22px 13px;
}
.btn {
    font-size   : 13.95px;
    font-weight : 600;
}

.btn-success:hover {
    background-color : #25a35a;
    color            : #fff;
}

.btn-success {
    background-color : #2ecc71;
    border           : none;
}

/** Hack to prevent  jQuery ui to restyle all input password */
.reset-password input[type="password"].form-control {
    display: block;
    margin: 7px auto;
    height: 35px;
    padding: 6px 12px;
    font-size: 15px;
    line-height: 1.42857;
    color: #666;
    background-color: #fff;
    background-image: none;
    border: 1px solid #666;
    border-radius: 2px;
}

.center{
   text-align : center;
}

.page-book .block-row:nth-child(2n){
    background-image: none;
}
.page-book .block-row {
    background-repeat: repeat-y;
}

/* JB uploader style */
.jcrop-holder{
    margin-bottom: 5px;
}

.jb_loading {
    border: none;
}
.jcrop-keymgr{
    display: none!important;
}
.jb_crop_upload a{
    color: #3498db;
    font-size: 80%;
    padding: 0 2px;
    text-decoration: underline;
}

.jb_crop_confirm{
    display: inline-block;
    margin-right: 5px;
    background-color: #39ca74;
    width: auto;
    border-radius: 2px;
    border: 0;
    padding: 5px 15px !important;
    text-transform: none;
    color: #fff !important;
    min-width: 80px;
    text-decoration: none !important;
    font-size: 15px !important;
    cursor: pointer;
}

.jb_crop_reset{
    display: inline-block;
    width: auto;
    border-radius: 2px;
    border: 0;
    padding: 5px 15px !important;
    text-transform: none;
    color: #fff !important;
    min-width: 80px;
    background-color: #f66;
    text-decoration: none !important;
    font-size: 15px !important;
    cursor: pointer;
}

/* Studio header menu icons */
.flaticon-editorial:before { content: '\e017'; }
.flaticon-ebook:before { content: '\e018'; }
.flaticon-design-creatif:before { content: '\e019'; }
.flaticon-promotion-marketing:before { content: '\e01a'; }
.flaticon-fabrication-numerique:before { content: '\e01b'; }
.flaticon-support-technique:before { content: '\e01c'; }

/*old sprite will be removed*/
.sprite-icons {
    background-image: url(../bundles/blockbookstercore/img/icons/sprite-icons.png);
    background-repeat: no-repeat;
    display: block;
}

.sprite-icons-design-creatif {
    width: 20px;
    height: 20px;
    background-position: -2px -2px;
}

.sprite-icons-eBook {
    width: 20px;
    height: 20px;
    background-position: -26px -2px;
}

.sprite-icons-editorial {
    width: 20px;
    height: 20px;
    background-position: -2px -26px;
}

.sprite-icons-fabrication-numerique {
    width: 20px;
    height: 20px;
    background-position: -26px -26px;
}

.sprite-icons-promotion-marketing_OK {
    width: 20px;
    height: 20px;
    background-position: -50px -2px;
}

.sprite-icons-support-technique {
    width: 20px;
    height: 20px;
    background-position: -50px -26px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .sprite-icons {
        background-image: url(../bundles/blockbookstercore/img/icons/sprite-icons@2x.png);
        background-repeat: no-repeat;
        display: block;

        background-size: 72px 48px;
        height: 20px;
        width: 20px!important;
    }
}
@media (max-width: 767px) {

    header .menu-login #toggle-menu-services:checked~ul {
        height: 245px;
    }
}

.Dashboard-auteur .visuel-marge{
    width: 131px;
}
.block-content-studio .zone-editorial.is-sticky {
    margin-top: 127px;
}

@media (max-width: 767px) {
    header .lang li {
        display: none;
    }

    .image-zoom:hover .overlay{
        display: none;
    }
}

.block-content-edit-perso .description p {
    margin-bottom: 1em;
}

header .lang.open li {
    display: block;
}

.modal-backdrop {
    position: absolute;
}

#confirmBox .modal-footer a {
    color: #d12a2e;
}

#confirmBox .modal-footer .btn-primary {
    background-color: #d12a2e;
    border-color: #d12a2e;
    color: white;
}

#confirmBox .modal-footer .btn-primary:hover {
    background-color: #f66;
    border-color: #ff4d4d;
}

header .bar-right .premium {
    float: none;
    background: none;
    display: inline-block;
    position: relative;
    top: -6px;
}


.content-book-author .image img {
    max-width: 50%;
}


/*FONTELLO*/

@font-face {
    font-family: fontello;
    src: url(../bundles/blockbookstercore/assets/fonts/fontello/fontello.eot?71838875);
    src: url(../bundles/blockbookstercore/assets/fonts/fontello/fontello.eot?71838875#iefix) format("embedded-opentype"), url(../bundles/blockbookstercore/assets/fonts/fontello/fontello.woff?71838875) format("woff"), url(../bundles/blockbookstercore/assets/fonts/fontello/fontello.ttf?71838875) format("truetype"), url(../bundles/blockbookstercore/assets/fonts/fontello/fontello.svg?71838875#fontello) format("svg");
    font-weight: 400;
    font-style: normal
}

[class^=icon-]:before, [class*=" icon-"]:before, [class^=icon-]:after, [class*=" icon-"]:after {
  //  font-family: fontello;
    font-style: normal;
    font-weight: 400;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em
}

.icon-star-1:before {
    content: '\e800';
}

/* '' */
.icon-cog:before {
    content: '\e801';
}
/*.icon-cog:after, .editing-mode .zone-book .container .btn-param:after, .editing-mode .zone-summary .container .btn-param:after, .editing-mode .zone-personages .container .btn-param:after, .editing-mode .zone-press .container .btn-param:after, .editing-mode .zone-iframe .container .btn-param:after, .editing-mode .zone-extract .container .btn-param:after, .editing-mode .zone-gallery .container .btn-param:after, .editing-mode .zone-pdf .container .btn-param:after, .editing-mode .zone-questionnaire .container .btn-param:after, .editing-mode .zone-links .container .btn-param:after, .editing-mode .zone-quote .container .btn-param:after, .editing-mode .zone-biography .container .btn-param:after {*/
    /*content: '\e801';*/
/*}*/

/* '' */
.icon-th:before {
    content: '\e802';
}

/* '' */
.icon-group:before {
    content: '\e803';
}

/* '' */
.icon-trash:before {
    content: '\e804';
}

/* '' */
.icon-desktop:before {
    content: '\e805';
}

/* '' */
.icon-down-open-1:before {
    content: '\e806';
}

/* '' */
.icon-left-open-1:before {
    content: '\e807';
}

/* '' */
.icon-upload:before {
    content: '\e808';
}

/* '' */
.icon-dollar:before {
    content: '\e809';
}

/* '' */
.icon-cog-1:before {
    content: '\e80a';
}

/* '' */
.icon-magic:before {
    content: '\e80b';
}

/* '' */
.icon-link-1:before {
    content: '\e80c';
}

/* '' */
.icon-award:before {
    content: '\e80d';
}

/* '' */
.icon-globe:before {
    content: '\e80e';
}

/* '' */
.icon-download:before {
    content: '\e80f';
}

/* '' */
.icon-trash-1:before {
    content: '\e810';
}

/* '' */
.icon-books-3:before {
    content: '\e811';
}

/* '' */
.icon-brush:before {
    content: '\e812';
}

/* '' */
.icon-books-2:before {
    content: '\e813';
}

/* '' */
.icon-books-1:before {
    content: '\e814';
}

/* '' */
.icon-megaphone-1:before {
    content: '\e815';
}

/* '' */
.icon-email:before {
    content: '\e816';
}

/* '' */
.icon-left:before, .btn-back-desktop:before {
    content: '\e817';
}

/* '' */
.icon-plus:before {
    content: '\e818';
}

/* '' */
.icon-lightbulb-1:before {
    content: '\e819';
}

/* '' */
.icon-location-circled:before {
    content: '\e81a';
}

/* '' */
.icon-right-open-1:before {
    content: '\e81b';
}

/* '' */
.icon-up-open-1:before {
    content: '\e81c';
}

/* '' */
.icon-twitter:before {
    content: '\e81d';
}

/* '' */
.icon-facebook:before {
    content: '\e81e';
}

/* '' */
.icon-pencil:before {
    font-family: fontello !important;
    content: '\e81f' !important;
}
/*.icon-pencil:after, .editing-mode .zone-book .container .btn-edit:after, .editing-mode .zone-summary .container .btn-edit:after, .editing-mode .zone-personages .container .btn-edit:after, .editing-mode .zone-press .container .btn-edit:after, .editing-mode .zone-iframe .container .btn-edit:after, .editing-mode .zone-extract .container .btn-edit:after, .editing-mode .zone-gallery .container .btn-edit:after, .editing-mode .zone-pdf .container .btn-edit:after, .editing-mode .zone-review .container .btn-edit:after, .editing-mode .zone-questionnaire .container .btn-edit:after, .editing-mode .zone-links .container .btn-edit:after, .editing-mode .zone-quote .container .btn-edit:after, .editing-mode .zone-biography .container .btn-edit:after, .editing-mode .zone-shares .container .btn-edit:after {*/
    /*content: '\e81f';*/
/*}*/

/* '' */
.icon-exchange:before {
    content: '\e820';
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg)
}

/* '' */
.icon-gplus:before {
    content: '\e821';
}

/* '' */
.icon-pinterest:before {
    content: '\e822';
}

/* '' */
.icon-plus-1:before {
    content: '\e823';
}

/* '' */
.icon-logout:before {
    content: '\e824';
}

/* '' */
.icon-link:before {
    content: '\e825';
}

/* '' */
.icon-book:before {
    content: '\e826';
}

/* '' */
.icon-help-circled:before {
    content: '\e827';
}

/* '' */
.icon-vector-pencil:before {
    content: '\e828';
    font-family: fontello;
}

/* '' */
.icon-resize-vertical:before {
    content: '\e829';
}

/* '' */
.icon-align-left:before {
    content: '\e82a';
}

/* '' */
.icon-menu-1:before {
    content: '\e82b';
}

/* '' */
.icon-star:before {
    content: '\e82c';
}

/* '' */
.icon-move:before {
    content: '\e82d';
}

/* '' */
.icon-level-up:before {
    content: '\e82e';
}

/* '' */
.icon-picture:before {
    content: '\e82f';
}

/* '' */
.icon-menu:before {
    content: '\e830';
}

/* '' */
.icon-picture-1:before {
    content: '\e831';
}

/* '' */
.icon-books:before {
    content: '\e832';
}

/* '' */
.icon-library:before {
    content: '\e833';
}

/* '' */
.icon-store:before {
    content: '\e834';
}

/* '' */
.icon-icon-vendre:before {
    content: '\e835';
}

/* '' */
.icon-basket:before {
    content: '\e836';
}

/* '' */
.icon-gift:before {
    content: '\e837';
}

/* '' */
.icon-tag:before {
    content: '\e838';
}

/* '' */
.icon-share:before {
    content: '\e839';
}

/* '' */
.icon-emo-happy:before {
    content: '\e800';
}

/* FLATICON CORE */

@font-face {
    font-family: Flaticon;
    src: url(../bundles/blockbookstercore/assets/fonts/flaticon/flaticon.eot);
    src: url(../bundles/blockbookstercore/assets/fonts/flaticon/flaticon.eot#iefix) format("embedded-opentype"), url(../bundles/blockbookstercore/assets/fonts/flaticon/flaticon.woff) format("woff"), url(../bundles/blockbookstercore/assets/fonts/flaticon/flaticon.ttf) format("truetype"), url(../bundles/blockbookstercore/assets/fonts/flaticon/flaticon.svg) format("svg");
    font-weight: 400;
    font-style: normal
}

[class^=flaticon-]:before, [class*=" flaticon-"]:before, [class^=flaticon-]:after, [class*=" flaticon-"]:after {
    font-family: Flaticon;
    font-size: 20px;
    font-style: normal;
    margin-left: 20px;
    font-weight: 400
}

.flaticon-add88:before {
    content: "\e000";
}

.flaticon-arrow3:before {
    content: "\e001";
}

.flaticon-arrow483:before, .btn-more-close:before {
    content: "\e002";
}

.flaticon-big61:before {
    content: "\e003";
}

.flaticon-black218:before, .btn-send:before {
    content: "\e004";
}

.flaticon-black44:before {
    content: "\e005";
}

.flaticon-cross92:before {
    content: "\e006";
}

.flaticon-facebook5:before {
    content: "\e007";
}

.flaticon-house28:before {
    content: "\e008";
}

.flaticon-justify:before {
    content: "\e009";
}

.flaticon-keyboard48:before, .btn-more-articles:before {
    content: "\e00a";
}

.flaticon-linkedin11:before {
    content: "\e00b";
}

.flaticon-magnifier12:before, .btn-zoom:before, .image-zoom .zoom:before {
    content: "\e00c";
}

.flaticon-menu1:before {
    content: "\e00d";
}

.flaticon-navigate6:before, .btn-more-open:before {
    content: "\e00e";
}

.flaticon-play43:before {
    content: "\e00f";
}

.flaticon-share11:before, .btn-shares:before {
    content: "\e010";
}

.flaticon-shopping66:before {
    content: "\e011";
}

.flaticon-social19:before {
    content: "\e012";
}

.flaticon-ssl:before {
    content: "\e013";
}

.flaticon-super:before, .btn-more-personages:before {
    content: "\e014";
}

.flaticon-vertical3:before {
    content: "\e015";
}

.flaticon-view6:before, .zone-questionnaire .btn-more-questionnaire:before {
    content: "\e016";
}

.flaticon-ebook:before {
    content: '\e018';
}

.icon-iggy{
    display: inline-block;
    width: 63px;
    height: 62px;
    background-image: url(../bundles/blockbooksterpage/assets/images/content/picto-iggy.png);
}

.icon-congrats-user{
    display: inline-block;
    width: 96px;
    height: 96px;
    background-image: url(../bundles/blockbooksteraccount/assets/images/content/picto-user.png);
}

.print-icon{
    display: inline-block;
    width: 63px;
    height: 49px;
    background-image: url(../bundles/blockbooksterpage/assets/images/content/picto-print-2.png);
    position: relative;
    top: 31%;
}

div.zone-icon{
    display: inline-block;
    width: 70px;
    height: 70px;
}