@font-face {
    font-family: "Open Sans";
    src: url("/css/fonts/OpenSans-Regular.ttf");
}

@font-face {
    src: url("/css/fonts/OpenSans-Italic.ttf");
    font-style: italic;
}

@font-face {
    font-family: "Open Sans";
    src: url("/css/fonts/OpenSans-Semibold.ttf");
    font-weight: bold;
}

@font-face {
    font-family: "Open Sans";
    src: url("/css/fonts/OpenSans-SemiboldItalic.ttf");
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: "Open Sans";
    src: url("/css/fonts/OpenSans-Light.ttf");
    font-weight: 300;
}

@font-face {
    font-family: "Open Sans";
    src: url("/css/fonts/OpenSans-LightItalic.ttf");
    font-weight: 300;
    font-style: italic;
}

/***
Spectrum Colorpicker v1.2.0
https://github.com/bgrins/spectrum
Author: Brian Grinstead
License: MIT
***/
.sp-container {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    /* https://github.com/bgrins/spectrum/issues/40 */
    z-index: 99999999;
    overflow: hidden;
    width: 430px;
}

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

/* http://ansciath.tumblr.com/post/7347495869/css-aspect-ratio */
.sp-top {
    position: relative;
    width: 100%;
    display: inline-block;
}

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

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

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

.sp-clear-enabled .sp-hue {
    top: 33px;
    height: 77.5%;
}

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

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

.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 #ccc;
    background: white;
    opacity: .8;
}

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

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

.sp-clear {
    display: none;
}

.sp-clear.sp-clear-display {
    background-position: center;
}

.sp-clear-enabled .sp-clear {
    display: block;
    position: absolute;
    top: 0px;
    right: 0;
    bottom: 0;
    left: 84%;
    height: 28px;
}

/* Don't allow text selection */
.sp-container, .sp-replacer, .sp-preview, .sp-dragger, .sp-slider, .sp-alpha, .sp-clear, .sp-alpha-handle, .sp-container.sp-dragging .sp-input, .sp-container button {
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    user-select: none;
}

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

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

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

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

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

/* Gradients for hue, saturation and value instead of images.  Not pretty... but it works */
.sp-sat {
    background-image: -webkit-gradient(linear, 0 0, 100% 0, from(#FFF), to(rgba(204, 154, 129, 0)));
    background-image: -webkit-linear-gradient(left, #FFF, rgba(204, 154, 129, 0));
    background-image: -moz-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
    background-image: -o-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
    background-image: -ms-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
    background-image: linear-gradient(to right, #fff, rgba(204, 154, 129, 0));
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr=#FFFFFFFF, endColorstr=#00CC9A81)";
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr='#FFFFFFFF', endColorstr='#00CC9A81');
}

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

.sp-hue {
    background: -moz-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
    background: -ms-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
    background: -o-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#ff0000), color-stop(0.17, #ffff00), color-stop(0.33, #00ff00), color-stop(0.5, #00ffff), color-stop(0.67, #0000ff), color-stop(0.83, #ff00ff), to(#ff0000));
    background: -webkit-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
}

/* IE filters do not support multiple color stops.
   Generate 6 divs, line them up, and do two color gradients for each.
   Yes, really.
 */
.sp-1 {
    height: 17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0000', endColorstr='#ffff00');
}

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

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

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

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

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

.sp-hidden {
    display: none !important;
}

/* Clearfix hack */
.sp-cf:before, .sp-cf:after {
    content: "";
    display: table;
}

.sp-cf:after {
    clear: both;
}

.sp-cf {
    *zoom: 1;
}

/* Mobile devices, make hue slider bigger so it is easier to slide */
@media (max-device-width: 480px) {
    .sp-color {
        right: 40%;
    }

    .sp-hue {
        left: 63%;
    }

    .sp-fill {
        padding-top: 60%;
    }
}

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

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

/*
Theme authors:
Here are the basic themeable display options (colors, fonts, global widths).
See http://bgrins.github.io/spectrum/themes/ for instructions.
*/

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

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

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

.sp-color, .sp-hue, .sp-clear {
    border: solid 1px #ccc;
}

/* Input */
.sp-input-container {
    float: right;
    width: 160px;
}

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

.sp-input {
    width: 100%;
    padding: 4px 5px;
    border: 1px solid #ccc;
    border-radius: 2px !important;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    margin: 0;
    outline: 0 none;
}

.sp-input:hover {
    border: 1px solid #919191;
}

.sp-input:focus {
    border: 1px solid #60A7DF;
    box-shadow: rgba(0, 0, 0, 0.075) 0px 1px 1px 0px inset, rgba(103, 175, 250, 0.92) 0px 0px 3px 0px;
}

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

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

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

/* Palettes */
.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;
}

/* Initial */
.sp-initial, .sp-input-container {
    margin-top: 18px;
}

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

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

.sp-initial .sp-clear-display {
    background-position: center;
}

/* Buttons */
.sp-button-container {
    float: right;
    margin-top: 10px;
}

/* Replacer (the little preview div that shows up instead of the <input>) */
.sp-replacer {
    margin: 0;
    overflow: hidden;
    cursor: pointer;
    /*padding: 4px;*/
    padding: 3px;
    display: inline-block;
    *zoom: 1;
    *display: inline;
    /*border: solid 1px #91765d;*/
    border: solid 1px #ccc;
    background: #fafafa;
    color: black;
    vertical-align: middle;
    border-radius: 2px;
}

.sp-replacer:hover {
    /*border-color: #F0C49B;*/
    border-color: #919191;
    color: #111;
}

.sp-replacer.sp-active {
    border: 1px solid #60A7DF;
    box-shadow: rgba(0, 0, 0, 0.075) 0px 1px 1px 0px inset, rgba(103, 175, 250, 0.92) 0px 0px 3px 0px;
}

.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 {
    width: 127px;
    position: relative;
    height: 16px;
    border: solid 1px #ccc;
    margin: 1px 5px 0 0;
    float: left;
    z-index: 0;
}

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

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

.sp-container {
    padding-bottom: 0;
}

/* Buttons: http://hellohappy.org/css3-buttons/ */
.sp-container button {
    -webkit-box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.5), 0px 1px 1px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.5), 0px 1px 1px rgba(0, 0, 0, 0.15);
    box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.5), 0px 1px 1px rgba(0, 0, 0, 0.15);
    background-color: #eeeeee;
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e1e1e1));
    background: -webkit-linear-gradient(top, #fbfbfb, #e1e1e1);
    background: -moz-linear-gradient(top, #fbfbfb, #e1e1e1);
    background: -o-linear-gradient(top, #fbfbfb, #e1e1e1);
    background: linear-gradient(top, #fbfbfb, #e1e1e1);
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    zoom: 1;
    display: inline;
    border: 1px solid #d4d4d4;
    padding: 4px 9px;
    font-weight: 300;
    font-size: 12px;
    font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    color: #666666;
    text-shadow: 0 1px 1px white;
    margin: 0;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border-radius: 3px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    outline: 0;
}

.sp-container button:hover {
    background-color: #eeeeee;
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #dcdcdc));
    background: -webkit-linear-gradient(top, #ffffff, #dcdcdc);
    background: -moz-linear-gradient(top, #ffffff, #dcdcdc);
    background: -o-linear-gradient(top, #ffffff, #dcdcdc);
    background: linear-gradient(top, #ffffff, #dcdcdc);
}

.sp-container button:active {
    -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3), 0px 1px 0px white;
    -moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3), 0px 1px 0px white;
    box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3), 0px 1px 0px white;
    text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.4);
    background: #eeeeee;
    color: #bbbbbb;
}

.sp-cancel {
    font-size: 11px;
    color: #d93f3f !important;
    margin: 0 10px 0 0;
    padding: 2px;
    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==);
    cursor: pointer;
}

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

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

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

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

.sp-clear-display {
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(data:image/gif;base64,R0lGODlhFAAUAPcAAAAAAJmZmZ2dnZ6enqKioqOjo6SkpKWlpaampqenp6ioqKmpqaqqqqurq/Hx8fLy8vT09PX19ff39/j4+Pn5+fr6+vv7+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAP8ALAAAAAAUABQAAAihAP9FoPCvoMGDBy08+EdhQAIJCCMybCDAAYUEARBAlFiQQoMABQhKUJBxY0SPICEYHBnggEmDKAuoPMjS5cGYMxHW3IiT478JJA8M/CjTZ0GgLRekNGpwAsYABHIypcAgQMsITDtWJYBR6NSqMico9cqR6tKfY7GeBCuVwlipDNmefAtTrkSzB1RaIAoXodsABiZAEFB06gIBWC1mLVgBa0AAOw==);
}

/*
 * buttons
 */
@-webkit-keyframes glowing {
    /* line 8, ../scss/partials/_glow.scss */
    from {
        -webkit-box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
    }

    /* line 9, ../scss/partials/_glow.scss */
    50% {
        -webkit-box-shadow: 0px 0px 16px rgba(44, 154, 219, 0.8), 0px 1px 2px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0px 0px 16px rgba(44, 154, 219, 0.8), 0px 1px 2px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 0px 16px rgba(44, 154, 219, 0.8), 0px 1px 2px rgba(0, 0, 0, 0.2);
    }

    /* line 10, ../scss/partials/_glow.scss */
    to {
        -webkit-box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
    }
}

/*@-khtml-keyframes glowing {*/
/* line 14, ../scss/partials/_glow.scss */
/*from {*/
/*-webkit-box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);*/
/*-moz-box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);*/
/*box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);*/
/*}*/

/* line 15, ../scss/partials/_glow.scss */
/*50% {*/
/*-webkit-box-shadow: 0px 0px 16px rgba(44, 154, 219, 0.8), 0px 1px 2px rgba(0, 0, 0, 0.2);*/
/*-moz-box-shadow: 0px 0px 16px rgba(44, 154, 219, 0.8), 0px 1px 2px rgba(0, 0, 0, 0.2);*/
/*box-shadow: 0px 0px 16px rgba(44, 154, 219, 0.8), 0px 1px 2px rgba(0, 0, 0, 0.2);*/
/*}*/

/* line 16, ../scss/partials/_glow.scss */
/*to {*/
/*-webkit-box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);*/
/*-moz-box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);*/
/*box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);*/
/*}*/
/*}*/

@-moz-keyframes glowing {
    /* line 20, ../scss/partials/_glow.scss */
    from {
        -webkit-box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
    }

    /* line 21, ../scss/partials/_glow.scss */
    50% {
        -webkit-box-shadow: 0px 0px 16px rgba(44, 154, 219, 0.8), 0px 1px 2px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0px 0px 16px rgba(44, 154, 219, 0.8), 0px 1px 2px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 0px 16px rgba(44, 154, 219, 0.8), 0px 1px 2px rgba(0, 0, 0, 0.2);
    }

    /* line 22, ../scss/partials/_glow.scss */
    to {
        -webkit-box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
    }
}

@-ms-keyframes glowing {
    /* line 26, ../scss/partials/_glow.scss */
    from {
        -webkit-box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
    }

    /* line 27, ../scss/partials/_glow.scss */
    50% {
        -webkit-box-shadow: 0px 0px 16px rgba(44, 154, 219, 0.8), 0px 1px 2px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0px 0px 16px rgba(44, 154, 219, 0.8), 0px 1px 2px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 0px 16px rgba(44, 154, 219, 0.8), 0px 1px 2px rgba(0, 0, 0, 0.2);
    }

    /* line 28, ../scss/partials/_glow.scss */
    to {
        -webkit-box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
    }
}

@-o-keyframes glowing {
    /* line 32, ../scss/partials/_glow.scss */
    from {
        -webkit-box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
    }

    /* line 33, ../scss/partials/_glow.scss */
    50% {
        -webkit-box-shadow: 0px 0px 16px rgba(44, 154, 219, 0.8), 0px 1px 2px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0px 0px 16px rgba(44, 154, 219, 0.8), 0px 1px 2px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 0px 16px rgba(44, 154, 219, 0.8), 0px 1px 2px rgba(0, 0, 0, 0.2);
    }

    /* line 34, ../scss/partials/_glow.scss */
    to {
        -webkit-box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
    }
}

@keyframes glowing {
    /* line 38, ../scss/partials/_glow.scss */
    from {
        -webkit-box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
    }

    /* line 39, ../scss/partials/_glow.scss */
    50% {
        -webkit-box-shadow: 0px 0px 16px rgba(44, 154, 219, 0.8), 0px 1px 2px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0px 0px 16px rgba(44, 154, 219, 0.8), 0px 1px 2px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 0px 16px rgba(44, 154, 219, 0.8), 0px 1px 2px rgba(0, 0, 0, 0.2);
    }

    /* line 40, ../scss/partials/_glow.scss */
    to {
        -webkit-box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 0px 0px rgba(44, 154, 219, 0.3), 0px 1px 2px rgba(0, 0, 0, 0.2);
    }
}

/* line 25, ../scss/partials/_buttons.scss */
.button {
    -moz-box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.5), 0px 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.5), 0px 1px 1px rgba(0, 0, 0, 0.1);
    background-color: #eeeeee;
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e1e1e1));
    background: -webkit-linear-gradient(top, #fbfbfb, #e1e1e1);
    background: -moz-linear-gradient(top, #fbfbfb, #e1e1e1);
    background: -o-linear-gradient(top, #fbfbfb, #e1e1e1);
    background: linear-gradient(top, #fbfbfb, #e1e1e1);
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    /*vertical-align: auto;*/
    zoom: 1;
    display: inline;
    border: 1px solid #d4d4d4;
    height: 32px;
    line-height: 32px;
    padding: 4px 9px;
    font-size: 14px;
    font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    color: #666666;
    text-shadow: 0 1px 1px white;
    margin: 0;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
}

/* line 43, ../scss/partials/_buttons.scss */
.button:hover {
    background-color: #eeeeee;
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #dcdcdc));
    background: -webkit-linear-gradient(top, #ffffff, #dcdcdc);
    background: -moz-linear-gradient(top, #ffffff, #dcdcdc);
    background: -o-linear-gradient(top, #ffffff, #dcdcdc);
    background: linear-gradient(top, #ffffff, #dcdcdc);
}

/* line 47, ../scss/partials/_buttons.scss */
.button:active {
    -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3), 0px 1px 0px white;
    -moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3), 0px 1px 0px white;
    box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3), 0px 1px 0px white;
    text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.4);
    background: #eeeeee;
    color: #bbbbbb;
}

/* line 53, ../scss/partials/_buttons.scss */
.button:focus {
    outline: none;
}

/* line 65, ../scss/partials/_buttons.scss */
.button-block {
    display: block;
}

/* line 74, ../scss/partials/_buttons.scss */
.button-pure.disabled,
.button-pure.disabled:hover,
.button-pure.disabled:active,
.button.disabled,
.button.disabled:hover,
.button.disabled:active,
input.button:disabled,
button.button:disabled {
    /*-webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);*/
    /*-moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);*/
    /*box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);*/
    background: #EEE;
    border: 1px solid #DDD;
    text-shadow: 0 1px 1px white;
    color: #CCC;
    cursor: default;
}

/* line 84, ../scss/partials/_buttons.scss */
.button-wrap {
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e3e3e3), color-stop(100%, #f2f2f2));
    background: -webkit-linear-gradient(top, #e3e3e3, #f2f2f2);
    background: -moz-linear-gradient(top, #e3e3e3, #f2f2f2);
    background: -o-linear-gradient(top, #e3e3e3, #f2f2f2);
    background: linear-gradient(top, #e3e3e3, #f2f2f2);
    -webkit-border-radius: 200px;
    -moz-border-radius: 200px;
    -ms-border-radius: 200px;
    -o-border-radius: 200px;
    border-radius: 200px;
    -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.04);
    -moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.04);
    box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.04);
    padding: 10px;
    display: inline-block;
}

/* line 100, ../scss/partials/_buttons.scss */
.button-rounded {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

/* line 100, ../scss/partials/_buttons.scss */
.button-pill {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}

/* line 100, ../scss/partials/_buttons.scss */
.button-circle {
    -webkit-border-radius: 240px;
    -moz-border-radius: 240px;
    -ms-border-radius: 240px;
    -o-border-radius: 240px;
    border-radius: 240px;
    -webkit-box-shadow: inset 0px 1px 1px rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0px 1px 1px rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0px 1px 1px rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2);
    width: 120px;
    line-height: 120px;
    height: 120px;
    padding: 0px;
    border-width: 4px;
    font-size: 18px;
}

/*facebook color*/
.button-blue {
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #1D75E4), color-stop(100%, #1C2AC2));
    background: -webkit-linear-gradient(top, #1D75E4, #1C2AC2);
    background: -moz-linear-gradient(top, #1D75E4, #1C2AC2);
    background: -o-linear-gradient(top, #1D75E4, #1C2AC2);
    background: linear-gradient(top, #1D75E4, #1C2AC2);
    background-color: #1D75E4;
    border: 1px solid #0B4BE4;
    color: white;
    text-shadow: 0px 1px 0px rgba(203, 220, 255, 0.25);
}

.button-blue:hover {
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #1788e4), color-stop(100%, #1C2AC2));
    background: -webkit-linear-gradient(top, #1788e4, #1C2AC2);
    background: -moz-linear-gradient(top, #1788e4, #1C2AC2);
    background: -o-linear-gradient(top, #1788e4, #1C2AC2);
    background: linear-gradient(top, #1788e4, #1C2AC2);
    background-color: #1788e4;
}

.button-blue:active {
    background: #0E44F0;
    color: #030080;
}

.button-facebook {
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgb(48,114,177)), color-stop(100%, rgb(48,74,125)));
    background: -webkit-linear-gradient(top, rgb(48,114,177), rgb(48,74,125));
    background: -moz-linear-gradient(top, rgb(48,114,177), rgb(48,74,125));
    background: -o-linear-gradient(top, rgb(48,114,177), rgb(48,74,125));
    background: linear-gradient(top, rgb(48,114,177), rgb(48,74,125));
    background-color: #305e97;
    border: 1px solid rgb(48,54,101);
    color: white;
    text-shadow: 0 -1px 1px rgba(103, 24, 13, 0.35);
}

.button-facebook:hover {
    background-color: rgb(48,104,163);
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgb(48,134,201)), color-stop(100%, rgb(48,74,125)));
    background: -webkit-linear-gradient(top, rgb(48,134,201), rgb(48,74,125));
    background: -moz-linear-gradient(top, rgb(48,134,201), rgb(48,74,125));
    background: -o-linear-gradient(top, rgb(48,134,201), rgb(48,74,125));
    background: linear-gradient(top, rgb(48,134,201), rgb(48,74,125));
}

.button-facebook:active {
    background: #3b5998;
    color: rgb(48,14,51);
}


/* line 135, ../scss/partials/_buttons.scss */
.button-primary {
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #00b5e5), color-stop(100%, #008db2));
    background: -webkit-linear-gradient(top, #00b5e5, #008db2);
    background: -moz-linear-gradient(top, #00b5e5, #008db2);
    background: -o-linear-gradient(top, #00b5e5, #008db2);
    background: linear-gradient(top, #00b5e5, #008db2);
    background-color: #00a1cb;
    border: 1px solid #007998;
    color: white;
    text-shadow: 0 -1px 1px rgba(0, 40, 50, 0.1);
}

/* line 142, ../scss/partials/_buttons.scss */
.button-primary:hover {
    background-color: #00a1cb;
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #00c9fe), color-stop(100%, #008db2));
    background: -webkit-linear-gradient(top, #00c9fe, #008db2);
    background: -moz-linear-gradient(top, #00c9fe, #008db2);
    background: -o-linear-gradient(top, #00c9fe, #008db2);
    background: linear-gradient(top, #00c9fe, #008db2);
}

/* line 146, ../scss/partials/_buttons.scss */
.button-primary:active {
    background: #1495b7;
    color: #005065;
}

/* line 135, ../scss/partials/_buttons.scss */
.button-action {
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #8fcf00), color-stop(100%, #6b9c00));
    background: -webkit-linear-gradient(top, #8fcf00, #6b9c00);
    background: -moz-linear-gradient(top, #8fcf00, #6b9c00);
    background: -o-linear-gradient(top, #8fcf00, #6b9c00);
    background: linear-gradient(top, #8fcf00, #6b9c00);
    background-color: #7db500;
    border: 1px solid #5f8800;
    color: white;
    text-shadow: 0 -1px 1px rgba(19, 28, 0, 0.1);
}

/* line 142, ../scss/partials/_buttons.scss */
.button-action:hover {
    background-color: #7db500;
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #a0e800), color-stop(100%, #6b9c00));
    background: -webkit-linear-gradient(top, #a0e800, #6b9c00);
    background: -moz-linear-gradient(top, #a0e800, #6b9c00);
    background: -o-linear-gradient(top, #a0e800, #6b9c00);
    background: linear-gradient(top, #a0e800, #6b9c00);
}

/* line 146, ../scss/partials/_buttons.scss */
.button-action:active {
    background: #76a312;
    color: #374f00;
}

/* line 135, ../scss/partials/_buttons.scss */
.button-highlight {
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #FF9300), color-stop(100%, #d87e04));
    background: -webkit-linear-gradient(top, #FF9300, #d87e04);
    background: -moz-linear-gradient(top, #FF9300, #d87e04);
    background: -o-linear-gradient(top, #FF9300, #d87e04);
    background: linear-gradient(top, #FF9300, #d87e04);
    background-color: #FF9300;
    border: 1px solid #bf7004;
    color: white;
    text-shadow: 0 -1px 1px rgba(91, 53, 2, 0.1);
}

/* line 142, ../scss/partials/_buttons.scss */
.button-highlight:hover {
    background-color: #f18d05;
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffa72f), color-stop(100%, #d87e04));
    background: -webkit-linear-gradient(top, #ffa72f, #d87e04);
    background: -moz-linear-gradient(top, #ffa72f, #d87e04);
    background: -o-linear-gradient(top, #ffa72f, #d87e04);
    background: linear-gradient(top, #ffa72f, #d87e04);
}

/* line 146, ../scss/partials/_buttons.scss */
.button-highlight:active {
    background: #d8891e;
    color: #8d5303;
}

/* line 135, ../scss/partials/_buttons.scss */
.button-caution {
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e8543f), color-stop(100%, #d9331a));
    background: -webkit-linear-gradient(top, #e8543f, #d9331a);
    background: -moz-linear-gradient(top, #e8543f, #d9331a);
    background: -o-linear-gradient(top, #e8543f, #d9331a);
    background: linear-gradient(top, #e8543f, #d9331a);
    background-color: #e54028;
    border: 1px solid #c22d18;
    color: white;
    text-shadow: 0 -1px 1px rgba(103, 24, 13, 0.1);
}

/* line 142, ../scss/partials/_buttons.scss */
.button-caution:hover {
    background-color: #e54028;
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #eb6855), color-stop(100%, #d9331a));
    background: -webkit-linear-gradient(top, #eb6855, #d9331a);
    background: -moz-linear-gradient(top, #eb6855, #d9331a);
    background: -o-linear-gradient(top, #eb6855, #d9331a);
    background: linear-gradient(top, #eb6855, #d9331a);
}

/* line 146, ../scss/partials/_buttons.scss */
.button-caution:active {
    background: #cd5240;
    color: #952312;
}

/* line 135, ../scss/partials/_buttons.scss */
.button-royal {
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #99389f), color-stop(100%, #752a79));
    background: -webkit-linear-gradient(top, #99389f, #752a79);
    background: -moz-linear-gradient(top, #99389f, #752a79);
    background: -o-linear-gradient(top, #99389f, #752a79);
    background: linear-gradient(top, #99389f, #752a79);
    background-color: #87318c;
    border: 1px solid #632466;
    color: white;
    text-shadow: 0 -1px 1px rgba(26, 9, 27, 0.1);
}

/* line 142, ../scss/partials/_buttons.scss */
.button-royal:hover {
    background-color: #87318c;
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ab3eb2), color-stop(100%, #752a79));
    background: -webkit-linear-gradient(top, #ab3eb2, #752a79);
    background: -moz-linear-gradient(top, #ab3eb2, #752a79);
    background: -o-linear-gradient(top, #ab3eb2, #752a79);
    background: linear-gradient(top, #ab3eb2, #752a79);
}

/* line 146, ../scss/partials/_buttons.scss */
.button-royal:active {
    background: #764479;
    color: #3e1740;
}

/* line 135, ../scss/partials/_buttons.scss *//* line 135, ../scss/partials/_buttons.scss */
.button-black {
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #000), color-stop(100%, #000));
    background: -webkit-linear-gradient(top, #222, #000);
    background: -moz-linear-gradient(top, #222, #000);
    background: -o-linear-gradient(top, #222, #000);
    background: linear-gradient(top, #222, #000);
    background-color: #111111;
    border: 1px solid #000000;
    color: white;
    text-shadow: 0 -1px 1px rgba(13, 13, 13, 0.35);
}

/* line 142, ../scss/partials/_buttons.scss */
.button-black:hover {
    background-color: #222;
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #222), color-stop(100%, #000000));
    background: -webkit-linear-gradient(top, #333, #080808);
    background: -moz-linear-gradient(top, #333, #080808);
    background: -o-linear-gradient(top, #333, #080808);
    background: linear-gradient(top, #333, #080808);
}

/* line 146, ../scss/partials/_buttons.scss */
.button-black:active {
    background: #111111;
    color: #000000;
}

/* line 160, ../scss/partials/_buttons.scss */
.button-flat {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transition-property: background;
    -moz-transition-property: background;
    -o-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    background: #eeeeee;
    border: none;
    text-shadow: none;
}

/* line 169, ../scss/partials/_buttons.scss */
.button-flat:hover {
    background: #f6f6f6;
}

/* line 172, ../scss/partials/_buttons.scss */
.button-flat:active {
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
    background: #eeeeee;
    color: #bbbbbb;
}

/* line 177, ../scss/partials/_buttons.scss */
.button-flat.disabled {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

/* line 189, ../scss/partials/_buttons.scss */
.button-flat-primary {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transition-property: background;
    -moz-transition-property: background;
    -o-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    background: #00a1cb;
    color: white;
    text-shadow: none;
    border: none;
}

/* line 198, ../scss/partials/_buttons.scss */
.button-flat-primary:hover {
    background: #00b5e5;
}

/* line 201, ../scss/partials/_buttons.scss */
.button-flat-primary:active {
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
    background: #1495b7;
    color: #00647f;
}

/* line 206, ../scss/partials/_buttons.scss */
.button-flat-primary.disabled {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.button-flat-black {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transition-property: background;
    -moz-transition-property: background;
    -o-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    background: #111111;
    color: white;
    text-shadow: none;
    border: none;
}

.button-flat-black:hover {
    background: #222222;
}

.button-flat-black:active {
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
    background: #111111;
    color: #000000;
}

.button-flat-black.disabled {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

/* line 189, ../scss/partials/_buttons.scss */
.button-flat-action {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transition-property: background;
    -moz-transition-property: background;
    -o-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    background: #7db500;
    color: white;
    text-shadow: none;
    border: none;
}

/* line 198, ../scss/partials/_buttons.scss */
.button-flat-action:hover {
    background: #8fcf00;
}

/* line 201, ../scss/partials/_buttons.scss */
.button-flat-action:active {
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
    background: #76a312;
    color: #486900;
}

/* line 206, ../scss/partials/_buttons.scss */
.button-flat-action.disabled {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

/* line 189, ../scss/partials/_buttons.scss */
.button-flat-highlight {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transition-property: background;
    -moz-transition-property: background;
    -o-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    background: #f18d05;
    color: white;
    text-shadow: none;
    border: none;
}

/* line 198, ../scss/partials/_buttons.scss */
.button-flat-highlight:hover {
    background: #fa9915;
}

/* line 201, ../scss/partials/_buttons.scss */
.button-flat-highlight:active {
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
    background: #d8891e;
    color: #a66103;
}

/* line 206, ../scss/partials/_buttons.scss */
.button-flat-highlight.disabled {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

/* line 189, ../scss/partials/_buttons.scss */
.button-flat-caution {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transition-property: background;
    -moz-transition-property: background;
    -o-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    background: #e54028;
    color: white;
    text-shadow: none;
    border: none;
}

/* line 198, ../scss/partials/_buttons.scss */
.button-flat-caution:hover {
    background: #e8543f;
}

/* line 201, ../scss/partials/_buttons.scss */
.button-flat-caution:active {
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
    background: #cd5240;
    color: #ac2815;
}

/* line 206, ../scss/partials/_buttons.scss */
.button-flat-caution.disabled {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

/* line 189, ../scss/partials/_buttons.scss */
.button-flat-royal {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transition-property: background;
    -moz-transition-property: background;
    -o-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    background: #87318c;
    color: white;
    text-shadow: none;
    border: none;
}

/* line 198, ../scss/partials/_buttons.scss */
.button-flat-royal:hover {
    background: #99389f;
}

/* line 201, ../scss/partials/_buttons.scss */
.button-flat-royal:active {
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
    background: #764479;
    color: #501d53;
}

/* line 206, ../scss/partials/_buttons.scss */
.button-flat-royal.disabled {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.button-flat-dark-blue {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transition-property: background;
    -moz-transition-property: background;
    -o-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    background: #3b5998;
    color: white;
    text-shadow: none;
    border: none;
}

.button-flat-dark-blue:hover {
    background: #4466AC;
}

.button-flat-dark-blue:active {
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
    background: #39538D;
    color: #1B2E58;
}

.button-flat-dark-blue.disabled {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.button-flat-sky-blue {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transition-property: background;
    -moz-transition-property: background;
    -o-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    background: #2683D8;
    color: white;
    text-shadow: none;
    border: none;
}

.button-flat-sky-blue:hover {
    background: #3598F1;
}

.button-flat-sky-blue:active {
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
    background: #2579C5;
    color: #1B558A;
}

.button-flat-sky-blue.disabled {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

/* line 265, ../scss/partials/_buttons.scss */
.button.glow {
    -webkit-animation-duration: 3s;
    -moz-animation-duration: 3s;
    -ms-animation-duration: 3s;
    -o-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -khtml-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: glowing;
    -khtml-animation-name: glowing;
    -moz-animation-name: glowing;
    -ms-animation-name: glowing;
    -o-animation-name: glowing;
    animation-name: glowing;
}

/* line 268, ../scss/partials/_buttons.scss */
.button.glow:active {
    -webkit-animation-name: none;
    -moz-animation-name: none;
    -ms-animation-name: none;
    -o-animation-name: none;
    animation-name: none;
    -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3), 0px 1px 0px white;
    -moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3), 0px 1px 0px white;
    box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3), 0px 1px 0px white;
}

/* icons glyphicon
 * MIT License: http://fontawesome.io/
 */
@font-face {
    font-family: 'Glyphicons Halflings';
    src: url('/css/fonts/glyphicons-halflings-regular.eot');
    src: url('/css/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('/css/fonts/glyphicons-halflings-regular.woff') format('woff'), url('/css/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('/css/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}

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

.icon:empty {
    width: 1em;
}

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

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

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

.icon-minus:before {
    content: "\2212";
}

.icon-cloud:before {
    content: "\2601";
}

.icon-envelope:before {
    content: "\2709";
}

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

.icon-glass:before {
    content: "\e001";
}

.icon-music:before {
    content: "\e002";
}

.icon-search:before {
    content: "\e003";
}

.icon-heart:before {
    content: "\e005";
}

.icon-star:before {
    content: "\e006";
}

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

.icon-user:before {
    content: "\e008";
}

.icon-film:before {
    content: "\e009";
}

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

.icon-th:before {
    content: "\e011";
}

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

.icon-ok:before {
    content: "\e013";
}

.icon-remove:before {
    content: "\e014";
}

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

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

.icon-off:before {
    content: "\e017";
}

.icon-signal:before {
    content: "\e018";
}

.icon-cog:before {
    content: "\e019";
}

.icon-trash:before {
    content: "\e020";
}

.icon-home:before {
    content: "\e021";
}

.icon-file:before {
    content: "\e022";
}

.icon-time:before {
    content: "\e023";
}

.icon-road:before {
    content: "\e024";
}

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

.icon-download:before {
    content: "\e026";
}

.icon-upload:before {
    content: "\e027";
}

.icon-inbox:before {
    content: "\e028";
}

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

.icon-repeat:before {
    content: "\e030";
}

.icon-refresh:before {
    content: "\e031";
}

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

.icon-lock:before {
    content: "\e033";
}

.icon-flag:before {
    content: "\e034";
}

.icon-headphones:before {
    content: "\e035";
}

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

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

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

.icon-qrcode:before {
    content: "\e039";
}

.icon-barcode:before {
    content: "\e040";
}

.icon-tag:before {
    content: "\e041";
}

.icon-tags:before {
    content: "\e042";
}

.icon-book:before {
    content: "\e043";
}

.icon-bookmark:before {
    content: "\e044";
}

.icon-print:before {
    content: "\e045";
}

.icon-camera:before {
    content: "\e046";
}

.icon-font:before {
    content: "\e047";
}

.icon-bold:before {
    content: "\e048";
}

.icon-italic:before {
    content: "\e049";
}

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

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

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

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

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

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

.icon-list:before {
    content: "\e056";
}

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

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

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

.icon-picture:before {
    content: "\e060";
}

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

.icon-adjust:before {
    content: "\e063";
}

.icon-tint:before {
    content: "\e064";
}

.icon-edit:before {
    content: "\e065";
}

.icon-share:before {
    content: "\e066";
}

.icon-check:before {
    content: "\e067";
}

.icon-move:before {
    content: "\e068";
}

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

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

.icon-backward:before {
    content: "\e071";
}

.icon-play:before {
    content: "\e072";
}

.icon-pause:before {
    content: "\e073";
}

.icon-stop:before {
    content: "\e074";
}

.icon-forward:before {
    content: "\e075";
}

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

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

.icon-eject:before {
    content: "\e078";
}

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

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

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

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

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

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

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

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

.icon-screenshot:before {
    content: "\e087";
}

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

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

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

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

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

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

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

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

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

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

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

.icon-gift:before {
    content: "\e102";
}

.icon-leaf:before {
    content: "\e103";
}

.icon-fire:before {
    content: "\e104";
}

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

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

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

.icon-plane:before {
    content: "\e108";
}

.icon-calendar:before {
    content: "\e109";
}

.icon-random:before {
    content: "\e110";
}

.icon-comment:before {
    content: "\e111";
}

.icon-magnet:before {
    content: "\e112";
}

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

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

.icon-retweet:before {
    content: "\e115";
}

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

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

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

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

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

.icon-hdd:before {
    content: "\e121";
}

.icon-bullhorn:before {
    content: "\e122";
}

.icon-bell:before {
    content: "\e123";
}

.icon-certificate:before {
    content: "\e124";
}

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

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

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

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

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

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

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

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

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

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

.icon-globe:before {
    content: "\e135";
}

.icon-wrench:before {
    content: "\e136";
}

.icon-tasks:before {
    content: "\e137";
}

.icon-filter:before {
    content: "\e138";
}

.icon-briefcase:before {
    content: "\e139";
}

.icon-fullscreen:before {
    content: "\e140";
}

.icon-dashboard:before {
    content: "\e141";
}

.icon-paperclip:before {
    content: "\e142";
}

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

.icon-link:before {
    content: "\e144";
}

.icon-phone:before {
    content: "\e145";
}

.icon-pushpin:before {
    content: "\e146";
}

.icon-usd:before {
    content: "\e148";
}

.icon-gbp:before {
    content: "\e149";
}

.icon-sort:before {
    content: "\e150";
}

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

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

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

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

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

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

.icon-unchecked:before {
    content: "\e157";
}

.icon-expand:before {
    content: "\e158";
}

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

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

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

.icon-flash:before {
    content: "\e162";
}

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

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

.icon-record:before {
    content: "\e165";
}

.icon-save:before {
    content: "\e166";
}

.icon-open:before {
    content: "\e167";
}

.icon-saved:before {
    content: "\e168";
}

.icon-import:before {
    content: "\e169";
}

.icon-export:before {
    content: "\e170";
}

.icon-send:before {
    content: "\e171";
}

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

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

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

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

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

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

.icon-transfer:before {
    content: "\e178";
}

.icon-cutlery:before {
    content: "\e179";
}

.icon-header:before {
    content: "\e180";
}

.icon-compressed:before {
    content: "\e181";
}

.icon-earphone:before {
    content: "\e182";
}

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

.icon-tower:before {
    content: "\e184";
}

.icon-stats:before {
    content: "\e185";
}

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

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

.icon-subtitles:before {
    content: "\e188";
}

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

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

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

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

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

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

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

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

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

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

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

/*!
 *  Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
    font-family: 'FontAwesome';
    src: url('/css/fonts/fontawesome-webfont.eot?v=4.0.3');
    src: url('/css/fonts/fontawesome-webfont.eot?#iefix&v=4.0.3') format('embedded-opentype'), url('/css/fonts/fontawesome-webfont.woff?v=4.0.3') format('woff'), url('/css/fonts/fontawesome-webfont.ttf?v=4.0.3') format('truetype'), url('/css/fonts/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

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

/*
 * Bootstrap v2.3.2 -alert -progress
 */

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 40px 0;
    }
}

@-moz-keyframes progress-bar-stripes {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 40px 0;
    }
}

@-ms-keyframes progress-bar-stripes {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 40px 0;
    }
}

@-o-keyframes progress-bar-stripes {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 40px 0;
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 40px 0;
    }
}

.progress {
    overflow: hidden;
    height: 20px;
    margin-bottom: 20px;
    background-color: #f7f7f7;
    background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
    background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
    background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
    background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.progress .bar {
    width: 0%;
    height: 100%;
    color: #ffffff;
    float: left;
    font-size: 12px;
    text-align: center;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #0e90d2;
    background-image: -moz-linear-gradient(top, #149bdf, #0480be);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
    background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
    background-image: -o-linear-gradient(top, #149bdf, #0480be);
    background-image: linear-gradient(to bottom, #149bdf, #0480be);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: width 0.6s ease;
    -moz-transition: width 0.6s ease;
    -o-transition: width 0.6s ease;
    -ms-transition: width 0.6s ease;
    transition: width 0.6s ease;
}

.progress .bar + .bar {
    -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, .15), inset 0 -1px 0 rgba(0, 0, 0, .15);
    -moz-box-shadow: inset 1px 0 0 rgba(0, 0, 0, .15), inset 0 -1px 0 rgba(0, 0, 0, .15);
    box-shadow: inset 1px 0 0 rgba(0, 0, 0, .15), inset 0 -1px 0 rgba(0, 0, 0, .15);
}

.progress-striped .bar {
    background-color: #149bdf;
    background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    -webkit-background-size: 40px 40px;
    -moz-background-size: 40px 40px;
    -o-background-size: 40px 40px;
    background-size: 40px 40px;
}

.progress.active .bar {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    -moz-animation: progress-bar-stripes 2s linear infinite;
    -ms-animation: progress-bar-stripes 2s linear infinite;
    -o-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite;
}

.progress-danger .bar,
.progress .bar-danger {
    background-color: #dd514c;
    background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));
    background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
    background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
    background-image: linear-gradient(to bottom, #ee5f5b, #c43c35);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);
}

.progress-danger.progress-striped .bar,
.progress-striped .bar-danger {
    background-color: #ee5f5b;
    background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-success .bar,
.progress .bar-success {
    background-color: #5eb95e;
    background-image: -moz-linear-gradient(top, #62c462, #57a957);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
    background-image: -webkit-linear-gradient(top, #62c462, #57a957);
    background-image: -o-linear-gradient(top, #62c462, #57a957);
    background-image: linear-gradient(to bottom, #62c462, #57a957);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);
}

.progress-success.progress-striped .bar,
.progress-striped .bar-success {
    background-color: #62c462;
    background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-info .bar,
.progress .bar-info {
    background-color: #4bb1cf;
    background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));
    background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
    background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
    background-image: linear-gradient(to bottom, #5bc0de, #339bb9);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);
}

.progress-info.progress-striped .bar,
.progress-striped .bar-info {
    background-color: #5bc0de;
    background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-warning .bar,
.progress .bar-warning {
    background-color: #faa732;
    background-image: -moz-linear-gradient(top, #fbb450, #f89406);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, 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);
}

.progress-warning.progress-striped .bar,
.progress-striped .bar-warning {
    background-color: #fbb450;
    background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.alert {
    padding: 8px 35px 8px 14px;
    margin-bottom: 20px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    background-color: #fcf8e3;
    border: 1px solid #fbeed5;
    border-radius: 3px;
}

.alert-success {
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
    color: #468847;
}

.alert-danger,
.alert-error {
    background-color: #f2dede;
    border: 1px solid #eed3d7;
    color: #b94a48;
}

.alert-info {
    background-color: #d9edf7;
    border: 1px solid #bce8f1;
    color: #3a87ad;
}



/*  bootstrap   */
/* hidden */
@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
    .top-en-item{
        display: block !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important;
    }
}
@media (min-width: 800px) and (max-width: 991px) {
    .hidden-new{
        display: none !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important;
    }
}
@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important;
    }
}
/*  collapse  */
.collapse {
    display: none;
}
.collapse.in {
    display: block;
}
tr.collapse.in {
    display: table-row;
}
tbody.collapse.in {
    display: table-row-group;
}
.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height .35s ease;
    -o-transition: height .35s ease;
    transition: height .35s ease;
}
/*   dropdown    */
.dropdown {
    position: relative;
}
.dropdown-toggle:focus {
    outline: 0;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    color: #262626;
    text-decoration: none;
    background-color: #000;
}
.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
    color: #fff;
    text-decoration: none;
    background-color: #428bca;
    outline: 0;
}
.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
    color: #777;
}
.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
    text-decoration: none;
    cursor: not-allowed;
    background-color: transparent;
    background-image: none;
    filter: progid: DXImageTransform.Microsoft.gradient(enabled false);
}
.open > .dropdown-menu {
    display: block;
}
.open > a {
    outline: 0;
}
/* cols */
.row {
    margin-right: -15px;
    margin-left: -15px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    float: left;
}
.col-xs-12 {
    width: 100%;
}
.col-xs-11 {
    width: 91.66666667%;
}
.col-xs-10 {
    width: 83.33333333%;
}
.col-xs-9 {
    width: 75%;
}
.col-xs-8 {
    width: 66.66666667%;
}
.col-xs-7 {
    width: 58.33333333%;
}
.col-xs-6 {
    width: 50%;
}
.col-xs-5 {
    width: 41.66666667%;
}
.col-xs-4 {
    width: 33.33333333%;
}
.col-xs-3 {
    width: 25%;
}
.col-xs-2 {
    width: 16.66666667%;
}
.col-xs-1 {
    width: 8.33333333%;
}
@media (min-width: 768px) {
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
        float: left;
    }
    .col-sm-12 {
        width: 100%;
    }
    .col-sm-11 {
        width: 91.66666667%;
    }
    .col-sm-10 {
        width: 83.33333333%;
    }
    .col-sm-9 {
        width: 75%;
    }
    .col-sm-8 {
        width: 66.66666667%;
    }
    .col-sm-7 {
        width: 58.33333333%;
    }
    .col-sm-6 {
        width: 50%;
    }
    .col-sm-5 {
        width: 41.66666667%;
    }
    .col-sm-4 {
        width: 33.33333333%;
    }
    .col-sm-3 {
        width: 25%;
    }
    .col-sm-2 {
        width: 16.66666667%;
    }
    .col-sm-1 {
        width: 8.33333333%;
    }
    .col-sm-pull-12 {
        right: 100%;
    }
    .col-sm-pull-11 {
        right: 91.66666667%;
    }
    .col-sm-pull-10 {
        right: 83.33333333%;
    }
    .col-sm-pull-9 {
        right: 75%;
    }
    .col-sm-pull-8 {
        right: 66.66666667%;
    }
    .col-sm-pull-7 {
        right: 58.33333333%;
    }
    .col-sm-pull-6 {
        right: 50%;
    }
    .col-sm-pull-5 {
        right: 41.66666667%;
    }
    .col-sm-pull-4 {
        right: 33.33333333%;
    }
    .col-sm-pull-3 {
        right: 25%;
    }
    .col-sm-pull-2 {
        right: 16.66666667%;
    }
    .col-sm-pull-1 {
        right: 8.33333333%;
    }
    .col-sm-pull-0 {
        right: auto;
    }
    .col-sm-push-12 {
        left: 100%;
    }
    .col-sm-push-11 {
        left: 91.66666667%;
    }
    .col-sm-push-10 {
        left: 83.33333333%;
    }
    .col-sm-push-9 {
        left: 75%;
    }
    .col-sm-push-8 {
        left: 66.66666667%;
    }
    .col-sm-push-7 {
        left: 58.33333333%;
    }
    .col-sm-push-6 {
        left: 50%;
    }
    .col-sm-push-5 {
        left: 41.66666667%;
    }
    .col-sm-push-4 {
        left: 33.33333333%;
    }
    .col-sm-push-3 {
        left: 25%;
    }
    .col-sm-push-2 {
        left: 16.66666667%;
    }
    .col-sm-push-1 {
        left: 8.33333333%;
    }
    .col-sm-push-0 {
        left: auto;
    }
    .col-sm-offset-12 {
        margin-left: 100%;
    }
    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-sm-offset-9 {
        margin-left: 75%;
    }
    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-sm-offset-6 {
        margin-left: 50%;
    }
    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-sm-offset-3 {
        margin-left: 25%;
    }
    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-sm-offset-0 {
        margin-left: 0;
    }
}
@media (min-width: 992px) {
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        float: left;
    }
    .col-md-12 {
        width: 100%;
    }
    .col-md-11 {
        width: 91.66666667%;
    }
    .col-md-10 {
        width: 83.33333333%;
    }
    .col-md-9 {
        width: 75%;
    }
    .col-md-8, .ss-col-md-8 {
        width: 66.66666667%;
    }
    .col-md-7, .ss-col-md-7 {
        width: 58.33333333%;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-5 {
        width: 41.66666667%;
    }
    .col-md-4 {
        width: 33.33333333%;
    }
    .col-md-3 {
        width: 25%;
    }
    .col-md-2 {
        width: 16.66666667%;
    }
    .col-md-1 {
        width: 8.33333333%;
    }
}
@media (min-width: 1200px) {
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
        float: left;
    }
    .col-lg-12 {
        width: 100%;
    }
    .col-lg-11 {
        width: 91.66666667%;
    }
    .col-lg-10 {
        width: 83.33333333%;
    }
    .col-lg-9 {
        width: 75%;
    }
    .col-lg-8 {
        width: 66.66666667%;
    }
    .col-lg-7 {
        width: 58.33333333%;
    }
    .col-lg-6 {
        width: 50%;
    }
    .col-lg-5 {
        width: 41.66666667%;
    }
    .col-lg-4 {
        width: 33.33333333%;
    }
    .col-lg-3 {
        width: 25%;
    }
    .col-lg-2 {
        width: 16.66666667%;
    }
    .col-lg-1 {
        width: 8.33333333%;
    }
}
/*   cols  */
/*  bootstrap  */



/*Ares_P*/
body, html {
    min-height: 100%;
}

body {
    font-family: "Open Sans", Helvetica, Arial, Cambria, sans-serif;
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    color: #63696c;
}

a {
    outline: none;
    color: #6bc30d;
    color: #5cb85c;
    text-decoration: none;
}

a:hover {
    color: #76D50F;
    color: #57AD57;
}

img {
    border: none;
}

html {
    position: relative;
}

body, html, span, ul, li, image, p {
    padding: 0;
    margin: 0;
    list-style: none;
}

textarea,
select,
input {
    outline: 0;
    box-sizing: content-box;
    -moz-box-sizing: content-box;
    -o-box-sizing: content-box;
    border-radius: 3px;
    font-family: Arial, Cambria, "Open Sans", Helvetica, sans-serif !important;
}

input[type="radio"] {
    margin: 0;
    position: relative;
    top: 3px;
    cursor: pointer;
    height: 14px;
    width: 14px;
}

input[type="checkbox"] {
    padding: 0;
}

label {
    display: inline-block;
}

.cc-main {
    font-family: "Open Sans", Helvetica, Arial, Cambria, sans-serif;
    padding: 50px 0;
}

.cc-main-2 {
    font-family: "Open Sans", Helvetica, Arial, Cambria, sans-serif;
    padding: 50px 0 0 0;
}

.cc-main-color {
    color: rgb(27, 127, 204);
}
.cc-success-color2 {
    color: #35ac19;
}
.cc-success-color, .cc-success {
    color: #468847;
}
.cc-success {
    font-size: 12px !important;
}
.cc-error, .cc-error-color {
    color: #b94a48;
}
.cc-processing-color {
    color: #3a87ad;
}
.cc-sub-color {
    color: #666;
}

.cc-top-logo-container {
    float: left;
}

.cc-home-link {
    float: left;
}

.cc-top-bar {
    background: #323436;
    width: 100%;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    font-family: Arial;
    font-size: 13px;
}

.cc-top-bar-user-name {
    max-width: 64px;
    white-space: nowrap;
    overflow: hidden;
    float: left;
    text-overflow: ellipsis;
}

.cc-top-bar-user-name-icon {
    top: -18px;
}

.cc-top-bar-user-name-triangle {
    position: relative;
    top: 50%;
    margin-top: -7px;
    float: left;
    margin-left: 5px;
}

.cc-flip-html5-logo-container {
    display: inline-block;
    height: 50px;
    cursor: pointer;
}

.cc-flip-html5-logo-container:hover {
    background: #141624;
}

.cc-flip-html5-logo {
    margin: 12px;
}

.cc-top-menu {
    float: right;
}

.cc-top-menu > li {
    position: relative;
    float: left;
    margin-left: 30px;
    line-height: 50px;
    height: 50px;
}

.cc-top-menu a {
    color: #A8A8A8;
    display: block;
    height: 100%;
}

.cc-top-menu a:hover {
    /*color: #1fbce1;*/
    color: #fff;
}

.cc-link-hover {
    color: #aaa !important;
}

.cc-log-out-link {
    cursor: pointer;
}

.cc-go-premium-button,
.cc-fast-upload-button {
    display: inline-block;
    padding: 0 13px !important;
    border-radius: 0px !important;
    line-height: 48px !important;
    height: 48px !important;
    font-size: 13px !important;
}

.cc-go-premium-button {
    margin-left: -21px !important;
    position: relative;
    float: left;
}

.top-control-left-button {
    position: absolute;
    left: -50px;
    top: 50%;
    margin-top: -15px;
}

.cc-triangle-up {
    display: inline-block;
    width: 0;
    height: 0;
    margin: 0px 0px 0px -3px;
    vertical-align: middle;
    border-bottom: 9px solid;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
}

.cc-has-sub-menu:hover .cc-parent-link{
    color: #aaa !important;
}

.en-item{
    float: left;
    position: relative;
    margin: 0 50px;
}
.en-item > .cc-parent-link{
    height: 50px;
    line-height: 50px;
}
.en-item > a, .en-item > .cc-sub-menu > a{
    color: #aaa;
}
.en-item:hover > .cc-parent-link{
    color: #ffffff !important;
}
.en-item .cc-sub-menu a:hover{
    color: #ffffff;
}
ul.cc-top-menu .cc-sub-menu, .en-item .cc-sub-menu {
    visibility:hidden;
    position:absolute;
    left:0;
    top:100%;
    opacity:1;
    min-width: 130px;
}

.en-item > .cc-sub-menu {
    left:-50px;
    top: 50px;
}

ul.cc-top-menu li:hover > .cc-sub-menu, .en-item:hover > .cc-sub-menu {
    visibility:visible;
    opacity:1;
}

.top-en-item {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 17px;
    right: 80px;
    color: #aaa;
    background: none;
    border: none;
    font-size: 13px;
}
.top-en-item:hover{
    color: #ffffff;
}
#enNavbar{
    display: none;
    height: 280px;
    overflow-y: scroll;
}
#enNavbar::-webkit-scrollbar {
    width: 10px; /*高宽分别对应横竖滚动条的尺寸*/
    height: 10px;
}
#enNavbar::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(175, 194, 216, 0.5);
    background: #616161;
}
#enNavbar::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    border-radius: 16px;
}

.cc-sub-menu-2 {
    width: 300px;
}

.cc-sub-menu-2 > li {
    float: left;
    width: 150px;
}

.cc-sub-menu-2 > li.cc-sub-menu-colspan-2 {
    width: 100%;
}

.top-user-logo {
    display: inline-block;
    width: 28px;
    height: 28px;
    top: 50%;
    position: relative;
    left: 0px;
    overflow: hidden;
    border-radius: 100%;
    float: left;
    margin-top: -14px;
}

.top-user-logo > img {
    display: block;
    width: 100%;
    height: 100%;
}

.cc-sub-meun-user {
    width: 340px;
}

.cc-sub-menu-item {
    background: #323436;
    border-top: 1px solid #3F3F3F;
    border-bottom: 1px solid #24272B;
    line-height: 34px;
    padding: 0 12px;
    white-space: nowrap;
}

.cc-sub-menu-line {
    border-bottom: 3px solid #24272B;
}

.cc-sub-menu-item .fa-rss {
    font-size: 16px;
}

.cc-sub-menu-item:hover {
    background: rgb(43, 43, 43);
}

.cc-header-title {
    font-size: 26px;
    color: #384a54;
    padding: 38px 0 28px 0;
}

.cc-header-sub-title {
    font-size: 16px;
    color: #384a54;
    margin-left: 42px;
    padding-bottom: 30px;
}

.cc-page-title {
    font-size: 26px;
}

.cc-page-sub-title {
    font-size: 16px;
    padding: 20px 0 0 0;
}

.cc-page-sub-title > span {
    margin-right: 40px;
}

.cc-page-sub-title > span > span {
    position: relative;
}

.cc-page-sub-title > span > span > .fa-caret-up {
    font-size: 45px;
    position: absolute;
    top: 22px;
    left: 50%;
    margin-left: -13px;
    color: #fafafa;
}

.cc-download-bar-button-container {
    display: inline-block;
    padding: 15px 30px 10px 0;
}

.cc-download-bar-button-container > li {
    margin: 2px 10px;
}

.cc-download-bar-text {
    position: relative;
    top: -28px;
}

.cc-download-bar-text img {
    max-width: 200px;
}

.cc-download-bar-font-1 {
    color: #fff;
    font-size: 20px;
    position: relative;
    top: -8px;
    font-style: italic;
    margin: 0 12px 0 0;
}

.cc-download-bar-font-2 {
    color: #36cdf1;
    font-size: 20px;
    position: relative;
    top: -8px;
    font-style: italic;
}
.ff-bottom-bar {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    font-family: Arial, Cambria, sans-serif;
}
.ff-bottom-extra {
    position: relative;
background-color: #1a2429;
padding: 15px 0px 25px 0px;
}
.ff-bottom-context {
    position: relative;
    display: block;
    margin: 0px auto;
}
.ff-bottom-bar-logo {
    float: left;
}
.ff-bottom-bar-logo>a {
    display: inline-block;
position: relative;
left: -9px;
top: -1px;
cursor: pointer;
}
.ff-bottom-bar-logo>a>img {
    display: block;
    border: none;
}
.ff-bottom-web-container, .ff-bottom-follow-container {
    float: left;
    text-align: left;
}
.ff-bottom-col {
    float: left;
    width: 186px;
    margin-right: 60px;
    min-height: 1px;
    line-height: 22px;
    margin-top: 17px;
}
.ff-bottom-col .contact-social  {
    padding-top: 10px
}
.ff-bottom-col>p, .ff-bottom-col .contact-social p {
    color: #fff;
    font-weight: bold;
    padding-bottom: 7px;
    border-bottom: 1px solid #e7e7e7;
    font-size: 16px;
    margin-bottom: 12px;
}
.ff-bottom-col>ul>li {
    padding: 8px 0;
}
.ff-bottom-col>ul>li>a, .ff-bottom-col .contact-email>a {
    color: #fff;
    font-size: 13px;
    display: block;
}
.ff-bottom-col>ul>li>a:hover, .ff-bottom-col .contact-email>a:hover, .ff-footer-copyright ul>li>a:hover {
    text-decoration: underline;
}
.ff-bottom-col .contact-email {
    margin-bottom: 17px;
}
.ff-bottom-col .social-networks>a {
    width: 28px;
    height: 28px;
    float: left;
    border-radius: 100%;
    border: 2px solid #ffffff;
    text-align: center;
    color: #fff;

    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.ff-bottom-col .social-networks>a>.fa {
    line-height: 30px;
    font-size: 17px;
}

.ff-bottom-facebook-share>.fa {
    position: relative;
    left: -1px;
}

.ff-bottom-twitter-share {
    margin: 0px 17px;
}

.ff-bottom-download-content>p {
    font-size: 12px;
    color: #fff;
    padding: 4px 0px;
}
.ff-bottom-download-btn {
    border: 2px solid #fff;
    border-radius: 2px;
    padding: 0px 10px;
    height: 34px;
    display: inline-block;
    line-height: 34px;
    color: #ffffff;
    font-size: 13px;
    width: 172px;
    cursor: pointer;
    margin-top: 15px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.ff-bottom-download-btn >span {
    font-weight: bold;
}
.ff-bottom-download-btn:hover, .ff-bottom-col .social-networks>a:hover {
    background-color: #ffffff;
    color: #1a2429; /*#283038*/
}
.ff-footer {
    background: #161F24;
    border-top: 1px solid #37424d;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
}
.ff-footer-right {
    float: right;
}
.ff-footer-left {
    float: left;
}
.ff-footer-copyright {
    position: relative;
    margin: 0px auto;
}
.ff-footer-copyright ul {
    display: inline-block;
}
.ff-footer-copyright ul>li {
    float: left;
}
.ff-footer-copyright ul>.ff-spacing {
    height: 20px;
margin-top: 16px;
padding: 0;
border-left: 1px solid #bcbcbc;
width: 1px;
}
.ff-footer-copyright ul>li>a {
    padding: 0px 15px;
color: #fff;
}
.ff-copyright-text {
    color: #fff;
font-size: 12px;
float: left;
}
@media (min-width: 940px) {
    .ff-bottom-context, .ff-footer-copyright {
        width: 940px;
    }
}
@media (min-width: 492px) and (max-width: 939px) {
    .ff-bottom-context, .ff-footer-copyright {
        width: 492px;
    }
}
@media (max-width: 491px) {
    .ff-bottom-context, .ff-footer-copyright {
        width: 200px;
    }
}
/*.cc-bottom-bar {
    background: #7c7c7c;
    color: #9C9C9C;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    padding: 20px 0;
}

.cc-bottom-links {
    display: inline-block;
}

.cc-bottom-links > li {
    float: left;
    padding: 0px 7px;
    border-right: 1px solid;
}

.cc-bottom-links > li:last-child {
    border-right: none;
}

.cc-copyright-container {
    position: relative;
}

.cc-bottom-social-boxs {
    position: absolute;
    left: 155px;
    top: 11px;
}

.cc-bottom-social-boxs > a {
    float: left;
    padding: 0px 3px;
    opacity: 0.85;
}

.cc-bottom-social-boxs > a:hover {
    opacity: 1;
}

.cc-copyright {
    padding-top: 10px;
}*/

.cc-text-left {
    text-align: left;
}

.cc-text-center {
    text-align: center;
}

.cc-text-right {
    text-align: right;
}

.cc-container-1 {
    width: 1260px;
    margin: 0 auto;
    position: relative;
}

.cc-container-2 {
    width: 1160px;
    margin: 0 auto;
    position: relative;
}

.cc-container-3 {
    width: 1060px;
    margin: 0 auto;
    position: relative;
}

.cc-container-4 {
    width: 960px;
    margin: 0 auto;
    position: relative;
}

.cc-container100 {
    width: 100%;
    text-align: center;
    position: relative;
}

.cc-container90 {
    width: 90%;
    margin: 0 auto;
    position: relative;
}

.cc-container80 {
    width: 80%;
    margin: 0 auto;
    position: relative;
}

.cc-container70 {
    width: 70%;
    margin: 0 auto;
    position: relative;
}

.cc-header-container {
    padding: 30px 0;
    background: #eee;
    color: #333;
}

.cc-row {
    padding: 10px 0;
}

.cc-row-l {
    padding: 20px 0;
}

.cc-row-xl {
    padding: 30px 0;
}

.cc-row-xxl {
    padding: 40px 0;
}

/*panel style*/
.cc-panel {
    border: 1px solid #ddd;
    background: #ffffff;
    margin-bottom: 30px;
    position: relative;
    /*box-shadow: inset 0px 1px 0px #fff, 0px 1px 2px rgb(175, 175, 175);*/
}

.cc-panel-no-margin {
    background: #ffffff;
    position: relative;
    box-shadow: inset 0px 1px 0px #fff, 0px 1px 2px rgb(175, 175, 175);
}

.cc-bar {
    height: 50px;
    width: 958px;
    position: relative;
    background: #ececec;
}

.cc-bar-header {
    border-bottom: 1px solid #D5D5D5;
    box-shadow: inset 0px 1px 0px 0px #fff;
}

.cc-bar-footer {
/*    border-left: 1px solid #dfdfdf;
    border-right: 1px solid #dfdfdf;*/
    box-shadow: inset 0 1px 0 0 #fff;
    border-bottom: 1px solid #ccc;
}

.cc-bar .cc-title {
    color: #cc0f16;
    font-size: 22px;
    line-height: 50px;
    height: 50px;
    margin-left: 30px;
}

.cc-caption-container {
    font-size: 17px;
    line-height: 50px;
    height: 50px;
}

.cc-caption {
    position: relative;
    margin-right: 35px;
    cursor: pointer;
    color: rgb(70, 70, 70);
    float: left;
}

.cc-caption-triangle {
    position: absolute;
    left: 50%;
    margin-left: -8px;
    bottom: -12px;
    color: white;
    text-shadow: 0 -1px 0 #CFCFCF;
    font-size: 32px;
}

.cc-active {
    color: #cc0f16;
}

.cc-section {
    padding: 10px 0px 0px 30px;
    position: relative;
    /* height: 100%; */
    height: calc(100% - 50px);
}

.cc-section-new {
    padding: 100px 0px 0px 30px;
}

.cc-section-new.cc-section {
    height: calc(100% - 145px);
}

.cc-section-ff{
    padding: 15px 0px 15px 30px;
    position: relative;
}

.cc-content {
    background-color: #fff;
    line-height: 20px;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #dfdfdf;
}
.cc-content-ff{
     background-color: #fff;
    line-height: 20px;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #dfdfdf;
}

.cc-section-container {
    height: 100%;
}

.cc-section-content {
    position: relative;
    height: 100%
}

.cc-button-container {
    position: absolute;
    right: 14px;
    top: 10px;
}

.cc-button-container .button,
.cc-button-container .button-pure {
    margin-left: 15px;
}

.cc-keywords-container {
    max-height: 64px;
    overflow: auto;
    padding: 2px 5px !important;
}

.cc-keywords-container > li {
    float: left;
    border: 1px solid #ccc;
    margin: 2px 3px 2px 1px;
    padding: 0px 20px 0px 5px;
    position: relative;
}

.cc-keywords-container > li:last-child {
    border: none;
    padding: 0;
}

.cc-book-info-label-container {

}

.cc-book-info-label-container > label {
    cursor: pointer;
    margin-right: 20px;
    margin-left: 5px;
    position: relative;
    top: 1px;
}

.cc-smart-input-item-selected {
    border: 1px solid #cc0f16 !important;
}

.cc-smart-hidden-input {
    padding: 0;
    margin: 0;
    height: 20px;
    border: none;
    width: 100px;
}

.cc-smart-input-remove-button {
    position: absolute;
    right: 4px;
    top: 50%;
    margin-top: -6px;
    font-size: 12px;
    color: #888;
    cursor: pointer;
}

.cc-smart-input-remove-button:hover {
    color: #cc0f16;
}

.cc-template-container, .cc-theme-container {
    height: 270px;
    margin: 18px 35px 0px 0px;
    padding: 2px 0px 0px 10px;
    overflow-x: hidden;
}

.cc-template-get-more-item,
.cc-template-item,
.cc-theme-item {
    float: left;
    margin: 0px 20px 40px 0px;
    cursor: pointer;
    box-shadow: 0px 1px 1px #333;
    position: relative;
}

.cc-item-thumbnail {
    height: 100px;
    width: 150px;
    display: block;
}

.cc-item-mask {
    background: white;
    opacity: 0;
    width: 150px;
    height: 100px;
    position: absolute;
    left: 0px;
    top: 0px;
    transition: opacity 200ms;
}

.cc-item-mask:hover {
    opacity: 0.2;
}

.cc-item-chosen-frame {
    width: 142px;
    height: 92px;
    position: absolute;
    left: 0px;
    top: 0px;
}

.cc-item-title {
    position: absolute;
    left: 0;
    bottom: -24px;
    font-size: 14px;
    width: 100%;
    text-align: center;
    font-weight: bold;
    color: #0F0F0F;
}

.cc-frame-chosen {
    border: 4px solid red;
}

.cc-mask-chosen {
    opacity: 0.2;
}

.cc-title-chosen {
    color: #cc0f16;
}

.cc-pdf-upload-note {
    width: 740px;
    line-height: 25px;
    font-size: 16px;
    margin: 10px 0 20px;
}

.cc-pdf-upload-component {
    height: 108px;
}

.cc-pdf-reupload-component {
    height: 108px;
}

.cc-pdf-upload-component-fixed {
    height: 80px;
    position: absolute;
    top: 61px;
    width: 100%;
    padding-left: 30px;
    padding-bottom: 10px;
    box-sizing: border-box;
    border-bottom: 1px solid #ddd;
}

.cc-pdf-upload-component-fixed .cc-pdf-upload-zone {
    width: 736px;
    border: 1px solid #ddd;
    margin: 0px 0px 0px 52px;
}

.cc-pdf-upload-component-fixed .cc-pdf-upload-button {
    position: relative;
    top: 20px;
    left: 11px;
}

.cc-pdf-upload-button {
    position: relative;
    overflow: hidden;
}

.cc-pdf-upload-input {
    position: absolute;
    right: 0;
    top: 0;
    width: 200px;
    height: 200px;
    opacity: 0;
    -ms-filter: 'alpha(opacity=0)';
    cursor: pointer;
}

.cc-pdf-upload-zone {
    position: relative;
    width: 662px;
    height: 100%;
    margin: 0px 0px 0px 30px;
    border: 2px #ddd dashed;
    border-radius: 2px;
    box-sizing: border-box;
}

.cc-pdf-upload-drag-text {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    left: 0px;
    right: 0px;
    text-align: center;
    color: #A8A8A8;
}

.cc-drag-over {
    border-color: #888 !important;
}

.cc-pdf-upload-title {
    font-size: 14px;
    line-height: 25px;
    position: absolute;
    left: 5%;
    top: 38%;
    margin-top: -20px;
    width: 90%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.cc-pdf-upload-progress-bar-wrapper {
    position: absolute;
    width: 90%;
    left: 5%;
    top: 67%;
    margin-top: -10px;
}

.cc-pdf-upload-progress-bar {
    width: 0%;
}

.cc-success-color {
    color: #468847;
}

.cc-error,
.cc-error-color {
    color: #b94a48;
}

.cc-processing-color {
    color: #3a87ad;
}

.cc-sub-color {
    color: #666;
}

.cc-pdf-upload-tips-container {
    font-size: 13px;
    line-height: 23px;
    margin: 45px 0 0 5px;
}

.cc-pdf-upload-tips-more {
    display: inline-block;
}

.cc-disc-ul,
.cc-decimal-ul {
    margin-left: 20px;
}

.cc-decimal-ul > li {
    list-style: decimal;
}

.cc-disc-ul > li {
    list-style: disc;
}

.cc-pdf-upload-alert {
    font-size: 15px;
    position: absolute;
    left: 5%;
    top: 82%;
    margin-top: -25px;
}

.cc-pdf-upload-alert .alert{
    padding: 4px 35px 4px 14px;
}

.cc-pdf-upload-options {
    margin: 9px 0 0 130px;
}

.cc-pdf-upload-options > * {
    margin-right: 40px;
}

.cc-pdf-upload-alert-bottom {
    text-align: center;
    position: absolute;
    left: 5%;
    bottom: 45px;
    font-size: 15px;
    width: 90%;
}

.cc-button {
    font-size: 14px;
    margin: 10px 20px 0px 0px;
}

.cc-progress {
    position: relative;
    display: block;
    padding: 1px;
    border: 1px solid #999999;
    width: 80%;
    margin: 0px auto;
}

.cc-progress-bar {
    height: 8px;
    display: block;
    background-color: #cccccc;
    width: 0%;

    -webkit-transition: width 0.6s ease;
    -moz-transition: width 0.6s ease;
    -o-transition: width 0.6s ease;
    -ms-transition: width 0.6s ease;
    transition: width 0.6s ease;
}

.cc-clone-fail-panel,
.cc-cloning-panel,
.cc-converting-panel,
.cc-convert-fail-panel,
.cc-config-fail-panel {
    height: 120px;
}

.cc-fast-upload-clone-panel,
.cc-fast-upload-converting-panel {
    height: 180px;
}

.cc-convert-icon-container {
    float: left;
    position: relative;
    margin: 20px 60px;
    height: 80px;
    width: 80px;
}

.cc-convert-icon {
    position: absolute;
    display: none;
}

.cc-convert-info {
    float: left;
    margin: 20px 0px 0px 0px;
    padding: 12px 0px 0px 0px;
    width: 600px;
}

.cc-convert-title {
    font-size: 17px;
    color: black;
}

.cc-convert-status {
    font-size: 17px;
    margin-left: 15px;
}

.cc-convert-progress-bar-wrapper {
    margin-top: 15px;
}

.cc-convert-fail-message {
    font-size: 17px;
    margin-top: 18px;
}

.cc-convert-panel-buttons {
    position: absolute;
    right: 48px;
    top: 48px;
}

.cc-convert-panel-button {
    font-size: 25px;
    cursor: pointer;
    margin-left: 15px;
}

.cc-book-panel {
    height: 180px;
    transition: all 0.4s;
}

.cc-book-panel:hover {
    background: #f8f8f8;
}

.cc-book-panel > .fa-desktop {
    position: absolute;
    right: 10px;
    top: 10px;
}

.cc-book-panel-active {
    outline: 2px solid #5cb85c;
}

.cc-book-panel-alert-container {
    /* position: absolute;
    width: 100%;
    top: 50%;
    margin-top: -25px;
    height: 50px;
    line-height: 50px;
    text-align: center; */
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    line-height: 25px;
    text-align: center;
}

.cc-book-panel-alert-container > div {
    /* display: inline-block;
    background: rgba(0, 0, 0, 0.78);
    color: white;
    border-radius: 4px;
    padding: 0 13px;
    font-size: 15px; */
    display: inline-block;
    background: rgba(0, 0, 0, 0.78);
    color: white;
    border-radius: 4px;
    padding: 10px 13px;
    font-size: 15px;
}

.cc-book-panel-alert-container i {
    margin-right: 5px;
}

.cc-book-panel-alert-container > div > a {
    text-decoration: underline;
}

.cc-book-thumbnail-container {
    width: 160px;
    height: 130px;
    margin: 18px 15px 12px 15px;
    float: left;
    position: relative;
}
.book-open-cover {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  /*background-image: url("/images/common/fancy.png");*/
  background-color: rgba(0,0,0,0.5);
  visibility: hidden;
   transition: all .2s .2s;
    -webkit-transition: all .2s .2s;
    -moz-transition: all .2s .2s;
    -o-transition: all .2s .2s;
    -ms-transition: all .2s .2s;
    opacity: 0;
}
.cc-book-thumbnail-container:hover .book-open-cover {
  visibility: visible;
  opacity: 1;
}
.book-open-cover > a {
  text-align: center;
  display: block;

  position: relative;
  margin: 17px auto;
  line-height: 24px;
  z-index: 4;
  border-radius: 2px;
}
.book-open-cover .button-pure {
    padding: 7px;
    width: 80%;
}
.book-open-cover.has-custom > a {
    margin: 7px auto;
}
.book-open-cover.has-custom .button-pure {
    padding: 4px;
    width: 80%;
}

.cc-img-loading {
    background: url("../images/books/loading.gif") no-repeat 50% 50%;
}

.cc-book-a {
    display: block;
}

.cc-book-img {
    box-shadow: 0px 1px 2px 0px #cacaca;
    /*box-shadow: 0px 1px 2px 0px #252525;*/
    display: none;
}

.cc-book-label-img {
    position: absolute;
    right: -4px;
    top: -4px;
    max-width: 60px;
}

.cc-book-time {
    font-size: 12px;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: -30px;
    font-style: italic;
    white-space: nowrap;
}

.cc-book-info {
    position: relative;
    float: left;
    max-width: 750px;
    overflow: hidden;
    height: 100%;
}

.cc-book-title {
    font-size: 17px;
    line-height: 26px;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 20px 10px 0 0;
    width: 100%;
}

.cc-book-desc {
    /*height: 63px;
    overflow: hidden;
    font-size: 14px;
    line-height: 18px;
    padding: 4px 10px 10px 0;*/
    font-size: 14px;
    line-height: 1.3em;
    padding: 4px 10px 0px 0;
    height: 5.2em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
}

.cc-book-right-toolbar {
    position: absolute;
    right: 20px;
    top: 14px;
}


.cc-book-privacy-button {
    width: 40px;
    height: 40px;
    background: url("/images/privacy.png") no-repeat;
    cursor: pointer;
}

.cc-book-privacy-button.private {
    background-position: 3px -2px;
}

.cc-book-privacy-button.private:hover {
    background-position: 3px -42px;
}

.cc-book-privacy-button.public {
    background-position: -84px -2px;
}

.cc-book-privacy-button.public:hover {
    background-position: -84px -42px;
}


.cc-book-privacy-button.keep-private-on-cloud {
    background-position: -130px -2px;
}

.cc-book-privacy-button.keep-private-on-cloud:hover {
    background-position: -130px -42px;
}

.cc-book-privacy-button.cc-toolbar-button-disabled,
.cc-book-privacy-button.cc-toolbar-button-disabled:hover {
    background-position-y: -82px;
}

.cc-book-right-toolbar > i {
    font-size: 28px;
    color: #c02121;
    margin-bottom: 28px;
    transition: text-shadow 0.2s;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
}

.cc-book-bottom-toolbar {
    position: absolute;
    right: 28px;
    bottom: 12px;
}

.cc-convert-panel-button,
.cc-book-bottom-toolbar > i {
    cursor: pointer;
    font-size: 26px;
    color: #5cb85c;
    float: left;
    margin-left: 28px;
    transition: text-shadow 0.2s;
}

.cc-book-bottom-toolbar .fa-code {
    font-size: 30px;
    position: relative;
    top: -2px;
    font-weight: bold;
}

.cc-book-bottom-toolbar .icon-font {
    font-size: 24px;
}

.cc-book-bottom-toolbar .fa-share-alt {
    font-size: 27px;
}

.cc-book-bottom-toolbar .icon-print {
    font-size: 24px;
}

.cc-convert-panel-button:hover,
.cc-book-right-toolbar > i:hover,
.cc-book-bottom-toolbar > i:hover {
    color: #57AD57;
}

.cc-remove-mask-button:hover {
    text-shadow: -1px 1px 2px black;
}

.cc-remove-mask-button:active {
    color: #A00000;
}

.cc-toolbar-button-disabled {
    color: gray !important;
    cursor: default !important;
}

.cc-toolbar-button-disabled:hover {
    text-shadow: none;
}

.cc-toolbar-button-disabled:active {
    color: gray;
}

.cc-bookcase-embed-large-button,
.cc-embed-large-button {
    position: absolute;
    font-size: 16px;
    right: 244px;
    top: 50%;
    margin-top: -31px;
    padding: 0;
    width: 170px;
    height: 60px;
    line-height: 60px;
}

.cc-bookcase-embed-large-button {
    right: 50px;
}

.cc-privacy-item {
    width: 100%;
    height: 43px;
    margin-top: 10px;
}

.cc-privacy-ratio {
    cursor: pointer;
    width: 16px;
    height: 16px;
    float: left;
    margin: 12px 7px !important;
}

.cc-privacy-icon {
    cursor: pointer;
    font-size: 20px;
    float: left;
    margin-top: 7px;
}

.cc-privacy-info {
    cursor: pointer;
    float: left;
    margin-left: 8px;
}

.cc-privacy-title {
    color: #0F0F0F;
    font-size: 16px;
}

.cc-privacy-desc {
    font-size: 12px;
}

.cc-privacy-email-tips {
    padding: 5px 0;
    font-size: 13px;
    color: black;
}

.cc-privacy-email-tips > p {
    font-size: 11px;
    color: #888;
}

.cc-privacy-email-example {
    padding: 5px;
}

.cc-privacy-keep-private-container {
    margin-left: 41px;
    font-size: 14px;
}

/*form style*/
.cc-input-group-xs {
    padding: 2px 0;
    position: relative;
}

.cc-input-group-s {
    padding: 4px 0;
    position: relative;
}

.cc-input-group {
    padding: 6px 0;
    position: relative;
}

.cc-input-group-m {
    padding: 8px 0;
    position: relative;
}

.cc-input-group-l {
    padding: 10px 0;
    position: relative;
}

.cc-margin-left-20 {
    margin-left: 20px;
}

.cc-margin-right-20 {
    margin-right: 20px;
}

.cc-margin-top-10 {
    margin-top: 10px;
}

.cc-margin-top-20 {
    margin-top: 20px;
}

.cc-label {
    width: 150px;
    line-height: 30px;
}

.cc-field {
    font-family: "Open Sans", Helvetica, Arial, Cambria, sans-serif;
    color: black !important
}

.cc-textarea {
    height: 140px;
    resize: vertical;
}

.cc-resize-v {
    resize: vertical;
}

.cc-checkbox-group {
    line-height: 30px;
}

.cc-checkbox {
    margin: 0;
    position: relative;
    top: 2px;
    cursor: pointer;
    height: 14px;
    width: 14px;
}

.cc-checkbox-label {
    cursor: pointer;
    margin: 0 5px;
}

.cc-select {
    height: 20px;
}

.cc-input-text {
    height: 20px;
}

.cc-as-input-text {
    cursor: text;
}

.cc-as-input-text,
.cc-input-text,
.cc-textarea,
.cc-select {
    line-height: 20px;
    border: 1px solid #ccc;
    border-radius: 2px !important;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    margin: 0;
    outline: 0 none;
}

.cc-as-input-text,
.cc-input-text,
.cc-textarea,
.cc-select,
.cc-input-shadow {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.025);
}


.cc-as-input-text,
.cc-input-text,
.cc-textarea {
    width: 372px;
    padding: 4px 5px; /*1+4+20+4+1=30 */
}

.cc-select {
    width: 380px;
    padding: 4px 1px;
}

.cc-as-input-hover,
.cc-input-text:hover,
.cc-textarea:hover,
.cc-select:hover {
    border-color: #aaa;
}

.cc-as-input-hover-important {
    border-color: #919191 !important;
}

.cc-as-input-focus,
.cc-input-text:focus,
.cc-textarea:focus,
.cc-select:focus {
    border-color: #5cb85c;
    box-shadow: inset 0 1px 3px 0 #ccc;
    /*box-shadow: rgba(0, 0, 0, 0.075) 0px 1px 1px 0px inset, rgba(103, 175, 250, 0.92) 0px 0px 3px 0px;*/
}

.cc-as-input-focus-important {
    border-color: #169acd !important;
    box-shadow: inset 0 1px 3px 0 #c5c5c5 !important;
}

.cc-input-text-m {
    width: 411px;
    height: 18px;
}

.cc-input-text-l {
    height: 25px;
}

.cc-select-l {
    height: 25px;
}

.cc-textarea-m {
    width: 411px;
}

.cc-select-auto {
    width: auto;
    padding: 0;
    height: 26px;
}

.cc-validate-fail {
    border-color: #E67070 !important;
    /*box-shadow: rgba(0, 0, 0, 0.075) 0px 1px 1px 0px inset, rgba(250, 103, 103, 0.92) 0px 0px 3px 0px inset !important;*/
    /*box-shadow: inset 0 1px 4px 0 rgba(250, 103, 103, 0.92) !important;*/
    background: #fdd !important;
}

.cc-file {
    margin-top: 4px;
}

.cc-static-text {
    line-height: 30px;
}

.cc-blue-link {
    margin: 0 0 0 20px;
    color: #5cb85c;
    font-style: italic;
    text-decoration: underline;
    font-size: 15px;
    cursor: pointer;
}

.cc-blue-link:hover {
    color: #1fbce1;
}

.cc-blue-link-2 {
    color: #5cb85c;
    text-decoration: underline;
    font-size: 15px;
    cursor: pointer;
    font-style: italic;
}

.cc-blue-link-3 {
    color: #5cb85c;
    font-size: 15px;
    cursor: pointer;
}

.cc-blue-link-4 {
    color: #5cb85c;
}

.cc-blue-link-uib15 {
    color: #00EBFF;
    text-decoration: underline;
    font-style: italic;
    font-size: 15px;
    font-weight: bold;
}

.cc-blue-link-under-line {
    color: #5cb85c;
    text-decoration: underline;
}

.cc-underline {
    text-decoration: underline;
}

.cc-underline-link-888 {
    color: #888;
    text-decoration: underline;
}

.cc-underline-link-888:hover,
.cc-blue-link-under-line:hover,
.cc-blue-link-4:hover,
.cc-blue-link-3:hover,
.cc-blue-link-2:hover {
    text-decoration: underline;
    color: #57AD57;
}

.cc-transparent-link {
    color: transparent; /*fix ie a > img  border*/
}

.cc-gray-link {
    color: #888888;
}

.cc-gray-link-underline {
    color: #63696c;
    cursor: pointer;
}

.cc-dark-gray-link {
    color: #7c7c7c;
}

.cc-dark-gray-link-underline {
    color: #7c7c7c;
    text-decoration: underline;
    cursor: pointer;
}

.cc-white-link {
    color: white;
}

.cc-white-link:hover {
    color: #aaa;
}

.cc-dark-gray-link:hover,
.cc-gray-link-underline:hover,
.cc-dark-gray-link-underline:hover,
.cc-gray-link:hover {
    color: #1fbce1;
}

.cc-gray-link-underline:hover,
.cc-dark-gray-link:hover {
    text-decoration: underline;
}

.cc-input-help {
    float: left;
    font-size: 13px;
    line-height: 30px;
    margin-left: 20px;
    color: #cc0f16;
}

.cc-input-common-help {
    font-size: 13px;
    line-height: 30px;
    margin-left: 20px;
    display: inline-block;
}

.cc-book-info-section-input-help {
    font-size: 13px;
    line-height: 30px;
    margin-left: 20px;
    width: 362px;
    display: inline-block;
}

.cc-hints-title {
    margin: 3px 0 7px 0;
}

.cc-highlight-text {
    color: red;
    font-weight: bold;
}

.cc-right {
    float: right;
}

.cc-left {
    float: left;
}

.cc-bold {
    font-weight: bold;
}

.cc-user-select-none {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
}

.cc-no-padding {
    padding: 0 !important;
}

/*fast upload*/
.cc-run-in-background-container {
    position: absolute;
    right: 15px;
    bottom: 2px;
    text-align: right;
}

.cc-run-in-background-button {

}

.cc-run-in-background-tips {
    color: #888888;
    line-height: 30px;
}

/*SignInPanel*/
.cc-log-in-form {
    text-align: center;
    position: relative;
    padding: 40px 0 50px 0;
    display: inline-block;
}

.cc-log-in-label {
    float: left;
    width: 50px;
    color: white;
    text-align: center;
    background: #5cb85c;
    padding: 15px 0px;
    border: 1px solid #4cae4c;
    position: relative;
    border-top-left-radius: 2px !important;
    border-bottom-left-radius: 2px !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    height: 14px;
    line-height: 14px;

    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.cc-log-in-label > .fa-caret-right {
    position: absolute;
    left: 100%;
    margin-left: -1px;
    color: #5cb85c;
    text-shadow: 1px 0px 0px #4cae4c;
    font-size: 16px;
    z-index: 1;
}

.cc-log-in-input {
    float: left;
    width: 212px;
    height: 30px;
    padding: 7px 15px;
    font-size: 16px;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-top-right-radius: 2px !important;
    border-bottom-right-radius: 2px !important;
    border-left: none;
    border-color: #c7c7c7;

    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.cc-sign-up-input {
    width: 122px !important;
}

.cc-sign-up-code {
    display: block;
    float: right;
    width: 80px;
    height: 46px;
    cursor: pointer;
}

.cc-log-in-button-container {
    margin: 9px 0 0px 0;
    position: relative;
}

.cc-log-in-progress-bar-wrapper {
    position: absolute;
    width: 100%;
    height: 20px;
    left: 0;
    right: 0;
    top: 50%;
    margin: -10px 0 0 0;
    padding: 0;
}

.cc-log-in-progress-bar {
    width: 100% !important;
}

.cc-icon-left {
    position: absolute;
    right: 100%;
    top: 50%;
    margin-top: -9px;
    margin-right: 14px;
    font-size: 18px;
}



.ff-log-in-network-gg,
.ff-log-in-network-fb,
.cc-log-in-button,
.cc-sign-up-button {
    width: 273px;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    text-shadow: none;
    height: 34px;
    line-height: 34px;
}

.ff-log-in-network-fb > span {
    text-indent: 52px;
    display: inline-block;
}

.ff-log-in-network-fb > i {
    border-right: 1px solid #556B9B;
    padding: 8px 22px 8px 0px;
    font-size: 20px;
    position: absolute;
    top: 4px;
    left: 25px;
}

.ff-log-in-network-gg > span {
    text-indent: 52px;
    display: inline-block;
}

.ff-log-in-network-gg > i {
    border-right: 1px solid #A26C6C;
    padding: 8px 16px 8px 0px;
    font-size: 18px;
    position: absolute;
    top: 5px;
    left: 22px;
    font-weight: bold;
}

.ff-log-in-network-gg-s,
.ff-log-in-network-fb-s {
    width: 230px;
    height: 26px;
    line-height: 26px;
}

.ff-log-in-network-fb-s > span {
    text-indent: 36px;
}

.ff-log-in-network-fb-s > i {
    padding: 0px 12px 0px 0px;
    top: 8px;
    left: 20px;
}

.ff-log-in-network-gg-s > span {
    text-indent: 40px;
}

.ff-log-in-network-gg-s > i {
    padding: 0px 13px 0px 0px;
    top: 10px;
    left: 20px;
    font-size: 17px;
}

.cc-log-in-bottom-container {
    background: #f0f2f2;
    border-top: 1px solid #c7c7c7;
    padding: 30px 0;
    color: #999;
}

.cc-log-in-input-help,
.cc-sign-up-input-help {
    font-size: 12px;
    line-height: 22px;
    color: #cc0f16;
    position: absolute;
    top: 268px;
    left: 6px;
    text-align: left;
}

.cc-log-in-input-help {
    top: 268px;
}

.cc-sign-up-input-help {
     top: 360px;
    /*top: 400px;*/
}

.cc-log-in-info-icon {
    margin-left: 12px !important;
    color: #c7c7c7;
}

.cc-log-in-forget-password {
    font-size: 12px;
    line-height: 30px;
    display: block;
}

.cc-log-in-terms-of-service {
    font-size: 13px;
    display: inline-block;
    margin-left: 8px;
}
.cc-log-in-terms-of-service a {
    font-size: 13px;
}

.cc-log-in-create-account-button {
    position: absolute !important;
    top: 20px;
    right: 100px;
}


.confirm-email-tips {
    max-width: 302px;
}

.confirm-email-tips .email {
    color: #b94a48;
    word-break: break-all;
}

.confirm-email-tips .yes,
.confirm-email-tips .no {
    color: #4a90e2;
    text-decoration: underline;
    font-weight: 700;
    cursor: pointer;
}



/*ToTopPanel*/
.cc-to-top-panel {
    position: fixed;
    bottom: 10px;
    right: 10px;
}

.cc-to-top-panel > li {
    width: 35px;
    height: 35px;
    background: #5cb85c;
    padding: 5px;
    font-size: 27px;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
}

.cc-to-top-panel > li:hover {
    background: #57ad57;
}

.cc-to-top-panel > li > span{
    position: relative;
    top: 5px;
    left: -1px;
}

/*SelectUploadMethodPanel*/

.cc-select-upload-method-button-container {
    text-align: center;
    margin: 10px 0 20px 0;
    position: relative;
    border: 2px #888 dashed;
    background: #F5F5F5;
    border-radius: 4px;
    box-shadow: 0px 1px 0px white inset;
    padding: 60px 0;
}

.cc-select-upload-method-download-container {
    margin-top: 30px;
}

.cc-inline-wrapper {
    position: relative;
    display: inline-block;
}

.cc-info-icon {
    position: absolute;
    left: 100%;
    top: 50%;
    margin: -7px 0 0 5px;
}

.cc-select-upload-method-online-button {
    background: url("https://static.pubhtml5.com/web/images/home/home-start-btn-2.png") 0px -20px;
    margin: 0 auto;
    width: 260px;
    height: 60px;
    line-height: 59px;
    font-size: 21px;
    color: white;
    text-indent: 39px;
    font-weight: normal;
    cursor: pointer;
}

.cc-select-upload-method-download-button {
    background: url("https://static.pubhtml5.com/web/images/home/home-start-btn-2.png") 0px -100px;
    width: 190px;
    height: 50px;
    line-height: 50px;
    color: white;
    font-size: 12px;
    text-indent: 27px;
    display: inline-block;
    font-weight: bold;
    margin: 0 10px;
}

.cc-select-upload-method-my-flips {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    white-space: nowrap;
    text-decoration: underline;
}

.cc-select-upload-method-advanced-help {
    text-align: left;
    color: #000;
    font-size: 15px;
}

.cc-select-upload-method-advanced-help > a {
    text-decoration: underline;
    color: #000;
}

.cc-select-upload-method-clean-container {
    padding-top: 18px;
    margin-top: 20px;
    border-top: 1px solid #ddd;
}

/**/
.cc-select-version-button-container {
    text-align: center;
    margin: 40px 0 20px 0;
    position: relative;
}

.cc-select-version-button-container .button-pure {
    margin: 0 20px;
    padding: 10px 60px;
    font-size: 15px;
    position: relative;
}

.cc-desktop-version-download-text {
    position: absolute;
    bottom: 100%;
    color: black;
    left: 0;
    right: 0;
    margin-bottom: 10px;
}

.cc-full-mask-container {
    position: relative;
}

.cc-full-mask {
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0);
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;

    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.cc-full-mask:hover {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.cc-full-mask-text {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    margin-top: -15px;
    line-height: 30px;
    color: #111111;
    font-weight: bold;
    font-size: 30px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.cc-scroll-y {
    overflow-y: scroll;
}

.cc-light-box-scroll-y {
    overflow-y: scroll !important;
}

.cc-sub-captions {
    font-size: 16px;
    color: #5cb85c;
    text-align: center;
    position: absolute;
    left: -11px;
    top: 11px;
    width: 140px;
}

.cc-sub-captions-title {
    cursor: pointer;
    padding: 8px 0px;
    border-radius: 2px;
    margin-bottom: 7px;
}

.cc-sub-captions-title:not(.cc-sub-active):hover {
    background: #eee;
    /*box-shadow: 0px 1px 3px #ccc;*/
}

.cc-sub-active {
    background: #5cb85c;
    color: white;
    border: 1px solid #4cae4c;
    /*box-shadow: 0px 1px 3px #ccc;*/
}

.cc-black-color {
    color: #222222;
}

.cc-main-color {
    color: #1fbce1;
}

.cc-red-color {
    color: rgb(238, 0, 0);
}

.cc-hidden-input-wrapper {
    position: relative;
    overflow: hidden;
    cursor: default;
}

.cc-hidden-input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -ms-filter: 'alpha(opacity=0)';
}

.cc-background-color-container,
.cc-background-image-container {
    width: 150px;
    height: 98px;
    border: 1px solid #ccc;
    display: inline-block;
    margin: 4px 20px 0 0;
    position: relative;
}

.cc-background-image-container > img {
    display: none;
}

.cc-background-image-upload-error {
    width: 220px;
    font-size: 13px;
}

.cc-advanced-about-logo-upload-error {
    font-size: 13px;
}

.cc-img-upload-progress {
    position: absolute;
    width: 90%;
    height: 10px;
    bottom: -15px;
    left: 5%;
}

.cc-advanced-loading {
    text-align: center;
    font-size: 28px;
    color: #535353;
    vertical-align: middle;
}

.cc-advanced-main-label {
    width: 154px;
    font-weight: bold;
}

.cc-advanced-main-label-2 {
    width: 125px;
    font-weight: bold;
    margin-left: 50px;
}


.cc-advanced-main-label.hideFullscreen,
.cc-advanced-main-label.rightClickscreen {
    width: 223px;
}

.cc-advanced-main-google-input {
    width: 318px;
}

.cc-advanced-input {
    width: 140px;
    height: 18px;
}

.cc-advanced-logo-input-2 {
    width: 140px;
}

.cc-advanced-input-with-unit {
    margin-right: 8px;
}

.cc-advanced-main-sub-label-2 {
    cursor: pointer;

    width: 44px;
}

.cc-advanced-main-background-sub-label {
    width: 140px;
    cursor: pointer;
    margin-left: 4px;
}

.cc-advanced-main-background-sub-label-2 {
    cursor: pointer;
    width: 66px;
}

.cc-tips {
    color: #888888;
    margin-bottom: 5px;
}

.cc-error {
    font-size: 12px;
}

.cc-line-height-20 {
    line-height: 20px !important;
}

.cc-line-height-25 {
    line-height: 25px;
}

.cc-advanced-mode-label {
    margin: 0 36px 0 5px;
    cursor: pointer;
}

.cc-advanced-input-2 {
    width: 87px;
    height: 18px;
}

.cc-advanced-branding-textarea {
    width: 411px;
}

.cc-advanced-main-margin-label,
.cc-advanced-main-shadow-label {
    width: 70px;
}

.cc-advanced-main-shadow-label-2,
.cc-advanced-main-margin-label-2 {
    width: 110px;
    margin-left: 26px;
}

.cc-advanced-main-shadow-alpha-select {
    width: 97px;
    height: 26px;
    padding: 0;
}

.cc-advanced-toolbar-styling-label {
    margin-left: 20px;
    width: 145px;
}

.cc-advanced-buttons {
    margin-left: 20px;
}

.cc-advanced-buttons i:not(.icon-ok) {
    margin: 0 4px 0 8px;
}

.cc-advanced-buttons i.fa-calendar-o {
    margin: 0 4px 0 9px;
}

.cc-advanced-buttons .icon-th-list {
    font-size: 15px;
}

.cc-advanced-toolbar-title {
    font-size: 15px;
    padding: 10px 0 6px 0;
    font-weight: bold;
}

.cc-advanced-button-container {
    float: left;
    margin-right: 30px;
}

.cc-advanced-button-container:last-child {
    margin-right: 0;
}

.cc-advanced-button-select-all-label {
    margin-left: 10px;
    margin-top: 20px;
}

.cc-advanced-reset-to-default-container {
    position: absolute;
    right: 100%;
    bottom: 0px;
    white-space: nowrap;
    margin-right: 10px;
    font-size: 13px;
}

.cc-advanced-reset-to-default-container .button {
    padding: 10px 6px;
    border-radius: 5px;
}

.cc-advanced-before-input-label {
    width: 100px;
    cursor: pointer;
}

.cc-advanced-logo-upload-help {
    font-size: 13px;
    line-height: 21px;
}

.cc-advanced-background-sound-upload-help {
    line-height: 22px;
    font-size: 13px;
}

.cc-advanced-url-label {
    cursor: pointer;
    margin-left: 44px;
}

.cc-advanced-url-input {
    height: 18px;
    position: absolute;
    top: 4px;
    width: 0;
    left: 125px;
    display: none;
}

/*todo*/
.cc-sub-sections {
    background: #f8f8f8;
    border-radius: 2px;
    padding: 4px 18px;
    width: 723px;
    /* height: 740px; */
    height: 100%;
    position: absolute;
    top: 4px;
    right: 17px;
    border: 1px solid #ddd;
}

.cc-advanced-color-label {
    width: 130px;
    font-weight: bold;
}

.cc-advanced-color-background-sub-label {
    width: 140px;
    cursor: pointer;
    margin-left: 4px;
}

.cc-advanced-color-background-sub-label-2 {
    cursor: pointer;
    width: 66px;
}

.cc-advanced-color-loading-caption-label, .cc-advanced-color-toolbar-label {
    width: 134px;
    cursor: pointer;
    margin-left: 24px;
}

.cc-advanced-toolbar-content-container {
    margin-left: 21px;
}

.cc-advanced-select {
    width: 150px;
    padding: 0;
    height: 26px;
}

.cc-advanced-select.hideFullscreen,
.cc-advanced-select.rightClickscreen {
    width: 98px;
}

.cc-advanced-background-sound-audio {
    border-radius: 3px;
    height: 40px;
    width: 100%;
    margin-bottom: 8px;
}

.cc-advanced-background-sound-file-title {
    width: 150px;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    top: 5px;
}

.cc-advanced-background-sound-upload-button {
    display: inline-block;
    padding: 0 10px;
    margin-left: 12px;
}

.cc-advanced-background-sound-uploading, .cc-advanced-background-sound-upload-ok {
    position: relative;
    top: 3px;
    margin-left: 10px !important;
}

.cc-advanced-background-sound-upload-ok {
    font-size: 16px;
    margin: 0;
}

.cc-advanced-toolbar-bookmark-label,
.cc-advanced-toolbar-content-label {
    width: 131px;
}

.cc-advanced-toolbar-bookmark-label {
    cursor: pointer;
}

.cc-advanced-branding-sub-label {
    width: 98px;
}

.cc-advanced-content-container {
    margin-left: 20px;
    color: #888;
    position: relative;
    display: none;
}

.cc-gallery-content {
    font-size: 12px;
    margin: 10px 15px 20px 0;
}

.cc-gallery-content .button {
    font-size: 12px;
    padding: 2px 4px;
    font-weight: bold;
    width: 76px;
    display: inline-block;
    height: 19px;
    line-height: 20px;
}

.cc-gallery-content .button-no-text {
    width: 15px;
    height: 15px;
    padding: 6px;
    position: relative;
    top: 2px;
}

.cc-gallery-content .button-no-text > .icon {
    position: relative;
    top: 1px;
}

.cc-video-gallery-container,
.cc-image-gallery-container {
    margin-top: 8px;
    border: 1px solid;
    max-height: 260px;
    overflow-x: hidden;
    border-radius: 3px;
    background: #fff;
    min-height: 126px;
}

.cc-video-gallery-container > li {
    height: 88px;
    overflow: hidden;
    border-bottom: 1px solid;
    padding: 5px 0;
}

.cc-video-gallery-container,
.cc-image-gallery-container,
.cc-video-gallery-container > li {
    border-color: #ccc;
}

.cc-video-gallery-container > li:last-child {
    border-bottom: none;
}

.cc-video-gallery-container > li:first-child {
    height: 17px;
    font-weight: bold;
    background: #ccc;
    color: white;
    box-shadow: inset 0px 0px 1px 0px #D8D8D8;
}

.cc-video-gallery-container > li > span {
    display: inline-block;
    float: left;
    line-height: 16px;
    padding: 0 6px;
    height: 100%;
    border-right: 1px solid #ccc;
}

.cc-video-gallery-container > li > span:last-child {
    border-right: none;
}

.cc-video-gallery-thumbnail {
    width: 68px;
    height: 100%;
}

.cc-video-gallery-thumbnail > img {
    width: 100%;
    max-height: 100%;
    border: 1px solid #ccc;
    border-radius: 1px;
}

.cc-video-gallery-title {
    width: 120px;
    overflow-x: hidden;
}

.cc-video-gallery-desc {
    width: 341px;
    overflow-x: hidden;
    margin-right: 8px;
}

.cc-video-gallery-button .button-pure {
    height: 18px;
    padding: 0;
    line-height: 18px;
    margin: 1px 0;
    width: 75px;
}

.cc-advanced-add-video-label {
    width: 100px;
}


.cc-image-gallery-container {
    padding: 15px;
}

.cc-image-gallery-thumbnail-container {
    width: 110px;
    height: 110px;
    margin: 7px;
    float: left;
    border: 1px solid #ccc;
    position: relative;
}

.cc-image-gallery-thumbnail-container > img {
    display: none;
}

.cc-image-gallery-item-button-container {
    text-align: center;
    position: relative;
    top: 50%;
    margin-top: -15px;
}

.cc-image-gallery-item-button-container > .button-pure {
    margin: 3px
}

.cc-advanced-branding-logo-padding--label {
    margin: 0 8px 0 20px;
}

.cc-advanced-branding-logo-input {
    width: 155px;
}

.cc-advanced-logo-image-container {
    width: 150px;
    height: 30px;
    border: 1px #ccc solid;
    position: relative;
    margin: 2px 20px 0 0;
}

.cc-advanced-logo-image-container > img {
    display: none;
}

.cc-advanced-about-logo-image-container {
    width: 150px;
    height: 150px;
    border: 1px #ccc solid;
    position: relative;
    margin: 3px 20px 0 0;
    background: #cacaca;
}

.cc-advanced-about-logo-image-container > img {
    display: none;
}

.cc-advanced-add-video-image-container {
    width: 150px;
    height: 150px;
    border: 1px #ccc solid;
    position: relative;
    margin: 3px 20px 0 0;
}

.cc-advanced-add-video-image-container > img {
    display: none;
}

.cc-upload-img-size {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    font-size: 16px;
    color: #888888;
}

/*utils style*/
.cc-loading-page {
    font-family: helvetica, arial, sans-serif;
    background: url("../images/books/saving.gif") no-repeat;
    font-size: 20px;
    position: absolute;
    left: 50%;
    top: 10px;
    padding-left: 20px;
    margin-left: -80px;
    z-index: -1;
}

.cc-loading-page-2 {
    font-family: helvetica, arial, sans-serif;
    background: url("../images/books/saving.gif") no-repeat;
    font-size: 20px;
    position: absolute;
    left: 50%;
    top: 10px;
    padding-left: 20px;
    margin-left: -30px;
}

.cc-loading-page-3 {
    font-family: helvetica, arial, sans-serif;
    background: url("../images/books/saving.gif") no-repeat;
    font-size: 20px;
    position: absolute;
    left: 50%;
    top: 50px; /*explore*/
    padding-left: 20px;
    margin-left: -80px;
}

.cc-loading-page-bottom {
    font-family: helvetica, arial, sans-serif;
    background: url("../images/books/saving.gif") no-repeat;
    font-size: 20px;
    position: absolute;
    left: 50%;
    bottom: 10px;
    padding-left: 20px;
    margin-left: -30px;
    z-index: -1;
}

.cc-loading-page-bottom-2 {
    font-family: helvetica, arial, sans-serif;
    background: url("../images/books/saving.gif") no-repeat;
    font-size: 20px;
    position: absolute;
    left: 50%;
    bottom: 90px;
    padding-left: 20px;
    margin-left: -30px;
}


/*SmartSelect*/
.cc-smart-select-arrow {
    position: absolute;
    top: 50%;
    right: 14px;
    margin-top: -9px;
    font-size: 20px;
}

.cc-smart-select-option-ul {
    position: absolute;
    top: 100%;
    left: -1px;
    z-index: 99999;
    border: 1px solid #919191;
    background: white;
    margin-top: -3px;
    opacity: 0;
    overflow-x: hidden;
    max-height: 360px;
}

.cc-smart-select-option-ul > li {
    padding: 5px 0;
    cursor: default;
}

.cc-smart-select-option-ul > li:hover {
    background: #00a5ff;
}

.cc-smart-select-value-container {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}

/*LogPanel*/
.cc-log-panel {
    font-family: helvetica, arial, sans-serif;
    position: fixed;
    right: 0;
    bottom: 0;
}

.cc-log-buttons {
    padding: 2px;
    text-align: right;
}


.cc-log-buttons > .button {
    margin-left: 5px;
    font-size: 15px;
    font-weight: bold;
}

.cc-log-messages {
    float: right;
    overflow: scroll;
    height: 320px;
    width: 265px;
    font-size: 13px;
    line-height: 24px;
    box-shadow: -1px -1px 2px rgb(241, 241, 241);
    background: rgb(255, 255, 206);
    padding: 8px 15px;
    color: black;
    border: 1px solid rgb(249, 213, 47);
}

.cc-log-message-panel {
    width: 300px;
}

/*Mask*/
.cc-mask {
    font-family: helvetica, arial, sans-serif;
    background-color: rgba(255, 255, 255, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.cc-mask-content {
    position: absolute;
}

.cc-mask-text {
    font-family: helvetica, arial, sans-serif;
    float: left;
}

.cc-loading {
    background: url('../images/books/saving.gif');
    width: 16px;
    height: 16px;
    float: left;
    margin: 2px;
}

.cc-spin-loading-40 {
    position: absolute;
    z-index: 110;
    color: #CCC;
    font-size: 40px;
    left: 50%;
    margin-left: -17px;
    top: 50%;
    margin-top: -20px;
}

.cc-uploading {
    background: url('../images/books/loading.gif') no-repeat;
    width: 16px;
    height: 16px;
    display: inline-block;
}

.cc-server-error {
    font-size: 18px;
    position: absolute;
    padding: 20px 90px !important;
    box-shadow: 0px 1px 1px rgba(128, 128, 128, 0.5), 0px 1px 1px rgba(128, 128, 128, 0.5);
    color: #CF2222;
}

.cc-remove-mask-button {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 13px;
    cursor: pointer;
    color: #c02121;
}

/*LightBox*/
.cc-light-box-background {
    background: black;
    opacity: 0.5;
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    z-index: 9999999;
    height: 100%;
    width: 100%;
    /*cursor: pointer;*/
}
@media (max-width: 960px) {
	.cc-light-box {
		width: 88% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
	}
    .cc-light-box-content-panel-gray {
        padding: 12px !important;
    }
    .cc-light-box-head-gray{
        padding-bottom: 0px !important;
    }
    .cc-input-group{
        font-size: 13px !important;
    }
    .cc-light-box-title-gray{
        font-size: 20px !important;
    }
    .cc-select-upload-method-download-container,
    .cc-virustotal{
        margin-top: 4px !important;
    }
    .cc-select-upload-method-button-container{
        margin: 0 !important;
    }
    .cc-select-upload-method-download-button{
        margin: 4px 10px !important
    }
}
@media (max-width: 560px){
    .cc-input-group.top,
    .cc-select-upload-method-advanced-help,
    .cc-select-upload-method-download-container{
        display: none !important;
    }
}

.cc-light-box {
    font-family: "Open Sans", helvetica, arial, sans-serif;
    background: white;
    position: absolute;
    top: 0;
    opacity: 0;
    z-index: 9999999;
}

.cc-light-box-warning {
    background-color: rgb(72, 72, 72);
    border-radius: 2px;
    border: 1px solid rgb(32, 32, 32);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px 0px;
    color: rgb(255, 255, 255);
    font-size: 12px;
    overflow: hidden;
    padding: 12px 0px;
    text-align: center;
    position: absolute;
    top: 100%;
    width: 80%;
    left: 10%;
    z-index: 2200;
    margin-top: 25px;
}

.cc-light-box-head-container {
    position: relative;
}

.cc-light-box-head-link {
    font-size: 12px;
    text-decoration: underline;
    margin-left: 20px;
}

.cc-light-box-empty-content {
    height: 200px;
}

.cc-light-box-cancel-button {
    position: absolute;
    top: 13px;
    right: 15px;
    cursor: pointer;
    z-index: 1;
}

.cc-light-box-cancel-button:hover {
    color: #535353;
}

.cc-light-box-cancel-button:active {
    color: #434343;
}

.cc-light-box-title {
    font-size: 25px;
    color: #222;
    padding: 28px 0px 28px 30px;
}

.cc-light-box-desc {
    font-size: 14px;
    line-height: 20px;
    color: #222;
    padding: 0 30px;
    position: relative;
}

.cc-light-box-head-container > .fa-caret-down {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: -15px;
    color: #f0f2f2;
    text-shadow: 0px 1px 0px #CACACA;
    font-size: 38px;
}

.cc-light-box-buttons {
    font-size: 15px;
    text-align: right;
    margin: 24px 0 14px 0;
    position: relative;
}

.cc-light-box-buttons-gray {
    font-size: 15px;
    text-align: right;
    padding: 16px 0px 14px 0px;
    position: relative;
    background: #f0f2f2;
    border-top: 1px solid #c7c7c7;
}

.cc-light-box-buttons-gray .button-pure,
.cc-light-box-buttons .button-pure {
    margin-right: 20px;
}

.cc-light-box-content-panel {
    padding: 10px 30px;
    position: relative;
}

.cc-light-box-content-panel-no-padding {
    position: relative;
}

.cc-light-box-black {
    border: 5px solid #63696c;
}

.cc-light-box-title-black {
    background: #222222;
    color: white;
    font-weight: bold;
}

.cc-light-box-desc-black {
    background: #222222;
    color: white;
    font-size: 17px;
    padding-bottom: 13px;
}

.cc-light-box-content-panel-black {
    background: #eeeeee;
    color: black;
    line-height: 22px;
    border-bottom: 1px solid #63696c;
}

.cc-light-box-white {
    border: 8px solid #FFFFFF;
    border-radius: 5px;
}

.cc-light-box-title-white {
    font-size: 16px;
    color: #222;
    padding: 1px 0px 8px 5px;
    font-weight: bold;
}

.cc-light-box-cancel-button-small {
    top: 0px;
    right: 0px;
}

.cc-light-box-gray {
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}

.cc-light-box-gray .button {
    border-radius: 5px;
}

.cc-light-box-head-gray {
    padding: 18px 0;
    background: #f0f2f2;
    border-bottom: 1px solid #c7c7c7;
    text-align: center;
}

.cc-light-box-content-panel-gray {
    padding: 40px 30px;
}

.cc-light-box-content-panel-gray-s {
    padding: 30px;
    position: relative;
}

.cc-light-box-title-gray {
    padding: 12px 0;
    color: #222;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 1px 0 #fff;
}

.cc-light-box-desc-gray {
    color: #999;
    font-size: 15px;
    padding-bottom: 12px;
}

.cc-light-box-cancel-button-gray {
    font-size: 16px;
    color: #D5D5D5;
    text-shadow: 1px 1px 1px white;
}

.cc-light-box-cancel-button-gray:hover {
    color: #797979;
    text-shadow: 1px 1px 1px white;
}

.cc-light-box-cancel-button-gray:active {
    color: #505050;
    text-shadow: 1px 1px 1px white;
}

.cc-embed-code-textarea {
    width: 100%;
    height: 70px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.cc-embed-code-textarea-demo {
    height: 260px;
}

.cc-embed-code-textarea-single {
    height: 30px;
}

.cc-embed-step {
    font-size: 15px;
    font-weight: bold;
    margin: 10px 0;
    color: black;
}

.cc-embed-type-container {
    text-align: center;
    font-size: 18px;
}

.cc-embed-type-container > span {
    margin-bottom: 35px;
    height: 28px;
    display: inline-block;
    line-height: 28px;
    width: 450px;
    padding: 10px 0;
    background: #0275b6;
    color: white;
    position: relative;
    cursor: pointer;
    opacity: 0.5;
}

.cc-embed-type-container > span:hover {
    opacity: 1;
}

.cc-embed-type-container > span.cc-embed-active {
    opacity: 1;
}

.cc-embed-type-container > span > i {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: -16px;
    color: #0275b6;
    font-size: 42px;

    transition: all 0.6s;
}

.cc-embed-light-box-container,
.cc-embed-iframe-container,
.cc-embed-iframe-container-middle {
    position: relative;
    width: 900px;
    height: 500px;
    margin: 0px auto;
}

.cc-embed-light-box-container {
    background: #f3f3f3;
}

.cc-embed-light-box-img-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: 152px;
}

.cc-embed-light-box-img-wrapper > img {
    max-width: 120px;
    border: 3px solid white;
    box-shadow: 0 1px 1px rgb(168, 168, 168);
    cursor: pointer;
}

.cc-embed-light-box-tip {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: 100%;
    margin-bottom: 70px;
    font-size: 23px;
}

.cc-embed-light-box-tip > i {
    position: absolute;
    left: 50%;
    top: 100%;
    margin-left: -12px;
    margin-top: 18px;
    font-size: 24px;
}

.cc-embed-light-box-bar-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: 90px;
}


.cc-embed-iframe {
    width: 100%;
    height: 100%;
    -webkit-transform: translate3d(0, 0, 0);
}

.cc-embed-title {
    font-weight: bold;
    color: #000000;
    font-size: 20px;
    margin-top: 30px;
}

.cc-embed-label {
    font-weight: bold;
    color: #000000;
    width: 120px;
    line-height: 30px;

    font-size: 15px;
}

.cc-embed-square {
    background: #7c7c7c;
    display: inline-block;
    position: relative;
    margin-right: 30px;
    cursor: pointer;
}

.cc-embed-custom {
    display: inline-block;
    position: relative;
    top: -10px;
    left: -6px;
}

.cc-embed-custom-px {
    position: relative;
    top: -10px;
    left: -6px;
}

.cc-embed-number-input {
    width: 55px
}

.cc-embed-custom-help {
    position: relative;
    top: -10px;
    left: -6px;
    color: #888888;
    margin-left: 15px;
    font-size: 12px;
}

.cc-star {
    font-size: 20px;
    position: relative;
    top: 7px;
}

.cc-embed-small {
    height: 20px;
    width: 30px;
}

.cc-embed-middle {
    height: 25px;
    width: 40px;
}

.cc-embed-large {
    height: 30px;
    width: 50px;
}

.cc-embed-radio {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    margin: 2px 0px 0px -7px !important;
}

.cc-embed-bookcase-container {
    text-align: right;
    margin-top: 2px;
}

.cc-share-group a {
    position: relative;
}

.cc-share-group .button-pure {
    width: 87px;
}

/*.cc-share-facebook {
    padding: 6px 17px !important;
}

.cc-share-twitter {
    padding: 6px 23px !important;
}

.cc-share-google {
    padding: 6px 15px !important;
}*/

.cc-share-qrcode-img {
    width: 107px;
    height: 107px;
    display: block;
    border: 1px solid rgb(208, 208, 208);
}

.cc-share-qrurl-code {
    width: 475px;
}
.cc-share-code-context {
    border: 1px solid rgb(208, 208, 208);

    display: inline-block;
    float: left;
    padding: 7px;
}
.cc-share-code-right {
    height: 109px;
    padding-left: 20px;
    overflow: hidden;
    display: block;
    position: relative;
}
.cc-share-code-inner {
    position: relative;
    height: 100%;
}
.cc-share-code-url-title {
    position: relative;
    line-height: 30px;
    font-size: 14px;
    display: inline-block;
    float: left;
}
.cc-share-code-url-context {
    float: left;
}
.cc-share-code-url-context>textarea {
    width: 207px;
    height: auto;
    resize: none;
    background-color: rgb(255, 255, 255);
    border-radius: 1px !important;
    color: rgb(85, 85, 85);
    display: block;
    margin-left: 24px;
}
/*.cc-share-code-context > img {
    width: 107px;
    height: 107px;
    display: block;
}*/

.cc-share-more {
    width: 65px !important;
}

.cc-share-label {
    font-size: 14px;
    width: 98px;
}

.cc-share-group {
    display: inline-block;
}
.cc-input-group-l-6{
    padding: 10px 0px;
    position: relative;
    overflow: hidden;
}
.cc-share-email-group {
    position: relative;
    display: inline-block;
}
.cc-share-toEmail-item, .cc-share-fromEmail-item, .cc-share-name-item, .cc-share-link-input {
    -webkit-user-select: text;
    background-color: rgb(255, 255, 255);
    /*border: 1px solid rgb(208, 208, 208);*/
    border-radius: 1px !important;
    color: rgb(85, 85, 85);
    display: block;
    /*font-size: 16px;*/
    height: 24px;
    margin: 0px;
    overflow: hidden;
    text-indent: 3px;
    vertical-align: middle;
    width: 463px;
}
.cc-share-fromEmail-item, .cc-share-name-item{
    margin-top: 8px;
}
.cc-share-message-item {
    -webkit-user-select: text;
    background-color: rgb(255, 255, 255);
    border-radius: 1px !important;
    color: rgb(85, 85, 85);
    display: block;
    /*font-size: 16px;*/
    resize: vertical;
    width: 460px;
    padding-left: 8px;
    height: auto;
    margin: 8px 0px;
}
.cc-share-email-button {
    float: right;
}
.cc-share-hide-panel {
    /*max-height: 0px;
    overflow: hidden;*/
    display: none;
}
.cc-share-warn-message {
    /*color: #973a3a;*/
    font-size: 14px;
    margin-top: 0px;
    padding-left: 76px;
    position: relative;
    float: left;
}
.cc-share-success-message {
    display: none;
    position: relative;
    background: #5ac737;
    text-align: center;
    vertical-align: middle;
    height: 40px;
    line-height: 40px;
    width: 475px;
    font-size: 16px;
    border-radius: 2px;
    color: #ffffff;
}
.cc-share-transition {
  /*  -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;*/
}

.cc-share-group > li {
    margin-right: 20px;
    float: left;
}
.cc-share-warn-message {
    color: #973a3a;
    font-size: 14px;
    margin-top: 0px;
    padding-left: 76px;
    position: relative;
    float: left;
}
.cc-share-success-message {
    display: none;
    position: relative;
    background: #5ac737;
    text-align: center;
    vertical-align: middle;
    height: 40px;
    line-height: 40px;
    width: 475px;
    font-size: 16px;
    border-radius: 2px;
    color: #ffffff;
}
.cc-share-link-switch-btn {
    margin-left: 7px;
    padding: 8px;
    margin-top: 1px;
}

.cc-move-to {
    margin-right: 20px;
}

/*UpgradePanel*/
.cc-upgrade-info {
    margin-top: 20px;
    min-height: 200px;
}

.cc-upgrade-items-container {
    float: left;
    max-width: 340px;
    padding: 30px 0 0 0;
}

.cc-upgrade-items-title {
    margin: 0 0 5px 0;
    font-size: 15px;
}

.cc-upgrade-items {
    margin: 0 0 10px 20px;
}

.cc-upgrade-items > li {
    list-style: disc;
}

.cc-upgrade-img {
    float: right;
    display: block;
    max-width: 300px;
    max-height: 200px;
    margin-right: -10px;
    box-shadow: 0 1px 2px rgb(189, 189, 189);
}

.cc-upgrade-to {
    float: right;
    margin-right: 41px;
    font-size: 15px;
    font-weight: normal;
    position: relative;
    top: -4px;
}

.cc-upgrade-contact {
    position: absolute;
    left: 33px;
    top: -10px;
    text-align: left;
    color: #333333;
}

.cc-fullscreen-mask {
    background: #7c7c7c;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    height: 100%;
    width: 100%;
}

.cc-fullscreen-text {
    position: absolute;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    color: white;
    top: 50%;
    margin-top: -15px;
    left: 0;
    right: 0;
}

.cc-init-background {
    background: #7c7c7c;
}

.cc-init-border-bottom {
    border-bottom: 1px solid #12141D;
}

.cc-init-border-top {
    border-top: 1px solid #30344D;
}

.cc-water-background {
    background: url("/images/books/water-background.gif");
}

.cc-gray-background {
    background-color: #fafafa;
}

.cc-gray-border-top {
    border-top: 1px solid #e5e5e5;
}

.cc-gray-border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.cc-blue-background {
    background: #00a1cb;
}

.cc-orange-background {
    background: #f18d05;
}


.cc-new-download-bar {
    padding: 80px 0;
    background: #f1f1f1;
}

.cc-new-download-bar > a {
    display: inline-block;
}

.cc-new-download-bar > p {
    font-size: 49px;
    color: #333;
    margin-bottom: 38px;
    line-height: 62px;
    font-weight: 300;
}

.cc-new-download-bar > .button {
    font-size: 20px;
    margin: 0 18px;
    padding: 10px 25px;
    line-height: 50px;
}

.cc-new-download-bar i {
    margin-right: 8px;
}

.cc-new-download-bar-count > span {
    background: url("//static.pubhtml5.com/web/images/home/download-bar-btn.png") -20px -100px no-repeat;
    height: 70px;
    width: 68px;
    display: inline-block;
    line-height: 65px;
    font-size: 52px;
    color: #5cb85c;
    margin: 0px 5px 45px 5px;
    font-weight: bold;
    font-family: arial;
}

.cc-new-download-bar-comma {
    font-size: 49px;
    position: relative;
    top: 2px;
    color: #5cb85c;
}

.cc-purchase-blue,
.cc-purchase-green,
.cc-download-windows,
.cc-download-apple {
    width: 226px;
    height: 60px;
    line-height: 54px;
    color: white;
    font-size: 13px;
    text-indent: 36px;
    display: inline-block;
    font-weight: bold;
    text-shadow: none;
    margin: 0 10px;
}

.cc-download-windows {
    background: url("https://static.pubhtml5.com/web/images/home/download-bar-btn.png") 3px -19px no-repeat;
}

.cc-download-apple {
    background: url("https://static.pubhtml5.com/web/images/home/download-bar-btn.png") 3px -19px no-repeat;
}

.cc-light-blue-background {
    background: #f2f7fa;
}

.cc-new-download-bar-link {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    text-align: center;
    text-decoration: underline;
    margin-top: 10px;
}

/*!important style*/
.cc-icon-fix {
    position: relative;
    top: 2px;
}

.cc-button-fix {
    position: relative;
    top: -1px;
}

.cc-float-fix {
    *zoom: 1;
}

.cc-float-fix:before,
.cc-float-fix:after {
    content: "";
    line-height: 0;
    height: 0;
    width: 0;
    display: block;
    visibility: hidden;
}

.cc-float-fix:after {
    clear: both;
}

.cc-center {
    text-align: center;
}

.cc-hints-style {
    background: rgb(51, 51, 51);
    box-shadow: rgb(187, 187, 187) 0px 1px 1px;
    border: 1px solid rgb(235, 235, 235);
    color: rgb(255, 255, 255);
    border-radius: 2px;
    padding: 3px 7px;
    font-size: 13px;
}

/* The ghost, nudged to maintain perfect centering */
.cc-center:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em; /* Adjusts for spacing */
}

/* The element to be centered, can
   also be of any width and height */
.cc-center-content {
    display: inline-block;
    vertical-align: middle;
}

.cc-hide {
    display: none;
}

.cc-hidden {
    visibility: hidden;
}

.cc-transparent {
    opacity: 0;
}

.cc-inline-block {
    display: inline-block;
    width: 100%;
}

.cc-event-mask {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.cc-dashed-line {
    border-bottom: 1px dashed #e5e5e5;
}

.cc-solid-line {
    border-bottom: 1px solid #e5e5e5;
}

.cc-contact-ball {
    position: absolute;
    top: 0px;
    left: 48px;
    background: #5cb85c;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
}

.cc-contact-ball-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -8px 0 0 -9px;
    font-size: 18px;
}

.cc-contact-ball-text-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    white-space: nowrap;
    text-align: center;
    line-height: 23px;
    padding-top: 18px;
    font-weight: bold;
    font-style: italic;
    font-size: 17px;
}

.cc-note-panel {
    position: absolute;
    top: 0px;
    right: 48px;
    background: #fafafa;
    color: white;
    border-radius: 5px;
    max-width: 200px;
    padding: 15px;
    border: 2px solid #fff;
    box-shadow: 0px 0px 2px gray;
    opacity: 0;
}

.cc-search-container {
    position: relative;
    top: 9px;
    float: left;
}

.cc-search-container > .icon-search {
    position: absolute;
    right: 8px;
    top: 9px;
    font-size: 16px;
    cursor: pointer;
}

.cc-search-container > .icon-search:hover {
    color: #222;
}

.cc-search-container > .icon-search:active {
    color: black;
}

.cc-top-search-input {
    width: 145px;
    height: 23px;
    padding-right: 30px;
    border-radius: 0px !important;
    font-size: 15px;
    border: none;
}
.ff-log-in-mid {
    position: relative;
    width: 100%;
    text-align: left;
    height: 340px;
}
.ff-log-in-form {
    text-align: center;
    position: absolute;
    padding: 60px 0 50px 0px;
    /*display: inline-block;*/
    right: 100px;
    left: auto;
}
@media (max-width: 960px){
    .ff-log-in-mid{
        height: 100% !important;
        width: 295px !important;
        margin: 0 auto !important;
    }
    .ff-log-in-form{
        position: static !important;
        padding: 60px 0 30px 0px !important;
    }
    .ff-log-in-network{
        position: static !important;
        padding: 0px 0 20px 0px !important;
    }
    .ff-log-in-network-text,
    .cc-log-in-bottom-container p{
        font-size: 14px !important;
    }
    .cc-log-in-create-account-button{
        right: 0px;
    }
}
.ff-log-in-network {
    position: absolute;
    left: 100px;
    width: 294px;
    /*display: inline-block;*/
    padding: 60px 0 50px 0px;
}
.ff-log-in-network-text {
    font-size: 18px;
    line-height: 26px;
    width: 290px;
}
.ff-log-in-network-button {
    position: relative;
    display: inline-block;
}

.ff-log-in-network-button > .cc-inline-wrapper {
    position: relative;
    margin-top: 13px;
}

.cc-log-in-social-help {
    font-size: 12px;
    line-height: 22px;
    color: #cc0f16;
    margin-top: 10px;
}

.cc-book-download-ul {

}

.cc-book-download-ul > li {
    float: left;
    margin-left: 106px;
    width: 160px;
}

.cc-book-download-ul > li > p {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #222;
}

.cc-book-download-ul > li > img {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
}

.cc-book-download-ul > li > .button {
    font-weight: bold;
    position: relative;
}

.cc-book-download-zip-help {
    position: absolute;
    top: 100%;
    left: 0;
    white-space: nowrap;
    margin-top: 5px;
}

.cc-spin-mask {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.75);
    text-align: center;
    line-height: 32px;
    color: black;
}

.cc-spin-mask > .fa-spinner {
    position: absolute;
    top: 50%;
    margin-top: -7px;
    left: 50%;
    margin-left: -5px;
}

.button-pure {
    background-color: rgb(248, 248, 248);
    border: 1px solid rgb(211, 211, 211);
    color: rgb(51, 51, 51);
    border-radius: 2px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    cursor: pointer;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    padding: 4px 10px;
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    user-select: none;
    font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    position: relative;

    -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
}

.button-pure:hover {
    background-color: #f0f0f0;
}

.button-pure:active {
    box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}

.button-pure-no-shadow {
    box-shadow: none;
}

.button-pure-large {
    padding: 8px 60px;
}

.button-pure-block {
    display: block;
}

.button-pure-long {
    padding: 4px 20px;
}

.button-pure-small {
    font-size: 13px;
    padding: 1px 8px;
}

.button-pure-blue {
    background: #1B7FCC;
    border-color: #1A79C2;
    color: #FFF;
}

.button-pure-blue:hover{
    background: #1C79C0;
    border-color: #1970B2;
}

.cc-green {
    color: #5cb85c;
}

.button-pure-green {
    background-color: #5cb85c;
    border-color: #4cae4c;
    color: #FFF;
}

.button-pure-green:hover{
    background-color: #57AD57;
    border-color: #4DA04D;
}

.button-pure-red {
    background-color: #d9534f;
    border-color: #d43f3a;
    color: #FFF;
}

.button-pure-red:hover{
    background-color: #CC4C48;
    border-color: #C54A46;
}

.button-pure-orange {
    background-color: #FF9300;
    border-color: #EC8800;
    color: #FFF;
}

.button-pure-orange:hover{
    background-color: #f18d05;
    border-color: #E78500;
}

.button-pure-teal {
    background-color: #36BDBD;
    border-color: #33B4B4;
    color: #FFF;
}

.button-pure-teal:hover {
    background-color: #33B4B4;
    border-color: #2FA7A7;
}

.button-pure-sky-blue {
    background-color: #00a1cb;
    border-color: #0092B8;
    color: #FFF;
}

.button-pure-sky-blue:hover {
    background-color: #0097BE;
    border-color: #007E9E;
}
.button-pure-purple {
    background-color: #B10DC9;
    border-color: #9A0CAF;
    color: #FFF;
}

.button-pure-purple:hover {
    background-color: #9F0EB4;
    border-color: #930FA7;
}
.button-pure-black {
    background-color: #444444;
    border-color: #222222;
    color: #FFF;
}
.button-pure-black:hover {
    background-color: #222222;
    border-color: #000000;
}
.button-pure-gold {
    /*background-color: #ffd700;
    border-color: #f1c400;*/
    background-color: #EBC80D;
    border-color: #d9AA06;
    color: #FFF;
}
.button-pure-gold:hover {
    background-color: #DBBB0E;
    border-color: #B99413;
}
/*PrintPanel*/
.cc-print-panel{
    text-align: left;
    /*padding-left: 44px;*/
    /*padding: 0px 24px 0px 36px;*/
}
.cc-print-item-right {
    position: relative;
    display: inline-block;
}
.cc-print-user-panel, .cc-print-book-panel {
    display: inline-block;
}
.cc-print-book-panel {
    float: right;
}
.cc-print-user-panel {
    float: left;
}
.cc-print-panel label {
    text-align: left;
    width: 78px;
    font-size: 13px;
}
.cc-print-right-value {
    width: 300px;
}
.cc-print-size-width {
    width: 130px;
}
#printSizeWidth{
    margin-right: 10px;
}
#printSizeHeight{
    margin-left: 10px;
}
.cc-print-other-panel {
    position: relative;
}
.cc-print-other-text {
    margin: 17px 0px 0px 0px;
    cursor: pointer;
}
.cc-print-remark textarea{
    -webkit-user-select: text;
    resize: vertical;
    height: auto;
}
.cc-print-publication-text, .cc-print-contact-text {
    color: #1a1a1a;
    font-size: 15px;
    font-weight: bold;
    padding: 6px 0px 2px 0px;
}

/*BookcaseEmbedPanel*/
.cc-bookcase-embed-bookcase-background {
    background: transparent;
}

.cc-bookcase-embed-skin {
    width: 40px;
    height: 25px;
}

.cc-bookcase-embed-skin-red {
    background: url("/bookcase/img/red-2.png") no-repeat -70px -30px;
}

.cc-bookcase-embed-skin-gold {
    background: url("/bookcase/img/gold-2.png") no-repeat -70px -30px;
}

.cc-bookcase-embed-skin-silver {
    background: url("/bookcase/img/silver-2.png") no-repeat -70px -30px;
}

.cc-bookcase-embed-skin-green {
    background: url("/bookcase/img/green-2.png") no-repeat -70px -30px;
}

.cc-bookcase-embed-skin-yellow {
    background: url("/bookcase/img/yellow-2.png") no-repeat -70px -30px;
}

/*FastUploadWithoutLoginPanel*/
.cc-upload-without-login-container-2,
.cc-upload-without-login-container {
    width: 100%;
    border: 2px dashed #ddd;
    box-sizing: border-box;
    position: relative;
    padding: 50px 0;
}

.cc-upload-without-login-container-2 {
    margin-top: 30px;
}

.cc-upload-without-login-button-container {
    position: relative;
}

.cc-upload-without-login-welcome-text {
    font-weight: 300;
    font-size: 25px;
    margin-bottom: 30px;
}

.cc-upload-without-login-button {
    width: 570px;
    padding: 10px;
    font-size: 15px;
}

.cc-upload-without-login-step-container {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 6px;
    color: #888;
}

.cc-upload-without-login-uploading-container {
    position: relative;
}

.cc-upload-without-login-uploading-container > p {
    margin-bottom: 14px;
}

.cc-upload-without-login-iframe-container {
    width: 530px;
    height: 264px;
    float: right;
}

.cc-upload-without-login-iframe-container > iframe {
    width: 100%;
    height: 100%;
}

.cc-upload-without-login-sign-up-container {

}

.cc-upload-without-login-sign-up-container > p {
    font-size: 30px;
    color: #333;
    font-weight: 300;
    line-height: 30px;
}

.cc-upload-without-login-form-container {
    padding: 50px 46px;
}

.cc-upload-without-login-form {
    position: relative;
    text-align: center;
    float: left;
}

.cc-upload-without-login-sign-up-container .cc-sign-up-input-help {
    top: 267px;
}

.cc-upload-without-login-bottom-container {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    margin-top: -10px;
}

.cc-upload-without-login-social-container {
    padding: 30px 0 20px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin: 0 50px;
}

.cc-upload-without-login-social-text {
    padding-bottom: 20px;
    font-size: 18px !important;
}

/*SmartList*/
.cc-smart-list-panel {

}

.cc-smart-list-panel input,
.cc-smart-list-panel textarea,
.cc-smart-list-panel select {
    width: 372px
}

.cc-smart-list-panel textarea,
.cc-smart-list-panel select {
    height: 173px;
}

.cc-smart-list-panel select {
    padding: 4px 5px;
}

.cc-smart-list-panel .button-pure {
    padding: 7px 15px;
    margin-left: 10px;
}

.cc-smart-list-item-top-button-contianer {
    position: absolute;
    right: 0;
    top: 4px;
}

.cc-smart-list-item-bottom-button-contianer {
    position: absolute;
    right: 0;
    bottom: 4px;
}

.cc-smart-list-total {
    width: 384px;
    font-size: 12px;
    color: #888;
}

.cc-smart-list-total > span,
.cc-smart-list-total i {
    margin-right: 5px;
}

.cc-smart-list-input-help {
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
    margin-top: -2px;
}

/*TabBox.js*/
.tb-tap-container {
    background-color: #f8f8f8;/*#f8f8f8;*/
    box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.5), 0px 1px 0px #f1f1f1;/*#F4F4F4;*/
}
.tb-tab {
    float: left;
    cursor: pointer;
    width: 148px;
    height: 38px;
    position: relative;
    border-right: 1px solid #e9e9e9;
    /*background-color: #f8f8f8;*/
    line-height: 38px;
    text-align: center;

    font-size: 15px;
    font-weight: bold;
    color: #1a1a1a;
}
.tb-tab:not(.tb-tab-active):hover {
    background-color: #f3f3f3;
    /*cursor: pointer;*/
    height: 36px;
    line-height: 36px;
    border-top: 2px solid orange;
}
.tb-tab-active {
    background-color: #ffffff;
    box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.5), 0px 1px 0px #FFFFFF;
    height: 36px;
    line-height: 36px;
    border-top: 2px solid orange;
}

.tb-section-container {
    padding: 28px 18px;
}
.tb-section:not(.tb-section-active) {
    display: none;
}

.ff-mask-effect-three {
    /*overflow: hidden;*/
}

.ff-mask-effect-three .mask {
    opacity: 0;
    overflow:visible;
    background-color: rgba(0,0,0,.5);
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.ff-mask-effect-three span.mask-icon {
    background: url("/images/readBook.png") no-repeat;
   position:absolute;
   width: 20px;
    height: 20px;
    left: 50%;
    top: 50%;
    margin-left: -10px;
    margin-top: -10px;
   opacity: 0;
   -webkit-transition: opacity 0.5s 0s ease-in-out;
   -moz-transition: opacity 0.5s 0s ease-in-out;
   -o-transition: opacity 0.5s 0s ease-in-out;
   -ms-transition: opacity 0.5s 0s ease-in-out;
   transition: opacity 0.5s 0s ease-in-out;
}
.ff-mask-effect-three:hover .mask{
   opacity: 1;
}
.ff-mask-effect-three:hover span.mask-icon {
    opacity:1;
    -moz-transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.max-container-960 {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 980px;
    padding: 0 10px;
}
.max-container-960,
.max-container-960 * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/*bottom bar*/
@media (max-width: 767px) {
    .cc-bottom-bar .cc-inline-wrapper{
        display: none !important;
    }
    .cc-bottom-bar .cc-uploadPDF{
        display: block !important;
    }
}
.cc-bottom-bar {
    background: #323436;
    /*background: url("/images/bottom-bg.jpg");*/
    color: #A8A8A8;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
}
.cc-bottom-bar .cc-uploadPDF{
    display: none;
    width: 200px;
    height: 50px;
    margin: 0 auto 20px;
    color: #fff;
    background: url("/images/uploadPDF.png?2021-8");
    line-height: 50px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
    text-indent: 36px;
    font-weight: bold;
    letter-spacing: 1px;
}

.cc-bottom-link-container {
    box-shadow: 0px 1px 7px #35373A inset;
}

.cc-bottom-links {
    display: inline-block;
}

.cc-bottom-links > li {
    float: left;
    padding: 0px 15px;
    max-width: 485px;
}

.cc-bottom-links > li:first-child {
    padding-left: 0;
}

.cc-bottom-links > li:last-child {
    border-right: none !important;
    padding-right: 0 !important;
}

.cc-bottom-links > li > p {
    font-size: 15px;
    margin-bottom: 10px;
    color: white;
    font-weight: bold;
}

.cc-bottom-links > li > a {
    display: block;
    padding: 4px 0;
    color: #888;
}

.cc-bottom-links > li > a:hover {
    color: #fff;
}

.cc-bottom-links-empty {
    cursor: default;
    visibility: hidden;
}

.cc-copyright-container {
   position: relative;
    text-align: center;
    padding: 14px;
    background: #242424;
}

.cc-bottom-social-boxs {
    position: absolute;
    left: 155px;
    top: 2px;
}

.cc-bottom-social-boxs > a {
    float: left;
    padding: 0px 3px;
    opacity: 0.85;
}

.cc-bottom-social-boxs > a:hover {
    opacity: 1;
}

/*sub links*/
.cc-sub-link-container {
    text-align: center;
    padding: 30px 0;
    font-weight: bold;
}

.cc-sub-link-container p {
    font-weight: bold;
    font-size: 18px;
    padding-bottom: 20px;
    color: #57AD57;
    text-shadow: 1px 0px 2px rgba(107, 195, 13, 0.2);
}

.cc-sub-link-container a {
    padding: 0 8px;
    border-right: 1px solid #ccc;
    line-height: 28px;
}

.cc-sub-link-container a:last-child {
    border-right: none;
}

.cc-sub-link-wrapper {
    padding: 0 40px;
}

/**/

.cc-virustotal {
    background: url("/images/virustotal.jpg") no-repeat 0px 10px;
    height: 30px;
    text-align: left;
    line-height: 30px;
    text-indent: 105px;
    font-size: 13px;
    color: #9C9C9C;
    display: inline-block;
    padding-top: 10px;
    margin-top: 30px;
    border-top: 1px solid #ddd;
}

.cc-virustotal:hover{
    color: #888;
    text-decoration: underline;
}

.cc-banner {
    height: 490px;
    width: 100%;
    color: white;
    background: #424449;
    text-align: center;
    display: inline-block;
}

.cc-banner h1 {
    font-weight: 300;
    font-size: 52px;
    line-height: 60px;
    margin: 10px 0;
}

.cc-banner h2 {
    font-weight: 300;
    font-size: 24px;
    line-height: 30px;
}

.cc-ver {
    vertical-align: middle;
    font-size: 0;
}

.cc-ver:before {
    content: "";
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

.cc-ver > .cc-ver-content {
    display: inline-block;
    vertical-align: middle;
}

.cc-container {
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.cc-container > h1 {
    font-size: 49px;
    color: #333;
    font-weight: 300;
    line-height: 62px;
}

.cc-container > h2 {
    font-size: 20px;
    line-height: 30px;
    color: #333;
    font-weight: 300;
    margin-top: 10px;
}

.cc-container > h2 > a,
.cc-container > h2 > a:hover {
    color: #333;
    text-decoration: underline;
}

.cc-container > .cc-container-content {
    margin-top: 60px;
}




/**/
.cc-video-mask {
    background: rgba(0, 0, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.cc-video-mask:hover {
    background: rgba(0, 0, 0, 0.1);
}

.cc-video-mask:hover > .cc-video-icon {
    background: rgb(238, 0, 0);
    opacity: 0.9;
}

.cc-video-icon {
    height: 44px;
    width: 66px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -22px 0 0 -33px;
    color: #ffffff;
    background: #000;
    opacity: 0.7;
    border-radius: 11px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.cc-video-icon > i {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 20px;
    line-height: 20px;
    margin-top: -10px;
    margin-left: -8px;
}

/*ImageSlider.js*/
.cc-image-slider-container {
    text-align: center;
    padding: 30px 0;
}

.cc-image-slider-container > img {
    max-width: 100%;
    display: inline-block;
}

.cc-image-slider-info-container {
    line-height: 22px;
    padding-left: 7px;
    position: relative;
    padding: 0 240px 8px 13px;
    min-height: 80px;
}

.cc-image-slider-info-container > p:first-child {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 4px;
}

.cc-image-slider-control-panel {
    position: absolute;
    right: 24px;
    bottom: 13px;
    line-height: 75px;
}

.cc-image-slider-control-panel > .button {
    margin-left: 20px;
    font-size: 20px;
    padding: 23px 20px;
}

.cc-image-slider-num {
    background-color: #5cb85c;
    border-color: #4cae4c;
    color: #FFF;
    padding: 2px 7px;
    margin-right: 10px;
}

.cc-overtext-1 {
    white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.cc-highlight {
    background-color: yellow;
}

.cc-ver {
    vertical-align: middle;
    font-size: 0;
}
.cc-ver:before {
    content: "";
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}
.cc-ver > .cc-ver-content {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
}

.cc-face-ul:before, .cc-face-ul:after {
    content: "";
    line-height: 0;
    height: 0;
    width: 0;
    display: block;
    visibility: hidden;
}
.cc-face-ul:after {
    clear: both;
}

.cc-face-ul {
    display: inline-block;
}

.cc-face-ul > li {
    float: left;
}


/*top banner*/
.cc-top-banner {
    height: 140px;
    width: 100%;
    /*background: url("/images/pricing/3n_top.png") center;*/
    background: rgb(205, 81, 81);
    position: absolute;
    top: 0px;
    display: none;
    z-index: 113;
}

.cc-top-banner a {
    display: block;
    width: 100%;
    height: 100%;
}

.cc-top-banner a p {
        text-align: center;
    font-size: 17px;
    color: white;
    margin-top: 11px;
    line-height: 30px;
}

.cc-top-banner a p span {
    font-size: 23px;
}

.cc-top-banner a p span.cc-top-banner-title {
    font-size: 26px;
    line-height: 50px;
}

.cc-top-banner-close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 28px;
    height: 28px;
    background: url("/images/pricing/3n_top_close.png") center;
    cursor: pointer;
}

.cc-top-banner-close-btn:hover {
    opacity: 0.8;
}

.cc-contact-ball {
    z-index: 3001
}



/* nav top */
.nav-container:before,
.nav-container:after {
    display: table;
    content: " ";
}
.nav-container:after {
    clear: both;
}
.container,
.nav-container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 0;
    padding-bottom: 0;
}
/* @media (min-width: 768px) {
    .container,
    .nav-container {
        width: 750px;
    }
} */
@media (min-width: 992px) {
    .container,
    .nav-container {
        width: 970px;
    }
}
@media (min-width: 1200px) {
    .container {
        width: 1150px;
    }
    .nav-container {
        width: 1280px;
    }

}

.navbar-toggle {
    position: relative;
    float: right;
    padding: 11px 10px;
    margin-top: 0px;
    margin-left: 4px;
    margin-bottom: 0px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 2px;
    top: 1px;
}
.navbar-toggle:focus {
    outline: 0;
}
.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;

    -webkit-transition: .35s ease;
    -moz-transition: .35s ease;
    -ms-transition: .35s ease;
    transition: .35s ease;
}
.navbar-toggle:not(.collapsed) .icon-bar:first-child {
    -webkit-transform: translateY(6px) rotate(45deg);
    -moz-transform: translateY(6px) rotate(45deg);
    -ms-transform: translateY(6px) rotate(45deg);
    transform: translateY(6px) rotate(45deg);
    transform-origin: 50% 50%;
    transition-delay: .05s;
    /*width: 31px;*/
}
.navbar-toggle:not(.collapsed) .icon-bar:nth-child(2) {
    opacity: 0;
    width: 4px;
}
.navbar-toggle:not(.collapsed) .icon-bar:last-child {
    -webkit-transform: translateY(-6px) rotate(-45deg);
    -moz-transform: translateY(-6px) rotate(-45deg);
    -ms-transform: translateY(-6px) rotate(-45deg);
    transform: translateY(-6px) rotate(-45deg);
    transform-origin: 50% 50%;
    transition-delay: .05s;
    /*width: 31px;*/
}
.navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px;
}
.top-navbar-toggle {
    margin: 6px 0 0 10px;
}
.top-navbar-toggle.navbar-toggle {
    border-color: #888;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
}
.top-navbar-toggle.navbar-toggle > .icon-bar {
    background-color: #ccc;
}
.top-navbar-collapse-list {
    position: absolute;
    width: 100%;
    top: 50px;
    left: 0px;
    font-size: 14px;
    border: 0;
    overflow: hidden;
    border-bottom: 1px solid #3C3C3C;
    background-color: #323436;
    border-top: 1px solid #101010;
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}
.hide-top-bar-item > .dropdown-menu > li > a,
.top-navbar-collapse-list > ul > li {
    position: relative;
    width: 100%;
    display: block;
    line-height: 40px;
    padding: 0px 1px;
    color: #E2DEDE;
    cursor: pointer;
}
.hide-top-bar-item > .dropdown-menu > li > a:hover,
.open .dropdown-toggle,
.top-navbar-collapse-list > ul > li:hover {
    background-color: #222;
}
.top-navbar-collapse-list > ul > li a {
    display: block;
    color: #E2DEDE;
}
.hide-top-bar-item > .dropdown-menu {
    position: relative;
    box-shadow: none;
    border: none;
    margin: 0;
    width: 100%;
    background-color: #2f2f2f;
}
.dropdown-menu > li > a > div.nav-container {
    display: block;
    padding: 0px 34px;
    clear: both;
    font-weight: normal;
    line-height: 40px;
    color: #E2DEDE;
    white-space: nowrap;
}
.top-hide-search-content {
    width: 100%;
    position: relative;
    margin: 5px 0;
    color: rgb(99, 105, 108);
}
.top-hide-search-content > input {
    width: 100%;
    padding-right: 30px;
    border-radius: 0px !important;
    font-size: 15px;
    border: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 30px;
}
.top-hide-search-content > .icon-search {
    position: absolute;
    right: 8px;
    top: 13px;
    font-size: 16px;
    cursor: pointer;
}
/*  nav top */
/* bottom */
.foot-bottom-extra * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.foot-bottom-extra {
    padding: 15px;
}
.foot-bottom-content {
    position: relative;
    display: block;
    margin: 0px auto;
}
.foot-bottom-link1,
.foot-bottom-link2,
.foot-bottom-link3,
.foot-bottom-link4 {
    float: left;
    padding: 8px 0;
}
.foot-bottom-content > ul {
    float: left;
}
.foot-bottom-content li > a,
.foot-bottom-content > div > a {
    display: block;
    padding: 4px 0;
    color: #888;
}
.foot-bottom-content li > a:hover,
.foot-bottom-content > div > a:hover {
    color: #fff;
}
.foot-bottom-content li > p,
.foot-bottom-content > div > p {
    font-size: 15px;
    margin-bottom: 10px;
    color: white;
    font-weight: bold;
}
.bottom-mid-container {
    line-height: 24px;
    font-size: 14px;
}
.bottom-mid-container > span {

}
.bottom-mid-container > a {
    margin-left: 4px;
    color: #888;
}
.bottom-mid-container > a:hover {
    color: #fff;
}

.foot-magazine-online {
    
}
.foot-magazine-online a {
    font-size: 15px;
    margin-bottom: 10px;
    color: white;
    font-weight: bold;
}
.foot-magazine-online a:hover {
    text-decoration: underline;
}
.foot-magazine-online i {
    margin-left: 2px;
    padding-left: 5px;
    padding-right: 5px;
    position: relative;
    top: 1px;
    cursor: pointer;
}
.foot-magazine-list {
    display: none;
}
.foot-magazine-list.show {
    display: block;
}
.foot-magazine-list > li {
    display: inline-block;
    width: 188px;
    max-width: 100%;
}
.foot-magazine-list > li a {
    cursor: pointer;
}

@media (min-width: 1000px) {
    .foot-bottom-content {
        width: 960px;
    }
    .foot-bottom-link1 {
        width: 180px;
    }
    .foot-bottom-link2 {
        width: 160px;
    }
    .foot-bottom-link3 {
        width: 140px;
    }
    .foot-bottom-link4 {
        width: 480px;
    }
}
@media (min-width: 560px) and (max-width: 999px) {
    .foot-bottom-content {
        width: 500px;
    }
    .foot-bottom-link1 {
        width: 180px;
    }
    .foot-bottom-link2 {
        width: 160px;
    }
    .foot-bottom-link3 {
        width: 140px;
    }
    .foot-bottom-link4 {
        /*float: none;*/
        width: 100%;
    }
}
@media (max-width: 559px) {
    .foot-bottom-content {
        width: 100%;
    }
    .foot-bottom-link1,
    .foot-bottom-link2,
    .foot-bottom-link3,
    .foot-bottom-link4 {
        /*float: none;*/
        width: 100%;
    }
}
.bottom-copyright-content {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}
/*bottom*/







/* FixedLightBox.css */
.sh5-table {
	display: table;
	width: 100%;
	height: 100%;
}
.sh5-table-centered {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}
body.hf-overflow-hidden {
	padding-right: 17px;
	overflow: hidden !important;
}

body.hf-overflow-hidden.isMobile {
	padding-right: 0 !important;
}

.hf-lightbox {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	/* z-index: 1424; */
	z-index: 99999;
}
.hf-lightbox-panel {
	color: #333;
}
.hf-lightbox-panel.padding-15 {
	padding: 15px;
}
.hf-lightbox-bg {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: #000;
	filter: alpha(opacity=0);
	opacity: 0;
	-webkit-transition: opacity .2s linear;
	-o-transition: opacity .2s linear;
	transition: opacity .2s linear;
}
.hf-lightbox-bg.disabled {
	display: none;
}
.hf-fade .hf-lightbox-bg {
	filter: alpha(opacity=50);
	opacity: .5;
}

.hf-lightbox-title {
	font-size: 16px;
}

.hf-lightbox-desc {
	font-size: 13px;
}

.fade-in .hf-lightbox-bg  {
	filter: alpha(opacity=50);
	opacity: .5;
}
.hf-lightbox-wrapper {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
	overflow-y: auto;
	overflow-x: hidden;
}
.hf-lightbox-dialog {
	position: relative;
	margin: 0 auto;
	/*padding: 20px 0;*/
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	opacity: 0;
	-webkit-transform: translateX(0em) translateY(-60em) scale(1);
	-moz-transform: translateX(0em) translateY(-60em) scale(1);
	-ms-transform: translateX(0em) translateY(-60em) scale(1);
	-o-transform: translateX(0em) translateY(-60em) scale(1);
	transform: translateX(0em) translateY(-60em) scale(1);
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);

	-webkit-transition: opacity 400ms linear,-webkit-transform 300ms ease-out;
	-moz-transition: opacity 400ms linear,-moz-transform 300ms ease-out;
	-o-transition: opacity 400ms linear,-o-transform 300ms ease-out;
	transition: opacity 400ms linear,transform 300ms ease-out;
	/*-webkit-transition: -webkit-transform .5s ease-out;
	-o-transition: -o-transform .5s ease-out;
	transition: transform .5s ease-out;
	-webkit-transform: translate(0,-25%);
	-ms-transform: translate(0,-25%);
	-o-transform: translate(0,-25%);
	transform: translate(0,-25%);*/
}
.fade-in .hf-lightbox-dialog {
	/*-webkit-transform: translate(0,0);
	-ms-transform: translate(0,0);
	-o-transform: translate(0,0);
	transform: translate(0,0);*/
	opacity: 1;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	-webkit-transform: translateX(0em) translateY(0em) scale(1);
	-moz-transform: translateX(0em) translateY(0em) scale(1);
	-ms-transform: translateX(0em) translateY(0em) scale(1);
	-o-transform: translateX(0em) translateY(0em) scale(1);
	transform: translateX(0em) translateY(0em) scale(1);
	-webkit-transition: opacity 400ms linear,-webkit-transform 300ms ease-out;
	-moz-transition: opacity 400ms linear,-moz-transform 300ms ease-out;
	-o-transition: opacity 400ms linear,-o-transform 300ms ease-out;
	transition: opacity 400ms linear,transform 300ms ease-out;
}
.hf-lightbox-content {
	position: relative;
	background-color: #fff;
}
.hf-lightbox-header {
	position: relative;
	background-color: #202020;
	color: #fff;
	text-align: left;
	line-height: 24px;
	padding: 11px 15px;
	font-size: 15px;
}
.hf-lightbox-close {
	position: absolute;
	right: 10px;
	top: 8px;
	width: 30px;
	height: 30px;
	background: url(/images/email/icon.png) no-repeat;
	cursor: pointer;
}
.hf-lightbox-btns {
	overflow: hidden;
	/*padding: 10px 15px;*/
	padding: 8px 15px;
	background-color: #f4f4f4;
}
.hf-lightbox-btns > .button-pure {
	float: right;
	margin-left: 15px;
}
.hf-lightbox-loading {
	position: absolute;
	/*left: 50%;*/
	font-size: 60px;
	/*margin-left: -40px;
	margin-top: 40px;*/
	color: #E4E4E4;
}
.hf-lightbox-alert-desc,
.hf-lightbox-confirm-desc {
	padding: 28px 18px;
	text-align: left;
	line-height: 20px;
	font-size: 14px;
	color: #000;
}
.hf-lightbox-alert-desc {
	text-align: center;
}
.hf-lightbox-launch-error {
	padding: 28px 24px;
	text-align: center;
	line-height: 24px;
	font-size: 14px;
}
.hf-lightbox-launch-note {
	padding: 28px 24px;
	font-size: 14px;
	text-align: center;
}
/*   lightbox header style   */
.hf-lightbox-header.launch-error {
	background-color: #86352A;
	text-align: center;
}

.hf-lightbox-header.launch-note {
	text-align: center;
}

.hf-light-box-warning {
	background-color: rgba(0, 0, 0, 0.8);
border-radius: 2px;
border: 1px solid rgba(0, 0, 0, 0.4);
box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px 0px;
color: rgb(255, 255, 255);
font-size: 12px;
overflow: hidden;
padding: 8px 0px;
text-align: center;
position: absolute;
top: 50%;
width: 80%;
left: 10%;
z-index: 1001;
margin-top: -18px;
line-height: 18px;
}

.hf-light-box-warning-close-btn {
	position: absolute;
    right: 4px;
    top: 4px;
    font-size: 15px;
    color: #C3C3C3;
    cursor: pointer;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    opacity: 0.8;
}

.hf-light-box-warning-close-btn:hover {
	opacity: 1;
}
.modal-xsedit {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}


@media (min-width: 500px){
    .modal-xsedit {
        width: 400px;
        margin: 30px auto;
    }
}

@media (min-width: 768px){
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }
}





/* ReportBookPanel.css */
.report-select {
    padding: 4px 5px;
}

.report-reportBookDiv{
    text-align: center;
        margin-top: 32px;
}
.report-BookUrl,.report-selectType,.report-description,.report-yourEmail,.report-code{
    margin-top: 20px;
}
.report-BookUrl .cc-input-text,.report-selectType select,.report-description textarea,.report-yourEmail .cc-input-text,.report-code .cc-input-text{
    width:410px;
    min-height: 33px;
    margin-left: 10px;
    display: inline-block;
    vertical-align:middle;
}
.report-BookUrl label,.report-selectType label,.report-description label,.report-yourEmail label,.report-code label{
    width:100px;
    min-height: 33px;
    text-align: right;
}
.report-description{
    position: relative;
}
.report-description label{
    position: absolute;
}
.report-description .report-textarea{
    height:250px;
    overflow: auto;
    margin-left: 110px;
    margin-bottom: 5px;
}
.report-submit{
    text-align: left;
    margin-top: 20px;
    padding-bottom: 50px;
    margin-left: 151px;
}
.report-success{
    color:#75CB81;
    text-align: center;
    margin-top: 10px;
}
.report-submitButton{
    min-width:100px;
    /* height: 30px; */
    background-color:#1B7FCC;
    color:white;
}
.report-code .cc-input-text{
    width:290px;
    margin-right: 20px;
}
.report-codePic{
    display: inline-block;
    width:100px;
    height: 33px;
    vertical-align:middle;
    background-color:blue;
}
.report-codePic img{
    width:100%;
    cursor: pointer;
}
.report-errorCode,.report-errorEmail,.report-errorDescription{
    margin-left:150px;
    text-align: left;
}

@media (max-width: 767px) {
    .report-reportBookDiv {
        margin-top: 0;
        padding: 10px;
    }
    .report-BookUrl label,
    .report-selectType label,
    .report-description label,
    .report-yourEmail label,
    .report-code label {
        position: static !important;
        width: 80px !important;
    }

    .report-BookUrl .cc-input-text,
    .report-selectType select,
    .report-description textarea,
    .report-yourEmail .cc-input-text {
        margin-left: 10px !important;
        width: calc(100% - 105px) !important;
    }
    .report-code .cc-input-text {
        margin-right: 10px;
        width: calc(100% - 215px) !important;
    }

    .report-errorCode,
    .report-errorEmail,
    .report-errorDescription,
    .report-submit {
        margin-left: 92px;
    }
}


.empty-authorization-tips {
    margin: 10px 0 -15px 0;
}

.temp-google-signin-tip {
    font-size: 12px;
    color: #cc0f16;
    line-height: 18px;
}
.temp-google-signin-tip.siginPanel {
    margin-top: 8px;
}
