/*!
 * Slider for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */

.slider {
    display: inline-block;
    vertical-align: middle;
    position: relative
}

.slider.slider-horizontal {
    width: 210px;
    height: 20px
}

.slider.slider-horizontal .slider-track {
    height: 10px;
    width: 100%;
    margin-top: -5px;
    top: 50%;
    left: 0
}

.slider.slider-horizontal .slider-selection {
    height: 100%;
    top: 0;
    bottom: 0
}

.slider.slider-horizontal .slider-handle {
    margin-left: -10px;
    margin-top: -5px
}

.slider.slider-horizontal .slider-handle.triangle {
    border-width: 0 10px 10px;
    width: 0;
    height: 0;
    border-bottom-color: #0480be;
    margin-top: 0
}

.slider.slider-vertical {
    height: 210px;
    width: 20px
}

.slider.slider-vertical .slider-track {
    width: 10px;
    height: 100%;
    margin-left: -5px;
    left: 50%;
    top: 0
}

.slider.slider-vertical .slider-selection {
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0
}

.slider.slider-vertical .slider-handle {
    margin-left: -5px;
    margin-top: -10px
}

.slider.slider-vertical .slider-handle.triangle {
    border-width: 10px 0 10px 10px;
    width: 1px;
    height: 1px;
    border-left-color: #0480be;
    margin-left: 0
}

.slider input {
    display: none
}

.slider .tooltip-inner {
    white-space: nowrap
}

.slider-track {
    position: absolute;
    cursor: pointer;
    background-color: #f7f7f7;
    background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
    background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
    background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
    background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px
}

.slider-selection {
    position: absolute;
    background-color: #f7f7f7;
    background-image: -moz-linear-gradient(top, #f9f9f9, #f5f5f5);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9), to(#f5f5f5));
    background-image: -webkit-linear-gradient(top, #f9f9f9, #f5f5f5);
    background-image: -o-linear-gradient(top, #f9f9f9, #f5f5f5);
    background-image: linear-gradient(to bottom, #f9f9f9, #f5f5f5);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px
}

.slider-handle {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #0e90d2;
    background-image: -moz-linear-gradient(top, #149bdf, #0480be);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
    background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
    background-image: -o-linear-gradient(top, #149bdf, #0480be);
    background-image: linear-gradient(to bottom, #149bdf, #0480be);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
    opacity: .8;
    border: 0 solid transparent
}

.slider-handle.round {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px
}

.slider-handle.triangle {
    background: transparent none
}


/*!
 * Bootstrap v2.3.2
 *
 * Copyright 2013 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
 */

.clearfix {
    *zoom: 1
}

.clearfix:before,
.clearfix:after {
    display: table;
    content: "";
    line-height: 0
}

.clearfix:after {
    clear: both
}

.hide-text {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0
}

.input-block-level {
    display: block;
    width: 100%;
    min-height: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

code,
pre {
    padding: 0 3px 2px;
    font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
    font-size: 12px;
    color: #333;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}

code {
    padding: 2px 4px;
    color: #d14;
    background-color: #f7f7f9;
    border: 1px solid #e1e1e8;
    white-space: nowrap
}

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 20px;
    word-break: break-all;
    word-wrap: break-word;
    white-space: pre;
    white-space: pre-wrap;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px
}

pre.prettyprint {
    margin-bottom: 20px
}

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

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

form {
    margin: 0 0 20px
}

fieldset {
    padding: 0;
    margin: 0;
    border: 0
}

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

legend small {
    font-size: 15px;
    color: #999
}

label,
input,
button,
select,
textarea {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px
}

input,
button,
select,
textarea {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
}

label {
    display: block;
    margin-bottom: 5px
}

select,
textarea,
input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color],
.uneditable-input {
    display: inline-block;
    height: 20px;
    padding: 4px 6px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 20px;
    color: #555;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    vertical-align: middle
}

input,
textarea,
.uneditable-input {
    width: 206px
}

textarea {
    height: auto
}

textarea,
input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color],
.uneditable-input {
    background-color: #fff;
    border: 1px solid #ccc;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border linear .2s, box-shadow linear .2s;
    -moz-transition: border linear .2s, box-shadow linear .2s;
    -o-transition: border linear .2s, box-shadow linear .2s;
    transition: border linear .2s, box-shadow linear .2s
}

textarea:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=time]:focus,
input[type=week]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=color]:focus,
.uneditable-input:focus {
    border-color: rgba(82, 168, 236, .8);
    outline: 0;
    outline: thin dotted \9;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(82, 168, 236, .6);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(82, 168, 236, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(82, 168, 236, .6)
}

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

input[type=file],
input[type=image],
input[type=submit],
input[type=reset],
input[type=button],
input[type=radio],
input[type=checkbox] {
    width: auto
}

select,
input[type=file] {
    height: 30px;
    *margin-top: 4px;
    line-height: 30px
}

select {
    width: 220px;
    border: 1px solid #ccc;
    background-color: #fff
}

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

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

.uneditable-input,
.uneditable-textarea {
    color: #999;
    background-color: #fcfcfc;
    border-color: #ccc;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .025);
    -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .025);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .025);
    cursor: not-allowed
}

.uneditable-input {
    overflow: hidden;
    white-space: nowrap
}

.uneditable-textarea {
    width: auto;
    height: auto
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #999
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #999
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #999
}

.radio,
.checkbox {
    min-height: 20px;
    padding-left: 20px
}

.radio input[type=radio],
.checkbox input[type=checkbox] {
    float: left;
    margin-left: -20px
}

.controls>.radio:first-child,
.controls>.checkbox:first-child {
    padding-top: 5px
}

.radio.inline,
.checkbox.inline {
    display: inline-block;
    padding-top: 5px;
    margin-bottom: 0;
    vertical-align: middle
}

.radio.inline+.radio.inline,
.checkbox.inline+.checkbox.inline {
    margin-left: 10px
}

.input-mini {
    width: 60px
}

.input-small {
    width: 90px
}

.input-medium {
    width: 150px
}

.input-large {
    width: 210px
}

.input-xlarge {
    width: 270px
}

.input-xxlarge {
    width: 530px
}

input[class*=span],
select[class*=span],
textarea[class*=span],
.uneditable-input[class*=span],
.row-fluid input[class*=span],
.row-fluid select[class*=span],
.row-fluid textarea[class*=span],
.row-fluid .uneditable-input[class*=span] {
    float: none;
    margin-left: 0
}

.input-append input[class*=span],
.input-append .uneditable-input[class*=span],
.input-prepend input[class*=span],
.input-prepend .uneditable-input[class*=span],
.row-fluid input[class*=span],
.row-fluid select[class*=span],
.row-fluid textarea[class*=span],
.row-fluid .uneditable-input[class*=span],
.row-fluid .input-prepend [class*=span],
.row-fluid .input-append [class*=span] {
    display: inline-block
}

input,
textarea,
.uneditable-input {
    margin-left: 0
}

.controls-row [class*=span]+[class*=span] {
    margin-left: 20px
}

input.span12,
textarea.span12,
.uneditable-input.span12 {
    width: 926px
}

input.span11,
textarea.span11,
.uneditable-input.span11 {
    width: 846px
}

input.span10,
textarea.span10,
.uneditable-input.span10 {
    width: 766px
}

input.span9,
textarea.span9,
.uneditable-input.span9 {
    width: 686px
}

input.span8,
textarea.span8,
.uneditable-input.span8 {
    width: 606px
}

input.span7,
textarea.span7,
.uneditable-input.span7 {
    width: 526px
}

input.span6,
textarea.span6,
.uneditable-input.span6 {
    width: 446px
}

input.span5,
textarea.span5,
.uneditable-input.span5 {
    width: 366px
}

input.span4,
textarea.span4,
.uneditable-input.span4 {
    width: 286px
}

input.span3,
textarea.span3,
.uneditable-input.span3 {
    width: 206px
}

input.span2,
textarea.span2,
.uneditable-input.span2 {
    width: 126px
}

input.span1,
textarea.span1,
.uneditable-input.span1 {
    width: 46px
}

.controls-row {
    *zoom: 1
}

.controls-row:before,
.controls-row:after {
    display: table;
    content: "";
    line-height: 0
}

.controls-row:after {
    clear: both
}

.controls-row [class*=span],
.row-fluid .controls-row [class*=span] {
    float: left
}

.controls-row .checkbox[class*=span],
.controls-row .radio[class*=span] {
    padding-top: 5px
}

input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
    cursor: not-allowed;
    background-color: #eee
}

input[type=radio][disabled],
input[type=checkbox][disabled],
input[type=radio][readonly],
input[type=checkbox][readonly] {
    background-color: transparent
}

.control-group.warning .control-label,
.control-group.warning .help-block,
.control-group.warning .help-inline {
    color: #c09853
}

.control-group.warning .checkbox,
.control-group.warning .radio,
.control-group.warning input,
.control-group.warning select,
.control-group.warning textarea {
    color: #c09853
}

.control-group.warning input,
.control-group.warning select,
.control-group.warning textarea {
    border-color: #c09853;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.control-group.warning input:focus,
.control-group.warning select:focus,
.control-group.warning textarea:focus {
    border-color: #a47e3c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #dbc59e;
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #dbc59e;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #dbc59e
}

.control-group.warning .input-prepend .add-on,
.control-group.warning .input-append .add-on {
    color: #c09853;
    background-color: #fcf8e3;
    border-color: #c09853
}

.control-group.error .control-label,
.control-group.error .help-block,
.control-group.error .help-inline {
    color: #b94a48
}

.control-group.error .checkbox,
.control-group.error .radio,
.control-group.error input,
.control-group.error select,
.control-group.error textarea {
    color: #b94a48
}

.control-group.error input,
.control-group.error select,
.control-group.error textarea {
    border-color: #b94a48;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.control-group.error input:focus,
.control-group.error select:focus,
.control-group.error textarea:focus {
    border-color: #953b39;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #d59392;
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #d59392;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #d59392
}

.control-group.error .input-prepend .add-on,
.control-group.error .input-append .add-on {
    color: #b94a48;
    background-color: #f2dede;
    border-color: #b94a48
}

.control-group.success .control-label,
.control-group.success .help-block,
.control-group.success .help-inline {
    color: #468847
}

.control-group.success .checkbox,
.control-group.success .radio,
.control-group.success input,
.control-group.success select,
.control-group.success textarea {
    color: #468847
}

.control-group.success input,
.control-group.success select,
.control-group.success textarea {
    border-color: #468847;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.control-group.success input:focus,
.control-group.success select:focus,
.control-group.success textarea:focus {
    border-color: #356635;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #7aba7b;
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #7aba7b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #7aba7b
}

.control-group.success .input-prepend .add-on,
.control-group.success .input-append .add-on {
    color: #468847;
    background-color: #dff0d8;
    border-color: #468847
}

.control-group.info .control-label,
.control-group.info .help-block,
.control-group.info .help-inline {
    color: #3a87ad
}

.control-group.info .checkbox,
.control-group.info .radio,
.control-group.info input,
.control-group.info select,
.control-group.info textarea {
    color: #3a87ad
}

.control-group.info input,
.control-group.info select,
.control-group.info textarea {
    border-color: #3a87ad;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.control-group.info input:focus,
.control-group.info select:focus,
.control-group.info textarea:focus {
    border-color: #2d6987;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #7ab5d3;
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #7ab5d3;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #7ab5d3
}

.control-group.info .input-prepend .add-on,
.control-group.info .input-append .add-on {
    color: #3a87ad;
    background-color: #d9edf7;
    border-color: #3a87ad
}

input:focus:invalid,
textarea:focus:invalid,
select:focus:invalid {
    color: #b94a48;
    border-color: #ee5f5b
}

input:focus:invalid:focus,
textarea:focus:invalid:focus,
select:focus:invalid:focus {
    border-color: #e9322d;
    -webkit-box-shadow: 0 0 6px #f8b9b7;
    -moz-box-shadow: 0 0 6px #f8b9b7;
    box-shadow: 0 0 6px #f8b9b7
}

.form-actions {
    padding: 19px 20px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border-top: 1px solid #e5e5e5;
    *zoom: 1
}

.form-actions:before,
.form-actions:after {
    display: table;
    content: "";
    line-height: 0
}

.form-actions:after {
    clear: both
}

.help-block,
.help-inline {
    color: #595959
}

.help-block {
    display: block;
    margin-bottom: 10px
}

.help-inline {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
    padding-left: 5px
}

.input-append,
.input-prepend {
    display: inline-block;
    margin-bottom: 10px;
    vertical-align: middle;
    font-size: 0;
    white-space: nowrap
}

.input-append input,
.input-prepend input,
.input-append select,
.input-prepend select,
.input-append .uneditable-input,
.input-prepend .uneditable-input,
.input-append .dropdown-menu,
.input-prepend .dropdown-menu,
.input-append .popover,
.input-prepend .popover {
    font-size: 14px
}

.input-append input,
.input-prepend input,
.input-append select,
.input-prepend select,
.input-append .uneditable-input,
.input-prepend .uneditable-input {
    position: relative;
    margin-bottom: 0;
    *margin-left: 0;
    vertical-align: top;
    -webkit-border-radius: 0 4px 4px 0;
    -moz-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0
}

.input-append input:focus,
.input-prepend input:focus,
.input-append select:focus,
.input-prepend select:focus,
.input-append .uneditable-input:focus,
.input-prepend .uneditable-input:focus {
    z-index: 2
}

.input-append .add-on,
.input-prepend .add-on {
    display: inline-block;
    width: auto;
    height: 20px;
    min-width: 16px;
    padding: 4px 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    text-shadow: 0 1px 0 #fff;
    background-color: #eee;
    border: 1px solid #ccc
}

.input-append .add-on,
.input-prepend .add-on,
.input-append .btn,
.input-prepend .btn,
.input-append .btn-group>.dropdown-toggle,
.input-prepend .btn-group>.dropdown-toggle {
    vertical-align: top;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0
}

.input-append .active,
.input-prepend .active {
    background-color: #a9dba9;
    border-color: #46a546
}

.input-prepend .add-on,
.input-prepend .btn {
    margin-right: -1px
}

.input-prepend .add-on:first-child,
.input-prepend .btn:first-child {
    -webkit-border-radius: 4px 0 0 4px;
    -moz-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px
}

.input-append input,
.input-append select,
.input-append .uneditable-input {
    -webkit-border-radius: 4px 0 0 4px;
    -moz-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px
}

.input-append input+.btn-group .btn:last-child,
.input-append select+.btn-group .btn:last-child,
.input-append .uneditable-input+.btn-group .btn:last-child {
    -webkit-border-radius: 0 4px 4px 0;
    -moz-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0
}

.input-append .add-on,
.input-append .btn,
.input-append .btn-group {
    margin-left: -1px
}

.input-append .add-on:last-child,
.input-append .btn:last-child,
.input-append .btn-group:last-child>.dropdown-toggle {
    -webkit-border-radius: 0 4px 4px 0;
    -moz-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0
}

.input-prepend.input-append input,
.input-prepend.input-append select,
.input-prepend.input-append .uneditable-input {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0
}

.input-prepend.input-append input+.btn-group .btn,
.input-prepend.input-append select+.btn-group .btn,
.input-prepend.input-append .uneditable-input+.btn-group .btn {
    -webkit-border-radius: 0 4px 4px 0;
    -moz-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0
}

.input-prepend.input-append .add-on:first-child,
.input-prepend.input-append .btn:first-child {
    margin-right: -1px;
    -webkit-border-radius: 4px 0 0 4px;
    -moz-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px
}

.input-prepend.input-append .add-on:last-child,
.input-prepend.input-append .btn:last-child {
    margin-left: -1px;
    -webkit-border-radius: 0 4px 4px 0;
    -moz-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0
}

.input-prepend.input-append .btn-group:first-child {
    margin-left: 0
}

input.search-query {
    padding-right: 14px;
    padding-right: 4px \9;
    padding-left: 14px;
    padding-left: 4px \9;
    margin-bottom: 0;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px
}

.form-search .input-append .search-query,
.form-search .input-prepend .search-query {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0
}

.form-search .input-append .search-query {
    -webkit-border-radius: 14px 0 0 14px;
    -moz-border-radius: 14px 0 0 14px;
    border-radius: 14px 0 0 14px
}

.form-search .input-append .btn {
    -webkit-border-radius: 0 14px 14px 0;
    -moz-border-radius: 0 14px 14px 0;
    border-radius: 0 14px 14px 0
}

.form-search .input-prepend .search-query {
    -webkit-border-radius: 0 14px 14px 0;
    -moz-border-radius: 0 14px 14px 0;
    border-radius: 0 14px 14px 0
}

.form-search .input-prepend .btn {
    -webkit-border-radius: 14px 0 0 14px;
    -moz-border-radius: 14px 0 0 14px;
    border-radius: 14px 0 0 14px
}

.form-search input,
.form-inline input,
.form-horizontal input,
.form-search textarea,
.form-inline textarea,
.form-horizontal textarea,
.form-search select,
.form-inline select,
.form-horizontal select,
.form-search .help-inline,
.form-inline .help-inline,
.form-horizontal .help-inline,
.form-search .uneditable-input,
.form-inline .uneditable-input,
.form-horizontal .uneditable-input,
.form-search .input-prepend,
.form-inline .input-prepend,
.form-horizontal .input-prepend,
.form-search .input-append,
.form-inline .input-append,
.form-horizontal .input-append {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    margin-bottom: 0;
    vertical-align: middle
}

.form-search .hide,
.form-inline .hide,
.form-horizontal .hide {
    display: none
}

.form-search label,
.form-inline label,
.form-search .btn-group,
.form-inline .btn-group {
    display: inline-block
}

.form-search .input-append,
.form-inline .input-append,
.form-search .input-prepend,
.form-inline .input-prepend {
    margin-bottom: 0
}

.form-search .radio,
.form-search .checkbox,
.form-inline .radio,
.form-inline .checkbox {
    padding-left: 0;
    margin-bottom: 0;
    vertical-align: middle
}

.form-search .radio input[type=radio],
.form-search .checkbox input[type=checkbox],
.form-inline .radio input[type=radio],
.form-inline .checkbox input[type=checkbox] {
    float: left;
    margin-right: 3px;
    margin-left: 0
}

.control-group {
    margin-bottom: 10px
}

legend+.control-group {
    margin-top: 20px;
    -webkit-margin-top-collapse: separate
}

.form-horizontal .control-group {
    margin-bottom: 20px;
    *zoom: 1
}

.form-horizontal .control-group:before,
.form-horizontal .control-group:after {
    display: table;
    content: "";
    line-height: 0
}

.form-horizontal .control-group:after {
    clear: both
}

.form-horizontal .control-label {
    float: left;
    width: 160px;
    padding-top: 5px;
    text-align: right
}

.form-horizontal .controls {
    *display: inline-block;
    *padding-left: 20px;
    margin-left: 180px;
    *margin-left: 0
}

.form-horizontal .controls:first-child {
    *padding-left: 180px
}

.form-horizontal .help-block {
    margin-bottom: 0
}

.form-horizontal input+.help-block,
.form-horizontal select+.help-block,
.form-horizontal textarea+.help-block,
.form-horizontal .uneditable-input+.help-block,
.form-horizontal .input-prepend+.help-block,
.form-horizontal .input-append+.help-block {
    margin-top: 10px
}

.form-horizontal .form-actions {
    padding-left: 180px
}

.btn {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    padding: 4px 12px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    color: #333;
    text-shadow: 0 1px 1px rgba(255, 255, 255, .75);
    background-color: #f5f5f5;
    background-image: -moz-linear-gradient(top, #fff, #e6e6e6);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#e6e6e6));
    background-image: -webkit-linear-gradient(top, #fff, #e6e6e6);
    background-image: -o-linear-gradient(top, #fff, #e6e6e6);
    background-image: linear-gradient(to bottom, #fff, #e6e6e6);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
    border-color: #e6e6e6 #e6e6e6 #bfbfbf;
    border-color: rgba(0, 0, 0, .1) rgba(0, 0, 0, .1) rgba(0, 0, 0, .25);
    *background-color: #e6e6e6;
    filter: progid: DXImageTransform.Microsoft.gradient(enabled=false);
    border: 1px solid #ccc;
    *border: 0;
    border-bottom-color: #b3b3b3;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    *margin-left: .3em;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05)
}

.btn:hover,
.btn:focus,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled] {
    color: #333;
    background-color: #e6e6e6;
    *background-color: #d9d9d9
}

.btn:active,
.btn.active {
    background-color: #ccc \9
}

.btn:first-child {
    *margin-left: 0
}

.btn:hover,
.btn:focus {
    color: #333;
    text-decoration: none;
    background-position: 0 -15px;
    -webkit-transition: background-position .1s linear;
    -moz-transition: background-position .1s linear;
    -o-transition: background-position .1s linear;
    transition: background-position .1s linear
}

.btn:focus {
    outline: thin dotted #333;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

.btn.active,
.btn:active {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, .15), 0 1px 2px rgba(0, 0, 0, .05);
    -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, .15), 0 1px 2px rgba(0, 0, 0, .05);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, .15), 0 1px 2px rgba(0, 0, 0, .05)
}

.btn.disabled,
.btn[disabled] {
    cursor: default;
    background-image: none;
    opacity: .65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none
}

.btn-large {
    padding: 11px 19px;
    font-size: 17.5px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px
}

.btn-large [class^=icon-],
.btn-large [class*=" icon-"] {
    margin-top: 4px
}

.btn-small {
    padding: 2px 10px;
    font-size: 11.9px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}

.btn-small [class^=icon-],
.btn-small [class*=" icon-"] {
    margin-top: 0
}

.btn-mini [class^=icon-],
.btn-mini [class*=" icon-"] {
    margin-top: -1px
}

.btn-mini {
    padding: 0 6px;
    font-size: 10.5px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}

.btn-block {
    display: block;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.btn-block+.btn-block {
    margin-top: 5px
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
    width: 100%
}

.btn-primary.active,
.btn-warning.active,
.btn-danger.active,
.btn-success.active,
.btn-info.active,
.btn-inverse.active {
    color: rgba(255, 255, 255, .75)
}

.btn-primary {
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
    background-color: #006dcc;
    background-image: -moz-linear-gradient(top, #08c, #04c);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#04c));
    background-image: -webkit-linear-gradient(top, #08c, #04c);
    background-image: -o-linear-gradient(top, #08c, #04c);
    background-image: linear-gradient(to bottom, #08c, #04c);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
    border-color: #04c #04c #002a80;
    border-color: rgba(0, 0, 0, .1) rgba(0, 0, 0, .1) rgba(0, 0, 0, .25);
    *background-color: #04c;
    filter: progid: DXImageTransform.Microsoft.gradient(enabled=false)
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
    color: #fff;
    background-color: #04c;
    *background-color: #003bb3
}

.btn-primary:active,
.btn-primary.active {
    background-color: #039 \9
}

.btn-warning {
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
    background-color: #faa732;
    background-image: -moz-linear-gradient(top, #fbb450, #f89406);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
    background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
    background-image: -o-linear-gradient(top, #fbb450, #f89406);
    background-image: linear-gradient(to bottom, #fbb450, #f89406);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
    border-color: #f89406 #f89406 #ad6704;
    border-color: rgba(0, 0, 0, .1) rgba(0, 0, 0, .1) rgba(0, 0, 0, .25);
    *background-color: #f89406;
    filter: progid: DXImageTransform.Microsoft.gradient(enabled=false)
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.btn-warning.disabled,
.btn-warning[disabled] {
    color: #fff;
    background-color: #f89406;
    *background-color: #df8505
}

.btn-warning:active,
.btn-warning.active {
    background-color: #c67605 \9
}

.btn-danger {
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
    background-color: #da4f49;
    background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
    background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
    background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
    background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
    border-color: #bd362f #bd362f #802420;
    border-color: rgba(0, 0, 0, .1) rgba(0, 0, 0, .1) rgba(0, 0, 0, .25);
    *background-color: #bd362f;
    filter: progid: DXImageTransform.Microsoft.gradient(enabled=false)
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.btn-danger.disabled,
.btn-danger[disabled] {
    color: #fff;
    background-color: #bd362f;
    *background-color: #a9302a
}

.btn-danger:active,
.btn-danger.active {
    background-color: #942a25 \9
}

.btn-success {
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
    background-color: #5bb75b;
    background-image: -moz-linear-gradient(top, #62c462, #51a351);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
    background-image: -webkit-linear-gradient(top, #62c462, #51a351);
    background-image: -o-linear-gradient(top, #62c462, #51a351);
    background-image: linear-gradient(to bottom, #62c462, #51a351);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
    border-color: #51a351 #51a351 #387038;
    border-color: rgba(0, 0, 0, .1) rgba(0, 0, 0, .1) rgba(0, 0, 0, .25);
    *background-color: #51a351;
    filter: progid: DXImageTransform.Microsoft.gradient(enabled=false)
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
    color: #fff;
    background-color: #51a351;
    *background-color: #499249
}

.btn-success:active,
.btn-success.active {
    background-color: #408140 \9
}

.btn-info {
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
    background-color: #49afcd;
    background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
    background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
    background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
    background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);
    border-color: #2f96b4 #2f96b4 #1f6377;
    border-color: rgba(0, 0, 0, .1) rgba(0, 0, 0, .1) rgba(0, 0, 0, .25);
    *background-color: #2f96b4;
    filter: progid: DXImageTransform.Microsoft.gradient(enabled=false)
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
    color: #fff;
    background-color: #2f96b4;
    *background-color: #2a85a0
}

.btn-info:active,
.btn-info.active {
    background-color: #24748c \9
}

.btn-inverse {
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
    background-color: #363636;
    background-image: -moz-linear-gradient(top, #444, #222);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444), to(#222));
    background-image: -webkit-linear-gradient(top, #444, #222);
    background-image: -o-linear-gradient(top, #444, #222);
    background-image: linear-gradient(to bottom, #444, #222);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);
    border-color: #222 #222 #000;
    border-color: rgba(0, 0, 0, .1) rgba(0, 0, 0, .1) rgba(0, 0, 0, .25);
    *background-color: #222;
    filter: progid: DXImageTransform.Microsoft.gradient(enabled=false)
}

.btn-inverse:hover,
.btn-inverse:focus,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] {
    color: #fff;
    background-color: #222;
    *background-color: #151515
}

.btn-inverse:active,
.btn-inverse.active {
    background-color: #080808 \9
}

button.btn,
input[type=submit].btn {
    *padding-top: 3px;
    *padding-bottom: 3px
}

button.btn::-moz-focus-inner,
input[type=submit].btn::-moz-focus-inner {
    padding: 0;
    border: 0
}

button.btn.btn-large,
input[type=submit].btn.btn-large {
    *padding-top: 7px;
    *padding-bottom: 7px
}

button.btn.btn-small,
input[type=submit].btn.btn-small {
    *padding-top: 3px;
    *padding-bottom: 3px
}

button.btn.btn-mini,
input[type=submit].btn.btn-mini {
    *padding-top: 1px;
    *padding-bottom: 1px
}

.btn-link,
.btn-link:active,
.btn-link[disabled] {
    background-color: transparent;
    background-image: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none
}

.btn-link {
    border-color: transparent;
    cursor: pointer;
    color: #08c;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0
}

.btn-link:hover,
.btn-link:focus {
    color: #005580;
    text-decoration: underline;
    background-color: transparent
}

.btn-link[disabled]:hover,
.btn-link[disabled]:focus {
    color: #333;
    text-decoration: none
}

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

.icon-white,
.nav-pills>.active>a>[class^=icon-],
.nav-pills>.active>a>[class*=" icon-"],
.nav-list>.active>a>[class^=icon-],
.nav-list>.active>a>[class*=" icon-"],
.navbar-inverse .nav>.active>a>[class^=icon-],
.navbar-inverse .nav>.active>a>[class*=" icon-"],
.dropdown-menu>li>a:hover>[class^=icon-],
.dropdown-menu>li>a:focus>[class^=icon-],
.dropdown-menu>li>a:hover>[class*=" icon-"],
.dropdown-menu>li>a:focus>[class*=" icon-"],
.dropdown-menu>.active>a>[class^=icon-],
.dropdown-menu>.active>a>[class*=" icon-"],
.dropdown-submenu:hover>a>[class^=icon-],
.dropdown-submenu:focus>a>[class^=icon-],
.dropdown-submenu:hover>a>[class*=" icon-"],
.dropdown-submenu:focus>a>[class*=" icon-"] {
    background-image: url(../resources/bootstrap/glyphicons-halflings-white.png)
}

.icon-glass {
    background-position: 0 0
}

.icon-music {
    background-position: -24px 0
}

.icon-search {
    background-position: -48px 0
}

.icon-envelope {
    background-position: -72px 0
}

.icon-heart {
    background-position: -96px 0
}

.icon-star {
    background-position: -120px 0
}

.icon-star-empty {
    background-position: -144px 0
}

.icon-user {
    background-position: -168px 0
}

.icon-film {
    background-position: -192px 0
}

.icon-th-large {
    background-position: -216px 0
}

.icon-th {
    background-position: -240px 0
}

.icon-th-list {
    background-position: -264px 0
}

.icon-ok {
    background-position: -288px 0
}

.icon-remove {
    background-position: -312px 0
}

.icon-zoom-in {
    background-position: -336px 0
}

.icon-zoom-out {
    background-position: -360px 0
}

.icon-off {
    background-position: -384px 0
}

.icon-signal {
    background-position: -408px 0
}

.icon-cog {
    background-position: -432px 0
}

.icon-trash {
    background-position: -456px 0
}

.icon-home {
    background-position: 0 -24px
}

.icon-file {
    background-position: -24px -24px
}

.icon-time {
    background-position: -48px -24px
}

.icon-road {
    background-position: -72px -24px
}

.icon-download-alt {
    background-position: -96px -24px
}

.icon-download {
    background-position: -120px -24px
}

.icon-upload {
    background-position: -144px -24px
}

.icon-inbox {
    background-position: -168px -24px
}

.icon-play-circle {
    background-position: -192px -24px
}

.icon-repeat {
    background-position: -216px -24px
}

.icon-refresh {
    background-position: -240px -24px
}

.icon-list-alt {
    background-position: -264px -24px
}

.icon-lock {
    background-position: -287px -24px
}

.icon-flag {
    background-position: -312px -24px
}

.icon-headphones {
    background-position: -336px -24px
}

.icon-volume-off {
    background-position: -360px -24px
}

.icon-volume-down {
    background-position: -384px -24px
}

.icon-volume-up {
    background-position: -408px -24px
}

.icon-qrcode {
    background-position: -432px -24px
}

.icon-barcode {
    background-position: -456px -24px
}

.icon-tag {
    background-position: 0 -48px
}

.icon-tags {
    background-position: -25px -48px
}

.icon-book {
    background-position: -48px -48px
}

.icon-bookmark {
    background-position: -72px -48px
}

.icon-print {
    background-position: -96px -48px
}

.icon-camera {
    background-position: -120px -48px
}

.icon-font {
    background-position: -144px -48px
}

.icon-bold {
    background-position: -167px -48px
}

.icon-italic {
    background-position: -192px -48px
}

.icon-text-height {
    background-position: -216px -48px
}

.icon-text-width {
    background-position: -240px -48px
}

.icon-align-left {
    background-position: -264px -48px
}

.icon-align-center {
    background-position: -288px -48px
}

.icon-align-right {
    background-position: -312px -48px
}

.icon-align-justify {
    background-position: -336px -48px
}

.icon-list {
    background-position: -360px -48px
}

.icon-indent-left {
    background-position: -384px -48px
}

.icon-indent-right {
    background-position: -408px -48px
}

.icon-facetime-video {
    background-position: -432px -48px
}

.icon-picture {
    background-position: -456px -48px
}

.icon-pencil {
    background-position: 0 -72px
}

.icon-map-marker {
    background-position: -24px -72px
}

.icon-adjust {
    background-position: -48px -72px
}

.icon-tint {
    background-position: -72px -72px
}

.icon-edit {
    background-position: -96px -72px
}

.icon-share {
    background-position: -120px -72px
}

.icon-check {
    background-position: -144px -72px
}

.icon-move {
    background-position: -168px -72px
}

.icon-step-backward {
    background-position: -192px -72px
}

.icon-fast-backward {
    background-position: -216px -72px
}

.icon-backward {
    background-position: -240px -72px
}

.icon-play {
    background-position: -264px -72px
}

.icon-pause {
    background-position: -288px -72px
}

.icon-stop {
    background-position: -312px -72px
}

.icon-forward {
    background-position: -336px -72px
}

.icon-fast-forward {
    background-position: -360px -72px
}

.icon-step-forward {
    background-position: -384px -72px
}

.icon-eject {
    background-position: -408px -72px
}

.icon-chevron-left {
    background-position: -432px -72px
}

.icon-chevron-right {
    background-position: -456px -72px
}

.icon-plus-sign {
    background-position: 0 -96px
}

.icon-minus-sign {
    background-position: -24px -96px
}

.icon-remove-sign {
    background-position: -48px -96px
}

.icon-ok-sign {
    background-position: -72px -96px
}

.icon-question-sign {
    background-position: -96px -96px
}

.icon-info-sign {
    background-position: -120px -96px
}

.icon-screenshot {
    background-position: -144px -96px
}

.icon-remove-circle {
    background-position: -168px -96px
}

.icon-ok-circle {
    background-position: -192px -96px
}

.icon-ban-circle {
    background-position: -216px -96px
}

.icon-arrow-left {
    background-position: -240px -96px
}

.icon-arrow-right {
    background-position: -264px -96px
}

.icon-arrow-up {
    background-position: -289px -96px
}

.icon-arrow-down {
    background-position: -312px -96px
}

.icon-share-alt {
    background-position: -336px -96px
}

.icon-resize-full {
    background-position: -360px -96px
}

.icon-resize-small {
    background-position: -384px -96px
}

.icon-plus {
    background-position: -408px -96px
}

.icon-minus {
    background-position: -433px -96px
}

.icon-asterisk {
    background-position: -456px -96px
}

.icon-exclamation-sign {
    background-position: 0 -120px
}

.icon-gift {
    background-position: -24px -120px
}

.icon-leaf {
    background-position: -48px -120px
}

.icon-fire {
    background-position: -72px -120px
}

.icon-eye-open {
    background-position: -96px -120px
}

.icon-eye-close {
    background-position: -120px -120px
}

.icon-warning-sign {
    background-position: -144px -120px
}

.icon-plane {
    background-position: -168px -120px
}

.icon-calendar {
    background-position: -192px -120px
}

.icon-random {
    background-position: -216px -120px;
    width: 16px
}

.icon-comment {
    background-position: -240px -120px
}

.icon-magnet {
    background-position: -264px -120px
}

.icon-chevron-up {
    background-position: -288px -120px
}

.icon-chevron-down {
    background-position: -313px -119px
}

.icon-retweet {
    background-position: -336px -120px
}

.icon-shopping-cart {
    background-position: -360px -120px
}

.icon-folder-close {
    background-position: -384px -120px;
    width: 16px
}

.icon-folder-open {
    background-position: -408px -120px;
    width: 16px
}

.icon-resize-vertical {
    background-position: -432px -119px
}

.icon-resize-horizontal {
    background-position: -456px -118px
}

.icon-hdd {
    background-position: 0 -144px
}

.icon-bullhorn {
    background-position: -24px -144px
}

.icon-bell {
    background-position: -48px -144px
}

.icon-certificate {
    background-position: -72px -144px
}

.icon-thumbs-up {
    background-position: -96px -144px
}

.icon-thumbs-down {
    background-position: -120px -144px
}

.icon-hand-right {
    background-position: -144px -144px
}

.icon-hand-left {
    background-position: -168px -144px
}

.icon-hand-up {
    background-position: -192px -144px
}

.icon-hand-down {
    background-position: -216px -144px
}

.icon-circle-arrow-right {
    background-position: -240px -144px
}

.icon-circle-arrow-left {
    background-position: -264px -144px
}

.icon-circle-arrow-up {
    background-position: -288px -144px
}

.icon-circle-arrow-down {
    background-position: -312px -144px
}

.icon-globe {
    background-position: -336px -144px
}

.icon-wrench {
    background-position: -360px -144px
}

.icon-tasks {
    background-position: -384px -144px
}

.icon-filter {
    background-position: -408px -144px
}

.icon-briefcase {
    background-position: -432px -144px
}

.icon-fullscreen {
    background-position: -456px -144px
}

.btn-group {
    position: relative;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    font-size: 0;
    vertical-align: middle;
    white-space: nowrap;
    *margin-left: .3em
}

.btn-group:first-child {
    *margin-left: 0
}

.btn-group+.btn-group {
    margin-left: 5px
}

.btn-toolbar {
    font-size: 0;
    margin-top: 10px;
    margin-bottom: 10px
}

.btn-toolbar>.btn+.btn,
.btn-toolbar>.btn-group+.btn,
.btn-toolbar>.btn+.btn-group {
    margin-left: 5px
}

.btn-group>.btn {
    position: relative;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0
}

.btn-group>.btn+.btn {
    margin-left: -1px
}

.btn-group>.btn,
.btn-group>.dropdown-menu,
.btn-group>.popover {
    font-size: 14px
}

.btn-group>.btn-mini {
    font-size: 10.5px
}

.btn-group>.btn-small {
    font-size: 11.9px
}

.btn-group>.btn-large {
    font-size: 17.5px
}

.btn-group>.btn:first-child {
    margin-left: 0;
    -webkit-border-top-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
    border-top-left-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-bottom-left-radius: 4px
}

.btn-group>.btn:last-child,
.btn-group>.dropdown-toggle {
    -webkit-border-top-right-radius: 4px;
    -moz-border-radius-topright: 4px;
    border-top-right-radius: 4px;
    -webkit-border-bottom-right-radius: 4px;
    -moz-border-radius-bottomright: 4px;
    border-bottom-right-radius: 4px
}

.btn-group>.btn.large:first-child {
    margin-left: 0;
    -webkit-border-top-left-radius: 6px;
    -moz-border-radius-topleft: 6px;
    border-top-left-radius: 6px;
    -webkit-border-bottom-left-radius: 6px;
    -moz-border-radius-bottomleft: 6px;
    border-bottom-left-radius: 6px
}

.btn-group>.btn.large:last-child,
.btn-group>.large.dropdown-toggle {
    -webkit-border-top-right-radius: 6px;
    -moz-border-radius-topright: 6px;
    border-top-right-radius: 6px;
    -webkit-border-bottom-right-radius: 6px;
    -moz-border-radius-bottomright: 6px;
    border-bottom-right-radius: 6px
}

.btn-group>.btn:hover,
.btn-group>.btn:focus,
.btn-group>.btn:active,
.btn-group>.btn.active {
    z-index: 2
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
    outline: 0
}

.btn-group>.btn+.dropdown-toggle {
    padding-left: 8px;
    padding-right: 8px;
    -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, .125), inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
    -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, .125), inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
    box-shadow: inset 1px 0 0 rgba(255, 255, 255, .125), inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
    *padding-top: 5px;
    *padding-bottom: 5px
}

.btn-group>.btn-mini+.dropdown-toggle {
    padding-left: 5px;
    padding-right: 5px;
    *padding-top: 2px;
    *padding-bottom: 2px
}

.btn-group>.btn-small+.dropdown-toggle {
    *padding-top: 5px;
    *padding-bottom: 4px
}

.btn-group>.btn-large+.dropdown-toggle {
    padding-left: 12px;
    padding-right: 12px;
    *padding-top: 7px;
    *padding-bottom: 7px
}

.btn-group.open .dropdown-toggle {
    background-image: none;
    -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, .15), 0 1px 2px rgba(0, 0, 0, .05);
    -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, .15), 0 1px 2px rgba(0, 0, 0, .05);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, .15), 0 1px 2px rgba(0, 0, 0, .05)
}

.btn-group.open .btn.dropdown-toggle {
    background-color: #e6e6e6
}

.btn-group.open .btn-primary.dropdown-toggle {
    background-color: #04c
}

.btn-group.open .btn-warning.dropdown-toggle {
    background-color: #f89406
}

.btn-group.open .btn-danger.dropdown-toggle {
    background-color: #bd362f
}

.btn-group.open .btn-success.dropdown-toggle {
    background-color: #51a351
}

.btn-group.open .btn-info.dropdown-toggle {
    background-color: #2f96b4
}

.btn-group.open .btn-inverse.dropdown-toggle {
    background-color: #222
}

.btn .caret {
    margin-top: 8px;
    margin-left: 0
}

.btn-large .caret {
    margin-top: 6px
}

.btn-large .caret {
    border-left-width: 5px;
    border-right-width: 5px;
    border-top-width: 5px
}

.btn-mini .caret,
.btn-small .caret {
    margin-top: 8px
}

.dropup .btn-large .caret {
    border-bottom-width: 5px
}

.btn-primary .caret,
.btn-warning .caret,
.btn-danger .caret,
.btn-info .caret,
.btn-success .caret,
.btn-inverse .caret {
    border-top-color: #fff;
    border-bottom-color: #fff
}

.btn-group-vertical {
    display: inline-block;
    *display: inline;
    *zoom: 1
}

.btn-group-vertical>.btn {
    display: block;
    float: none;
    max-width: 100%;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0
}

.btn-group-vertical>.btn+.btn {
    margin-left: 0;
    margin-top: -1px
}

.btn-group-vertical>.btn:first-child {
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0
}

.btn-group-vertical>.btn:last-child {
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px
}

.btn-group-vertical>.btn-large:first-child {
    -webkit-border-radius: 6px 6px 0 0;
    -moz-border-radius: 6px 6px 0 0;
    border-radius: 6px 6px 0 0
}

.btn-group-vertical>.btn-large:last-child {
    -webkit-border-radius: 0 0 6px 6px;
    -moz-border-radius: 0 0 6px 6px;
    border-radius: 0 0 6px 6px
}

.nav {
    margin-left: 0;
    margin-bottom: 20px;
    list-style: none
}

.nav>li>a {
    display: block
}

.nav>li>a:hover,
.nav>li>a:focus {
    text-decoration: none;
    background-color: #eee
}

.nav>li>a>img {
    max-width: none
}

.nav>.pull-right {
    float: right
}

.nav-header {
    display: block;
    padding: 3px 15px;
    font-size: 11px;
    font-weight: 700;
    line-height: 20px;
    color: #999;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
    text-transform: uppercase
}

.nav li+.nav-header {
    margin-top: 9px
}

.nav-list {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 0
}

.nav-list>li>a,
.nav-list .nav-header {
    margin-left: -15px;
    margin-right: -15px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .5)
}

.nav-list>li>a {
    padding: 3px 15px
}

.nav-list>.active>a,
.nav-list>.active>a:hover,
.nav-list>.active>a:focus {
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
    background-color: #08c
}

.nav-list [class^=icon-],
.nav-list [class*=" icon-"] {
    margin-right: 2px
}

.nav-list .divider {
    *width: 100%;
    height: 1px;
    margin: 9px 1px;
    *margin: -5px 0 5px;
    overflow: hidden;
    background-color: #e5e5e5;
    border-bottom: 1px solid #fff
}

.nav-tabs,
.nav-pills {
    *zoom: 1
}

.nav-tabs:before,
.nav-pills:before,
.nav-tabs:after,
.nav-pills:after {
    display: table;
    content: "";
    line-height: 0
}

.nav-tabs:after,
.nav-pills:after {
    clear: both
}

.nav-tabs>li,
.nav-pills>li {
    float: left
}

.nav-tabs>li>a,
.nav-pills>li>a {
    padding-right: 12px;
    padding-left: 12px;
    margin-right: 2px;
    line-height: 14px
}

.nav-tabs {
    border-bottom: 1px solid #ddd
}

.nav-tabs>li {
    margin-bottom: -1px
}

.nav-tabs>li>a {
    padding-top: 8px;
    padding-bottom: 8px;
    line-height: 20px;
    border: 1px solid transparent;
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0
}

.nav-tabs>li>a:hover,
.nav-tabs>li>a:focus {
    border-color: #eee #eee #ddd
}

.nav-tabs>.active>a,
.nav-tabs>.active>a:hover,
.nav-tabs>.active>a:focus {
    color: #555;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
    cursor: default
}

.nav-pills>li>a {
    padding-top: 8px;
    padding-bottom: 8px;
    margin-top: 2px;
    margin-bottom: 2px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px
}

.nav-pills>.active>a,
.nav-pills>.active>a:hover,
.nav-pills>.active>a:focus {
    color: #fff;
    background-color: #08c
}

.nav-stacked>li {
    float: none
}

.nav-stacked>li>a {
    margin-right: 0
}

.nav-tabs.nav-stacked {
    border-bottom: 0
}

.nav-tabs.nav-stacked>li>a {
    border: 1px solid #ddd;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0
}

.nav-tabs.nav-stacked>li:first-child>a {
    -webkit-border-top-right-radius: 4px;
    -moz-border-radius-topright: 4px;
    border-top-right-radius: 4px;
    -webkit-border-top-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
    border-top-left-radius: 4px
}

.nav-tabs.nav-stacked>li:last-child>a {
    -webkit-border-bottom-right-radius: 4px;
    -moz-border-radius-bottomright: 4px;
    border-bottom-right-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-bottom-left-radius: 4px
}

.nav-tabs.nav-stacked>li>a:hover,
.nav-tabs.nav-stacked>li>a:focus {
    border-color: #ddd;
    z-index: 2
}

.nav-pills.nav-stacked>li>a {
    margin-bottom: 3px
}

.nav-pills.nav-stacked>li:last-child>a {
    margin-bottom: 1px
}

.nav-tabs .dropdown-menu {
    -webkit-border-radius: 0 0 6px 6px;
    -moz-border-radius: 0 0 6px 6px;
    border-radius: 0 0 6px 6px
}

.nav-pills .dropdown-menu {
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px
}

.nav .dropdown-toggle .caret {
    border-top-color: #08c;
    border-bottom-color: #08c;
    margin-top: 6px
}

.nav .dropdown-toggle:hover .caret,
.nav .dropdown-toggle:focus .caret {
    border-top-color: #005580;
    border-bottom-color: #005580
}

.nav-tabs .dropdown-toggle .caret {
    margin-top: 8px
}

.nav .active .dropdown-toggle .caret {
    border-top-color: #fff;
    border-bottom-color: #fff
}

.nav-tabs .active .dropdown-toggle .caret {
    border-top-color: #555;
    border-bottom-color: #555
}

.nav>.dropdown.active>a:hover,
.nav>.dropdown.active>a:focus {
    cursor: pointer
}

.nav-tabs .open .dropdown-toggle,
.nav-pills .open .dropdown-toggle,
.nav>li.dropdown.open.active>a:hover,
.nav>li.dropdown.open.active>a:focus {
    color: #fff;
    background-color: #999;
    border-color: #999
}

.nav li.dropdown.open .caret,
.nav li.dropdown.open.active .caret,
.nav li.dropdown.open a:hover .caret,
.nav li.dropdown.open a:focus .caret {
    border-top-color: #fff;
    border-bottom-color: #fff;
    opacity: 1;
    filter: alpha(opacity=100)
}

.tabs-stacked .open>a:hover,
.tabs-stacked .open>a:focus {
    border-color: #999
}

.tabbable {
    *zoom: 1
}

.tabbable:before,
.tabbable:after {
    display: table;
    content: "";
    line-height: 0
}

.tabbable:after {
    clear: both
}

.tab-content {
    overflow: auto
}

.tabs-below>.nav-tabs,
.tabs-right>.nav-tabs,
.tabs-left>.nav-tabs {
    border-bottom: 0
}

.tab-content>.tab-pane,
.pill-content>.pill-pane {
    display: none
}

.tab-content>.active,
.pill-content>.active {
    display: block
}

.tabs-below>.nav-tabs {
    border-top: 1px solid #ddd
}

.tabs-below>.nav-tabs>li {
    margin-top: -1px;
    margin-bottom: 0
}

.tabs-below>.nav-tabs>li>a {
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px
}

.tabs-below>.nav-tabs>li>a:hover,
.tabs-below>.nav-tabs>li>a:focus {
    border-bottom-color: transparent;
    border-top-color: #ddd
}

.tabs-below>.nav-tabs>.active>a,
.tabs-below>.nav-tabs>.active>a:hover,
.tabs-below>.nav-tabs>.active>a:focus {
    border-color: transparent #ddd #ddd
}

.tabs-left>.nav-tabs>li,
.tabs-right>.nav-tabs>li {
    float: none
}

.tabs-left>.nav-tabs>li>a,
.tabs-right>.nav-tabs>li>a {
    min-width: 74px;
    margin-right: 0;
    margin-bottom: 3px
}

.tabs-left>.nav-tabs {
    float: left;
    margin-right: 19px;
    border-right: 1px solid #ddd
}

.tabs-left>.nav-tabs>li>a {
    margin-right: -1px;
    -webkit-border-radius: 4px 0 0 4px;
    -moz-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px
}

.tabs-left>.nav-tabs>li>a:hover,
.tabs-left>.nav-tabs>li>a:focus {
    border-color: #eee #ddd #eee #eee
}

.tabs-left>.nav-tabs .active>a,
.tabs-left>.nav-tabs .active>a:hover,
.tabs-left>.nav-tabs .active>a:focus {
    border-color: #ddd transparent #ddd #ddd;
    *border-right-color: #fff
}

.tabs-right>.nav-tabs {
    float: right;
    margin-left: 19px;
    border-left: 1px solid #ddd
}

.tabs-right>.nav-tabs>li>a {
    margin-left: -1px;
    -webkit-border-radius: 0 4px 4px 0;
    -moz-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0
}

.tabs-right>.nav-tabs>li>a:hover,
.tabs-right>.nav-tabs>li>a:focus {
    border-color: #eee #eee #eee #ddd
}

.tabs-right>.nav-tabs .active>a,
.tabs-right>.nav-tabs .active>a:hover,
.tabs-right>.nav-tabs .active>a:focus {
    border-color: #ddd #ddd #ddd transparent;
    *border-left-color: #fff
}

.nav>.disabled>a {
    color: #999
}

.nav>.disabled>a:hover,
.nav>.disabled>a:focus {
    text-decoration: none;
    background-color: transparent;
    cursor: default
}

.tooltip {
    position: absolute;
    z-index: 1030;
    display: block;
    visibility: visible;
    font-size: 11px;
    line-height: 1.4;
    opacity: 0;
    filter: alpha(opacity=0)
}

.tooltip.in {
    opacity: .8;
    filter: alpha(opacity=80)
}

.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: 8px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: #000;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    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.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
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1010;
    display: none;
    max-width: 276px;
    padding: 1px;
    text-align: left;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .2);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    -moz-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: 14px;
    font-weight: 400;
    line-height: 18px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0
}

.popover-title:empty {
    display: none
}

.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 {
    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 {
    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 {
    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 {
    right: 1px;
    border-right-width: 0;
    border-left-color: #fff;
    bottom: -10px
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000
}

.modal-backdrop.fade {
    opacity: 0
}

.modal-backdrop,
.modal-backdrop.fade.in {
    opacity: .8;
    filter: alpha(opacity=80)
}

.modal {
    position: fixed;
    top: 10%;
    left: 50%;
    z-index: 1050;
    width: 560px;
    margin-left: -280px;
    background-color: #fff;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .3);
    *border: 1px solid #999;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, .3);
    box-shadow: 0 3px 7px rgba(0, 0, 0, .3);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    background-clip: padding-box;
    outline: 0
}

.modal.fade {
    -webkit-transition: opacity .3s linear, top .3s ease-out;
    -moz-transition: opacity .3s linear, top .3s ease-out;
    -o-transition: opacity .3s linear, top .3s ease-out;
    transition: opacity .3s linear, top .3s ease-out;
    top: -25%
}

.modal.fade.in {
    top: 10%
}

.modal-header {
    padding: 9px 15px;
    border-bottom: 1px solid #eee
}

.modal-header .close {
    margin-top: 2px
}

.modal-header h3 {
    margin: 0;
    line-height: 30px
}

.modal-body {
    position: relative;
    overflow-y: auto;
    max-height: 400px;
    padding: 15px
}

.modal-form {
    margin-bottom: 0
}

.modal-footer {
    padding: 14px 15px 15px;
    margin-bottom: 0;
    text-align: right;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    -webkit-border-radius: 0 0 6px 6px;
    -moz-border-radius: 0 0 6px 6px;
    border-radius: 0 0 6px 6px;
    -webkit-box-shadow: inset 0 1px 0 #fff;
    -moz-box-shadow: inset 0 1px 0 #fff;
    box-shadow: inset 0 1px 0 #fff;
    *zoom: 1
}

.modal-footer:before,
.modal-footer:after {
    display: table;
    content: "";
    line-height: 0
}

.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
}

.accordion {
    margin-bottom: 20px
}

.accordion-group {
    margin-bottom: 2px;
    border: 1px solid #e5e5e5;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px
}

.accordion-heading {
    border-bottom: 0
}

.accordion-heading .accordion-toggle {
    display: block;
    padding: 8px 15px
}

.accordion-toggle {
    cursor: pointer
}

.accordion-inner {
    padding: 9px 15px;
    border-top: 1px solid #e5e5e5
}

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    -moz-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-large {
    padding: 24px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px
}

.well-small {
    padding: 9px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}

.close {
    float: right;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    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: .4;
    filter: alpha(opacity=40)
}

button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none
}

.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -moz-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear
}

.fade.in {
    opacity: 1
}

.collapse {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height .35s ease;
    -moz-transition: height .35s ease;
    -o-transition: height .35s ease;
    transition: height .35s ease
}

.collapse.in {
    height: auto
}

#colorbox,
#cboxOverlay,
#cboxWrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow: hidden
}

#cboxWrapper {
    max-width: none
}

#cboxOverlay {
    position: fixed;
    width: 100%;
    height: 100%
}

#cboxMiddleLeft,
#cboxBottomLeft {
    clear: left
}

#cboxContent {
    position: relative
}

#cboxLoadedContent {
    overflow: auto;
    -webkit-overflow-scrolling: touch
}

#cboxTitle {
    margin: 0
}

#cboxLoadingOverlay,
#cboxLoadingGraphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
    cursor: pointer
}

.cboxPhoto {
    float: left;
    margin: auto;
    border: 0;
    display: block;
    max-width: none;
    -ms-interpolation-mode: bicubic
}

.cboxIframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0
}

#colorbox,
#cboxContent,
#cboxLoadedContent {
    box-sizing: content-box;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box
}

#cboxOverlay {
    background: url(../resources/colorbox/overlay.png) repeat 0 0
}

#colorbox {
    outline: 0
}

#cboxTopLeft {
    width: 25px;
    height: 25px;
    background: url(../resources/colorbox/border1.png) no-repeat 0 0
}

#cboxTopCenter {
    height: 25px;
    background: url(../resources/colorbox/border1.png) repeat-x 0 -50px
}

#cboxTopRight {
    width: 25px;
    height: 25px;
    background: url(../resources/colorbox/border1.png) no-repeat -25px 0
}

#cboxBottomLeft {
    width: 25px;
    height: 25px;
    background: url(../resources/colorbox/border1.png) no-repeat 0 -25px
}

#cboxBottomCenter {
    height: 25px;
    background: url(../resources/colorbox/border1.png) repeat-x 0 -75px
}

#cboxBottomRight {
    width: 25px;
    height: 25px;
    background: url(../resources/colorbox/border1.png) no-repeat -25px -25px
}

#cboxMiddleLeft {
    width: 25px;
    background: url(../resources/colorbox/border2.png) repeat-y 0 0
}

#cboxMiddleRight {
    width: 25px;
    background: url(../resources/colorbox/border2.png) repeat-y -25px 0
}

#cboxContent {
    background: #fff;
    overflow: hidden
}

.cboxIframe {
    background: #fff
}

#cboxError {
    padding: 50px;
    border: 1px solid #ccc
}

#cboxLoadedContent {
    margin-bottom: 20px
}

#cboxTitle {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    width: 100%;
    color: #999
}

#cboxCurrent {
    position: absolute;
    bottom: 0;
    left: 100px;
    color: #999
}

#cboxLoadingOverlay {
    background: #fff url(../resources/colorbox/loading.gif) no-repeat 5px 5px
}

#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose {
    border: 0;
    padding: 0;
    margin: 0;
    overflow: visible;
    width: auto;
    background: 0 0
}

#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
    outline: 0
}

#cboxSlideshow {
    position: absolute;
    bottom: 0;
    right: 42px;
    color: #444
}

#cboxPrevious {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #444
}

#cboxNext {
    position: absolute;
    bottom: 0;
    left: 63px;
    color: #444
}

#cboxClose {
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    color: #444
}

.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF, endColorstr=#00FFFFFF)
}

#cboxCurrent,
#cboxPrevious,
#cboxNext {
    display: none
}

#cboxTitle {
    height: 15px;
    font: 12px/1.2 Verdana, sans-serif
}

#cboxClose {
    position: absolute;
    bottom: 0;
    right: 0;
    background: url(../resources/colorbox/controls.png) no-repeat 2px 0;
    width: 16px;
    height: 14px;
    text-indent: -9999px
}

#cboxClose:hover {
    background-position: 2px -25px
}

#cboxLoadedContent {
    overflow: hidden!important
}

#cboxLoadedContent>iframe {
    width: 100%;
    height: 100%;
    border: 0
}

.sp-container {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    z-index: 2147483647;
    overflow: hidden
}

.sp-container.sp-flat {
    position: relative
}

.sp-top {
    position: relative;
    width: 100%;
    display: inline-block
}

.sp-top-inner {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0
}

.sp-color {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 20%
}

.sp-hue {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 84%;
    height: 100%
}

.sp-fill {
    padding-top: 80%
}

.sp-sat,
.sp-val {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.sp-alpha-enabled .sp-top {
    margin-bottom: 18px
}

.sp-alpha-enabled .sp-alpha {
    display: block
}

.sp-alpha-handle {
    position: absolute;
    top: -4px;
    bottom: -4px;
    width: 6px;
    left: 50%;
    cursor: pointer;
    border: 1px solid #000;
    background: #fff;
    opacity: .8
}

.sp-alpha {
    display: none;
    position: absolute;
    bottom: -14px;
    right: 0;
    left: 0;
    height: 8px
}

.sp-alpha-inner {
    border: solid 1px #333
}

.sp-container,
.sp-replacer,
.sp-preview,
.sp-dragger,
.sp-slider,
.sp-alpha,
.sp-alpha-handle,
.sp-container.sp-dragging .sp-input,
.sp-container button {
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    user-select: none
}

.sp-container.sp-input-disabled .sp-input-container {
    display: none
}

.sp-container.sp-buttons-disabled .sp-button-container {
    display: none
}

.sp-palette-only .sp-picker-container {
    display: none
}

.sp-palette-disabled .sp-palette-container {
    display: none
}

.sp-initial-disabled .sp-initial {
    display: none
}

.sp-sat {
    background-image: -webkit-gradient(linear, 0 0, 100% 0, from(#FFF), to(rgba(204, 154, 129, 0)));
    background-image: -webkit-linear-gradient(left, #FFF, rgba(204, 154, 129, 0));
    background-image: -moz-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
    background-image: -o-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
    background-image: -ms-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
    background-image: linear-gradient(to right, #fff, rgba(204, 154, 129, 0));
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr=#FFFFFFFF, endColorstr=#00CC9A81)";
    filter: progid: DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr='#FFFFFFFF', endColorstr='#00CC9A81')
}

.sp-val {
    background-image: -webkit-gradient(linear, 0 100%, 0 0, from(#000), to(rgba(204, 154, 129, 0)));
    background-image: -webkit-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
    background-image: -moz-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
    background-image: -o-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
    background-image: -ms-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
    background-image: linear-gradient(to top, #000, rgba(204, 154, 129, 0));
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00CC9A81, endColorstr=#FF000000)";
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00CC9A81', endColorstr='#FF000000')
}

.sp-hue {
    background: -moz-linear-gradient(top, red 0, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, red 100%);
    background: -ms-linear-gradient(top, red 0, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, red 100%);
    background: -o-linear-gradient(top, red 0, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, red 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(red), color-stop(0.17, #ff0), color-stop(0.33, #0f0), color-stop(0.5, #0ff), color-stop(0.67, #00f), color-stop(0.83, #f0f), to(red));
    background: -webkit-linear-gradient(top, red 0, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, red 100%)
}

.sp-1 {
    height: 17%;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ff0000', endColorstr='#ffff00')
}

.sp-2 {
    height: 16%;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ffff00', endColorstr='#00ff00')
}

.sp-3 {
    height: 17%;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00ff00', endColorstr='#00ffff')
}

.sp-4 {
    height: 17%;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00ffff', endColorstr='#0000ff')
}

.sp-5 {
    height: 16%;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#0000ff', endColorstr='#ff00ff')
}

.sp-6 {
    height: 17%;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ff00ff', endColorstr='#ff0000')
}

.sp-cf:before,
.sp-cf:after {
    content: "";
    display: table
}

.sp-cf:after {
    clear: both
}

.sp-cf {
    *zoom: 1
}

@media (max-device-width:480px) {
    .sp-color {
        right: 40%
    }
    .sp-hue {
        left: 63%
    }
    .sp-fill {
        padding-top: 60%
    }
}

.sp-dragger {
    border-radius: 5px;
    height: 5px;
    width: 5px;
    border: 1px solid #fff;
    background: #000;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0
}

.sp-slider {
    position: absolute;
    top: 0;
    cursor: pointer;
    height: 3px;
    left: -1px;
    right: -1px;
    border: 1px solid #000;
    background: #fff;
    opacity: .8
}

.sp-container {
    border-radius: 0;
    background-color: #ECECEC;
    border: solid 1px #f0c49B;
    padding: 0
}

.sp-container,
.sp-container button,
.sp-container input,
.sp-color,
.sp-hue {
    font: 400 12px "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box
}

.sp-top {
    margin-bottom: 3px
}

.sp-color,
.sp-hue {
    border: solid 1px #666
}

.sp-input-container {
    float: right;
    width: 100px;
    margin-bottom: 4px
}

.sp-initial-disabled .sp-input-container {
    width: 100%
}

.sp-input {
    font-size: 12px!important;
    border: 1px inset;
    padding: 4px 5px;
    margin: 0;
    width: 100%;
    background: transparent;
    border-radius: 3px;
    color: #222
}

.sp-input:focus {
    border: 1px solid orange
}

.sp-input.sp-validation-error {
    border: 1px solid red;
    background: #fdd
}

.sp-picker-container,
.sp-palette-container {
    float: left;
    position: relative;
    padding: 10px;
    padding-bottom: 300px;
    margin-bottom: -290px
}

.sp-picker-container {
    width: 172px;
    border-left: solid 1px #fff
}

.sp-palette-container {
    border-right: solid 1px #ccc
}

.sp-palette .sp-thumb-el {
    display: block;
    position: relative;
    float: left;
    width: 24px;
    height: 15px;
    margin: 3px;
    cursor: pointer;
    border: solid 2px transparent
}

.sp-palette .sp-thumb-el:hover,
.sp-palette .sp-thumb-el.sp-thumb-active {
    border-color: orange
}

.sp-thumb-el {
    position: relative
}

.sp-initial {
    float: left;
    border: solid 1px #333
}

.sp-initial span {
    width: 30px;
    height: 25px;
    border: 0;
    display: block;
    float: left;
    margin: 0
}

.sp-button-container {
    float: right
}

.sp-replacer {
    margin: 0;
    overflow: hidden;
    cursor: pointer;
    padding: 4px;
    display: inline-block;
    *zoom: 1;
    *display: inline;
    border: solid 1px #91765d;
    background: #eee;
    color: #333;
    vertical-align: middle
}

.sp-replacer:hover,
.sp-replacer.sp-active {
    border-color: #F0C49B;
    color: #111
}

.sp-replacer.sp-disabled {
    cursor: default;
    border-color: silver;
    color: silver
}

.sp-dd {
    padding: 2px 0;
    height: 16px;
    line-height: 16px;
    float: left;
    font-size: 10px
}

.sp-preview {
    position: relative;
    width: 25px;
    height: 20px;
    border: solid 1px #222;
    margin-right: 5px;
    float: left;
    z-index: 0
}

.sp-palette {
    *width: 220px;
    max-width: 220px
}

.sp-palette .sp-thumb-el {
    width: 16px;
    height: 16px;
    margin: 2px 1px;
    border: solid 1px #d0d0d0
}

.sp-container {
    padding-bottom: 0
}

.sp-container button {
    background-color: #eee;
    background-image: -webkit-linear-gradient(top, #eee, #ccc);
    background-image: -moz-linear-gradient(top, #eee, #ccc);
    background-image: -ms-linear-gradient(top, #eee, #ccc);
    background-image: -o-linear-gradient(top, #eee, #ccc);
    background-image: -ms-linear-gradient(top, #eee, #ccc);
    background-image: linear-gradient(to bottom, #eee, #ccc);
    border: 1px solid #ccc;
    border-bottom: 1px solid #bbb;
    border-radius: 3px;
    color: #333;
    font-size: 14px;
    line-height: 1;
    padding: 5px 4px;
    text-align: center;
    text-shadow: 0 1px 0 #eee;
    vertical-align: middle
}

.sp-container button:hover {
    background-color: #ddd;
    background-image: -webkit-linear-gradient(top, #ddd, #bbb);
    background-image: -moz-linear-gradient(top, #ddd, #bbb);
    background-image: -ms-linear-gradient(top, #ddd, #bbb);
    background-image: -o-linear-gradient(top, #ddd, #bbb);
    background-image: -ms-linear-gradient(top, #ddd, #bbb);
    background-image: linear-gradient(to bottom, #ddd, #bbb);
    border: 1px solid #bbb;
    border-bottom: 1px solid #999;
    cursor: pointer;
    text-shadow: 0 1px 0 #ddd
}

.sp-container button:active {
    border: 1px solid #aaa;
    border-bottom: 1px solid #888;
    -webkit-box-shadow: inset 0 0 5px 2px #aaa, 0 1px 0 0 #eee;
    -moz-box-shadow: inset 0 0 5px 2px #aaa, 0 1px 0 0 #eee;
    -ms-box-shadow: inset 0 0 5px 2px #aaa, 0 1px 0 0 #eee;
    -o-box-shadow: inset 0 0 5px 2px #aaa, 0 1px 0 0 #eee;
    box-shadow: inset 0 0 5px 2px #aaa, 0 1px 0 0 #eee
}

.sp-cancel {
    font-size: 11px;
    color: #d93f3f!important;
    margin: 0;
    padding: 2px;
    margin-right: 5px;
    vertical-align: middle;
    text-decoration: none
}

.sp-cancel:hover {
    color: #d93f3f!important;
    text-decoration: underline
}

.sp-palette span:hover,
.sp-palette span.sp-thumb-active {
    border-color: #000
}

.sp-preview,
.sp-alpha,
.sp-thumb-el {
    position: relative;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)
}

.sp-preview-inner,
.sp-alpha-inner,
.sp-thumb-inner {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0
}

.sp-palette .sp-thumb-inner {
    background-position: 50% 50%;
    background-repeat: no-repeat
}

.sp-palette .sp-thumb-light.sp-thumb-active .sp-thumb-inner {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIVJREFUeNpiYBhsgJFMffxAXABlN5JruT4Q3wfi/0DsT64h8UD8HmpIPCWG/KemIfOJCUB+Aoacx6EGBZyHBqI+WsDCwuQ9mhxeg2A210Ntfo8klk9sOMijaURm7yc1UP2RNCMbKE9ODK1HM6iegYLkfx8pligC9lCD7KmRof0ZhjQACDAAceovrtpVBRkAAAAASUVORK5CYII=)
}

.sp-palette .sp-thumb-dark.sp-thumb-active .sp-thumb-inner {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAAAMdJREFUOE+tkgsNwzAMRMugEAahEAahEAZhEAqlEAZhEAohEAYh81X2dIm8fKpEspLGvudPOsUYpxE2BIJCroJmEW9qJ+MKaBFhEMNabSy9oIcIPwrB+afvAUFoK4H0tMaQ3XtlrggDhOVVMuT4E5MMG0FBbCEYzjYT7OxLEvIHQLY2zWwQ3D+9luyOQTfKDiFD3iUIfPk8VqrKjgAiSfGFPecrg6HN6m/iBcwiDAo7WiBeawa+Kwh7tZoSCGLMqwlSAzVDhoK+6vH4G0P5wdkAAAAASUVORK5CYII=)
}

;
.modal-backdrop {
    opacity: .6;
    filter: alpha(opacity=60)
}

.popover {
    color: #000;
    -ms-user-select: none
}

#init-import-views {
    display: none
}

.modal-footer .error,
.modal-footer .success,
.modal-footer .addSpinner {
    display: none;
    float: left;
    vertical-align: -4px;
    margin-top: 6px;
    font-size: 14px;
    color: #c43d40;
    font-weight: 700
}

.builderMobile {
    display: none
}

.modal-footer .success {
    color: #30750a
}

.modal-footer .addSpinner {
    margin-left: 8px
}

#builderPanel {
    position: absolute;
    top: 0;
    display: none;
    z-index: 500;
    text-align: center;
    word-wrap: break-word;
    height: 100px;
    padding: 15px 20px 0
}

#builderPanel>div>button {
    margin: 0
}

#builderPanel>div>button:nth-child(1) {
    min-width: 83px
}

#builderPanel button.small {
    padding-left: 4px;
    padding-right: 4px
}

#builderPanel .leftPanel {
    width: 132px;
    text-align: left
}

#builderPanel h4 {
    color: #fff;
    margin: 1px 0 2px 4px;
    line-height: 22px;
    font-weight: 400
}

#status-bar {
    display: inline-block;
    margin-top: 6px;
    margin-left: 1px;
    font-size: 12px;
    color: #999
}

#builderPanel .popover-content {
    padding: 6px 10px
}

#builderPanel .builder-item i.icon-file {
    width: 20px;
    background-position: -21px -23px;
    opacity: .7;
    height: 18px
}

.save-popover {
    width: 170px;
    z-index: 5555;
    color: #30750A;
    font-weight: 700;
    font-size: 14px
}

.builder-save {
    margin-left: 12px
}

.builder-settings {
    margin-left: 11px
}

.save-popover-2 {
    text-align: center;
    min-height: 40px;
    min-width: 280px!important;
    max-width: 360px!important;
    color: #30750A;
    font-weight: 700;
    font-size: 14px
}

.save-popover-2 .popover-title {
    display: none
}

.datawarning-popover {
    max-width: 420px!important;
    width: 420px
}

.datawarning-popover .btn {
    vertical-align: 1px
}

.datawarning-popover .popover-title {
    display: none
}

.hide {
    display: none
}

.sp-input-container {
    height: 16px!important
}

.saveErrorPopupSocial .modal-body {
    overflow-y: visible
}

.saveErrorPopupSocial .tooltip.in {
    opacity: 1
}

.saveErrorPopupSocial .panel1 .tooltip-inner {
    max-width: 266px!important;
    width: 266px;
    padding-bottom: 8px
}

.saveErrorPopupSocial .panel2 {
    margin-top: 10px
}

.saveErrorPopupSocial .panel3 {
    margin-top: 25px
}

.saveErrorPopupSocial .panel2 .form-group {
    margin-left: 10px
}

.saveErrorPopupSocial .stop-asking {
    float: left;
    margin-top: 5px;
    margin-left: 10px
}

.saveErrorPopupSocial .stop-asking label.disabled {
    color: #CCC;
    cursor: not-allowed
}

#settingsPopup {
    overflow: hidden
}

@media only screen and (max-height:708px) {
    #settingsPopup {
        top: 50%;
        margin-top: -315px
    }
}

@media only screen and (max-height:630px) {
    #settingsPopup {
        top: 0;
        margin-top: 0
    }
}

#settingsPopup,
#settingsPopup .modal-body {
    max-height: none
}

.settingsPopupHeader {
    width: 100%;
    margin-top: -3px
}

#settingsPopup .tab {
    width: auto;
    min-width: inherit;
    padding: 5px 12px 5px 10px
}

#settingsPopup .tab.disabled {
    opacity: .5;
    cursor: default
}

.settingsPopupHeader button {
    border-radius: 0!important;
    width: 34%
}

#settings-colors p {
    margin-bottom: 20px
}

#settings-colors input[type=radio] {
    cursor: pointer
}

#settings-colors .radio {
    cursor: pointer
}

#settings-colors .swatch {
    width: 25px;
    height: 17px;
    border: solid;
    border-width: thin;
    border-color: #CCC;
    margin-left: 4px
}

#settings-colors .caption {
    font-size: 12px
}

#settings-colors td {
    padding-right: 4px;
    padding-bottom: 4px
}

#settings-extent p {
    margin-bottom: 20px
}

#settings-extent #extentMap {
    width: 100%!important;
    height: 337px!important
}

#settings-extent #extentMap .logo-sm {
    display: none
}

#settings-extent .extentMapControl {
    margin-bottom: 4px
}

#settings-extent .explain2 {
    margin-top: 10px
}

#settings-extent .dateLineError {
    display: none;
    font-weight: 700;
    font-size: 14px;
    color: #c43d40;
    padding-top: 8px
}

#settings-header p {
    margin-bottom: 20px
}

#settings-header img {
    float: right;
    max-width: 250px;
    max-height: 50px
}

#settings-header .form1 .controls {
    float: left;
    margin-left: 65px;
    width: 290px
}

#settings-header .form2 .control-label {
    width: 50px
}

#settings-header .form2 .control-group {
    margin-bottom: 10px
}

#settings-header .form2 .control-group:nth-child(2) {
    margin-bottom: 0
}

#settings-header .form2 .controls {
    margin-left: 65px
}

#settings-header .form2 .socialConfig {
    position: absolute;
    left: 370px;
    margin-top: -2px
}

#settings-header .form2 .socialConfig label.disabled {
    opacity: .5
}

#settings-header #headerSimulator {
    padding: 5px 5px 0 0;
    float: left;
    width: 140px;
    height: 55px;
    background-color: #666
}

#settings-header .optionsLogoCustom {
    margin-left: 25px
}

#settings-header #logoTargetInput {
    margin-top: 10px;
    display: block
}

#settings-colors .sp-input-container {
    height: 16px!important
}

html,
body {
    height: 100%;
    width: 100%;
    margin: auto
}

@font-face {
    font-family: open_sansregular;
    src: url(../resources/font/OpenSans-Regular-webfont.eot);
    src: url(../resources/font/OpenSans-Regular-webfont.eot?#iefix) format('embedded-opentype'), url(../resources/font/OpenSans-Regular-webfont.woff) format('woff'), url(../resources/font/OpenSans-Regular-webfont.ttf) format('truetype'), url(../resources/font/OpenSans-Regular-webfont.svg#open_sansregular) format('svg');
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: open_sanssemibold;
    src: url(../resources/font/OpenSans-Semibold-webfont.eot);
    src: url(../resources/font/OpenSans-Semibold-webfont.eot?#iefix) format('embedded-opentype'), url(../resources/font/OpenSans-Semibold-webfont.woff) format('woff'), url(../resources/font/OpenSans-Semibold-webfont.ttf) format('truetype'), url(../resources/font/OpenSans-Semibold-webfont.svg#open_sanssemibold) format('svg');
    font-weight: 400;
    font-style: normal
}

body {
    position: fixed;
    bottom: 0;
    background-color: #486c44;
    color: #333;
    overflow: hidden;
    font-family: open_sansregular, sans-serif
}

body.mobile-view {
    position: initial;
    bottom: initial
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
form {
    margin: 0;
    padding: 0
}

img {
    border: 0;
    outline: 0
}

textarea {
    resize: none
}

#contentPanel {
    width: 100%;
    height: 60%
}

.bingLogo-lg {
    display: none
}

a {
    color: #555;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer
}

a:hover {
    text-decoration: underline
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-thumb {
    background: #888;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .5)
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3)
}

.modal-header {
    border-bottom: 0;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-top-right-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-topright: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px
}

.modal-header h3 {
    color: #fff;
    font-weight: 400;
    margin-bottom: 5px
}

.modal-tabs,
.modal-header {
    background-color: #848484
}

.modal-tabs .tab:nth-child(1) {
    margin-left: 15px
}

.tab {
    display: inline-block;
    min-width: 120px;
    background-color: #bababa;
    color: #444;
    padding: 5px;
    font: 12px;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    height: 21px
}

.tab.active {
    background-color: #fff;
    cursor: default
}

#fatalError {
    position: absolute;
    display: none;
    z-index: 999;
    top: 50%;
    left: 0;
    width: 100%
}

#fatalError>table {
    margin-top: -100px;
    margin-left: -247px;
    max-width: 490px;
    min-height: 85px;
    background-color: #fff;
    border: 2px solid #333;
    padding: 0;
    margin-left: auto;
    margin-right: auto
}

#fatalError .error-title {
    margin-right: 12px
}

#fatalError .error-msg {
    margin-top: 8px;
    padding-bottom: 8px;
    margin-right: 8px
}

#fatalError-icon {
    background: url(../resources/icons/errorbox-close.png) 0 0;
    width: 75px;
    height: 75px;
    background-repeat: no-repeat
}

#addPopup {
    overflow: visible
}

@media only screen and (max-height:708px) {
    #addPopup {
        top: 50%;
        margin-top: -284px
    }
}

@media only screen and (max-height:567px) {
    #addPopup {
        top: 0;
        margin-top: 0
    }
}

.modal .modal-body {
    max-height: none
}

#addPopup .modal-body {
    overflow: visible
}

.addPopupHeader {
    width: 100%;
    margin-top: -3px
}

.addPopupHeader button {
    border-radius: 0!important;
    width: 34%
}

#addPopup label {
    font-weight: 700;
    display: block
}

#addPopup input {
    display: block;
    margin-bottom: 10px
}

#addPopup .locationForm input {
    border: 1px solid #ccc;
    color: #555;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.tab-icon {
    float: right;
    margin-left: 5px
}

.errorList {
    font-weight: 700;
    font-size: 14px;
    color: #c43d40;
    list-style: none;
    padding-left: 0
}

.maxPictureReached {
    display: none
}

#addPopup .imageUploadWrapper {
    color: #FFF;
    height: 380px;
    border: 4px dashed #848484
}

#addImageUploadFormPicture {
    text-align: center
}

.addNoteVideo {
    position: absolute;
    bottom: 25px;
    left: 0;
    font-size: 14px;
    font-style: italic;
    width: 100%;
    color: #000
}

.addNoteVideo>div {
    padding-left: 20px;
    padding-right: 20px
}

.pictureSize {
    margin-top: 4px;
    font-size: 13px;
    font-weight: 700;
    text-align: left
}

.pictureSize input {
    display: inline-block!important;
    vertical-align: -5px!important;
    margin: 0 4px 2px 10px!important
}

.imageUploadWrapper a {
    margin-top: 160px
}

.leftPanel {
    display: table-cell;
    width: 320px;
    text-align: center;
    vertical-align: middle;
    float: left
}

.imagePreview {
    max-width: 100%;
    max-height: 300px
}

.imagePreviewName {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 5px;
    border-bottom: 1px #ccc solid;
    word-wrap: break-word
}

.rightPanel {
    float: right;
    max-height: 400px;
    width: 200px
}

.rightPanel .thumbnail .thumbnailFile {
    display: none
}

.rightPanel .thumbnail canvas {
    background-color: grey
}

.rightPanel .thumbnail .thumbnailForm {
    display: none
}

.cameraSettings {
    margin-top: 5px;
    font-size: 14px
}

.settingHeading {
    font-size: 12px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #888
}

.exifMinor {
    position: relative
}

.cameraSmallSettings {
    display: inline;
    background-color: #dadada;
    padding: 3px;
    margin-right: 5px;
    font-size: 11px;
    color: #777;
    line-height: 2.5em;
    border: 1px solid #999;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    white-space: nowrap
}

.changeThumbnail {
    color: #444;
    font-size: 10px;
    cursor: pointer
}

#addImageAttributesTypeChooser {
    margin-bottom: 13px
}

.addImageAttributes .video {
    display: none
}

.addImageAttributes td:nth-child(2) {
    padding-left: 20px
}

.addImageAttributes tr.fade {
    opacity: .5
}

.addImageAttributes img.click {
    cursor: pointer;
    width: 17px;
    vertical-align: 1px
}

.addImageAttributes img {
    margin-left: 3px
}

.addImageAttributes a img {
    margin-left: 2px
}

.addImageAttributes i {
    vertical-align: 4px;
    margin-left: 3px;
    display: inline-block
}

.addImageAttributes i.icon-exclamation-sign {
    vertical-align: 3px
}

.addImageAttributes .video input {
    display: inline-block!important
}

.addImageAttributes .video input[type=radio] {
    margin-right: 5px
}

.addImageAttributes .video input[type=text] {
    width: 250px!important
}

.addImageAttributes .video input[type=text].type {
    width: 310px!important
}

.addImageAttributes .video input[type=text].tourPointThumbUrl2 {
    width: 465px!important
}

.addImageAttributes input[type=text] {
    width: 97%
}

.video1-popover {
    min-width: 410px;
    width: 410px;
    max-width: 410px!important
}

.video2-popover {
    min-width: 350px
}

.addText input,
.addText textarea {
    position: relative;
    left: 0;
    top: 0;
    width: 97%
}

.addLocation label,
.addLocation input {
    display: inline!important
}

.addLocation label:not(:first-child) {
    margin-left: 8px
}

.addLocation input {
    width: 80px;
    font-size: 12px;
    height: 14px;
    vertical-align: 2px;
    width: 54px
}

.pinSelector {
    width: 22px;
    padding: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
    vertical-align: -3px
}

.pinSelector.selected {
    border: 2px solid #666;
    padding-left: 5px
}

#locateMap {
    position: relative;
    width: 100%;
    height: 337px
}

#geocoder {
    display: block;
    position: absolute;
    z-index: 30;
    bottom: 20px;
    left: 20px
}

#geocoder input {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none
}

#geocoder .esriGeocoderActive {
    border-bottom: 2px solid #666
}

#builderPanel2 {
    position: absolute;
    display: none;
    z-index: 500;
    min-width: 180px;
    bottom: 150px;
    text-align: center;
    background-color: #E5E5E5;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-top-right-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-topright: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding: 8px 11px 4px 3px;
    height: 30px
}

#builderPanel2 .text_edit_icon {
    vertical-align: -4px
}

#organizeSlidesButton,
#addPopupButton,
#importPopupButton {
    min-width: 85px;
    margin-left: 7px
}

#builderPanel3 {
    position: absolute;
    display: none;
    z-index: 499;
    min-width: 58px;
    bottom: 150px;
    left: 30px;
    text-align: center;
    background-color: #E5E5E5;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-top-right-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-topright: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding: 8px 10px 4px;
    height: 30px
}

.colorSelectorPin {
    height: 27px;
    padding: 6px;
    margin-top: 3px;
    cursor: pointer
}

.selectedColor {
    border-radius: 4px;
    background-color: #777;
    cursor: default
}

#browserPopup {
    top: 27%!important
}

#browserPopup .browserExplain2 {
    margin-top: 15px
}

#basemapChooser {
    position: absolute;
    right: 5px;
    top: 5px;
    z-index: 401;
    display: none
}

body.mobile-view #basemapChooser {
    display: none!important
}

#basemapChooser .esriBasemapGalleryLabelContainer {
    font-size: 14px
}

textarea {
    resize: none
}

.modal-footer .error,
.modal-footer .success,
.modal-footer .addSpinner {
    display: none;
    float: left;
    vertical-align: -4px;
    margin-top: 6px;
    font-size: 14px;
    color: #c43d40;
    font-weight: 700
}

.modal-footer .success {
    color: #30750a
}

.modal-footer .addSpinner {
    margin-left: 8px
}

@media only screen and (max-height:708px) {
    #helpPopup {
        top: 50%!important;
        margin-top: -304px
    }
}

@media only screen and (max-height:607px) {
    #helpPopup {
        top: 0!important;
        margin-top: 0
    }
}

#helpPopup .modal-body {
    height: 359px
}

@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (orientation:landscape) {
    #helpPopup .modal-body {
        height: 370px
    }
}

#helpPopup .tab {
    min-width: 0
}

#helpPopup a {
    font-weight: 400;
    text-decoration: underline
}

#helpPopup ul {
    margin-left: 30px
}

@media only screen and (max-height:708px) {
    #importPopup {
        top: 50%;
        margin-top: -304px
    }
}

@media only screen and (max-height:608px) {
    #importPopup {
        top: 0;
        margin-top: 0
    }
}

#importPopup .modal-body {
    overflow: visible
}

#importPopupViewHome .header {
    text-align: center;
    margin-bottom: 12px
}

#importPopupViewHome table {
    width: 100%;
    text-align: center;
    margin-left: -5px
}

#importPopupViewHome td {
    font-weight: 400;
    width: 20%;
    border: 1px solid rgba(0, 0, 0, 0);
    padding: 18px;
    vertical-align: top
}

#importPopupViewHome td.disabled {
    opacity: .4;
    cursor: default!important
}

#importPopupViewHome td.disabled a {
    cursor: default!important
}

#importPopupViewHome td div {
    margin-top: 2px
}

#importPopupViewHome td:hover {
    background-color: #C7C4C4;
    cursor: pointer;
    border: 1px solid #757575;
    border-radius: 10px
}

#importPopupViewHome .footer {
    margin-top: 15px
}

#importPopupViewHome a {
    margin-top: 4px;
    font-weight: 400;
    text-decoration: underline
}

@media only screen and (max-height:708px) {
    #initPopup {
        top: 50%!important;
        margin-top: -304px
    }
}

@media only screen and (max-height:608px) {
    #initPopup {
        top: 0!important;
        margin-top: 0
    }
}

#initPopup .modal-footer {
    min-height: 32px
}

#initPopup .modal-body {
    overflow: visible
}

#initPopup .popover {
    font-size: 14px;
    font-weight: initial;
    line-height: initial
}

#initPopupViewAdvanced .header {
    margin-bottom: 15px;
    text-align: center;
    font-size: 24px;
    font-weight: 700
}

#initPopupViewAdvanced .options {
    width: 100%;
    text-align: center
}

#initPopupViewAdvanced .btn-adv {
    width: 310px
}

#initPopupViewAdvanced .csv-note {
    margin-top: 5px;
    margin-bottom: 10px
}

#initPopupViewAdvanced .csv-note a {
    text-decoration: underline;
    font-size: 14px
}

#initPopupViewHome .header {
    margin-bottom: 25px;
    text-align: center;
    font-size: 24px;
    font-weight: 700
}

#initPopupViewHome .sideContainer {
    display: inline-block;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 15px;
    vertical-align: top
}

#initPopupViewHome .sideContainer:nth-child(2) {
    width: 50%;
    border-right: 1px solid #000
}

#initPopupViewHome .sideContainer:nth-child(3) {
    width: 49%
}

#initPopupViewHome .sideTitle {
    font-weight: 700;
    margin-bottom: 25px
}

#initPopupViewHome table {
    width: 100%;
    text-align: center
}

#initPopupViewHome td {
    font-weight: 400;
    width: 33%;
    border: 1px solid rgba(0, 0, 0, 0);
    padding: 4px
}

#initPopupViewHome td.disabled {
    opacity: .4;
    cursor: default!important
}

#initPopupViewHome td.disabled a {
    cursor: default!important
}

#initPopupViewHome td div {
    margin-top: 2px
}

#initPopupViewHome td:not(.disabled):hover {
    background-color: #C7C4C4;
    cursor: pointer;
    border: 1px solid #757575;
    border-radius: 10px
}

#initPopupViewHome .leftTable {
    margin-left: -5px
}

#initPopupViewHome .scratchLbl {
    margin-top: 5px
}

#initPopupViewHome .disabled {
    opacity: .3
}

#initPopupViewHome .btn-select-hostedFS.disabled {
    opacity: 1
}

#initPopupViewHome .btn-select-hostedFS.disabled img {
    opacity: .3
}

#initPopupViewHome .btn-select-hostedFS.disabled .hostedFsNote {
    color: grey
}

#initPopupViewHome .btn-select-hostedFS.disabled .hostedFsNote a {
    cursor: pointer!important
}

#initPopupViewHome .notAvailable {
    display: none;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700
}

#initPopupViewHome .popover-init {
    margin-top: 8px
}

#initPopupViewHome .popover-init .popover {
    max-width: 245px
}

#initPopupViewHome .footer {
    margin-top: 15px;
    text-align: center;
    text-decoration: underline
}

#initPopupViewHome a {
    display: block
}

.dataExplain {
    margin-bottom: 20px;
    line-height: 19px
}

.dataNameLbl,
.dataFolderListLbl {
    width: 290px
}

.dataError {
    font-weight: 700;
    font-size: 14px;
    color: #C43D40;
    list-style: none;
    padding-left: 0
}

.dataFooterText {
    display: none;
    float: left;
    margin-top: 6px;
    font-size: 14px;
    color: #30750a;
    font-weight: 700;
    padding-top: 2px
}

.dataFooterText .error {
    color: red
}

.dataFooterText img {
    vertical-align: -2px
}

@media only screen and (max-height:708px) {
    #organizePopup {
        top: 50%;
        margin-top: -290px
    }
}

@media only screen and (max-height:577px) {
    #organizePopup {
        top: 0;
        margin-top: 0
    }
}

#organizePopup .modal-body {
    overflow: hidden;
    max-height: 500px
}

#organizePopup .gridContainer {
    width: 490px;
    height: 350px;
    overflow: auto;
    margin-top: 10px;
    margin-left: 15px;
    -webkit-overflow-scrolling: touch;
    -ms-touch-action: none
}

#organizePopup .organizeHeader .generalCaption {
    margin-left: 40px;
    padding-top: 8px
}

#organizePopup .organizeHeader .buttonBar {
    float: right;
    margin-right: 40px
}

#organizePopup .picturesGrid {
    margin-left: 10px;
    margin-top: 10px
}

#organizePopup .picturesGrid li {
    text-align: center;
    list-style: none;
    float: left;
    width: 130px;
    height: 90px;
    overflow: hidden;
    background-color: #999;
    margin-left: 15px;
    margin-right: 5px;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer
}

#organizePopup .picturesGrid img {
    cursor: pointer;
    max-width: 120px;
    max-height: 80px;
    margin-top: 5px
}

#organizePopup .numberLabel {
    background-color: red;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 5px;
    left: 5px;
    text-align: center;
    color: #fff
}

#organizePopup .number-blue {
    background-color: #1880f3
}

#organizePopup .number-red {
    background-color: red
}

#organizePopup .number-green {
    background-color: #369A22
}

#organizePopup .number-purple {
    background-color: #8A26FD
}

#organizePopup .veil {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    top: 0;
    opacity: .7;
    display: none;
    cursor: pointer
}

#organizePopup .halo {
    position: absolute;
    top: 0;
    left: 0;
    border: solid;
    border-width: 3px;
    border-color: red;
    cursor: pointer;
    display: none
}

#organizePopup #btnHide,
#btnDelete {
    min-width: 85px
}

#organizePopup .savePopover {
    width: 260px
}

#organizePopup .organizeFooter {
    margin-top: 6px
}

#organizePopup .organizeIntro {
    margin-left: 5px
}

#organizePopup .btnReset {
    float: right
}

.popupViewCSV .csvUploadWrapper {
    color: #FFF;
    height: 380px;
    width: 100%;
    border: 4px dashed #848484;
    margin-left: -4px;
    text-align: center
}

.popupViewCSV .csvUploadWrapper a {
    margin-top: 160px
}

.popupViewCSV .csvResultMap {
    width: 350px!important
}

.popupViewCSV .csvResultFields {
    float: right;
    width: 170px;
    text-align: left
}

.popupViewCSV .csvResultFields ul {
    margin-left: 25px
}

.popupViewCSV .csvResultHeader {
    margin-bottom: 10px
}

.popupViewCSV .csvResultHeader ul {
    margin-left: 30px
}

.popupViewCSV .csvResultHeader.error {
    font-weight: 400;
    color: #c43d40
}

.popupViewFacebook {
    margin-bottom: -10px
}

.popupViewFacebook .headerContainer {
    margin-bottom: 15px
}

.popupViewFacebook .selectContainer {
    width: 49%;
    display: inline-block;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 15px;
    vertical-align: top
}

.popupViewFacebook .selectContainer:nth-child(1) {
    border-right: 1px solid #000
}

.popupViewFacebook .sideHeader {
    text-align: center;
    font-weight: 700;
    margin-bottom: 5px
}

.popupViewFacebook .facebookLogin {
    height: 67px;
    margin-top: 10px
}

.popupViewFacebook>div .selectContainer:nth-child(2) .sideHeader {
    margin-bottom: 20px
}

.popupViewFacebook .selectPageName {
    width: 157px
}

.popupViewFacebook .btn-pageLookup {
    vertical-align: 4px;
    margin-bottom: 15px
}

.popupViewFacebook .lookingUpMsg {
    height: 16px;
    font-size: 14px;
    color: #30750a;
    font-weight: 700;
    vertical-align: 2px
}

.popupViewFacebook .lookingUpMsg.error {
    color: #c43d40
}

.popupViewFacebook .lookingUpMsg img {
    vertical-align: -2px
}

.popupViewFacebook .spacer {
    height: 10px
}

.popupViewFlickr .headerContainer {
    margin-bottom: 15px
}

.popupViewFlickr .btn-userLogin {
    vertical-align: 4px;
    margin-bottom: 15px
}

.popupViewFlickr .signInMsg {
    font-size: 14px;
    color: #30750a;
    font-weight: 700;
    vertical-align: 2px
}

.popupViewFlickr .signInMsg.error {
    color: #c43d40
}

.popupViewFlickr .signInMsg img {
    vertical-align: -2px
}

.popupViewFlickr .selectContainer {
    width: 49%;
    display: inline-block;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 15px
}

.popupViewFlickr .selectContainer:nth-child(1) {
    border-right: 1px solid #000
}

.popupViewGeoTag .header {
    margin-bottom: 15px
}

.popupViewGeoTag .header a {
    font-weight: 400;
    text-decoration: underline
}

.popupViewGeoTag .leftPanel {
    width: 220px;
    height: 400px
}

.popupViewGeoTag .nav-tabs {
    font-size: 12px;
    margin-bottom: 0
}

.popupViewGeoTag .tab-content>div {
    display: none;
    width: 210px;
    height: 362px;
    overflow-x: hidden;
    padding-right: 5px
}

.popupViewGeoTag .tab-content li {
    margin-bottom: 10px;
    font-size: 10px;
    text-align: center
}

.popupViewGeoTag .tab-content img {
    max-width: 100%
}

.popupViewGeoTag .tobelocated li {
    display: table;
    text-align: center;
    width: 202px;
    border: 2px solid transparent;
    cursor: pointer
}

.popupViewGeoTag .tobelocated li.clicked {
    border: 2px dashed #52a552
}

.popupViewGeoTag .tobelocated li>div {
    display: table-cell;
    vertical-align: middle;
    text-align: center
}

.popupViewGeoTag .tobelocated .geotagPicName {
    width: 202px
}

.popupViewGeoTag .tobelocated button {
    display: none
}

.popupViewGeoTag .located li>div {
    position: relative
}

.popupViewGeoTag .located button {
    display: none;
    font-size: 80px;
    position: absolute;
    top: 50%;
    opacity: 1;
    left: 50%;
    margin-top: -60px;
    line-height: inherit;
    margin-left: -24px
}

.popupViewGeoTag .located li:hover button {
    display: block
}

.popupViewGeoTag .clearLocation {
    margin-bottom: 4px;
    font-weight: 400
}

.popupViewGeoTag .geotagMap {
    width: 300px;
    height: 400px
}

.popupViewGeoTag .geotagMap {
    border: 4px dashed transparent
}

.popupViewGeoTag .geotagMap .logo-med {
    display: none
}

.popupViewGeoTag .clickOrTapInfo {
    display: none;
    opacity: 0;
    position: absolute;
    top: 235px;
    left: 305px;
    z-index: 9999;
    background-color: #FFF;
    border: 2px dashed #52a552;
    padding: 4px;
    font-weight: 700;
    width: 160px;
    text-align: center
}

.popupViewGeoTag .clickOrTapInfo.stickTop {
    top: 80px
}

.popupViewGeoTag .waitContainer {
    position: absolute;
    display: none;
    top: 250px;
    left: 0;
    width: 100%;
    text-align: center
}

.popupViewGeoTag .wait {
    width: 210px;
    text-align: center;
    border: 2px dashed #52a552;
    background-color: #FFF;
    display: inline-block;
    padding-top: 16px;
    padding-bottom: 16px;
    font-weight: 700
}

.popupViewGeoTag .wait.error {
    color: red;
    width: 300px;
    border: 2px dashed red;
    font-weight: 400
}

.popupViewGeoTag .waitSpinner {
    margin-left: 6px;
    vertical-align: -2px
}

.popupViewPicasa .headerContainer {
    margin-bottom: 15px
}

.popupViewPicasa .btn-userLogin {
    vertical-align: 4px;
    margin-bottom: 15px
}

.popupViewPicasa .signInMsg {
    font-size: 14px;
    color: #30750a;
    font-weight: 700;
    vertical-align: 2px
}

.popupViewPicasa .signInMsg.error {
    color: #c43d40
}

.popupViewPicasa .signInMsg img {
    vertical-align: -2px
}

.popupViewPicasa .contentContainer {
    margin-top: 20px
}

.popupViewPicasa .howToFind {
    display: block;
    margin-top: 20px
}

.popupViewPicasa .howToFind a {
    text-decoration: underline;
    font-weight: 400
}

.popupViewPicasa .howToFind-popover {
    left: 10px!important;
    min-width: 380px
}

.popupViewYoutube .modal-body {
    padding-bottom: 5px
}

.popupViewYoutube .headerContainer {
    margin-bottom: 28px
}

.popupViewYoutube .youtubeContainer {
    margin-bottom: -5px
}

.popupViewYoutube .youtubeLookup {
    vertical-align: 4px
}

.popupViewYoutube .lookingUpMsg {
    height: 16px;
    font-size: 14px;
    color: #30750a;
    font-weight: 700;
    vertical-align: 2px
}

.popupViewYoutube .lookingUpMsg.error {
    color: #c43d40
}

.popupViewYoutube .howToFind {
    display: block;
    margin-top: 20px
}

.popupViewYoutube .howToFind a {
    text-decoration: underline;
    font-weight: 400
}

.popupViewYoutube .howToFind-popover {
    left: 10px!important;
    width: 310px;
    max-width: 310px
}

#settings-fields p {
    margin-bottom: 20px
}

#settings-fields .error-msg {
    display: none;
    background: url(../resources/icons/errorbox-close.png) 0 0;
    height: 75px;
    background-repeat: no-repeat;
    padding-top: 13px;
    padding-left: 85px;
    color: red
}

#settings-fields .error-msg2 {
    display: none;
    margin-top: 10px;
    color: red;
    font-weight: 700
}

#settings-fields .fieldResetContainer {
    width: 100%;
    text-align: center;
    margin-top: 15px
}

#settings-layout .layout-box {
    display: inline-block;
    width: 259px;
    vertical-align: top;
    text-align: center;
    padding-top: 10px;
    margin-top: 15px
}

#settings-layout .layout-box:nth-child(2) {
    padding-right: 5px
}

#settings-layout .layout-box>img {
    padding-top: 17px;
    padding-bottom: 10px
}

#settings-layout .layout-box:nth-child(3)>img {
    padding-bottom: 36px
}

#settings-layout .layout-box {
    min-height: 250px
}

#settings-layout .layout-box .layoutOption {
    margin-bottom: 8px;
    font-size: 14px
}

#settings-layout .layout-box .layoutOption input:checkbox {
    height: 12px
}

#settings-layout .layout-box .layoutFooter {
    position: absolute;
    bottom: 50px;
    width: 258px
}

#settings-layout .layout-box button {
    display: inline-block
}

#settings-layout .layout-box .selectedLayout {
    font-weight: 700;
    line-height: 28px;
    display: none
}

#settings-layout span:nth-child(2) {
    border-right: 1px solid #000
}

#settings-layout .layout-box.selected .selectedLayout {
    display: block;
    margin-bottom: 2px
}

#settings-layout .layout-box.selected button {
    display: none
}

#settings-layout .layoutOption {
    text-align: center;
    font-size: 90%;
    margin-top: 10px
}

#settings-layout .layoutOption .popover {
    max-width: 245px
}

#settings-layout .useLocBtn {
    width: 12px;
    vertical-align: -2px
}

#settings-zoom p {
    margin-bottom: 20px
}

#sharePopup .modal-body {
    overflow: visible
}

#sharePopup .hide {
    display: none
}

#sharePopup .header {
    margin-bottom: 15px
}

#sharePopup .question {
    margin-top: 15px;
    font-weight: 700
}

#sharePopup .answer {
    margin-top: 4px
}

#sharePopup .question strong {
    border-bottom: 1px dotted grey;
    cursor: pointer
}

#sharePopup .collapse {}

#sharePopup .imgContainer {
    width: 100%;
    text-align: center;
    margin-top: 10px
}

#sharePopup a:not(.btn) {
    color: #20C;
    font-weight: 400;
    text-decoration: underline
}

#sharePopup .share-link::-ms-clear {
    display: none
}

#sharePopup .share-link>div {
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 18px
}

#sharePopup .not-shared {
    text-align: center
}

#sharePopup .not-shared .header {
    font-weight: 700;
    margin-bottom: 20px
}

#sharePopup .share-warning {
    display: none;
    margin-top: 20px;
    font-weight: 700!important;
    font-size: 14px;
    color: #c43d40!important
}

#sharePopup .share-warning a {
    color: #C43D40;
    font-weight: 700
}

#sharePopup .footer {
    margin-top: 30px
}

#sharePopup .footer .popover {
    max-width: 400px!important
}

#sharePopup .sharing-status.error a {
    font-weight: 700!important;
    font-size: 14px;
    color: #c43d40!important;
    margin-top: 8px
}

#sharePopup .modal-footer .error {
    max-width: 460px;
    text-align: left;
    margin-top: -5px
}

#mapPanel {
    height: 100%;
    float: right;
    background-color: #EEE;
    position: relative
}

#mainMap {
    border: 0;
    padding: 0;
    height: 100%;
    width: 100%!important;
    overflow: hidden
}

.modern-layout #mapPanel {
    width: 100%!important;
    float: inherit
}

.modern-layout .logo-med {
    display: none!important
}

.modern-layout:not(.mobile-view) .esriAttribution {
    display: none!important
}

#footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #E5E5E5
}

.builderMobile a {
    font-size: 24px;
    padding-top: 2px;
    padding-bottom: 6px
}

.modern-layout.mobile-view #footer {
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0
}

.modern-layout #footer {
    width: auto;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px
}

#mainMap svg>g {}

#mainMap svg g#mainMap_graphics_layer {}

#hoverInfo {
    font-size: 10px;
    position: absolute;
    padding: 5px;
    max-width: 200px;
    background-color: #FFC;
    border: #848484 solid 1px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -moz-box-shadow: 2px 2px 10px #333;
    -webkit-box-shadow: 2px 2px 10px #333;
    box-shadow: 2px 2px 10px #333;
    filter: progid: DXImageTransform.Microsoft.Shadow(strength=2, direction=135, color='#333333');
    -ms-filter: "progid: DXImageTransform.Microsoft.Shadow(strength = 2, Direction = 135, Color = '#333333')";
    overflow: hidden;
    display: none;
    z-index: 100;
    word-wrap: break-word
}

.multiTip a {
    color: #FFF
}

audio {
    max-width: 100%
}

#autoplay {
    display: none;
    position: absolute;
    bottom: 10px;
    z-index: 31;
    left: 50%
}

#footerDesktop {
    position: relative;
    height: 150px;
    padding-top: 10px
}

.modern-layout #footerDesktop {
    height: 140px;
    padding-top: 0
}

#footerDesktop .carousel {
    position: absolute;
    bottom: 0;
    left: 37px;
    right: 36px;
    height: 150px
}

.modern-layout #footerDesktop .carousel {
    bottom: 1px;
    height: 145px
}

.carouselWrapper {
    position: absolute;
    z-index: 1;
    top: 12px;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 135px;
    overflow: auto;
    -ms-touch-action: none
}

.modern-layout .carouselWrapper>div:nth-child(2) {
    bottom: 1px!important
}

.carouselWrapper>div:nth-child(2) {
    bottom: 0!important
}

.carouselScroller {
    height: 100%;
    float: left;
    padding: 0;
    cursor: pointer
}

.carouselScroller ul {
    list-style: none;
    display: block;
    float: left;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    text-align: left;
    counter-reset: item
}

.carouselScroller li {
    display: block;
    text-align: center;
    vertical-align: middle;
    float: left;
    padding: 0 8px;
    width: 145px;
    height: 100%;
    font-size: 10px
}

.modern-layout .carouselScroller li {
    width: 140px
}

.carouselScroller li:first-child {
    padding-left: 0
}

.carouselScroller .carousel-item-div {
    display: table-cell;
    width: 140px;
    height: 120px;
    text-align: center;
    vertical-align: middle;
    padding: 4px 4px 2px
}

.carouselScroller .carousel-item-div div {
    max-height: 24px;
    overflow: hidden;
    height: 24px;
    line-height: 12px;
    word-wrap: break-word;
    width: 140px;
    overflow: hidden;
    font-family: open_sanssemibold, sans-serif
}

.carouselScroller.no-touch .carousel-item-div:not(.selected):hover {
    background-color: #7D7D7D
}

.carouselScroller .carousel-item-div.selected {
    background-color: #FFF
}

.carousel-item-div img {
    max-width: 140px;
    max-height: 93px
}

.carousel-item-div sup {
    line-height: 6px
}

.carouselScroller span {
    display: inline-block
}

.carouselScroller .carousel-item-div>span:before {
    position: absolute;
    display: inline-block;
    content: counter(item);
    counter-increment: item;
    width: 20px;
    height: 15px;
    text-align: center;
    font-size: 12px;
    color: #FFF;
    padding-right: 1px;
    padding-bottom: 1px
}

.carouselScroller span.number-blue:before {
    background-color: #1880f3
}

.carouselScroller span.number-red:before {
    background-color: red
}

.carouselScroller span.number-green:before {
    background-color: #369A22
}

.carouselScroller span.number-purple:before {
    background-color: #8A26FD
}

body.notNumbered .carouselScroller span:before {
    display: none
}

.arrowLeft {
    position: absolute;
    top: 52px;
    left: -28px;
    cursor: pointer
}

.arrowRight {
    position: absolute;
    top: 52px;
    right: -29px;
    cursor: pointer
}

.arrowLeft.disabled,
.arrowRight.disabled {
    cursor: default;
    display: none
}

#picturePanel {
        height: 100%;
    float: left;
    position: relative;
    background-color: #B4B4B4;
    background: url(https://farm6.staticflickr.com/5593/15218064995_b6378045ee_o.png);
}

.modern-layout #picturePanel {
    position: absolute;
    right: 4px;
    width: 400px;
    height: 400px;
    background-color: transparent
}

.arrow {
    cursor: pointer
}

#arrowPrev {
    position: absolute;
    top: 0;
    left: 8px;
    z-index: 100
}

#arrowNext {
    position: absolute;
    top: 0;
    right: 8px;
    z-index: 101
}

#arrowPrev.disabled,
#arrowNext.disabled {
    cursor: default;
    display: none
}

.modern-layout-control {
    position: absolute;
    cursor: default;
    opacity: 0;
    z-index: 402
}

.modern-layout-control.click-btn {
    width: 32px;
    height: 53px;
    background-repeat: no-repeat
}

.modern-layout-control.click-btn.left {
    background: url(../resources/icons/picturepanel-left2.png)
}

.modern-layout-control.click-btn.right {
    background: url(../resources/icons/picturepanel-right2.png)
}

.modern-layout-control.click-bg {
    width: 70px;
    height: 72px;
    margin-top: -35px
}

.modern-layout-control.click-bg.left {
    margin-left: -4px
}

.modern-layout-control.click-bg.right {
    margin-right: -4px
}

.modern-layout-control.disabled {
    display: none!important
}

.modern-layout-control.hover {
    opacity: .5;
    filter: alpha(opacity=50);
    cursor: pointer
}

.modern-layout-control:hover {
    color: #FFF;
    text-decoration: none;
    opacity: .9;
    filter: alpha(opacity=90)
}

body.hasTouch .modern-layout-control:not(.disabled) {
    display: block!important;
    opacity: 1!important
}

#cfader {
    width: 100%;
    height: 100%;
    position: relative
}

.editPictureButtons {
    display: none;
    position: absolute;
    top: 76px;
    text-align: center;
    height: 30px
}

.editPictureButtons>div {
    display: inline-block
}

.modernBrowserWay,
.oldBrowserWay,
.attributesWay {
    display: none
}

.editPictureButtons a {
    font-weight: 400;
    margin-top: 2px
}

.editPictureButtons .oldBrowserWay .btn-upload {
    vertical-align: -1px
}

.editPictureButtons .oldBrowserWay form {
    display: inline
}

.picturePanelPicturePopoverFR {
    max-width: 315px;
    width: 315px
}

.picturePanelPicturePopoverOLD {
    max-width: 335px
}

.picturePanelThumbnailPopover {
    width: 280px;
    max-width: 280px
}

.edit-attr-popover {
    max-width: 378px;
    width: 378px
}

.edit-attr-popover input[type=text] {
    vertical-align: -2px;
    margin-bottom: 0;
    margin-right: 8px
}

.attributesWay .error {
    display: none;
    font-weight: 700;
    font-size: 14px;
    color: #c43d40;
    margin-top: 4px
}

#footerMobile {
    display: none;
    height: 100px;
    border-top: 1px solid #999
}

#footerMobile .carousel {
    height: 100%;
    -ms-touch-action: none
}

#footerMobile .carousel .tpPreview {
    height: 100px;
    cursor: pointer
}

@media screen and (max-width:767px) {
    #footerMobile .carousel .tpPreview {
        cursor: default
    }
}

#footerMobile .carousel>div>div {
    overflow: hidden
}

#footerMobile .builderMobileContainer {
    display: none;
    position: absolute;
    width: 100%;
    text-align: right;
    margin-top: -20px;
    height: 22px;
    right: 60px;
    margin-top: -33px;
    height: 22px;
    right: 5px;
    z-index: 499
}

#footerMobile.hasDesktopBtn .carousel {
    margin: 0 53px
}

#footerMobile .embed-btn-container {
    display: none
}

#footerMobile.hasDesktopBtn .embed-btn-container {
    position: absolute;
    top: 14px;
    display: block;
    width: 51px;
    height: 100%;
    z-index: 1;
    opacity: .8;
    padding-top: 14px
}

#footerMobile .embed-btn-container.disabled {
    opacity: .2;
    cursor: default
}

.embed-btn {
    width: 42px;
    height: 42px;
    background: url(../resources/icons/embed-arrows.png)
}

.embed-btn-container:not(.disabled):hover {
    opacity: 1;
    cursor: pointer
}

.embed-btn-left {
    left: 0;
    padding-left: 9px
}

.embed-btn-left.disabled .embed-btn {
    background-position: 42px 0
}

.embed-btn-right {
    right: 0
}

.embed-btn-right .embed-btn {
    background-position: 0 -42px
}

.embed-btn-right.disabled .embed-btn {
    background-position: 42px -42px
}

#footerMobile,
#listPanel,
#infoPanel,
#introPanel,
#headerMobile,
#openHeaderMobile {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.tpImgPane {
    position: absolute;
    border: 3px #fff solid;
    height: 70px;
    width: 70px;
    top: 12px;
    left: 12px;
    -webkit-box-shadow: 2px 2px 3px 0 #444;
    box-shadow: 2px 2px 3px 0 #444;
    overflow: hidden
}

.tpImgContainer {
    height: 74px;
    vertical-align: middle;
    display: table-cell;
    text-align: center;
    width: 70px
}

.tpImgPane img {
    max-width: 70px;
    max-height: 70px
}

.tpTextPane {
    margin-left: 104px;
    padding-right: 6px
}

.tpIcon {
    position: absolute
}

body.notNumbered .tpIcon {
    display: none
}

.tpName {
    padding-top: 9px;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
    word-wrap: break-word;
    max-height: 24px
}

.tpDescription {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 52px;
    word-wrap: break-word;
    line-height: 18px;
    margin-top: 2px
}

.tourPointName {
    font-size: 24px;
    margin-left: 68px;
    margin-top: 12px;
    margin-right: 90px;
    text-align: left;
    word-wrap: break-word;
    min-height: 30px
}

.tourPointDescription {
    font-size: 14px;
    margin: 15px 5% 0;
    text-align: left;
    word-wrap: break-word
}

.tourPointImg {
    margin-top: 10px;
    max-width: 90%;
    border: 5px #fff solid;
    -webkit-box-shadow: 2px 2px 3px 0 #444;
    box-shadow: 2px 2px 3px 0 #444
}

body.notNumbered .tourPointIcon {
    display: none
}

body.notNumbered .tourPointName {
    margin-left: 40px
}

.tourPointIframe {
    margin-top: 10px;
    width: 90%;
    height: 500px;
    border: 5px #fff solid;
    -webkit-box-shadow: 2px 2px 3px 0 #444;
    box-shadow: 2px 2px 3px 0 #444
}

#infoPanel {
    display: none;
    height: 100%;
    min-height: 100%
}

#infoCarousel {
    text-align: center;
    overflow: auto;
    height: 100%;
    min-height: 100%;
    -ms-touch-action: none
}

#infoCarousel>div>div {
    overflow: hidden
}

.iconHolder {
    position: absolute;
    left: 32px;
    top: 0;
    text-align: left
}

.iconHolder img {
    height: 40px;
    width: 32px;
    margin: 10px 5% 5px
}

#infoPanel .embed-btn-container {
    display: none;
    position: absolute;
    bottom: 0;
    margin: 20px
}

#infoPanel.hasDesktopBtn .embed-btn-container {
    display: block
}

#infoPanel .embed-btn-container.disabled {
    opacity: .2;
    cursor: default
}

#introPanel {
    display: none;
    position: absolute;
    left: 0;
    top: 41px;
    text-align: center;
    overflow: auto;
    min-height: 100%;
    background-color: grey;
    z-index: 2000;
    width: 100%;
    max-width: 100%;
    height: 100%
}

#introPanel .tourPointName {
    margin-left: 0;
    padding: 0 5%
}

#introPanel button {
    margin-bottom: 45px
}

#listPanel {
    display: none;
    z-index: 500;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-touch-action: none
}

.listWrapper {
    width: 100%;
    height: 100%;
    overflow: auto;
    -ms-touch-action: none
}

.listScroller {
    padding: 0;
    cursor: pointer;
    padding-bottom: 41px
}

body.hasTouch .listWrapper>div:nth-child(2) {
    display: none
}

.listWrapper>div:nth-child(2) {
    z-index: 1!important
}

.listItem {
    position: relative;
    height: 100px;
    border-bottom: #444 1px solid
}

body.mobile-view .autoplay {
    display: none!important
}

.autoplay {
    -webkit-transition: opacity .5s linear;
    -moz-transition: opacity .5s linear;
    -ms-transition: opacity .5s linear;
    -o-transition: opacity .5s linear;
    transition: opacity .5s linear
}

.autoplay .autoplay-container {
    position: relative;
    width: 180px;
    margin: 0 -100px;
    text-align: center;
    padding: 10px 10px 0;
    background-color: #AAA;
    border-radius: 4px;
    border: 1px solid #FFF
}

.autoplay .backdrop {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .8;
    border-radius: 4px
}

.autoplay .btn-play-container {
    display: inline-block;
    width: 40px;
    height: 42px;
    font-size: 30px;
    cursor: pointer;
    vertical-align: middle;
    color: #FFF;
    margin-top: -5px
}

.autoplay.theme-white2 .btn-play-container {
    color: #000
}

.autoplay .slider-container {
    display: inline-block;
    width: 125px;
    height: 42px;
    margin-left: 9px;
    vertical-align: middle;
    padding-top: 8px
}

.autoplay .slider {
    width: 120px!important
}

.autoplay .slider input {
    display: none!important
}

#pictureLoadingIndicator {
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    display: block;
    height: 100px;
    width: 100px
}

#pictureLoadingIndicator .spinner {
    z-index: 400!important;
    margin-left: 50px;
    margin-top: 48px
}

.member-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    display: none;
    border: solid;
    border-collapse: collapse
}

.member-image img {
    image-rendering: optimizeQuality;
    width: 100%;
    height: auto
}

.member-image iframe {
    width: 100%;
    height: 100%;
    border: 0
}

.modern-layout .member-image {
    border: 0
}

.modern-layout .member-image.current {
    border: 1px solid #B4B4B4
}

.btn-fullscreen {
    display: inline-block;
    position: absolute;
    width: 26px;
    height: 26px;
    background: url(../resources/icons/media-fullscreen.png) 0 0;
    opacity: 0;
    z-index: 400;
    margin-top: 1px
}

.btn-fullscreen.hover {
    opacity: 1;
    cursor: pointer
}

.btn-fullscreen.hover {
    opacity: .8
}

.btn-fullscreen.hover:hover {
    opacity: 1!important
}

.btn-fullscreen.disabled {
    display: none
}

body.modern-layout .btn-fullscreen {
    margin-right: 2px;
    margin-top: -1px
}

body.hasTouch .btn-fullscreen {
    display: block!important;
    opacity: 1!important
}

#placardContainer {
    position: absolute;
    width: 100%;
    bottom: 0;
    display: none;
    overflow: hidden
}

#placard {
    display: inline-table;
    background-image: url(../resources/icons/background_filler.png);
    position: relative;
    width: 100%;
    color: #FFF;
    z-index: 5;
    word-wrap: break-word
}

#placard a {
    color: #FFF;
    text-decoration: underline
}

#placard ul {
    padding-left: 40px
}

#placard-bg {
    width: 100%;
    margin-bottom: -5px
}

#placard .name {
    padding: 10px 0 15px 10px;
    font-size: 20px;
    width: 35%;
    float: left;
    margin-top: 0
}

#placard .description {
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
    width: 55%;
    float: right;
    margin-top: 0;
    padding-right: 10px;
    font-size: 14px
}

#placard.one-line-layout .name {
    padding: 10px 10px 0;
    width: auto;
    margin-right: 0
}

.builder-mode #placard.one-line-layout .name {
    float: inherit
}

#placard.one-line-layout .description {
    padding: 10px 10px 0;
    width: auto;
    margin-right: 0;
    margin-bottom: 5px
}

.builder-mode #placard.one-line-layout .description {
    float: inherit
}

#placard.one-line-layout .description .text_edit_icon {
    top: -26px
}

#placard.one-line-layout .description .text_edit_label {
    margin-bottom: 4px
}

#placardContainer.no-description .name {
    width: 97%
}

#placardContainer.no-description .description {
    display: none
}

#placardContainer.force-hidden {
    display: none!important
}

#toggle {
    width: 36px;
    height: 18px;
    margin-left: 25px;
    background-image: url(../resources/icons/picturepanel-placard-toggle.png);
    cursor: pointer
}

body.modern-layout #toggle {
    margin-left: 55px
}

#toggle.closed {
    background-position-y: 18px
}

#placardContainer.placardUnder #toggle {
    display: none
}

#placardContainer.placardUnder {
    border: solid;
    border-collapse: collapse;
    margin-left: -3px;
    overflow-y: auto
}

#placardContainer.placardUnder #placard {
    display: table;
    height: 100%
}

#placardContainer.placardUnder #placard-bg {
    height: 100%!important;
    max-height: 100%!important;
    margin-bottom: 0
}

#placardContainer.placardUnder .description .text_edit_icon {
    top: 1px;
    right: 1px
}

#placardContainer.placardUnder .name .text_edit_icon {
    top: 1px;
    left: 37%
}

#placard .name .text_edit_input {
    margin-top: -2px;
    font-size: 20px;
    line-height: 24px;
    height: 74px
}

#placard.one-line-layout .name .text_edit_input {
    height: 25px;
    overflow-y: hidden;
    z-index: 2000;
    width: 98%
}

#placard .name .text_edit_icon {
    position: absolute;
    top: -16px;
    left: 38%
}

#placard .description .text_edit_input {
    width: 98%;
    margin-top: -2px;
    font-size: 14px;
    line-height: 16px
}

.builder-mode #placard.one-line-layout.isEditing .description .text_edit_icon {
    display: none!important
}

#placard .description .text_edit_icon {
    position: absolute;
    top: -16px;
    right: 4px
}

#placard .name,
#placard .description {
    overflow-x: hidden
}

.builder-mode #placard .name,
.builder-mode #placard .description {
    overflow-x: initial
}

#header {
   height: 90px;
    background: #0a486f;
    color: #0a486f;
    margin: 0;
    /*overflow: hidden;
    display: none*/
}

#header .title {
    font-family: open_sanssemibold, sans-serif;
    margin-top: 0;
    font-size: 0em;
        
}

#header.hideDesktop {
    height: 0
}

#header.hideDesktop #headerDesktop {
    display: none
}

.textArea {
    padding-top: 0;
    padding-left: 0px;
    width: 70%
}

#headerDesktop .title {
    padding-top: 4px;
    font-size: 20px;
    font-weight: 400;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    height:90px;
    background:url(https://c2.staticflickr.com/2/1601/25839727243_ee43ed9f62_o.png);
    color:#fff;
    background-position:left;
    margin-top: 40px;
}

#header:not(.isBuilder) #headerDesktop .title {
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    white-space: pre
}

#headerDesktop .title.titleEmpty .text_edit_label {
    color: red
}

#headerDesktop .title.titleEmpty .text_edit_icon {
    background-color: red
}

#headerDesktop .subtitle {
    font-size: 13px;
    margin-top: 13px;
    overflow: hidden;
    overflow-y: auto;
    font-weight: 400;
    line-height: 18px;
    word-wrap: break-word;
    height: 54px;
    color: #C5D5D5
}

.rightArea {
    position: absolute;
    right: 0;
    top: 0;
    padding-top: 25px;
    padding-right: 25px;
    text-align: right
}

.rightArea .social {
    margin-bottom: 6px
}

.social .msLink,
.social .msLink a {
    color: #C5D5D5;
    font-weight: 400;
    font-size: 13px
}

.rightArea .logo {
    position: relative;
    height: 250px;
    border: 0;
    outline: 0
}

@-moz-document url-prefix() {
    .rightArea .logo a {
        position: relative;
        display: inline-block
    }
    .rightArea .logo a img {
        bottom: initial;
        top: initial;
        margin-top: -10px
    }
}

.rightArea .logo img {
    position: absolute;
    top: 50%;
    bottom: 50%;
    right: 0;
    max-width: 250px;
    max-height: 250px;
    margin: auto 0
}

.switchBuilder {
    display: none;
    position: absolute;
    right: 180px;
    top: 30px;
    width: 145px;
    padding-left: 35px
}

.switchBuilder img {
    position: absolute;
    top: 8px;
    left: 7px;
    width: 28px;
    height: 28px
}

@font-face {
    font-family: storymaps-icons;
    src: url(../resources/font/sharing/storymaps-icons.eot?49500659);
    src: url(../resources/font/sharing/storymaps-icons.eot?49500659#iefix) format('embedded-opentype'), url(../resources/font/sharing/storymaps-icons.woff?49500659) format('woff'), url(../resources/font/sharing/storymaps-icons.ttf?49500659) format('truetype'), url(../resources/font/sharing/storymaps-icons.svg?49500659#storymaps-icons) format('svg');
    font-weight: 400;
    font-style: normal
}

[class^=icon-]:before,
[class*=" icon-"]:before,
[class*=" autoplay-icon-"]:before {
    font-family: storymaps-icons;
    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;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.autoplay-icon-play:before {
    content: '\e800'
}

.icon-link:before {
    content: '\e801'
}

.icon-facebook-squared:before {
    content: '\e802'
}

.icon-twitter:before {
    content: '\e803'
}

.autoplay-icon-pause:before {
    content: '\e804'
}

.shareIcon {
    display: inline-block;
    cursor: pointer;
    margin-left: 4px;
    color: #C5D5D5;
    vertical-align: 0
}

.shareIcon:hover {
    color: #fff
}

.shareIcon.disabled {
    cursor: default;
    opacity: .5!important
}

.share_bitly {
    vertical-align: 1px;
    margin-left: 2px
}

.social .popover-title {
    display: none
}

#bitlyInput::-ms-clear {
    display: none
}

.autoplay-help+.popover {
    left: inherit!important
}

.autoplay-help+.popover .arrow {
    display: none
}

#headerDesktop .text_edit_input {
    position: relative;
    z-index: 501
}

#headerDesktop .text_edit_label {
    max-width: 94%;
    overflow: hidden
}

.title .text_edit_input {
    height: 20px;
    margin-top: -6px;
    margin-bottom: 0;
    font-size: 20px;
    width: 98%
}

.title .text_edit_icon {
    margin-top: -12px;
    margin-left: 8px
}

.subtitle .text_edit_input {
    font-size: 12px;
    line-height: 17px;
    width: 97%
}

.subtitle .text_edit_icon {
    position: absolute;
    margin-top: -9px;
    margin-left: 8px
}

#headerMobile {
    display: none;
    background-color: #444;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100
}

#headerMobile .banner {
    display: none;
    cursor: pointer
}

#headerMobile .title {
    color: #fff;
    font-size: 22px;
    padding: 10px 10px 0;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 55px
}

#headerMobile .subtitle {
    color: #dadada;
    font-size: 16px;
    padding: 0 10px;
    font-weight: 400;
    word-wrap: break-word;
    max-height: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

#closeHeaderMobile,
#openHeaderMobile {
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer
}

#closeHeaderMobile {
    border-bottom: 1px solid #888;
    padding: 10px
}

#openHeaderMobile {
    display: none;
    position: fixed;
    right: 0;
    padding: 7px;
    background-color: #666;
    -webkit-border-radius: 0 0 0 7px;
    border-radius: 0 0 0 7px;
    z-index: 99
}

.navBar {
    color: #CFCFCF;
    padding: 9px 0;
    text-align: center;
    font-weight: 400
}

.navBar span {
    cursor: pointer;
    -ms-user-select: none
}

.rightLink,
.leftLink {
    position: absolute
}

.leftLink {
    left: 1em
}

.rightLink {
    right: 1em
}

.navBar .current {
    color: #fff;
    font-weight: 700
}

.text_edit_label {
    float: left;
    margin: 0;
    word-wrap: break-word
}

.text_edit_input {
    display: none;
    width: 100%;
    margin-bottom: 0
}

.text_edit_icon {
    display: inline-block;
    width: 25px;
    height: 25px;
    background: url(../resources/icons/builder-edit-fields.png) 3px 2px;
    background-repeat: no-repeat;
    cursor: pointer;
    background-color: #ededed;
    border-radius: 2px
}

#loadingMessage {
    width: 100%;
    text-align: center;
    margin-top: 14px;
    position: fixed;
    top: 50%;
    z-index: 700;
    font-size: 16px;
    font-weight: 700
}

.esriSimpleSlider {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.esriSimpleSlider.touch div {
    width: 35px;
    height: 35px;
    line-height: 30px
}

.mapCommandHomeBtn {
    background: url(../resources/icons/mapcommand-home.png);
    background-repeat: no-repeat;
    background-position: 5px 5px
}

.mapCommandHomeBtn.touch {
    background-position: 7px 7px
}

body.mobile-view .mapCommandHomeBtn.loading {
    background: url(../resources/icons/mapcommand-loading.gif);
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: 3px 3px;
    cursor: default
}

body.mobile-view .mapCommandHomeBtn.loading.touch {
    background-position: 5px 5px
}

.mapCommandHomeBtn.loading:hover {
    background-color: #FFF
}

.mapCommandLocation {
    top: 130px;
    left: 20px;
    z-index: 30
}

.mapCommandLocation img {
    width: 20px;
    margin-top: 5px
}

.mapCommandLocation.touch {
    top: 145px
}

.mapCommandLocation.touch img {
    margin-top: 4px;
    width: 28px
}

.mapCommandLocation.hidden {
    display: none!important
}

.mapCommandLocation.loading {
    background: url(../resources/icons/mapcommand-loading.gif);
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: 3px 3px;
    cursor: default
}

.mapCommandLocation.loading img {
    display: none
}

.mapCommandLocation.loading.touch {
    background-position: 6px 6px
}

.mapCommandLocation.loading {
    background-color: #FFF
}


.rightArea a img {
    max-width: 110px;
    max-height: 110px;
    position: relative;
    
    
}


.mapLocationError {
    display: none;
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 999
}

.mapLocationMsg {
    display: inline-block;
    background-color: #000;
    color: #fff;
    z-index: 999;
    padding: 5px 8px;
    border-radius: 10px
}

.multiTip {
    min-width: 60px;
    max-width: 200px;
    border: 2px #444 solid;
    overflow: hidden;
    word-wrap: break-word;
    font-size: 12px;
    text-align: center;
    border-radius: 5px;
    -moz-box-shadow: 2px 2px 10px #333;
    -webkit-box-shadow: 2px 2px 10px #333;
    box-shadow: 2px 2px 10px #333;
    filter: progid: DXImageTransform.Microsoft.Shadow(strength=2, direction=135, color='#333333');
    -ms-filter: "progid: DXImageTransform.Microsoft.Shadow(strength = 2, Direction = 135, Color = '#333333')"
}

.title {
    margin-top: 0px;
}



@media screen and (min-width:768px) and (orientation:landscape) {
    #listPanel,
    #infoPanel,
    #introPanel {
        display: none!important
    }
    #contentPanel {
        display: block!important
    }
}

@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (orientation:landscape) {
    #footer {
        height: 160px
    }
    .modern-layout #footer {
        height: 140px
    }
}

@media screen and (min-width:768px) and (orientation:portrait) {
    #picturePanel {
        display: none!important
    }
}

@media screen and (max-width:767px),
screen and (orientation:portrait) {
    #headerDesktop {
        display: none
    }
    #header {
        height: 41px!important;
        background-color: #a04040
    }
    #picturePanel {
        display: none
    }
    #mapPanel {
        width: 100%!important
    }
    #footerDesktop {
        display: none
    }
    #openHeaderMobile {
        display: block
    }
    #footerMobile {
        display: block
    }
    #headerMobile {
        display: block
    }
    #loadingOverlay {
        top: 0
    }
    #builderPanel2,
    #builderPanel3 {
        display: none!important
    }
    .modal,
    .modal-backdrop {
        display: none!important
    }
}