/* Minification failed. Returning unminified contents.
(18809,13): run-time error CSS1062: Expected semicolon or closing curly-brace, found '%'
 */
@charset "utf-8";
/* CSS Document */

/* ---------------------------------------------------------
	
	* Filename:				default.css
	* Description: 			sets typography, basic grids, 
							and standard formstyles
	* Version:				1.0.0 (2012-06-16)
	* Author:				Ryan Martinez
	
	== INDEX ===============================================
	
	$__generic classes		classes used globally, should be at bottom to prevent semantic inheritance
	
------------------------------------------------------------*/


/*-------------------------------------*/
/* RESET */
/*-------------------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/
    v2.0 | 20110126
    License: none (public domain)
    */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

html, button, input, select, textarea {
    font-family: sans-serif;
    color: #222;
}

/*
     * Remove text-shadow in selection highlight: h5bp.com/i
     * These selection declarations have to be separate
     * Also: hot pink! (or customize the background color to match your design)
     */

::-moz-selection {
    background: rgba(2,139,255,1); /* blue */
    color: #fff;
    text-shadow: none;
}

::selection {
    background: rgba(2,139,255,1); /* blue */
    color: #fff;
    text-shadow: none;
}

/* Improve readability of pre-formatted text in all browsers */
pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

body {
    color: #444;
    font-size: 12px;
    line-height: 18px;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
}

/*-------------------------------------*/
/* HEADER STYLES */
/*-------------------------------------*/

h1, h2, h3, h4, h5, h6 {
    display: block;
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
        font-weight: inherit;
    }

h1 {
    font-size: 38px;
    line-height: 54px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h2 {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h3 {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h4 {
    font-size: 22px;
    line-height: 36px;
    letter-spacing: normal;
}

h5 {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: normal;
}

h6 {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: normal;
}

/* Module titles */
.Head {
    display: inline-block;
    margin-bottom: 6px;
}

/* Some old forge modules use .Head, .SubHead, .SubSubHead in table td, We keep this to be compatible */
td.Head, td.SubHead, td.SubSubHead {
    display: table-cell;
    margin-bottom: 0;
}

input[type="image"] + span.Head, input[type="image"] + span.SubHead {
    display: inline;
}

/*-------------------------------------*/
/* PARAGRAPH STYLES */
/*-------------------------------------*/
p {
    margin: 0 0 18px 0;
}
    /* margin bottom is equal to line-height */
    p img {
        margin: 0;
    }

em, i {
    font-style: italic;
}

strong, b {
    font-weight: bold;
}

small {
    font-size: 80%;
}

/* Set text size in modules*/
.Normal,
.NormalDisabled,
.NormalDeleted {
    color: #444;
    font-size: 12px;
    font-weight: normal;
    line-height: 18px;
}

/* disabled text styles */
.NormalDisabled,
.NormalDeleted {
    color: #999;
}

/* text style used for help text rendered by modules */
.Help {
    padding: 2px;
    border: #000 1px solid;
    background-color: #ff9;
    font-weight: normal;
    font-size: 11px;
    color: #000;
}
/* text style used for rendered text which requires emphasis */
.NormalBold {
    font-weight: bold;
    color: #222;
}

/* text style used for error messages */
.NormalRed {
    font-weight: bold;
    color: red;
}

/* text style used for rendered text which should appear deleted */
.NormalDeleted {
    text-decoration: line-through;
}

/*	Blockquotes  */
blockquote, blockquote p {
    font-size: 17px;
    line-height: 24px;
    color: #777;
    font-style: italic;
}

blockquote {
    margin: 0 0 20px;
    padding: 9px 20px 0 19px;
    border-left: 1px solid #ddd;
}

    blockquote cite {
        display: block;
        font-size: 12px;
        color: #555;
    }

        blockquote cite:before {
            content: "\2014 \0020";
        }

        blockquote cite a, blockquote cite a:visited, blockquote cite a:visited {
            color: #555;
        }

hr {
    clear: both;
    margin: 17px 0 17px;
    height: 0;
    border: solid #ddd;
    border-width: 1px 0 0;
}

/*-------------------------------------*/
/* ANCHOR STYLES */
/*-------------------------------------*/
a, a:visited {
    color: rgb(2,139,255); /*blue*/
    text-decoration: underline;
    outline: 0;
}

    a:hover, a:focus, a:active {
        color: #222;
        outline: 0;
    }

p a, p a:visited {
    line-height: inherit;
}

/*-------------------------------------*/
/* IMAGE STYLES */
/*-------------------------------------*/
img.dnn-scale-img {
    max-width: 100%;
    height: auto;
}

img {
    border: 0;
    -ms-interpolation-mode: bicubic;
    vertical-align: middle;
}

#dnn_dnnLOGO_imgLogo {
     border: 0;
}

/*-------------------------------------*/
/* lIST STYLES */
/*-------------------------------------*/
ul, ol {
    margin-bottom: 18px;
    margin-left: 18px;
}

ul {
    list-style: square outside;
}

ol {
    list-style: decimal;
}

    /* Nested Styles */
    ul ul, ul ol,
    ol ol, ol ul {
        margin-left: 18px;
        margin-bottom: 0;
    }

    ol ol {
        list-style: lower-roman;
    }

li p {
    line-height: 18px;
}

/*-------------------------------------*/
/* MESSAGE STYLES */
/*-------------------------------------*/
.dnnFormMessage {
    display: block;
    padding: 17px 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(2,139,255,0.2); /* blue */
    background: rgba(2,139,255,0.15); /* blue */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    max-width: 980px;
}

    .dnnFormMessage.dnnFormError,
    .dnnFormMessage.dnnFormValidationSummary {
        background-color: rgba(255,0,0,0.15); /* red */
        border-color: rgba(255,0,0,0.2); /* red */
    }

    .dnnFormMessage.dnnFormWarning {
        background-color: rgba(255,255,0,0.15); /* yellow */
        border-color: #CDB21F; /* yellow */
    }

    .dnnFormMessage.dnnFormSuccess {
        background-color: rgba(0,255,0,0.15); /* green */
        border-color: rgba(0,255,0,0.5); /* green */
    }

/*-------------------------------------*/
/* TABLE STYLES */
/*-------------------------------------*/
.dnnTableHeader {
    display: block;
    padding: 15px;
    background: none repeat scroll 0 0 #E3E3E5;
}
.dnnTableHeader a,
.dnnTableHeader input, 
.dnnTableHeader select{
    margin: 0;
}
.dnnTableDisplay {
    margin-bottom: 18px;
    border: 1px solid #d1d1d1;
    border-left: 0;
    border-bottom: 0;
}

    .dnnTableDisplay td, .dnnTableDisplay th {
        padding: 5px 9px;
        border-bottom: 1px solid #d1d1d1;
    }

    .dnnTableDisplay th {
        padding: 0;
        border-left: 1px solid #d1d1d1;
        -webkit-box-shadow: 1px 0px 0px 0px rgba(255, 255, 255, 0.9);
        box-shadow: 1px 0px 0px 0px rgba(255, 255, 255, 0.9);
    }

        .dnnTableDisplay th > span,
        .dnnTableDisplay th > a {
            display: block;
            padding: 5px 9px;
        }

    .dnnTableDisplay td:first-child {
        border-left: 1px solid #cfcfcf;
    }

    .dnnTableDisplay label {
        display: inline;
        padding-left: 5px;
    }

    .dnnTableDisplay caption {
        display: none;
    }

    /* thead styles */
    .dnnTableDisplay th {
        background: -moz-linear-gradient(top, #f5f5f5 0%, #dfdfdf 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#dfdfdf)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* IE10+ */
        background: linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* W3C */
        text-align: left;
        text-shadow: 1px 1px 0px rgba(255,255,255,0.8);
        color: #333;
    }

        .dnnTableDisplay th a, .dnnTableDisplay th label {
            font-weight: normal;
            color: #333;
            text-decoration: none;
        }

        .dnnTableDisplay th a {
            padding: 8px 9px;
        }

            .dnnTableDisplay th a:hover {
                background: #fefefe; /* Old browsers */
                background: -moz-linear-gradient(top, #fefefe 0%, #e8e8e8 100%); /* FF3.6+ */
                background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefefe), color-stop(100%,#e8e8e8)); /* Chrome,Safari4+ */
                background: -webkit-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Chrome10+,Safari5.1+ */
                background: -o-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Opera 11.10+ */
                background: -ms-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* IE10+ */
                background: linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* W3C */
                color: #333;
            }

            .dnnTableDisplay th a:active {
                border-color: #999;
                background: #c6c6c6; /* Old browsers */
                background: -moz-linear-gradient(top, #c6c6c6 0%, #f3f3f3 100%); /* FF3.6+ */
                background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c6c6c6), color-stop(100%,#f3f3f3)); /* Chrome,Safari4+ */
                background: -webkit-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Chrome10+,Safari5.1+ */
                background: -o-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Opera 11.10+ */
                background: -ms-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* IE10+ */
                background: linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* W3C */
                -webkit-box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3);
                box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3);
            }
    /* tbody styles */
    .dnnTableDisplay tr:nth-child(2n) td {
        background: rgba(0,0,0,0.04);
    }

    .dnnTableDisplay tr:hover td {
        background: rgba(2,139,255,0.15); /* blue */
    }

    /* tfooter styles */
    .dnnTableDisplay tfoot tr:hover td {
        background: none;
    }

/* table filter styles */
.dnnTableFilter {
    margin-bottom: 18px;
    background: rgba(0,0,0,0.04);
}

    .dnnTableFilter .dnnTableDisplay {
        margin-bottom: 0;
    }

.dnnFilterSet {
    padding: 18px;
}

    .dnnFilterSet label {
        display: inline-block;
    }

    .dnnFilterSet input,
    .dnnFilterSet select {
        display: inline-block;
        margin: 0 5px;
    }

/* table filter vertical styles */
.verticalFilter .dnnFilterSet {
    float: left;
    width: 20%;
    padding: 2% 18px;
}

.verticalFilter .dnnTableDisplay {
    float: right;
    width: 75%;
}

.verticalFilter input[type=search], .verticalFilter select, .verticalFilter input[type=text] {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box; /* Firefox */
    -webkit-box-sizing: border-box; /* Safari */
}

/*-------------------------------------*/
/* PAGINATION & RESULT STYLES */
/*-------------------------------------*/
.dnnResults {
    float: left;
    margin-bottom: 0;
}

.dnnPagination {
    float: right;
    margin: 0;
    padding: 0;
}

    .dnnPagination li {
        float: left;
        list-style: none;
    }

        .dnnPagination li a, .dnnPagination li span {
            display: inline-block;
            padding: 0 5px;
            text-decoration: none;
            color: #333;
        }

            .dnnPagination li a:hover {
                text-decoration: underline;
                color: #222;
            }

        .dnnPagination li span {
            color: #222;
            text-decoration: underline;
        }

/*-------------------------------------*/
/* FORM STYLES */
/*-------------------------------------*/

.dnnFormItem input[type="text"],
.dnnFormItem select,
.dnnFormItem textarea,
.dnnFormItem input[type="email"],
.dnnFormItem input[type="search"],
.dnnFormItem input[type="password"] {
    margin-bottom: 18px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
    color: #333;
    font-size: 12px;
}

    .dnnFormItem input.aspNetDisabled,
    .dnnFormItem textarea.aspNetDisabled {
        background: #ebebeb;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color: #a7a7a7;
        border-width: 1px;
    }

.aspNetDisabled, a.aspNetDisabled,
.dnnDisabled, a.dnnDisabled {
    color: #ccc;
    cursor: not-allowed;
    text-decoration: none;
}

/* Active and Focus States */
.dnnFormItem input[type="text"]:active, .dnnFormItem input[type="text"]:focus,
.dnnFormItem input[type="password"]:focus, .dnnFormItem input[type="password"]:active,
.dnnFormItem input[type="email"]:active, .dnnFormItem input[type="email"]:focus,
.dnnFormItem select:active, .dnnFormItem select:focus,
.dnnFormItem textarea:active, .dnnFormItem textarea:focus,
.dnnFormItem input[type="search"]:active, .dnnFormItem input[type="search"]:focus {
    background: #fff;
    border: 1px solid rgba(2,139,255,0.5); /* blue */
    -webkit-box-shadow: 0px 0px 3px 0px rgba(2, 139, 255, 0.4);
    box-shadow: 0px 0px 3px 0px rgba(2, 139, 255, 0.4);
    color: #333;
}
/* Required Fields */
.required label:after,
legend.required:after {
    display: inline-block;
    margin-top: -2px;
    margin-left: 9px;
    padding: 1px 9px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background: rgba(0,0,0,0.03);
    content: 'Required';
    font-weight: normal;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-style: italic;
    color: #777;
}

/* Error Styles */
.error label, legend.error {
    color: rgba(255,0,0,0.9); /* opaque red*/
}

.error input[type="text"],
.error select, .error textarea,
.error input[type="email"],
.error input[type="search"] {
    border: 1px solid rgba(255,0,0,0.6); /* opaque red*/
    color: rgba(255,0,0,0.7); /* opaque red*/
}

/*
	 * 1. Display hand cursor for clickable form elements
	 * 2. Allow styling of clickable form elements in iOS
	 * 3. Correct inner spacing displayed oddly in IE7 (doesn't effect IE6)
	 */

.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnFormItem input[type="submit"],
.dnnPrimaryAction,
.dnnSecondaryAction,
.dnnTertiaryAction,
ul.dnnAdminTabNav li a,
.dnnLogin .LoginTabGroup span {
    display: inline-block;
    padding: 9px 9px;
    margin-bottom: 9px;
    cursor: pointer;
    min-width: 75px;
    *overflow: visible;
    border: 1px solid #c2c2c2;
    background: #eaeaea;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #333;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}

.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnFormItem input[type="submit"],
.dnnPrimaryAction,
.dnnSecondaryAction,
.dnnTertiaryAction {
    padding: 6px 6px;
}

/* Primary Action */

.dnnPrimaryAction, .dnnFormItem input[type="submit"], a.dnnPrimaryAction {
    border-color: #0D569E; /*dark blue*/
    background: #3792ED;
    background: -moz-linear-gradient(top, #358eea 0%, #2170cd 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#358eea), color-stop(100%,#2170cd)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #358eea 0%,#2170cd 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #358eea 0%,#2170cd 100%); /* W3C */
    -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.6), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.6), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
    color: #efefef;
    text-shadow: 0px -1px 0px #185B93;
}

    .dnnPrimaryAction:hover, .dnnFormItem input[type="submit"]:hover, a.dnnPrimaryAction:hover {
        border-color: #0D569E;
        background: #6cb6f3; /* Old browsers */
        background: -moz-linear-gradient(top, #6cb6f3 0%, #4387d2 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6cb6f3), color-stop(100%,#4387d2)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #6cb6f3 0%,#4387d2 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(top, #6cb6f3 0%,#4387d2 100%); /* W3C */
        color: #fff;
    }

    .dnnPrimaryAction:active, .dnnFormItem input[type="submit"]:active, a.dnnPrimaryAction:active {
        border-color: #0D569E;
        background: #1f66be; /* Old browsers */
        background: -moz-linear-gradient(top, #1f66be 0%, #3085e0 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1f66be), color-stop(100%,#3085e0)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #1f66be 0%,#3085e0 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(top, #1f66be 0%,#3085e0 100%); /* W3C */
        -webkit-box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        color: #fff;
    }

    .dnnPrimaryAction[disabled], .dnnPrimaryAction[disabled]:hover, .dnnPrimaryAction[disabled]:active {
        background: #ccc !important;
        border: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        color: #aaa !important;
        text-shadow: none;
    }

/* Secondary Action */
.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnSecondaryAction,
a.dnnSecondaryAction,
ul.dnnAdminTabNav li a,
.dnnLogin .LoginTabGroup span {
    background: #f5f5f5; /* Old browsers */
    background: -moz-linear-gradient(top, #f5f5f5 0%, #dfdfdf 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#dfdfdf)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* IE10+ */
    background: linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* W3C */
    -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.4), inset 0px 1px 0px 0px rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.4), inset 0px 1px 0px 0px rgba(255, 255, 255, 1);
    text-shadow: 0px 1px 0px #ffffff;
    color: #333;
}

    .dnnFormItem button:hover, .dnnFormItem input[type="button"]:hover,
    .dnnFormItem input[type="reset"]:hover,
    .dnnSecondaryAction:hover,
    a.dnnSecondaryAction:hover,
    ul.dnnAdminTabNav li a:hover,
    .dnnLogin .LoginTabGroup span:hover {
        background: #fefefe; /* Old browsers */
        background: -moz-linear-gradient(top, #fefefe 0%, #e8e8e8 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefefe), color-stop(100%,#e8e8e8)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* IE10+ */
        background: linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* W3C */
        color: #555;
    }

    .dnnFormItem button:active,
    .dnnFormItem input[type="button"]:active,
    .dnnFormItem input[type="reset"]:active,
    .dnnFormItem input[type="reset"]:active,
    .dnnSecondaryAction:active,
    a.dnnSecondaryAction:active,
    ul.dnnAdminTabNav li a:active {
        border-color: #999;
        background: #c6c6c6; /* Old browsers */
        background: -moz-linear-gradient(top, #c6c6c6 0%, #f3f3f3 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c6c6c6), color-stop(100%,#f3f3f3)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* IE10+ */
        background: linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* W3C */
        -webkit-box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
    }

/* Fix some old forge modules use .dnnPrimaryAction and .dnnSecondaryAction in wrong way */
span.dnnPrimaryAction > input[type="image"],
span.dnnSecondaryAction > input[type="image"] {
    display: none;
}

span.dnnPrimaryAction > a.dnnPrimaryAction,
span.dnnSecondaryAction > a.dnnSecondaryAction {
    display: inline;
    background: transparent;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* Tertiary Action */
.dnnTertiaryAction, a.dnnTertiaryAction {
    padding: 10px 10px;
    border: none;
    background: #eaeaea;
    color: #333;
}

    .dnnTertiaryAction:hover, a.dnnTertiaryAction:hover {
        background: #f2f2f2;
    }

    .dnnTertiaryAction:active, a.dnnTertiaryAction:active {
        background: #d8d8d8;
    }

/* Action Button behind input */
.dnnFormItem input[type="text"] + a.dnnPrimaryAction,
.dnnFormItem input[type="text"] + a.dnnSecondaryAction,
.dnnFormItem input[type="text"] + a.dnnTerriaryAction { 
    margin-left: 5px;
}

.dnnFormItem input[type="checkbox"] + span,
.dnnFormItem input[type="radio"] + span {
    margin: 5px;
}

/* text style for buttons and link buttons used in the portal admin pages */

/* button style for standard HTML buttons */
.StandardButton {
    border: 1px solid blue;
}


/* Re-set default cursor for disabled elements */
.dnnFormItem button[disabled],
.dnnFormItem input[disabled] {
    cursor: default;
    opacity: 0.5;
}


/* Consistent box sizing and appearance */
.dnnFormItem input[type="checkbox"],
.dnnFormItem input[type="radio"] {
    *width: 13px;
    *height: 13px; /*why are we using hacks here*/
    padding: 0;
    box-sizing: border-box;
}

.dnnFormItem input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

    .dnnFormItem input[type="search"]::-webkit-search-decoration,
    .dnnFormItem input[type="search"]::-webkit-search-cancel-button {
        -webkit-appearance: none;
    }


/* Remove inner padding and border in FF3/4: h5bp.com/l */
.dnnFormItem button::-moz-focus-inner, .dnnFormItem input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/*
	 * 1. Remove default vertical scrollbar in IE6/7/8/9
	 * 2. Allow only vertical resizing
	 */

.dnnFormItem textarea {
    overflow: auto;
    vertical-align: top;
    resize: vertical;
}

    /* Colors for form validity */
    .dnnFormItem input:valid, .dnnFormItem textarea:valid {
    }

    .dnnFormItem input:invalid, .dnnFormItem textarea:invalid {
        background-color: #f0dddd;
    }

/*-------------------------------------*/
/* TAXONOMY */
/*-------------------------------------*/

/* Horizontal taxonomy styles */
.horizontal ul.categories,
.horizontal ul.tags {
    list-style: none;
}

.horizontal ul.categories {
}

.horizontal ul.tags {
}

    .horizontal ul.categories li, .horizontal ul.tags li {
    }

        .horizontal ul.tags li.add-tags {
        }

            .horizontal ul.tags li.add-tags img {
            }

/* Vertical taxonomy styles */
.vertical ul.categories,
.vertical ul.tags {
    list-style: none;
}

    .vertical ul.categories li,
    .vertical ul.tags li {
    }

    .vertical ul.categories li {
    }

    .vertical ul.tags li {
    }

        .vertical ul.tags li.add-tags {
        }

            .vertical ul.tags li.add-tags img {
            }

/*-------------------------------------*/
/* TABS : JQUERY UI TABS 1.8.14 */
/*-------------------------------------*/
/* Tabs */
ul.dnnAdminTabNav {
    display: inline-block;
    margin-top: 5px;
    margin-left: 0;
    width: 100%;
    height: 37px;
    border-bottom: 1px solid #c2c2c2;
}

    ul.dnnAdminTabNav li {
        float: left;
        margin-right: 4px;
        list-style: none;
    }

        ul.dnnAdminTabNav li a {
            /* most styles are inherited from typography.css */
            margin-bottom: 0;
            border-bottom: 0;
            box-shadow: none;
            webkit-box-shadow: none;
            -webkit-border-radius: 3px 3px 0px 0px;
            border-radius: 3px 3px 0px 0px;
        }

        ul.dnnAdminTabNav li.ui-tabs-active a {
            margin-top: -3px;
            padding: 12px 9px 10px 9px;
            background: #fff;
        }

/* Panels */
.ui-tabs .ui-tabs-panel {
    position: relative;
    display: block;
}

.ui-tabs .ui-tabs-hide {
    display: none;
}

/*-------------------------------------*/
/* LOGIN TAB GROUP */
/*-------------------------------------*/
.dnnLogin .LoginTabGroup {
    display: inline-block;
    width: 100%;
    height: 37px;
    margin-left: 0;
    margin-top: 5px;
    border-bottom: 1px solid #C2C2C2;
}

    .dnnLogin .LoginTabGroup span {
        margin-right: 4px;
        margin-bottom: 0;
        border-bottom: 0 none;
        border-radius: 3px 3px 0 0;
        box-shadow: none;
    }

        .dnnLogin .LoginTabGroup span.LoginTabSelected {
            margin-top: -3px;
            padding: 12px 9px 10px;
            background: none repeat scroll 0 0 #FFFFFF;
        }

/*-------------------------------------*/
/* TABS : JQUERY UI RESIZABLE 1.8.14 */
/*-------------------------------------*/
.dnnForm .ui-resizable {
    position: relative;
}

.dnnForm .ui-resizable-handle {
    position: absolute;
    display: block;
    z-index: 99999;
    font-size: 0.1px;
}

.dnnForm .ui-resizable-disabled .ui-resizable-handle,
.dnnForm .ui-resizable-autohide .ui-resizable-handle {
    display: none;
}

.dnnForm .ui-resizable-n {
    cursor: n-resize;
    height: 7px;
    width: 100%;
    top: -5px;
    left: 0;
}

.dnnForm .ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    left: 0;
}

.dnnForm .ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%;
}

.dnnForm .ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    left: -5px;
    top: 0;
    height: 100%;
}

.dnnForm .ui-resizable-se {
    cursor: se-resize;
    width: 12px;
    height: 12px;
    right: 1px;
    bottom: 1px;
}

.dnnForm .ui-resizable-sw {
    cursor: sw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    bottom: -5px;
}

.dnnForm .ui-resizable-nw {
    cursor: nw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    top: -5px;
}

.dnnForm .ui-resizable-ne {
    cursor: ne-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    top: -5px;
}
/*	

/*-------------------------------------*/
/* FORM ITEMS
/*-------------------------------------*/
.dnnForm {
    width: 100%;
}

    .dnnForm fieldset {
        clear: none;
        position: relative;
        margin-bottom: 18px;
        text-align: left;
    }

        .dnnForm fieldset fieldset {
            width: 100%;
        }

    .dnnForm .dnnFormItem {
        clear: both;
        width: 100%;
        display: block;
        position: relative;
        text-align: left;
    }

/* Label */
.dnnTooltip {
    position: relative;
    display: block;
    width: 32.075%;
    margin-right: 18px;
}

.dnnHelperTip {
    position: relative;
    display: block;
}

.dnnDragdropTip {
    z-index: 10000;
    position: absolute;
    width: auto !important;
    height: auto !important;
    padding: 10px;
    padding-left: 30px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.75) url(../../../../../images/pin-icn.png) no-repeat 7px 12px;
    font-size: 11px;
    color: #DDD;
    text-align: left;
}

span.dnnFormRequired:after,
div.dnnFormItem.dnnFormRequired > div.dnnLabel span:after {
    content: "*";
    display: inline-block;
    margin: 0 0 0 5px;
    color: Red;
    font-size: 16px;
    line-height: 1em;
    font-weight: bold;
}

.dnnFormItem input[type="checkbox"] + span,
.dnnFormItem input[type="radio"] + span {
    display: inline-block;
    width: auto;
    margin: 6px 5px 6px 5px;
}

/* Help Label */
a.dnnFormHelp,
.dnnForm .dnnFormItem a.dnnFormHelp,
.dnnTooltip label a.dnnFormHelp {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

a.dnnFormHelp {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 2px;
    width: 14px;
    height: 15px;
    background: url(../../../../../images/helpI-icn-grey.png) no-repeat left 2px;
    padding: 0 !important;
    margin: 0 !important;
}

.dnnLabel {
    display: inline-block;
    float: left;
    position: relative;
    width: 32.075%;
    padding-right: 20px;
    margin-right: 18px;
    overflow: visible;
    text-align: right;
}

.dnnFormItem > .dnnLabel {
    margin-top: 5px;
}

.dnnLabel > span {
    text-align: right;
}

.dnnForm .dnnFormItem a.dnnFormHelp span {
    position: relative;
}

.dnnForm .dnnFormItem a.dnnFormHelp img {
    display: block;
}

.dnnLabel + span {
    display: inline-block;
    margin-top: 6px;
    margin-bottom: 6px;
    white-space: pre-line;
}

/* Compatible with some old forge modules */
td > .dnnLabel {
    width: 220px;
}

/* Help tooltip */
.dnnTooltip .dnnFormHelpContent,
.dnnHelperTip .dnnFormHelpContent {
    visibility: hidden;
    z-index: 10;
    position: absolute;
    width: 200px;
    padding: 10px;
    padding-left: 30px;
    border-radius: 3px;
    background: rgba(0,0,0,0.75);
    font-size: 11px;
    color: #ddd;
    text-align: left;
}

.dnnFormHelpContent span {
    display: block;
	word-wrap: break-word;
}

/*.dnnTooltip .dnnFormHelpContent span:after,
.dnnHelperTip .dnnFormHelpContent span:after {
    position: absolute;
    content: "";
    left: 15px;
    bottom: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #000;
}*/

.dnnTooltip .dnnFormHelpContent .dnnHelpText {
    word-wrap: break-word;
}

.bottomArrow:after
{
    position: absolute;
    content: "";
    left: 15px;
    bottom: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #000;
}
.topArrow:before {
    position: absolute;
    content: "";
    left: 15px;
    top: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #000;
}

a.pinHelp {
    display: block;
    position: absolute;
    left: 7px;
    top: 12px;
    width: 15px;
    height: 15px;
    opacity: 0.5;
    background: url(../../../../../images/pin-icn.png) no-repeat 0 0;
}

    .ui-draggable a.pinHelp,
    a.pinHelp:hover {
        opacity: 1;
    }

/* Error tooltip */
.dnnFormItem span.dnnFormMessage.dnnFormError {
    display: block;
    position: absolute;
    overflow: visible;
    /*top:-95%; right: 12%;*/
    bottom: 95%;
    right: 12%;
    width: 200px;
    margin-bottom: 0;
    padding: 10px;
    border: none;
    border-radius: 3px;
    background: rgba(255,0,0,0.75);
    font-size: 12px;
    color: #fff;
    text-align: left;
}

    .dnnFormItem span.dnnFormMessage.dnnFormError:after {
        position: absolute;
        bottom: -7px;
        left: 15px;
        content: "";
        width: 0;
        height: 0;
        opacity: 0.75;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 7px solid red;
    }

/* Input Types*/
.dnnFormItem input[type="text"],
.dnnFormItem input[type="password"],
.dnnFormItem input[type="email"],
.dnnFormItem input[type="tel"],
.dnnFormItem select,
.dnnFormItem textarea {
    width: 45%;
    max-width: 445px;
}

.dnnFormItem select {
    width: 47%;
}

    .dnnFormItem select option {
        color: #333;
    }

.dnnFormItem table {
    background: none;
}

/* Input Customised Checkbox*/

.dnnCheckbox {
    display: inline-block;
    cursor: pointer;
}

    .dnnCheckbox .mark {
        display: inline-block; /*margin-top: 3px;*/
    }

    .dnnCheckbox img {
        display: inline-block;
        width: 20px;
        height: 18px;
        min-width: 20px;
        vertical-align: middle;
    }

    .dnnCheckbox img {
        background: transparent url(../../../../../images/checkbox.png) no-repeat;
    }

    .dnnCheckbox img {
        background-position: 0px 0px;
    }

.dnnCheckbox-hover img {
    background-position: 0px 0px;
}

.dnnCheckbox-checked img {
    background-position: -51px 0px;
}

.dnnCheckbox-disabled img {
    opacity: .5;
}

.dnnCheckbox-checked-error img {
    background-position: -150px 0px;
}

.dnnCheckbox-error img {
    background-position: -100px 0px;
}
.dnnCheckbox-focus {
	background-color: #e3e3e5;
}
.dnnBoxLabel{ display: inline-block;}
/* normal checkbox fix */
.dnnFormItem input[type="checkbox"].normalCheckBox {
    display: inline-block;
    margin: 8px 0 4px 0;
}

/* Input Customised Radiobutton */

.dnnRadiobutton {
    display: inline-block;
    cursor: pointer;
}

    .dnnRadiobutton .mark {
        display: inline-block;
    }

    .dnnRadiobutton img {
        width: 20px;
        height: 18px;
        min-width: 20px;
        vertical-align: middle;
    }

    .dnnRadiobutton img {
        background: transparent url(../../../../../images/radiobutton.png) no-repeat;
    }

    .dnnRadiobutton img {
        background-position: 0px 0px;
    }

.dnnRadiobutton-hover img {
    background-position: 0px 0px;
}

.dnnRadiobutton-checked img {
    background-position: -50px 0px;
}

.dnnRadiobutton-disabled img {
    opacity: .5;
}

.dnnRadiobutton-checked-error img {
    background-position: -150px 0px;
}

.dnnRadiobutton-error img {
    background-position: -100px 0px;
}
.dnnRadiobutton-focus {
	background-color: #e3e3e5;
}
/* Input RadioButton group */
div.dnnFormRadioButtons,
div.dnnHSRadioButtons,
span.dnnFormRadioButtons,
span.dnnHSRadioButtons {
    display: inline-block;
    padding: 10px;
    margin-bottom: 5px;
    background-color: #f0f0f0;
}

table.dnnFormRadioButtons {
    background-color: #f0f0f0;
    margin-bottom: 5px;
}

.RadComboBox_Default .rcbInput {
    width: 100% !important;
}

/* general group*/
div.dnnFormGroup {
    display: inline-block;
    padding: 10px;
    margin-bottom: 5px;
    background-color: #f0f0f0;
    width: 65%;
}

/* Input Customised Spinner */
.dnnSpinner {
    display: inline-block;
    position: relative;
    width: 150px;
    padding: 6px 6px;
    *overflow: visible;
    border: 1px solid #c9c9c9;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #333;
    text-decoration: none;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
}

.dnnFormItem .dnnSpinner {
    width: 45%;
    margin-bottom: 18px;
}

.dnnSpinnerDisplay {
    margin: 0 25px 0 8px;
    background: transparent;
    color: #999;
}

.dnnFormItem .dnnSpinnerDisplay > input[type="text"],
.dnnFormItem .dnnSpinnerDisplay > input[type="text"]:focus {
    border: none;
    margin: 0;
    box-shadow: none;
    padding: 0;
    background: transparent;
}

.dnnSpinnerCtrl {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    background-color: transparent;
    border-left: 1px solid #c9c9c9;
}

    .dnnSpinnerCtrl > a.dnnSpinnerTopButton {
        display: block;
        width: 25px;
        height: 16px;
        background: transparent url(../../../../../images/dnnSpinnerUpArrow.png) no-repeat;
        background-position: center;
        cursor: pointer;
    }

    .dnnSpinnerCtrl > a.dnnSpinnerBotButton {
        display: block;
        width: 25px;
        height: 16px;
        background: transparent url(../../../../../images/dnnSpinnerDownArrow.png) no-repeat;
        background-position: center;
        cursor: pointer;
    }

/* Input Customised Tags */
div.dnnTagsInput {
    display: inline-block;
    margin: 0;
    padding: 5px 0 0 5px;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: #FFF;
    -webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.8), inset 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.8), inset 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}

.dnnFormItem .dnnTagsInput {
    width: 45%;
}

div.dnnTagsInput span.tag {
    display: block;
    float: left;
    padding: 2px 6px 2px 6px;
    margin-right: 5px;
    margin-bottom: 5px;
    border: 1px solid #c9c9c9;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    font-size: 12px;
    text-decoration: none;
    color: #888;
    cursor: pointer;
    background-color: #eee;
}

    div.dnnTagsInput span.tag:hover {
        background-color: #e8f1fa;
        color: #444;
    }

    div.dnnTagsInput span.tag a {
        display: inline-block;
        width: 8px;
        height: 8px;
        margin: 6px 0 0 0;
        background: transparent url(../../../../../images/dnnTagClose.png) no-repeat;
        background-position: center;
    }

div.dnnTagsInput > div > input,
div.dnnTagsInput > div > input:focus {
    border: none;
    background: transparent;
    outline: none;
    font-weight: normal;
    font-family: helvetica;
    font-size: 12px;
    display: inline-block;
    vertical-align: top;
    height: 19px;
    padding: 3px 0 3px 3px;
    margin-bottom: 5px;
}

div.dnnTagsInput > div > input::-ms-clear {
  display: none;
}

div.dnnTagsInput div {
    display: block;
    float: left;
}

    div.dnnTagsInput div.dnnTags_filter {
        float: right;
        position: relative;
        margin: 0 0 5px 5px;
    }

        div.dnnTagsInput div.dnnTags_filter > .dnnTags_filter_label {
            display: inline-block;
            border-left: 1px solid #ccc;
            padding: 3px 15px 0 10px;
            margin-right: 3px;
            color: #999;
            cursor: pointer;
            background: url(../../../../../images/dnnSpinnerDownArrow.png) no-repeat;
            background-position: right center;
            height: 22px;
        }

            div.dnnTagsInput div.dnnTags_filter > .dnnTags_filter_label.dnnExpanded {
                color: #666;
                background: url(../../../../../images/dnnSpinnerUpArrow.png) no-repeat;
                background-position: right center;
            }

        div.dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl {
            display: none;
            position: absolute;
            list-style-type: none;
            background: #fff;
            border: 1px solid #c9c9c9;
            right: 22px;
            top: 28px;
            margin: 0;
            -webkit-border-radius: 3px;
            border-radius: 3px;
            -webkit-box-shadow: 0px 2px 0px 0px #bbb;
            box-shadow: 0px 2px 0px 0px #bbb;
            z-index: 15;
        }

.dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li {
    white-space: nowrap;
    padding: 6px 12px 6px 8px;
    border-top: 1px solid #c9c9c9;
    list-style: none;
    color: #666;
    min-width: 150px;
}

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li:first-child {
        border-top: none;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li:hover {
        background-color: #e8f1fa;
        color: #333;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > input {
        display: inline-block;
        vertical-align: top;
        margin-right: 10px;
        cursor: pointer;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > span.dnnCheckbox {
        margin-right: 8px;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > label {
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
    }

div.dnnTagsInput div.dnnTags_filter a.dnnSearchButton {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url(../../../../../images/search/searchButton.png);
    background-repeat: no-repeat;
    background-position: center center;
    vertical-align: top;
    cursor: pointer;
    margin: 4px 5px 0 4px;
}

.dnnTagsClear {
    clear: both;
    width: 100%;
    height: 0px;
}

div.dnnTagsInput > div > input.dnnTagsInvalid {
    display: block;
    float: left;
    margin-right: 5px;
    border: none;
    outline: none;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background: #FBD8DB; /*light red*/
    cursor: pointer;
    font-size: 12px;
    color: #90111A !important; /* dark red*/
    text-decoration: none; 
}

/* DNN Auto Complete */
.dnn_acResults {
    padding: 0px;
    border: 1px solid #c9c9c9;
    background-color: #fff;
    overflow: hidden;
    z-index: 900001;
    -webkit-border-bottom-left-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    -webkit-box-shadow: 0px 2px 0px 0px #bbb;
    box-shadow: 0px 2px 0px 0px #bbb;
    min-width: 150px;
}

    .dnn_acResults ul {
        margin: 0px;
        padding: 0px;
        list-style-position: outside;
        list-style: none;
    }

        .dnn_acResults ul li {
            margin: 0px;
            padding: 6px 22px 6px 22px;
            border-top: 1px solid #c9c9c9;
            color: #666;
            cursor: pointer;
            display: block;
            overflow: hidden;
            color: #333;
        }

            .dnn_acResults ul li:first-child {
                border-top: none;
            }

.dnn_acLoading {
}

.dnn_acSelect {
    background-color: #e8f1fa;
    color: #333;
}

/* Form Item */
.dnnFormMessage .dnnLabel {
    float: none;
    width: 90%;
    text-align: left;
}

/* Pane header */
.dnnFormSectionHead span {
    font-size: 18px;
    color: #222;
}

/* Progressbar*/
.dnnProgressbar {
    height: 25px !important;
    padding: 18px 10px 0 10px;
    border: 1px solid #c9c9c9;
    background: #fff;
    background: -moz-linear-gradient(top, #f0f2f1 0%, #fff 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0f2f1), color-stop(100%,#fff)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f0f2f1 0%,#fff 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #f0f2f1 0%,#fff 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0,0,0,0.25), 0px 1px 0px 0px #fff;
    box-shadow: inset 0px 1px 3px 0px rgba(0,0,0,0.25), 0px 1px 0px 0px #fff;
}

.ui-progressbar {
    height: 10px !important;
    overflow: hidden;
    background-color: #ccc;
    -webkit-box-shadow: inset 0px 1px 0px 0px #bbb;
    box-shadow: inset 0px 1px 0px 0px #bbb;
    text-align: left;
}

    .ui-progressbar .ui-progressbar-value {
        margin: 0;
        height: 100%;
        background-color: #1a82f7;
        background: -moz-linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, right top, color-stop(0%,#2b7fda), color-stop(100%,#3fbdff)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* W3C */
    }

/* Button Dropdown */
.dnnDropdownSettings {
    position: relative;
    height: 30px !important;
}

.dnnButtonDropdown {
    width: 50px;
    height: 30px !important;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
    border: 1px solid #c9c9c9;
    cursor: pointer;
}

.dnnButtonIcon, .dnnButtonArrow {
    display: inline-block;
    height: 30px !important;
}

.dnnButtonIcon {
    width: 32px;
}

.dnnButtonArrow {
    width: 10px;
    background: transparent url(../../../../../images/dnnSpinnerDownArrow.png) no-repeat center;
}

.dnnButtonDropdown-clicked {
    z-index: 100;
    position: absolute;
    width: 50px;
    height: 30px !important;
    background: #fff;
    border: 1px solid #c9c9c9;
    border-bottom: 1px solid #fff;
    -webkit-border-top-left-radius: 3px;
    border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    border-top-right-radius: 3px;
}

.dnnButtonDropdown-ul {
    display: none;
    position: absolute;
    z-index: 99;
    top: 29px;
    left: 0;
    width: 200px;
    margin-left: 0;
    background: #fff;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 2px 0px 0px #bbb;
    box-shadow: 0px 2px 0px 0px #bbb;
    list-style-type: none;
}

    .dnnButtonDropdown-ul > li, .dnnButtonDropdown-ul > ul > li {
        padding: 8px;
        border-bottom: 1px solid #c9c9c9;
        color: #333;
        cursor: pointer;
        vertical-align: middle;
        list-style: none;
        margin: 0;
    }
	.dnnButtonDropdown-ul > ul{ margin: 0;}
	.dnnButtonDropdown-ul > ul > li{ padding-left: 16px;}

        .dnnButtonDropdown-ul > li:last-child {
            border-bottom: none !important;
        }

        .dnnButtonDropdown-ul > li:hover {
            background-color: #e8f1fa;
            color: #000;
        }

/* Button Group */
ul.dnnButtonGroup {
    display: inline-block;
    margin: 0;
    padding: 0;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
    border: 1px solid #c9c9c9;
    cursor: pointer;
    list-style: none;
}

    ul.dnnButtonGroup > li {
        display: block;
        float: left;
        border-left: 1px solid #c9c9c9;
        margin: 0;
    }

        ul.dnnButtonGroup > li:hover {
            background-color: #e8f1fa;
        }

        ul.dnnButtonGroup > li.dnnButtonGroup-first {
            display: none;
        }

            ul.dnnButtonGroup > li.dnnButtonGroup-first + li {
                border-left: none;
            }

        ul.dnnButtonGroup > li > a {
            display: inline-block;
            padding: 7px 7px 6px 7px;
            text-decoration: none;
            color: #333;
        }

    ul.dnnButtonGroup span {
        color: #333;
    }


/* Grouped Multi Input */
.dnnFormItem .dnnInputGroup {
    float: left;
    display: block;
    width: 32.075%;
    padding: 5px;
    margin-bottom: 18px;
    background: rgba(0,0,0,0.05); /* opaque black */
}

    .dnnFormItem .dnnInputGroup .dnnLeft {
        width: 100%;
    }

    .dnnFormItem .dnnInputGroup span {
        display: inline-block;
        width: 33%;
        text-align: right;
    }

/* Error Styles */
.dnnFormError label a span {
    color: red;
}

.dnnFormError input[type="text"],
.dnnFormError input[type="password"],
.dnnFormError input[type="email"],
.dnnFormError input[type="tel"],
.dnnFormError select,
.dnnFormError textarea {
    border: 1px solid red;
}


/* Tertiary Actions */
.dnnFormItem input[type="text"] + .dnnTertiaryAction,
.dnnFormItem input[type="password"] + .dnnTertiaryAction,
.dnnFormItem input[type="email"] + .dnnTertiaryAction,
.dnnFormItem input[type="tel"] + .dnnTertiaryAction,
.dnnFormItem select + .dnnTertiaryAction {
    display: inline-block;
    max-width: 60px;
}

/* Information Feedback Aside */
.dnnForm fieldset.dnnFormInformation {
    float: left;
    width: 32.075%;
    margin-left: 16px;
    padding: 18px 0;
    background: rgba(0,0,0,0.05);
}

.dnnFormItem textarea {
    min-height: 80px;
}

.dnnAddress input[type="checkbox"] {
    margin: 0 5px;
}

/* Required Fields */
.dnnFormRadioButtons {
    float: left;
    display: block;
    width: auto;
}

    .dnnFormRadioButtons input[type=radio] {
        float: none;
    }

    .dnnFormRadioButtons label,
    .dnnFormItem input[type=radio] + label {
        float: none;
        display: inline;
        width: auto;
        padding-right: 0;
        margin: 0 10px 0 0;
        text-align: left;
        font-weight: normal;
    }

/* Text Editor */
.dnnTextEditor {
    margin-bottom: 18px;
}

/* Action Items */
.dnnActions {
    float: none;
    clear: both;
    display: block; /* prevent ul from collapsing */
    margin: 0;
    padding-top: 18px;
    text-align: left;
}

    .dnnActions li {
        float: left;
        margin-right: 5px;
        list-style: none;
    }

.dnnLoginActions {
    display: inline-block;
}

/* Short Form */
.dnnForm.dnnShortForm .dnnFormItem label {
    float: none;
    width: 100%;
    margin-bottom: 0.25em;
    text-align: left;
}

.dnnForm.dnnShortForm .dnnFormItem input,
.dnnForm.dnnShortForm .dnnFormItem select,
.dnnForm.dnnShortForm .dnnFormItem textarea {
    float: none;
    text-align: left;
}

.dnnForm.dnnShortForm .dnnFormItem a.dnnFormHelp {
    background-position: left;
    padding-left: 22px;
}

/* UI Helpers */
.dnnForm .ui-helper-hidden {
    display: none;
}

.dnnForm .ui-helper-hidden-accessible {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
}

/* Interaction Cues */
.dnnForm .ui-state-highlight,
.dnnForm .ui-widget-content .ui-state-highlight,
.dnnForm .ui-widget-header .ui-state-highlight {
    border: 1px solid #fed22f;
    background: #ffe45c;
    color: #363636;
}

    .dnnForm .ui-state-highlight a,
    .dnnForm .ui-widget-content .ui-state-highlight a,
    .ui-widget-header .ui-state-highlight a {
        color: #363636;
    }

.dnnForm .ui-state-error,
.dnnForm .ui-widget-content .ui-state-error,
.dnnForm .ui-widget-header .ui-state-error {
    border: 1px solid #cd0a0a;
    background: #b81900;
    color: #ffffff;
}

    .dnnForm .ui-state-error a,
    .dnnForm .ui-widget-content .ui-state-error a,
    .dnnForm .ui-widget-header .ui-state-error a {
        color: #ffffff;
    }

.dnnForm .ui-state-error-text,
.dnnForm .ui-widget-content .ui-state-error-text,
.dnnForm .ui-widget-header .ui-state-error-text {
    color: #ffffff;
}

.dnnForm .ui-priority-primary,
.dnnForm .ui-widget-content .ui-priority-primary,
.dnnForm .ui-widget-header .ui-priority-primary {
    font-weight: bold;
}

.dnnForm .ui-priority-secondary,
.dnnForm .ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
    opacity: .7;
    filter: Alpha(Opacity=70);
    font-weight: normal;
}

.dnnForm .ui-state-disabled,
.dnnForm .ui-widget-content .ui-state-disabled,
.dnnForm .ui-widget-header .ui-state-disabled {
    opacity: .35;
    filter: Alpha(Opacity=35);
    background-image: none;
}

.dnnForm .ui-draggable {
    cursor: move;
}

/* Corner radius */
.dnnForm .ui-corner-all,
.dnnForm .ui-corner-top,
.dnnForm .ui-corner-left,
.dnnForm .ui-corner-tl {
    border-radius: 4px;
}

.dnnForm .ui-corner-all,
.dnnForm .ui-corner-top,
.dnnForm .ui-corner-right,
.dnnForm .ui-corner-tr {
    border-radius: 4px;
}
/*-------------------------------------*/
/* MODULE TITLE - TEMPORARY */
/*-------------------------------------*/

/* Need to determine what this is */
.ModuleTitle_MenuContainer {
    border: 1px solid blue;
}

.ModuleTitle_MenuBar {
}

.ModuleTitle_MenuItem {
}

.ModuleTitle_MenuIcon {
}

.ModuleTitle_SubMenu {
}

.ModuleTitle_MenuBreak {
}

.ModuleTitle_MenuItemSel {
}

.ModuleTitle_MenuArrow {
}

.ModuleTitle_RootMenuArrow {
}

/*-------------------------------------*/
/* MAIN MENU - TEMPORARY */
/*-------------------------------------*/

/* Need to determine what this is */
.MainMenu_MenuContainer {
    border: 1px solid green;
}

.MainMenu_MenuBar {
}

.MainMenu_MenuItem {
}

.MainMenu_MenuIcon {
}

.MainMenu_SubMenu {
}

.MainMenu_MenuBreak {
}

.MainMenu_MenuItemSel {
}

.MainMenu_MenuArrow {
}

.MainMenu_RootMenuArrow {
}

/*-------------------------------------*/
/* POPUP */
/*-------------------------------------*/

/* Popup Menu */
.ui-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
	z-index: 9999;
}

.dnnFormPopup {
    position: absolute;
    padding: 18px;
    background: #fff;
    -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.75);
	z-index: 100000;
}
    /* Popup header */
    .dnnFormPopup .ui-dialog-titlebar {
        position: relative;
        padding: 0 0 18px 0;
        border-bottom: 1px solid #ddd;
        cursor: move;
        font-size: 18px;
        font-weight: bold;
    }

    .dnnFormPopup .dnnModalCtrl {
        display: block;
        position: absolute;
        top: -30px;
        right: -30px;
        width: 69px;
        height: 26px;
        border-radius: 10px;
        background-color: #fff;
        -webkit-border-radius: 10px;
        box-shadow: 0px 0px 5px #666;
    }

        .dnnFormPopup .dnnModalCtrl .ui-dialog-titlebar-close {
            float: right;
            display: block;
            height: 18px;
            width: 30px;
            margin: 4px 4px 0 1px;
            overflow: hidden;
            -webkit-border-top-right-radius: 8px;
            -webkit-border-bottom-right-radius: 8px;
	        border: none;
	        outline: none;
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
            background: #585858 url(../../../../../images/closeBtn.png) no-repeat;
            background-position: 8px 4px;
            text-indent: -9999em;
	        min-width: 0 !important;
        }

            .dnnFormPopup .dnnModalCtrl .ui-dialog-titlebar-close:hover {
                background: #358EEA url(../../../../../images/closeBtn.png) no-repeat;
                background-position: 8px 4px;
	            cursor: pointer;
            }

        .dnnFormPopup .dnnModalCtrl a.dnnToggleMax {
            float: left;
            display: block;
            height: 18px;
            width: 30px;
            margin: 4px 0 0 4px;
            overflow: hidden;
            -webkit-border-top-left-radius: 8px;
            -webkit-border-bottom-left-radius: 8px;
            border-top-left-radius: 8px;
            border-bottom-left-radius: 8px;
            background: #585858 url(../../../../../images/resizeBtn.png) no-repeat;
            background-position: 10px 2px;
            text-indent: -9999em;
        }

            .dnnFormPopup .dnnModalCtrl a.dnnToggleMax:hover {
                background: #358EEA url(../../../../../images/resizeBtn.png) no-repeat;
                background-position: 10px 2px;
            }

div.ui-dialog-titlebar > .ui-dialog-titlebar-close {
    display: block;
    position: absolute;
    top: -30px;
    right: -30px;
    height: 24px;
    width: 24px;
    margin: 0px;
    overflow: hidden;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    background: #585858 url(../../../../../images/closeBtn.png) no-repeat;
    background-position: 4px 4px;
    border: 3px solid #fff;
    text-indent: -9999em;
	min-width: 0 !important;
}

/* Poup Iframe styles*/
.dnnFormPopup #iPopUp {
    width: 100%!important; /* to overwrite inline javscript styles */
    padding-top: 10px;
}

.dnnFormPopup .ui-dialog-content, #iPopUp .ui-dialog-content {
    position: relative;
    border: 0;
    padding: 0px;
    overflow: auto;
    background: #fff;
    zoom: 1;
}

.dnnFormPopup .ui-dialog-buttonpane {
    margin: .5em 0 0 0;
    padding: .3em 1em 0em 0em;
    overflow: hidden;
    border-width: 1px 0 0 0;
    background-image: none;
    text-align: left;
    border-top: 1px solid #ddd;
}

    .dnnFormPopup .ui-dialog-buttonpane button {
        margin: 0.5em 0.4em 0.5em 0em;
        padding: 0.5em 1em;
        cursor: pointer;
        border: none;
        outline: none;
    }

.dnnFormPopup .ui-resizable-se {
    float: right;
    height: 24px;
    width: 24px;
    background: url(../../../../../images/modal-resize-icn.png) no-repeat bottom;
}

.dnnFormPopup .dnnDialog {
    padding: 10px;
}

.dnnLoading {
    background: #fff url(../../../../../images/loading.gif) no-repeat center center;
    position: absolute;
    z-index: 9999;
}

/*-------------------------------------*/
/* URL ACTION */
/*-------------------------------------*/
.urlControl label {
    width: auto;
    margin-top: 0;
    font-weight: normal;
}

.urlControlLinkType {
    width: auto;
}

    .urlControlLinkType span,
    .dnnFormItem .urlControlLinkType span {
        float: none;
        display: block;
        width: auto;
        text-align: left;
    }

.dnnFormItem .ucLinkTypeRadioButtons label {
    display: inline-block;
    width: 260px;
    padding-right: 0;
    margin-top: 0;
    font-weight: normal;
    text-align: left;
}

.urlControlLinkType span input {
    min-width: 3%;
}

.dnnForm.dnnModuleSettings .dnnFormItem .urlControlLinkType span label {
    text-align: left;
}

.urlControlFileRow {
    clear: both;
}

    .urlControlFileRow span.dnnFormLabel {
        width: auto;
        text-align: right;
    }

    .urlControlFileRow select, .urlControlFileRow input[type=file] {
        clear: both;
    }

.urlControlImagesRow {
    overflow: hidden;
    clear: both;
}

    .urlControlImagesRow span.dnnFormLabel {
        width: auto;
        text-align: right;
    }

    .urlControlImagesRow select {
        clear: both;
    }

/*-------------------------------------*/
/* WIZARD TABS STEPS
/*-------------------------------------*/

/* Jquery UI tabs base */
.dnnWizardTab.ui-tabs {
    position: relative;
    padding: 0;
}

    .dnnWizardTab.ui-tabs .ui-tabs-nav {
        display: block;
        height: 46px;
        margin: 0;
        padding: 0;
        background: transparent url(../../../../../images/InstallWizardBG.png) repeat-x;
    }

        .dnnWizardTab.ui-tabs .ui-tabs-nav li {
            float: left;
            position: relative;
            margin: 0;
            padding: 0;
            border-bottom: 0 !important;
            list-style: none;
            white-space: nowrap;
        }

            .dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active {
                margin-bottom: 0;
            }

                .dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active a,
                .ui-tabs .ui-tabs-nav li.ui-state-disabled a,
                .ui-tabs .ui-tabs-nav li.ui-state-processing a {
                    cursor: text;
                }

            .dnnWizardTab.ui-tabs .ui-tabs-nav li a,
            .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
                cursor: pointer;
            }

    .dnnWizardTab.ui-tabs .ui-tabs-panel {
        clear: both;
        display: block;
        padding: 3em 1em 1.4em;
        border-width: 0;
        background: none;
    }

    .dnnWizardTab.ui-tabs .ui-tabs-hide {
        display: none !important;
    }

    .dnnWizardTab.ui-tabs .ui-tabs-nav li a {
        display: block;
    }

.dnnWizardStep > span {
    display: block;
    float: left;
}

.dnnWizardStep {
    height: 46px;
    padding: 0 0 0 20px;
    background: transparent url(../../../../../images/InstallWizardBG.png) repeat-x;
    background-position: 0 0;
    cursor: pointer;
}

.ui-tabs .ui-tabs-nav li:first-child .dnnWizardStep {
    padding-left: 30px;
}

.dnnWizardStepNumber {
    margin: 10px 10px 0 0;
    padding: 3px 8px 3px 8px;
    background-color: #999;
    -webkit-border-radius: 18px;
    border-radius: 18px;
    color: #fff;
    font-weight: bold;
}

.dnnWizardStepTitle {
    margin: 13px 20px 0 0;
    color: #999;
    font-weight: bold;
    text-decoration: none;
}

.dnnWizardStepArrow {
    width: 25px;
    height: 46px;
    background: transparent url(../../../../../images/InstallWizardBG.png) no-repeat;
    background-position: 0 -401px;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStep {
    height: 46px;
    background-position: 0 -100px;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStepNumber {
    background-color: #333;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStepTitle {
    color: #333;
}

.dnnFormExpandContent {
    margin: 10px 0;
}

    .dnnFormExpandContent > a {
        color: #333;
        font-size: 13px;
        font-weight: bold;
    }
/*-------------------------------------*/
/* DNN SIMPLE GRID
/*-------------------------------------*/

table.dnnPermissionsGrid,
table.dnnGrid,
table.dnnASPGrid {
    margin-bottom: 20px;
    border: 1px solid #c9c9c9;
}

    table.dnnPermissionsGrid {
        color: #777;
    }

    table.dnnPermissionsGrid tr.dnnGridHeader td {
        padding: 4px 4px 4px 4px;
        vertical-align: middle;
        line-height: 120%;
        text-align: center;    
    }

    table.dnnPermissionsGrid tr.dnnGridItem td,
    table.dnnPermissionsGrid tr.dnnGridAltItem td {
        padding: 5px 4px 5px 4px;
        border-top: 1px solid #c9c9c9;
        border-bottom: 1px solid #c9c9c9;
        width: 70px;
        text-align: center;
    }

    table.dnnPermissionsGrid tr.dnnGridItem td.permissionHeader,
    table.dnnPermissionsGrid tr.dnnGridAltItem td.permissionHeader {
        border-right: 1px solid #c9c9c9;
        text-align: left;
        padding-left: 10px;
        width: 150px;
    }

    table.dnnPermissionsGrid tr.dnnGridHeader td.permissionHeader {
        padding-left: 10px;
        text-align: left;
    }

    .dnnPermissionsGrid > .dnnFormItem label {
        margin-right: 8px;        
        color: #777;
    }

    .dnnPermissionsGrid > .dnnFormItem select {
        width: 25%;
        margin: 0 5px 5px 0;
        min-width: 180px;
        color: #777;
    }

    .dnnPermissionsGrid > .dnnFormItem input {        
        margin-bottom: 0;
        height: 17px;
        color: #777;
        width: 25%;
    }
    .dnnPermissionsGrid > .dnnFormItem ul.token-input-list-facebook {
        display: inline-block;
        vertical-align: top;
    }

    .dnnPermissionsGrid > .dnnFormItem > .leftGroup {
        margin-right: 35px;
        float:left;
    }

    .dnnPermissionsGrid > .dnnFormItem >  .rightGroup {
        float: left;
    }

    .dnnPermissionsGrid > .dnnFormItem >  .rightGroup  > .dnnSecondaryAction {
        position: absolute;
    }

    .dnnPermissionsGrid > .dnnFormItem {
        margin-bottom: 18px;
        overflow: auto;     
    }

.dnnGridHeader td, thead.dnnGridHeader th,  tr.dnnGridHeader th{
    padding: 6px 12px 6px 12px;
    border-bottom: 1px solid #c9c9c9;
    border-right: 1px solid #c9c9c9;
    background: #f0f2f1;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
}

.dnnGridItem td, .dnnGridAltItem td {
    padding: 6px;
    border-right: 1px solid #c9c9c9;
}

    .dnnGridItem td input, .dnnGridAltItem td input {
        margin-bottom: none;
    }

.dnnGridAltItem {
    background: #F2F2F2;
}

    .dnnGridItem:hover, .dnnGridAltItem:hover {
        background-color: #e8f1fa;
    }

/* td > input[type="image"],
    td > input[type="image"] + a,
    td a > img{
        display:block;
        float: left;
        margin-right: 3px;
    } */

/*-------------------------------------*/
/* URL Control
/*-------------------------------------*/

.urlControl {
    float: left;
    display: block;
    padding: 15px;
    margin-bottom: 10px;
    background-color: #f0f0f0;
}

    .urlControl select,
    .urlControl input {
        width: 180px;
        margin-bottom: 10px;
    }

    .urlControl dnnFormItem > a.dnnSecondaryAction {
        margin: 10px 10px 0 0;
        float: left;
    }

    .urlControl .urlControlLinkType {
        float: left;
        width: 100%;
    }

        .urlControl .urlControlLinkType .dnnFormLabel {
            float: left;
            width: auto;
            margin-right: 5px;
        }

        .urlControl .urlControlLinkType input[type="radio"] {
            width: auto;
            margin-right: 5px;
        }

/*-------------------------------------*/
/* File Picker
/*-------------------------------------*/
span[id$="FileControl"] {
    display: block;
    float: left;
}

.dnnFilePicker {
    display: block;
    float: left;
    background-color: #f0f0f0;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 0 15px 0 15px;
    width: 450px;
}

    .dnnFilePicker .dnnLeft {
        margin: 0;
        padding: 0;
        margin-top: -30px;
    }

    .dnnFilePicker dnnFormItem {
        margin: 0;
        margin-top: -10px;
        padding: 0;
        position: static;
    }

    .dnnFilePicker .dnnLeft img {
        max-width: 135px;
        max-height: 100px;
    }

    .dnnFilePicker .dnnLeft .dnnFilePickerImageHolder {
        width: 135px;
        height: 100px;
        background-color: #ccc;
        margin: 20px 15px;
    }

    .dnnFilePicker .dnnFormItem span {
        display: block;
        float: left;
        width: 40px;
        margin-top: 8px;
        padding-left: 5px;
        text-align: left;
    }

    .dnnFilePicker select,
    .dnnFilePicker input {
        width: 200px;
        margin: 0;
        margin-right: 10px;
        float: none;
    }

    .dnnFilePicker .dnnLeft a.dnnSecondaryAction {
        margin: 10px 10px 0 0;
        display: inline-block;
    }

    .dnnFilePicker .dnnLeft img {
        display: block;
        margin: 20px 15px;
    }

/* FILE UPLOAD CSS */
span.dnnInputFileWrapper > input[type="file"] { /* force file upload style here, cause some module just override */
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    direction: ltr;
    cursor: pointer;
    height: 100%;
	font-size: 200px;
}

span.dnnInputFileWrapper { /* Notes(by Richard): here must set !important */
    overflow: hidden !important;
    margin: 0px 4px 0 0;
    width: auto !important;
    display: block !important;
    float: left !important;
	position: relative;
}

    span.dnnInputFileWrapper > span.dnnSecondaryAction {
        display: inline-block;
        float: none;
        width: auto;
    }

/* DNN DRAG n DROP FILE PICKER UPLOAD */
.dnnFileUploadScope {
    display: block;
    float: left;
    background-color: #F0F0F0;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 0;
    width: 500px;
}

    .dnnFileUploadScope .dnnLeft {
        margin: 0;
        padding: 15px 10px 15px 10px;
    }

        .dnnFileUploadScope .dnnLeft .dnnFormItem {
            margin-bottom: 10px;
        }

    .dnnFileUploadScope .dnnFormItem span, .urlControlTab .dnnFormItem > span {
        display: block;
        float: left;
        width: 40px;
        margin-top: 8px;
        padding-left: 5px;
        text-align: left;
    }

    .dnnFileUploadScope .dnnFormItem .dnnDropDownList span {
        margin: 0;
        width: auto;
    }

    .dnnFileUploadScope .dnnFormItem .RadComboBox_Default,  .dnnFileUploadScope .dnnFormItem .dnnDropDownList{
        width: 180px;
        margin: 0;
        float: none;
    }

    .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone {
        position: relative;
        margin: 0;
        width: 180px;
        height: 150px;
        background: #d9eeff;
        border: 1px dashed #bbb;
        box-shadow: 0px 1px 0px #fff;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        color: #4577a2;
    }

        .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone span {
            display: block;
            position: absolute;
            left: 38px;
            top: 60px;
            color: #fff;
            font-size: 12px;
            background: rgba(0,0,0,0.5);
            padding: 5px 7px;
            border-radius: 3px;
            box-shadow: 0px 1px 0px #fff, inset 1px 1px 0px #555;
            opacity: 0.5;
            cursor: default;
            -webkit-transition: all 500ms ease-in-out;
            -moz-transition: all 500ms ease-in-out;
            -ms-transition: all 500ms ease-in-out;
            -o-transition: all 500ms ease-in-out;
            transition: all 500ms ease-in-out;
        }

        .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone:hover span {
            opacity: 1;
        }

input.dnnFixedSizeComboBox {
    width: 200px !important;
    margin-right: 10px;
    float: left;
}

div.dnnFixedSizeComboBox {
    width: 218px !important;
    margin-right: 15px;
    float: left;
}

.dnnFixedSizeComboBox + a.dnnSecondaryAction {
    float: left;
    margin-right: 10px;
}

input.dnnSmallSizeComboBox {
    width: 100px !important;
    margin-right: 10px;
    float: left;
}

div.dnnSmallSizeComboBox {
    width: 118px !important;
    margin-right: 15px;
    float: left;
}

.dnnSmallSizeComboBox + a.dnnSecondaryAction {
    float: left;
    margin-right: 10px;
}

td.dnnGridHeaderTD-NoBorder {
    border-right: none !important;
}

tr.dnnGridItem td, tr.dnnGridAltItem td {
    border-right: none;
}

    tr.dnnGridItem td input {
        margin-bottom: 0;
    }

/*-------------------------------------*/
/* ACCORDIAN
/*-------------------------------------*/
h2.dnnFormSectionHead {
    margin-top: 8px;
    margin-bottom: 18px;
    border-bottom: 1px solid #ddd;
    font-size: 32px;
    line-height: 36px;
    letter-spacing: -0.03em;
}

    h2.dnnFormSectionHead a {
        display: block;
        padding-left: 3px;
        background: url(../../../../../images/down-icn.png) no-repeat right 50%;
        text-decoration: none;
        color: #333;
        font-size: 18px;
        letter-spacing: normal;
        font-weight: normal;
    }

        h2.dnnFormSectionHead a:hover {
            color: #222;
            background: rgba(2,139,255,0.05) /* blue */ url(../../../../../images/down-icn.png) no-repeat right 50%;
        }

        h2.dnnFormSectionHead a.dnnSectionExpanded {
            background: url(../../../../../images/up-icn.png) no-repeat right 50%;
            color: #222;
        }

            h2.dnnFormSectionHead a.dnnSectionExpanded:hover {
                color: #222;
                background: rgba(2,139,255,0.05) /* blue */ url(../../../../../images/up-icn.png) no-repeat right 50%; /* ACTIVE BLUE */
            }

/*-------------------------------------*/
/* VERTICAL TABS */
/*-------------------------------------*/
.dnnVerticalTabs {
    margin-left: 0;
}

    .dnnVerticalTabs li {
        list-style: none;
    }

        .dnnVerticalTabs li a {
            display: block;
            padding: 15px 15px;
            border-bottom: 1px solid #ddd;
            border-right: 1px solid #ddd;
            background: rgba(0, 0, 0, 0.04);
            color: #999;
            text-decoration: none;
        }

            .dnnVerticalTabs li a:hover {
                background: rgba(0, 0, 0, 0.06);
                color: #333;
            }

        .dnnVerticalTabs li.active a {
            background: none;
            color: #333;
            border-right: 1px solid transparent;
        }

.tabBody {
    display: none;
}

/*-------------------------------------*/
/* SCROLL BAR */
/*-------------------------------------*/

.jspContainer {
    overflow: hidden;
    position: relative;
}

.jspPane {
    position: absolute;
}

.jspVerticalBar {
    position: absolute;
    top: 0;
    right: 0;
    width: 11px;
    height: 100%;
    background: #ccc;
}

.jspHorizontalBar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 11px;
    background: #ccc;
}

    .jspVerticalBar *,
    .jspHorizontalBar * {
        margin: 0;
        padding: 0;
    }

.jspCap {
    display: none;
}

.jspHorizontalBar .jspCap {
    float: left;
}

.jspTrack {
    background: transparent;
    position: relative;
}

.jspVerticalBar .jspTrack {
    width: 10px;
    margin: 0 0 0 3px;
}

.jspHorizontalBar .jspTrack {
    height: 5px;
    margin: 3px 0 3px 0;
}

.jspVerticalBar .jspCap {
    display: block;
    height: 3px;
    width: 11px;
}

.jspHorizontalBar .jspCap {
    display: block;
    width: 3px;
    height: 11px;
}

.jspDrag {
    position: relative;
    top: 0;
    left: 0;
    border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    opacity: .75;
    background: #000;
    cursor: pointer;
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag {
    float: left;
    height: 5px;
}

/*-------------------------------------*/
/* UPGRADE FIXES */
/*-------------------------------------*/

/* Compatible with some old forge modules---*/
div.ModDNNAnnouncementsC table.ucLinkTypeRadioButtons label {
    display: inline !important;
}

div.ModDNNAnnouncementsC table.ucLinkTypeRadioButtons span.dnnRadiobutton {
    display: inline !important;
}

div.ModDNNAnnouncementsC .urlControl label, div.ModDNNLinksC .urlControl label {
    display: inline !important;
}

div.ModDNNFAQsC .Normal {
    width: auto !important;
}

div.ModDNNFeedbackC .dnnFormItem > label {
    display: inline-block;
    width: 33%;
    text-align: right;
}

div.ModDNNUserDefinedTableC div.RadEditor {
    height: auto !important;
}

div.ModDNNUserDefinedTableC ul.dnnActions {
    display: block;
}

div.ModDNNIFrameC .urlControl span.dnnRadiobutton {
    display: inline !important;
}

div.ModDNNIFrameC table.Normal td .dnnLabel {
    width: 100px;
}

div.ModDNNIFrameC table.Normal td span.dnnRadiobutton {
    margin: 5px 0 0 30px;
}

div.ModDNNLinksC .urlControl span.dnnRadiobutton {
    display: inline !important;
}

/*-------------------------------------*/
/* GENERIC CLASSES */
/*-------------------------------------*/
.left {
    float: left;
}

.right {
    float: right;
}

.dnnLeft {
    float: left;
}

.dnnRight {
    float: right;
}

.dnnClear {
    clear: both;
}

    .dnnClear:after {
        clear: both;
        content: ".";
        display: block;
        height: 0;
        visibility: hidden;
        font-size: 0;
    }

* + html .dnnClear {
    min-height: 1%;
}

/* used to set the different module align options - from module settings */
.DNNAlignleft {
    text-align: left;
}

.DNNAlignright {
    text-align: right;
}

.DNNAligncenter {
    text-align: center;
}

/* used to collapse panes without any content in them */
.DNNEmptyPane {
    width: 0px;
}

/* style to apply if the content should be hidden */
.Hidden {
    display: none;
}
.wordwrap { 
   white-space: pre-wrap;      /* CSS3 */   
   white-space: -moz-pre-wrap; /* Firefox */    
   white-space: -pre-wrap;     /* Opera <7 */   
   white-space: -o-pre-wrap;   /* Opera 7 */    
   word-wrap: break-word;      /* IE */
}
/*Edit In Place Tool Bar Classes*/
.eipbackimg {
	position:absolute;
	margin-top:-32px;
	white-space:nowrap;
	background:url(../../../../../images/eip_toolbar.png) repeat-x;
	height:32px;
	z-index: 1;
}
.eipbackimg.editMode {
	border: 1px solid #777777 !important;
	background: -moz-linear-gradient(top, #303030 0%, #191919 100%) !important; /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#303030), color-stop(100%,#191919)) !important; /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #303030 0%,#191919 100%) !important; /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #303030 0%,#191919 100%) !important; /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #303030 0%,#191919 100%) !important; /* IE10+ */
    background: linear-gradient(to bottom, #303030 0%,#191919 100%) !important; /* W3C */
	opacity: 0.8;
}
.eipbackimg.containerTitle {
	margin-top: -8px;
}
.eipbackimg.containerTitle.editMode {
	left: auto;
	right: 0px;
	margin-top: 2px;
	background: none !important;
	border: none !important;
}
.eipbuttonbackimg{
	width: 32px;
	height: 32px; 
	cursor: pointer;
	float:left;
	background: url(../../../../../images/eip_toolbar.png) no-repeat;
	
}
.eipbackimg.editMode .eipbuttonbackimg {
	border-left: 1px solid #1f1f1f;
	border-right: 1px solid #393939;
	opacity: 0.5;
}

.eipbackimg.editMode.containerTitle .eipbuttonbackimg {
	border: none;
	opacity: 1;
}

.eipbuttonbackimg.eipbutton_cancel{ background-position: -32px 0;}
.eipbuttonbackimg.eipbutton_bold{ background-position: -64px 0;}
.eipbuttonbackimg.eipbutton_italic{ background-position: -96px 0;}
.eipbuttonbackimg.eipbutton_underline{ background-position: -128px 0;}
.eipbuttonbackimg.eipbutton_justifyleft{ background-position: -160px 0;}
.eipbuttonbackimg.eipbutton_justifycenter{ background-position: -192px 0;}
.eipbuttonbackimg.eipbutton_justifyright{ background-position: -224px 0;}
.eipbuttonbackimg.eipbutton_orderedlist{ background-position: -256px 0;}
.eipbuttonbackimg.eipbutton_unorderedlist{ background-position: -288px 0;}
.eipbuttonbackimg.eipbutton_outdent{ background-position: -320px 0;}
.eipbuttonbackimg.eipbutton_indent{ background-position: -352px 0;}
.eipbuttonbackimg.eipbutton_createlink{ background-position: -384px 0;}

.eipbackimg.containerTitle .eipbutton_cancel {
	background: url(../../../../../images/eip_title_cancel.png) no-repeat center center;
}

.eipbutton_edit {
	background: url(../../../../../images/eip_edit.png) no-repeat 100% center;
	float:left;
}

.eipbutton_save {
	background: url(../../../../../images/eip_save.png) no-repeat 100% center;
	float:left;
}
.eipbackimg.containerTitle .eipbutton_save {
	background-image: url(../../../../../images/eip_title_save.png);
}

.eipbackimg.editMode .eipborderhover {
	background-color: #333;
	opacity: 1;
}
.eipbackimg.editMode.containerTitle .eipborderhover {
	background-color: inherit;
}
div[id$=titleLabel_tb].visible ~ span{ margin-left: 32px;}

/*Critical Error Popup*/
div.errorWin p{ margin: 0 0 10px 0;}

input[type="button"].rspCollapseBarSpacer
{ min-width: 0; padding: 0 0; }


/*------------------------------------------------*/
/* DEFAULT PROFILE STYLE */
/*------------------------------------------------*/

.UserProfileControls ul li {
    list-style-type: none;
}

/*------------------------------------------------*/
/* PROFILE STYLE */
/*------------------------------------------------*/
.console.profile {
    /*width: 250px;*/
    width:100% !important; /* updated for responsive*/
    height: auto;
    background-color: #484848; /* Menu Background Color */
}

.console.profile .console-none div {
    cursor: pointer;
    cursor: hand;
    float: left;
    height: auto;
    /*width: 250px;*/
    width:100% !important; /* updated for responsive*/
    padding: 0px;
    margin: 0px;
    text-align: left;
}

.console.profile .console-none h3 {
    padding: 10px 8px 10px 40px;
    margin: 0;
    border-bottom: solid 1px #fff;
    background: url('../../../../images/arrow-right-white.png') 18px center no-repeat;
    color: #eee;
    font-size: 13px;
    line-height: 1;
    font-weight: bold;
}

.console.profile .console-none div div {
    display: none;
}

.console.profile .console-mouseon {
    background-color: #70b1c7; /* Menu Hover Background Color */
}
/*-------------------------------------------------*/

/* Login/register/reset paswsword controls in mobile view */
body.mobileView.dnnFormPopup.dnnFormPopupMobileView{
	margin: 0;
	padding: 0;
	width: 100%;
	height: inherit !important;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage{
	margin: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 10px 0 10px 0;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage.dnnFormValidationSummary{
	padding: 10px;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .LoginPanel,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnSendPasswordContent,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm {
    width: 100%;
	padding: 18px 0 0 0;
    margin: 0;
    float: none;	
	min-width: inherit !important;	
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm{
	width: 100%;
	margin: 0;
	float: none;
	min-width: inherit !important;
}



body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel {
    display: block;
    text-align: left;
    float: none;
    width: 100% !important;
    font-size: 14px;
    margin: 0 0 7px 0;
    vertical-align: top;
	padding: 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnSocialRegistration{
	display: none;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnCaptcha{
	width: 100%;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnLeft img{
	display: block;
	margin: 0 0 5px 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel a.dnnFormHelp{
	display: none !important;
	width: 0 !important;
	margin: 0 !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel div.dnnTooltip{
	display: none !important;
	width: 0 !important;
	position: static !important;
	right: 0 !important;
	margin: 0 !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem input[type="text"],
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > input[type="password"]{
    display: block;
    box-sizing: border-box;
	-webkit-box-sizing:border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: 100% !important;
	margin-bottom: 18px;
	min-width: 100% !important;	
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > label#dnn_ctr_Login_Login_DNN_lblLogin{
	display: none !important;
	width: 0;
	margin: 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem span.dnnFormMessage.dnnFormError{
	border-radius: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	right: 0;
	width: auto;
	max-width: 100%;
	padding: 10px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm.dnnLoginService a.dnnPrimaryAction,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm.dnnLoginService a.dnnSecondaryAction{
	width: 45%;
	padding: 18px 0 18px 0;
	display: block;
	float: left;
	margin: 0 5px 0 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnLoginRememberMe{
	display: block;
	float: left;
	margin: 10px 0 0 5px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnLoginActions {
	display: block;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions a.dnnSecondaryAction,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions a.dnnPrimaryAction{
	width: 100%;
	padding: 18px 0 18px 0;
	display: block;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions{
	padding: 0;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions li{
	width: 45%;
}

/* password strength control in iPopup */
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .password-strength-container{
	width: 100%;
	margin: 0 0 12px 0;
	padding: 8px 0 8px 0;
	display: block;
	max-width: inherit !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container input[type="password"]{
	display: block;
	margin: 0 8px 0 8px;
	width: calc(100% - 20px);
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container span.min-length-text{
	display: block;	
	margin: 5px 0 5px 8px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container div.meter{
	float: none;	
	width: 90%;
	margin: 0 0 0 8px;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormItem input.unmatched{
	background: none !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-tooltip, 
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .confirm-password-tooltip{
	display: none !important;
}

.mobileView .dnnFormPopup .ui-dialog-content, .mobileVie #iPopUp .ui-dialog-content {
    max-height: none !important; 
}

.mobileView .ui-widget-overlay {
    display: none;
}
.dnnFormPopup.dnnFormPopupMobileView {
    width: auto !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    box-shadow: none !important;
}
.dnnFormPopup.dnnFormPopupMobileView div.ui-dialog-titlebar > .ui-dialog-titlebar-close {
    display: none;
}

.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-titlebar {
    border-bottom: none;
    cursor: inherit;
    font-size: 22px;
    color: #000;
    padding: 5px 0 0 0;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel {
    display: block;
    text-align: left;
    float: none;
    width: auto !important;
    font-size: 14px;
    margin: 0 0 7px 0;
    vertical-align: top;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > input[type="text"] {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > textarea,
.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .redactor_box {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > select {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnTagsInput {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 18px;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel > input[type="checkbox"].normalCheckBox {
    display: inline-block;
    margin: 0 5px 0 12px;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnFormItem span.dnnFormMessage.dnnFormError {
    right: 0;
    width: auto;
    border-radius: 0;
    text-align: right;
    max-width: 100%;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView a.dnnSecondaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnSecondaryAction {
    width: 49%;
    margin: 0;
    padding: 20px 0 20px 0;
    display: block;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnPrimaryAction {
    float: left;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnSecondaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnSecondaryAction {
    float: right;
}

.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane {
    border-top: none;
}

    .dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane .ui-dialog-buttonset {
        float: none;
    }

.dnnFormPopup.dnnFormPopupMobileView .four-btn-panel a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .four-btn-panel a.dnnSecondaryAction {
    width: 24%;
    display: inline-block;
    margin-right: 1%;
    float: none;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    margin: 25px 0 15px 0;
}

html.mobileView {
    overflow: auto !important;
}

.mobileView .dnnFormPopup .ui-dialog-content, 
.mobileView #iPopUp .ui-dialog-content {
    max-height: none !important; 
}

.dnnPlaceholder{ color: #666; }

/* DNN Slider Input Style */
div.dnnSliderInput {
	position: relative;
	display: inline-block;
	width: 47%;
    margin:15px 0 23px 0;
    max-width: 445px;
	border: 1px solid #d3d3d3;
	-ms-border-radius: 3px;
	border-radius: 3px;
	height: 10px;
}

div.dnnSliderInput .ui-slider-handle {
	position: absolute;
    z-index: 2;
    width: 14px;
    height: 14px;
    cursor: default;
	border: 1px solid #aaaaaa;
    background-color: #cccccc;
    font-weight: normal;
    color: #555555;
	outline: none;
	top: -2px;
	margin-left: -7px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
div.dnnSliderInput .dnnTooltip {
	top: -37px;
	margin-left: -22px;
}
div.dnnSliderInput .dnnTooltip .dnnFormHelpContent {
	visibility: visible;
	padding: 4px 10px;
	width: 25px;
	text-align: center;
	z-index: 1;
}
/*END DNN Slider Input Style*/
/* 
 * Deprecated DNN CSS class names will remain available for some time
 * before being  permanently removed. Removal will occur according to
 * the  following process:
 *
 * 1. Removal will only occur with a major (x.y) release, never
 *    with a maintenance (x.y.z) release.
 * 2. Removal will not occur less than six months after the release
 *    when it was deprecated.
 * 3. Removal will not occur until after deprecation has been noted 
 *    in at least two major releases.
 *
 *                                              |        |Planned |
 *  Name                                        |Release |Removal |
 *----------------------------------------------+--------+--------+
 * Mod{NAME}C                                     5.6.2    6.2
 *   {NAME} = sanitized version of the DesktopModule Name 
 *   Used on <div> tag surrounding Module Content, inside container
 *----------------------------------------------+--------+--------+
 */  



/* PAGE BACKGROUND */
/* background color for the header at the top of the page  */
.HeadBg {
}

/* background color for the content part of the pages */
Body
{
}

.ControlPanel {
}

/* background/border colors for the selected tab */
.TabBg {
}

.LeftPane  { 
}

.ContentPane  { 
}

.RightPane  { 
}

/* text style for the selected tab */
.SelectedTab {
}

/* hyperlink style for the selected tab */
A.SelectedTab:link {
}

A.SelectedTab:visited  {
}

A.SelectedTab:hover    {
}

A.SelectedTab:active   {
}

/* text style for the unselected tabs */
.OtherTabs {
}
    
/* hyperlink style for the unselected tabs */
A.OtherTabs:link {
}

A.OtherTabs:visited  {
}

A.OtherTabs:hover    {
}

A.OtherTabs:active   {
}

/* GENERAL */
/* style for module titles */
.Head   {
}

/* style of item titles on edit and admin pages */
.SubHead    {
}

/* module title style used instead of Head for compact rendering by QuickLinks and Signin modules */
.SubSubHead {
}

/* text style used for most text rendered by modules */
.Normal
{
}

/* text style used for textboxes in the admin and edit pages, for Nav compatibility */
.NormalTextBox
{
}

.NormalRed
{
}

.NormalBold
{
}

/* text style for buttons and link buttons used in the portal admin pages */
.CommandButton     {
}
    
/* hyperlink style for buttons and link buttons used in the portal admin pages */
A.CommandButton:link {
}

A.CommandButton:visited  {
}

A.CommandButton:hover    {
}
    
A.CommandButton:active   {
}

/* button style for standard HTML buttons */
.StandardButton     {
}

/* GENERIC */
H1  {
}

H2  {
}

H3  {
}

H4  {
}

H5, DT  {
}

H6  {
}

TFOOT, THEAD    {
}

TH  {
}

A:link  {
}

A:visited   {
}

A:hover {
}

A:active    {
}

SMALL   {
}

BIG {
}

BLOCKQUOTE, PRE {
}


UL LI   {
}

UL LI LI    {
}

UL LI LI LI {
}

OL LI   {
}

OL OL LI    {
}

OL OL OL LI {
}
OL UL LI   {
}

HR {
}

/* MODULE-SPECIFIC */
/* text style for reading messages in Discussion */    
.Message    {
}   

/* style of item titles by Announcements and events */
.ItemTitle    {
}

/* Menu-Styles */
/* Module Title Menu */
.ModuleTitle_MenuContainer {
}

.ModuleTitle_MenuBar {
}

.ModuleTitle_MenuItem {
}

.ModuleTitle_MenuIcon {
}

.ModuleTitle_SubMenu {
}

.ModuleTitle_MenuBreak {
}

.ModuleTitle_MenuItemSel {
}

.ModuleTitle_MenuArrow {
}

.ModuleTitle_RootMenuArrow {
}

/* Main Menu */

.MainMenu_MenuContainer {
}

.MainMenu_MenuBar {
}

.MainMenu_MenuItem {
}

.MainMenu_MenuIcon {
}

.MainMenu_SubMenu {
}

.MainMenu_MenuBreak {
}

.MainMenu_MenuItemSel {
}

.MainMenu_MenuArrow {
}

.MainMenu_RootMenuArrow {
}

/* Login Styles */
.LoginPanel{
}

.LoginTabGroup{
}

.LoginTab {
}

.LoginTabSelected{
}

.LoginTabHover{
}

.LoginContainerGroup{
}

.LoginContainer{
}
/* Home Page style */
.banner-container {
    background: #00a4e3 url('Images/background_header.gif') no-repeat center center;
    padding: 25px 0;
    min-height: 255px;
	display: table;
}
.banner-container h2 {
    font-weight: bold;
    font-size: 33px;
    color: #fff;
    font-family: Arial;
    text-align: right;
    margin: 25px 0;
}
.banner-container span {
    font-size: 18px;
    color: #fff;
    line-height: 150%;
    text-align: right;
    font-family: Arial;
}
.intro-container {
    background: -moz-linear-gradient(top, #d3d3d3 0%, #e6e6e6 100%);
    /* FF3.6+ */
    
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d3d3d3), color-stop(100%, #e6e6e6));
    /* Chrome,Safari4+ */
    
    background: -webkit-linear-gradient(top, #d3d3d3 0%, #e6e6e6 100%);
    /* Chrome10+,Safari5.1+ */
    
    background: -o-linear-gradient(top, #d3d3d3 0%, #e6e6e6 100%);
    /* Opera 11.10+ */
    
    background: -ms-linear-gradient(top, #d3d3d3 0%, #e6e6e6 100%);
    /* IE10+ */
    
    background: linear-gradient(top, #d3d3d3 0%, #e6e6e6 100%);
    /* W3C */
    
    margin: -10px;
    margin-top: 10px;
}
.intro-container .main {
    margin-top: 68px;
}
.intro-container .main h2 {
    font-size: 30px;
    color: #47292a;
    font-weight: normal;
    font-family: Arial;
    text-align: center;
}
.intro-container .main ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.intro-container .main ul li {
    margin-top: 15px;
    padding: 0 7.5px;
}
.intro-container .main ul li a {
    background-repeat: no-repeat;
    background-position: center 38px;
}
.intro-container .main ul li > a {
    display: block;
    position: relative;
    border: 1px solid #c5c5c5;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #fafafa;
}
.intro-container .main ul li a span.overlay {
    background-color: #000;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-transition: opacity 3s ease-out;
    -webkit-transition: opacity 0.2s ease-out;
    -o-transition: opacity 3s ease-out;
    transition: opacity 0.2s ease-out;
    padding: 0 10px 20px 10px;
    color: #00a4e3;
    font-family: Arial;
    font-size: 14px;
    display: table-cell;
    vertical-align: middle;
    height: 235px;
    position: relative;
}
.intro-container .main ul li a span.overlay p {
    margin: 0;
    font-size: 12px;
}
.intro-container .main ul li a span.overlay label {
    text-transform: uppercase;
    font-family: Arial;
    font-size: 13px;
    color: #fff;
    margin-top: 10px;
    background: url('Images/icon-btn-sm-circle-arrow.png') no-repeat right center;
    padding-right: 18px;
    display: block;
    float: left;
}
.intro-container .main ul li a:hover span.overlay,
.intro-container .main ul li a:focus span.overlay,
.intro-container .main ul li a:active span.overlay {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    opacity: 0.8;
    -moz-transition: opacity 3s ease-in;
    -webkit-transition: opacity 0.2s ease-in;
    -o-transition: opacity 3s ease-in;
    transition: opacity 0.2s ease-in;
}
.intro-container .main ul li a span.text {
    display: block;
    height: 65px;
    line-height: 65px;
    margin-top: -65px;
    background-color: #47292a;
    font-size: 24px;
    color: #fff;
    text-align: center;
    font-family: Arial Bold;
    text-transform: uppercase;
    -webkit-border-bottom-left-radius: 5px;
    border-bottom-left-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.intro-container .main ul li.qa a {
    background-image: url('Images/icon-qa.png');
    margin-left: 0;
}
.intro-container .main ul li.blog a {
    background-image: url('Images/icon-blog.png');
}
.intro-container .main ul li.leader a {
    background-image: url('Images/icon-leaderboard.png');
}
.intro-container .main ul li.video a {
    background-image: url('Images/icon-videos.png');
    margin-left: 0;
}
.intro-container .main ul li.shop a {
    background-image: url('Images/icon-shop.png');
}
.intro-container .main ul li.help a {
    background-image: url('Images/icon-online-help.png');
}
.intro-container .main ul li.forum a {
    background-image: url('Images/icon-forums.png');
    margin-left: 0;
}
.intro-container .main ul li.webinar a {
    background-image: url('Images/icon-webinars.png');
}
.intro-container .main ul li.wiki a {
    background-image: url('Images/icon-wikis.png');
}
.intro-container .slide.pull-right {
    margin-right: 27px;
    padding-right: 0;
	margin-bottom: 25px;
}
.intro-container .slide .social-links {
    text-align: center;
}
.intro-container .slide .social-links h3 {
    font-family: Arial;
    font-size: 17px;
}
.intro-container .slide .social-links ul {
    list-style: none;
    width: 152px;
    margin: 0 auto;
}
.intro-container .slide .social-links ul li {
    width: 29px;
    height: 29px;
    background-size: 100% 100%;
    margin-top: 0;
    margin-left: 10px;
}
.intro-container .slide .social-links ul li a {
    display: block;
    height: 100%;
    border: none;
    background: transparent;
    width: 29px;
    margin-left: -7px;
}
.intro-container .slide .social-links ul li.facebook {
    background-image: url('Images/icon-social-facebook.png');
    margin: 0;
}
.intro-container .slide .social-links ul li.linkedin {
    background-image: url('Images/icon-social-linkedin.png');
}
.intro-container .slide .social-links ul li.twitter {
    background-image: url('Images/icon-social-twitter.png');
}
.intro-container .slide .social-links ul li.youtube {
    background-image: url('Images/icon-social-youtube.png');
}
.intro-container .slide .product {
    font-size: 18px;
    font-family: Arial;
    color: #47292a;
    background-color: #fff;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #c5c5c5;
    text-align: center;
    margin-top: 15px;
    padding-top: 21px;
}
.intro-container .slide .product img {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.intro-container .slide .product p {
    border-top: 1px solid #47292a;
    line-height: 185%;
    padding-top: 30px;
    line-height: 185%;
    margin: 23px 10px 0 10px;
}
.intro-container .slide .product .btn-action {
    background: -moz-linear-gradient(top, #0498d4 0%, #0374a5 100%);
    /* FF3.6+ */
    
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0498d4), color-stop(100%, #0374a5));
    /* Chrome,Safari4+ */
    
    background: -webkit-linear-gradient(top, #0498d4 0%, #0374a5 100%);
    /* Chrome10+,Safari5.1+ */
    
    background: -o-linear-gradient(top, #0498d4 0%, #0374a5 100%);
    /* Opera 11.10+ */
    
    background: -ms-linear-gradient(top, #0498d4 0%, #0374a5 100%);
    /* IE10+ */
    
    background: linear-gradient(top, #0498d4 0%, #0374a5 100%);
    /* W3C */
    
    -webkit-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.6), 0 1px 0 0 rgba(255, 255, 255, 0.4) inset;
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.6), 0 1px 0 0 rgba(255, 255, 255, 0.4) inset;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    font-size: 12px;
    color: #fff;
    display: block;
    font-family: Arial Bold;
    background-color: #0374a5;
    margin: 10px;
}
.intro-container .slide .product .btn-action span {
    display: block;
    line-height: 26px;
    text-align: center;
    padding: 20px 0;
}
.intro-container .slide .product .btn-action:hover {
    color: #008cc4;
    background: -moz-linear-gradient(top, #fafafa 0%, #f0eeee 100%);
    /* FF3.6+ */
    
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fafafa), color-stop(100%, #f0eeee));
    /* Chrome,Safari4+ */
    
    background: -webkit-linear-gradient(top, #fafafa 0%, #f0eeee 100%);
    /* Chrome10+,Safari5.1+ */
    
    background: -o-linear-gradient(top, #fafafa 0%, #f0eeee 100%);
    /* Opera 11.10+ */
    
    background: -ms-linear-gradient(top, #fafafa 0%, #f0eeee 100%);
    /* IE10+ */
    
    background: linear-gradient(top, #fafafa 0%, #f0eeee 100%);
    /* W3C */
    
    background-color: #f0eeee;
}
.intro-container .slide .product.social {
    margin-top: 12px;
}

.company-intro p {
    padding: 23px;
    font-size: 18px;
    color: #47292a;
    background-color: #fafafa;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #c5c5c5;
    line-height: 164%;
    margin: 29px -9px 0 -6px
}
.intro-container .main ul li a span.text {
    font-size: 28px;
}
.col-md-12 {
    float: left;
}
.intro-container .slide.pull-right .social-links,
.intro-container .slide.pull-right .product {
    padding-left: 7.5px;
    padding-right: 7.5px;
}
@media (max-width: 1199px) {
    .banner-container h2 {
        font-size: 25px;
    }
    .intro-container .main ul li a span.overlay label {
        font-size: 12px
    }
    .intro-container .main ul li a span.text {
        font-size: 20px;
    }
    .intro-container .slide .product.social {
        margin-top: 19px;
    }
    .intro-container .slide .product p {
        font-size: 17px;
    }
    .intro-container .slide .product .btn-action span {
        padding: 5px;
    }
}
@media (min-width: 1200px) {
    .banner-container img {
        right: 135px;
    }
    .intro-container .main h2 {
        font-size: 38px;
    }
    .intro-container .slide .product .btn-action span {
        background: url('Images/icon-btn-sm-circle-arrow-shadow.png') no-repeat right center;
        margin-right: 10px;
        padding: 20px 26px 20px 10px;
    }
}
@media (min-width: 769px) and (max-width: 979px) {
    .intro-container .main ul li a span.text {
        font-size: 18px;
    }
}
@media (min-width: 769px) and (max-width: 788px) {
    .intro-container .main ul li a span.overlay p,
    .intro-container .main ul li a span.overlay label {
        font-size: 9px;
    }
}
@media (max-width: 768px) {
    .banner-container {
        min-height: 205px;
        min-width: 0px;
    }
    .banner-container h2 {
        font-size: 20px;
        color: #fff;
        margin-top: 20px;
        font-family: Arial;
        max-width: auto;
        float: none;
        text-align: center;
    }
    .banner-container span {
        margin-right: 0;
        font-size: 14px;
        color: #fff;
        line-height: 24px;
        text-align: center;
        display: inline-block;
        font-family: Arial;
        max-width: auto;
        float: none;
    }
    .banner-container img {
        display: none;
    }
    .intro-container .slide.pull-right .social-links {
        margin-top: 45px;
    }
    .intro-container .slide.pull-right {
        width: auto;
        margin-right: 10px;
    }
    .banner-container {
        background: #00a4e3 url('Images/background_header.gif') no-repeat center center;
        padding: 25px 0;
    }
    .intro-container .slide.pull-right .social-links,
    .intro-container .slide.pull-right .social {
        margin-top: 15px;
    }
    .intro-container .slide.pull-right .social img {
        margin-top: -5px;
    }
    .intro-container .slide.pull-right .social p {
        margin-bottom: 43px;
    }
    .company-intro p {
        clear: both;
        font-size: 16px;
        color: #47292a;
        background-color: #fafafa;
        -webkit-border-radius: 5px;
        border-radius: 5px;
        border: 1px solid #c5c5c5;
        padding: 15px;
        margin: 10px -14px 25px -10px;
        line-height: 22px;
    }
}
@media(max-width: 640px) {
    .intro-container .slide.pull-right .social-links, .intro-container .slide.pull-right .product {
        width: 100%;
    }
    .company-intro p {
        margin: 10px -15px 0 -10px;
    }
}
ul li {
    list-style-type: none;
}
/*!
 * Bootstrap v3.1.1 (http://getbootstrap.com)
 * Copyright 2013 Twitter, Inc.
 * Licensed under http://www.apache.org/licenses/LICENSE-2.0
 *//*! normalize.css v2.1.3 | MIT License | git.io/normalize *//*! normalize.css v3.0.0 | MIT License | git.io/normalize */.has-feedback,sub,sup{position:relative}body,figure{margin:0}address,cite{font-style:normal}.popover>.arrow,.popover>.arrow:after,.tooltip-arrow{width:0;border-color:transparent;height:0;border-style:solid}.breadcrumb,.dropdown-menu,.list-inline,.list-unstyled,.media-list,.nav,.pager{list-style:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;font-size:62.5%;-webkit-tap-highlight-color:transparent}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:0 0}a:active,a:hover{outline:0}b,optgroup,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0}mark{background:#ff0;color:#000}sub,sup{font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0;vertical-align:middle}svg:not(:root){overflow:hidden}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre,textarea{overflow:auto}code,kbd,pre,samp{font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}@media print{blockquote,img,pre,tr{page-break-inside:avoid}*{text-shadow:none!important;color:#000!important;background:0 0!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href)")"}abbr[title]:after{content:" (" attr(title)")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999}thead{display:table-header-group}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff!important}.navbar{display:none}.table td,.table th{background-color:#fff!important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}.img-thumbnail,body{background-color:#fff}.btn,.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-success.active,.btn-success:active,.btn.active,.btn:active,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover,.form-control,.navbar-toggle,.open .dropdown-toggle.btn-danger,.open .dropdown-toggle.btn-default,.open .dropdown-toggle.btn-info,.open .dropdown-toggle.btn-primary,.open .dropdown-toggle.btn-success{background-image:none}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.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-md-1,.col-md-10,.col-md-11,.col-md-12,.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-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.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-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{width:100%}*,:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}body{font-family:Arial;font-size:14px;line-height:1.42857143;color:#555}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#3177bd;text-decoration:none}a:focus,a:hover{color:#2b5ea0;text-decoration:underline}a:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto;outline-offset:-2px}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}code,pre{border-radius:4px}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #f5f5f5}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:Arial;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#ddd}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:200;line-height:1.4}address,blockquote .small,blockquote footer,blockquote small,dd,dt,pre{line-height:1.42857143}dt,label{font-weight:700}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-muted{color:#ddd}.text-primary{color:#428bca}a.text-primary:hover{color:#3071a9}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#428bca}a.bg-primary:hover{background-color:#3071a9}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}pre code,table{background-color:transparent}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #f5f5f5}dl,ol,ul{margin-top:0}ol,ul{margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0}.list-inline{padding-left:0;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-bottom:20px}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #ddd}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #f5f5f5}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;color:#ddd}code,kbd{font-size:90%}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #f5f5f5;border-left:0;text-align:right}code,kbd{padding:2px 4px}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}blockquote:after,blockquote:before{content:""}address{margin-bottom:20px}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{color:#c7254e;background-color:#f9f2f4;white-space:nowrap}kbd{color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;word-break:break-all;word-wrap:break-word;color:#555;background-color:#f5f5f5;border:1px solid #ccc}.container,.container-fluid{margin-right:auto;margin-left:auto}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;border-radius:0}.badge,.bootstrap-label,.btn,.dropdown-menu>li>a,.input-group-btn{white-space:nowrap}.container,.container-fluid{padding-left:5px;padding-right:5px}.pre-scrollable{max-height:340px;overflow-y:scroll}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.row{margin-left:-5px;margin-right:-5px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.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-md-1,.col-md-10,.col-md-11,.col-md-12,.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-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.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-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-left:5px;padding-right:5px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{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%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:0}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:0}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{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:0}.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:0}.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-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{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{width:66.66666667%}.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%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:0}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:0}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{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%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:0}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:0}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{max-width:100%}th{text-align:left}.table{width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}fieldset,legend{border:0;padding:0}.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}table col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}@media (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;overflow-x:scroll;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd;-webkit-overflow-scrolling:touch}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{margin:0;min-width:0}legend{display:block;width:100%;margin-bottom:20px;font-size:21px;line-height:inherit;color:#555;border-bottom:1px solid #e5e5e5}.form-control,output{font-size:14px;color:#777}label{display:inline-block;margin-bottom:5px}.checkbox,.form-control,.radio,input[type=file],output{display:block}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px \9;line-height:normal}.form-control,output{line-height:1.42857143}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}output{padding-top:7px}.form-control{width:100%;height:34px;padding:6px 12px;background-color:#fff;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#ddd;opacity:1}.form-control:-ms-input-placeholder{color:#ddd}.form-control::-webkit-input-placeholder{color:#ddd}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .form-control-feedback,.has-success .help-block,.has-success .radio,.has-success .radio-inline{color:#3c763d}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#f5f5f5;opacity:1}input[type=date]{line-height:34px}.form-group{margin-bottom:15px}.checkbox,.radio{min-height:20px;margin-top:10px;margin-bottom:10px;padding-left:20px}.checkbox label,.radio label{display:inline;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{float:left;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}.checkbox-inline[disabled],.checkbox[disabled],.radio-inline[disabled],.radio[disabled],fieldset[disabled] .checkbox,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio,fieldset[disabled] .radio-inline,fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox][disabled],input[type=radio][disabled]{cursor:not-allowed}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.has-feedback .form-control{padding-right:42.5px}.has-feedback .form-control-feedback{position:absolute;top:25px;right:0;display:block;width:34px;height:34px;line-height:34px;text-align:center}.collapsing,.dropdown{position:relative}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .form-control-feedback,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .form-control-feedback,.has-error .help-block,.has-error .radio,.has-error .radio-inline{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.form-control-static{margin-bottom:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#959595}@media (min-width:768px){.form-inline .control-label,.form-inline .form-group{margin-bottom:0;vertical-align:middle}.form-inline .form-group{display:inline-block}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .input-group>.form-control{width:100%}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0;vertical-align:middle}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{float:none;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.btn-block,input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .control-label,.form-horizontal .radio,.form-horizontal .radio-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-left:-5px;margin-right:-5px}.form-horizontal .form-control-static{padding-top:7px}@media (min-width:768px){.form-horizontal .control-label{text-align:right}}.badge,.bootstrap-label,.btn,.input-group-addon,.nav-justified>li>a,.pager,.progress-bar{text-align:center}.form-horizontal .has-feedback .form-control-feedback{top:0;right:5px}.dropdown-menu-right,.dropdown-menu.pull-right{left:auto;right:0}.btn{display:inline-block;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer;border:1px solid transparent;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn.active:focus,.btn:active:focus,.btn:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.active,.btn-default:active,.btn-default:focus,.btn-default:hover,.open .dropdown-toggle.btn-default{color:#333;background-color:#ebebeb;border-color:#adadad}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary.active,.btn-primary:active,.btn-primary:focus,.btn-primary:hover,.open .dropdown-toggle.btn-primary{color:#fff;background-color:#3276b1;border-color:#285e8e}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#428bca;border-color:#357ebd}.btn-primary .badge{color:#428bca;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.active,.btn-warning:active,.btn-warning:focus,.btn-warning:hover,.open .dropdown-toggle.btn-warning{color:#fff;background-color:#ed9c28;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open .dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.active,.btn-danger:active,.btn-danger:focus,.btn-danger:hover,.open .dropdown-toggle.btn-danger{color:#fff;background-color:#d2322d;border-color:#ac2925}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.active,.btn-success:active,.btn-success:focus,.btn-success:hover,.open .dropdown-toggle.btn-success{color:#fff;background-color:#47a447;border-color:#398439}.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.active,.btn-info:active,.btn-info:focus,.btn-info:hover,.open .dropdown-toggle.btn-info{color:#fff;background-color:#39b3d7;border-color:#269abc}.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-link{color:#3177bd;font-weight:400;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#2b5ea0;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#ddd;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.dropdown-header,.dropdown-menu>li>a{display:block;padding:3px 20px;line-height:1.42857143}.btn-block{display:block;padding-left:0;padding-right:0}.btn-block+.btn-block{margin-top:5px}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}.collapsing{height:0;overflow:hidden;-webkit-transition:height .35s ease;transition:height .35s ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.input-group-addon:last-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.input-group-addon:first-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.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;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.btn-group-vertical>.btn:not(:first-child):not(:last-child),.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn,.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{clear:both;font-weight:400;color:#555}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{text-decoration:none;color:#484848;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;outline:0;background-color:#428bca}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#ddd}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;background-color:transparent;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{font-size:12px;color:#ddd}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover,.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.nav-justified>.dropdown .dropdown-menu,.nav-tabs.nav-justified>.dropdown .dropdown-menu{left:auto;top:auto}.btn-group,.btn-group-vertical,.input-group,.input-group .form-control,.input-group-btn,.input-group-btn>.btn,.nav>li,.nav>li>a,.navbar{position:relative}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}.btn-group,.btn-group-vertical{display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn:focus,.btn-group>.btn:focus{outline:0}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn .caret,.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn-lg .caret{border-width:5px 5px 0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group,.input-group-btn>.btn+.btn{margin-left:-1px}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:4px;border-top-right-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}[data-toggle=buttons]>.btn>input[type=checkbox],[data-toggle=buttons]>.btn>input[type=radio]{display:none}.input-group{display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.input-group .form-control{z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#777;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}.badge,.bootstrap-label{line-height:1;font-weight:700}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-btn{font-size:0}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.nav{margin-bottom:0;padding-left:0}.nav>li{display:block}.nav>li>a{display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:transparent}.nav>li.disabled>a{color:#ddd}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#ddd;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:transparent;border-color:#3177bd}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}.nav-tabs>li>a:hover{border-color:#f5f5f5 #f5f5f5 #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#777;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px;margin-right:0;border-radius:4px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0;border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-justified>li,.nav-stacked>li{float:none}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#428bca}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li>a{margin-bottom:5px}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.navbar,.navbar-toggle{border:1px solid transparent}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.navbar-form,.panel-heading{border-bottom:1px solid transparent}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{min-height:50px;margin-bottom:20px}.navbar-collapse{max-height:340px;overflow-x:visible;padding-right:0;padding-left:0;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar{border-radius:4px}.navbar-header{float:left}.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-left:0;padding-right:0}}.embed-responsive,.media,.media-body,.modal-open,.progress{overflow:hidden}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}.navbar-static-top{z-index:1000;border-width:0 0 1px}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 0;font-size:18px;line-height:20px;height:50px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0}.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:0}}.navbar-toggle{position:relative;float:right;margin-right:0;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.breadcrumb>li,.pagination{display:inline-block}.navbar-nav{margin:7.5px 0}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}.progress-striped .progress-bar,.progress-striped .progress-bar-danger,.progress-striped .progress-bar-info,.progress-striped .progress-bar-success,.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}.navbar-nav.navbar-right:last-child{margin-right:0}.navbar-left{float:left!important}.navbar-right{float:right!important}}.navbar-form{padding:10px 0;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin:8px 0}@media (min-width:768px){.navbar-form .control-label,.navbar-form .form-group{margin-bottom:0;vertical-align:middle}.navbar-form .form-group{display:inline-block}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .input-group>.form-control{width:100%}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0;vertical-align:middle}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{float:none;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}.badge,.bootstrap-label{vertical-align:baseline}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-form,.navbar-form.navbar-right:last-child{margin-right:0}.navbar-form{width:auto;border:0;margin-left:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}.navbar-text,.navbar-text.navbar-right:last-child{margin-right:0}.navbar-text{float:left;margin-left:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-nav>li>a,.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#ddd}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>li>a,.navbar-inverse .navbar-text{color:#ddd}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#ddd}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#ddd}.navbar-inverse .navbar-link:hover{color:#fff}.breadcrumb{padding:8px 15px;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#ddd}.pagination{padding-left:0;margin:20px 0;border-radius:4px}.pager li,.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#3177bd;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{color:#2b5ea0;background-color:#f5f5f5;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca;cursor:default}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#ddd;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#f5f5f5}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#ddd;background-color:#fff;cursor:not-allowed}.bootstrap-label{display:inline;padding:.2em .6em .3em;font-size:75%;color:#fff;border-radius:.25em}.bootstrap-label[href]:focus,.bootstrap-label[href]:hover{color:#fff;text-decoration:none;cursor:pointer}.bootstrap-label:empty{display:none}.btn .bootstrap-label{position:relative;top:-1px}.label-default{background-color:#ddd}.label-default[href]:focus,.label-default[href]:hover{background-color:#c4c4c4}.label-primary{background-color:#428bca}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#3071a9}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;color:#fff;background-color:#ddd;border-radius:10px}.badge:empty{display:none}.list-group-item,.media-object,.thumbnail{display:block}.btn .badge{position:relative;top:-1px}.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.nav-pills>.active>a>.badge,a.list-group-item.active>.badge{color:#3177bd;background-color:#fff}.jumbotron,.jumbotron .h1,.jumbotron h1{color:inherit}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px;margin-bottom:30px;background-color:#f5f5f5}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.alert .alert-link,.close{font-weight:700}.alert,.thumbnail{margin-bottom:20px}.container .jumbotron{border-radius:6px}.alert,.panel,.progress,.thumbnail{border-radius:4px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron{padding-left:60px;padding-right:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-left:auto;margin-right:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#3177bd}.thumbnail .caption{padding:9px;color:#555}.alert{padding:15px;border:1px solid transparent}.alert h4{margin-top:0;color:inherit}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable{padding-right:35px}.alert-dismissable .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;background-color:#f5f5f5;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;transition:width .6s ease}.close,.list-group-item>.badge{float:right}.progress-striped .progress-bar{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:40px 40px}.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media,.media-body{zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{padding-left:0}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover{text-decoration:none;background-color:#f5f5f5}a.list-group-item.active,a.list-group-item.active:focus,a.list-group-item.active:hover{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}a.list-group-item.active .list-group-item-heading,a.list-group-item.active:focus .list-group-item-heading,a.list-group-item.active:hover .list-group-item-heading{color:inherit}a.list-group-item.active .list-group-item-text,a.list-group-item.active:focus .list-group-item-text,a.list-group-item.active:hover .list-group-item-text{color:#e1edf7}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.panel-heading>.dropdown .dropdown-toggle,.panel-title,.panel-title>a{color:inherit}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-title,.panel>.list-group,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-top-right-radius:3px;border-top-left-radius:3px}.panel-group .panel-heading,.panel>.list-group:last-child .list-group-item:last-child,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel-title{margin-top:0;font-size:16px}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:last-child .list-group-item:last-child,.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:3px;border-top-left-radius:3px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-right-radius:3px;border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px;overflow:hidden}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading+.panel-collapse .panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#555;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse .panel-body{border-top-color:#ddd}.panel-default>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse .panel-body{border-top-color:#428bca}.panel-primary>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#428bca}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse .panel-body{border-top-color:#d6e9c6}.panel-success>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse .panel-body{border-top-color:#bce8f1}.panel-info>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse .panel-body{border-top-color:#faebcc}.panel-warning>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse .panel-body{border-top-color:#ebccd1}.panel-danger>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{font-size:21px;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.carousel-caption,.carousel-control{text-shadow:0 1px 2px rgba(0,0,0,.6)}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.modal-content,.popover{background-clip:padding-box}.modal{display:none;overflow:auto;overflow-y:scroll;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5;min-height:16.43px}.tooltip.bottom .tooltip-arrow,.tooltip.bottom-left .tooltip-arrow,.tooltip.bottom-right .tooltip-arrow{top:0;border-width:0 5px 5px;border-bottom-color:#000}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:20px}.popover,.tooltip,.tooltip-arrow{position:absolute}.modal-footer{margin-top:15px;padding:19px 20px 20px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{z-index:1030;display:block;visibility:visible;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;right:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{left:50%;margin-left:-5px}.tooltip.bottom-left .tooltip-arrow{left:5px}.tooltip.bottom-right .tooltip-arrow{right:5px}.popover{top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);white-space:normal}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:400;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block}.carousel,.carousel-inner{position:relative}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.bottom>.arrow:after,.popover.left>.arrow:after,.popover.right>.arrow:after,.popover.top>.arrow:after{content:" "}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.popover.right>.arrow:after{left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel-inner{overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center}.carousel-control.left{background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,.5) 0),color-stop(rgba(0,0,0,.0001) 100%));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,.0001) 0),color-stop(rgba(0,0,0,.5) 100%));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:focus,.carousel-control:hover{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;margin-top:-10px;margin-left:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:transparent}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}.carousel-caption .btn,.text-hide{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-15px;margin-left:-15px;font-size:30px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{content:" ";display:table}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.form-horizontal .form-group:after,.modal-footer:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.hidden,.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;background-color:transparent;border:0}.hidden{visibility:hidden!important}.affix{position:fixed}@-ms-viewport{width:device-width}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (min-width:768px)and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:992px)and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px)and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px)and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}.hidden-print{display:none!important}}

#marker-start-L3N0eWxlLmNzcw.Lw {
}

html {
    height: 100%;
    overflow: auto;
}

body {
    height: auto;
    min-height: 100%;
    overflow: hidden;
    position: relative;
}

p {
    word-wrap: break-word;
}

a {
    color: #3177bd;
}

    a:hover {
        color: #d9534f;
        text-decoration: underline;
    }

h6 {
    line-height: 25.71428572px;
    font-size: 18px;
}

h5 {
    line-height: 28.57142858px;
    font-size: 20px;
}

h4 {
    line-height: 34.2857143px;
    font-size: 24px;
}

h3 {
    line-height: 42.85714287px;
    text-decoration: none;
    font-size: 30px;
}

    h3 a:hover {
        text-decoration: none;
    }

h2 {
    line-height: 68.57142859px;
    text-decoration: none;
    font-size: 48px;
}

    h2 a:hover {
        text-decoration: none;
    }

h1 {
    line-height: 85.71428574px;
    font-size: 60px;
}

    h1 a:hover {
        text-decoration: none;
    }

.Normal,
.NormalDisabled,
.NormalDeleted {
    font-family: Arial;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555555;
    /*background-color: @body-bg;*/
}

#ControlBar *,
.actionMenu * {
    -webkit-box-sizing: content-box !important;
    -moz-box-sizing: content-box !important;
    box-sizing: content-box !important;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #777777;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

    select:focus,
    textarea:focus,
    input[type="text"]:focus,
    input[type="password"]:focus,
    input[type="datetime"]:focus,
    input[type="datetime-local"]:focus,
    input[type="date"]:focus,
    input[type="month"]:focus,
    input[type="time"]:focus,
    input[type="week"]:focus,
    input[type="number"]:focus,
    input[type="email"]:focus,
    input[type="url"]:focus,
    input[type="search"]:focus,
    input[type="tel"]:focus,
    input[type="color"]:focus {
        border-color: #66afe9;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
    }

    select::-moz-placeholder,
    textarea::-moz-placeholder,
    input[type="text"]::-moz-placeholder,
    input[type="password"]::-moz-placeholder,
    input[type="datetime"]::-moz-placeholder,
    input[type="datetime-local"]::-moz-placeholder,
    input[type="date"]::-moz-placeholder,
    input[type="month"]::-moz-placeholder,
    input[type="time"]::-moz-placeholder,
    input[type="week"]::-moz-placeholder,
    input[type="number"]::-moz-placeholder,
    input[type="email"]::-moz-placeholder,
    input[type="url"]::-moz-placeholder,
    input[type="search"]::-moz-placeholder,
    input[type="tel"]::-moz-placeholder,
    input[type="color"]::-moz-placeholder {
        color: #dddddd;
        opacity: 1;
    }

    select:-ms-input-placeholder,
    textarea:-ms-input-placeholder,
    input[type="text"]:-ms-input-placeholder,
    input[type="password"]:-ms-input-placeholder,
    input[type="datetime"]:-ms-input-placeholder,
    input[type="datetime-local"]:-ms-input-placeholder,
    input[type="date"]:-ms-input-placeholder,
    input[type="month"]:-ms-input-placeholder,
    input[type="time"]:-ms-input-placeholder,
    input[type="week"]:-ms-input-placeholder,
    input[type="number"]:-ms-input-placeholder,
    input[type="email"]:-ms-input-placeholder,
    input[type="url"]:-ms-input-placeholder,
    input[type="search"]:-ms-input-placeholder,
    input[type="tel"]:-ms-input-placeholder,
    input[type="color"]:-ms-input-placeholder {
        color: #dddddd;
    }

    select::-webkit-input-placeholder,
    textarea::-webkit-input-placeholder,
    input[type="text"]::-webkit-input-placeholder,
    input[type="password"]::-webkit-input-placeholder,
    input[type="datetime"]::-webkit-input-placeholder,
    input[type="datetime-local"]::-webkit-input-placeholder,
    input[type="date"]::-webkit-input-placeholder,
    input[type="month"]::-webkit-input-placeholder,
    input[type="time"]::-webkit-input-placeholder,
    input[type="week"]::-webkit-input-placeholder,
    input[type="number"]::-webkit-input-placeholder,
    input[type="email"]::-webkit-input-placeholder,
    input[type="url"]::-webkit-input-placeholder,
    input[type="search"]::-webkit-input-placeholder,
    input[type="tel"]::-webkit-input-placeholder,
    input[type="color"]::-webkit-input-placeholder {
        color: #dddddd;
    }

    select[disabled],
    textarea[disabled],
    input[type="text"][disabled],
    input[type="password"][disabled],
    input[type="datetime"][disabled],
    input[type="datetime-local"][disabled],
    input[type="date"][disabled],
    input[type="month"][disabled],
    input[type="time"][disabled],
    input[type="week"][disabled],
    input[type="number"][disabled],
    input[type="email"][disabled],
    input[type="url"][disabled],
    input[type="search"][disabled],
    input[type="tel"][disabled],
    input[type="color"][disabled],
    select[readonly],
    textarea[readonly],
    input[type="text"][readonly],
    input[type="password"][readonly],
    input[type="datetime"][readonly],
    input[type="datetime-local"][readonly],
    input[type="date"][readonly],
    input[type="month"][readonly],
    input[type="time"][readonly],
    input[type="week"][readonly],
    input[type="number"][readonly],
    input[type="email"][readonly],
    input[type="url"][readonly],
    input[type="search"][readonly],
    input[type="tel"][readonly],
    input[type="color"][readonly],
    fieldset[disabled] select,
    fieldset[disabled] textarea,
    fieldset[disabled] input[type="text"],
    fieldset[disabled] input[type="password"],
    fieldset[disabled] input[type="datetime"],
    fieldset[disabled] input[type="datetime-local"],
    fieldset[disabled] input[type="date"],
    fieldset[disabled] input[type="month"],
    fieldset[disabled] input[type="time"],
    fieldset[disabled] input[type="week"],
    fieldset[disabled] input[type="number"],
    fieldset[disabled] input[type="email"],
    fieldset[disabled] input[type="url"],
    fieldset[disabled] input[type="search"],
    fieldset[disabled] input[type="tel"],
    fieldset[disabled] input[type="color"] {
        cursor: not-allowed;
        background-color: #f5f5f5;
        opacity: 1;
    }

    textarea,
    select[multiple] {
        height: auto;
    }

    input[type="text"].input-sm,
    input[type="password"].input-sm,
    input[type="datetime"].input-sm,
    input[type="datetime-local"].input-sm,
    input[type="date"].input-sm,
    input[type="month"].input-sm,
    input[type="time"].input-sm,
    input[type="week"].input-sm,
    input[type="number"].input-sm,
    input[type="email"].input-sm,
    input[type="url"].input-sm,
    input[type="search"].input-sm,
    input[type="tel"].input-sm,
    input[type="color"].input-sm {
        height: 30px;
        padding: 5px 10px;
        font-size: 12px;
        line-height: 1.5;
        border-radius: 3px;
    }

    input[type="text"].input-lg,
    input[type="password"].input-lg,
    input[type="datetime"].input-lg,
    input[type="datetime-local"].input-lg,
    input[type="date"].input-lg,
    input[type="month"].input-lg,
    input[type="time"].input-lg,
    input[type="week"].input-lg,
    input[type="number"].input-lg,
    input[type="email"].input-lg,
    input[type="url"].input-lg,
    input[type="search"].input-lg,
    input[type="tel"].input-lg,
    input[type="color"].input-lg {
        height: 46px;
        padding: 10px 16px;
        font-size: 18px;
        line-height: 1.33;
        border-radius: 6px;
    }

.bd-container-inner, [data-aligncontent-size='sheet'] > .bd-section-inner {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    .bd-container-inner, [data-aligncontent-size='sheet'] > .bd-section-inner {
        max-width: none;
    }
}

@media (min-width: 768px) {
    .bd-container-inner, [data-aligncontent-size='sheet'] > .bd-section-inner {
        max-width: 740px;
    }
}

@media (min-width: 992px) {
    .bd-container-inner, [data-aligncontent-size='sheet'] > .bd-section-inner {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .bd-container-inner, [data-aligncontent-size='sheet'] > .bd-section-inner {
        max-width: 1160px;
    }
}

.bd-container-inner {
    position: relative;
}

.bd-container-inner,
[data-aligncontent-size="sheet"] > .bd-section-inner,
.bd-page-width .bd-background-width > .bd-container-inner {
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

@media (max-width: 767px) {
    .bd-container-inner,
    [data-aligncontent-size="sheet"] > .bd-section-inner,
    .bd-page-width .bd-background-width > .bd-container-inner {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.container .container-fluid,
.bd-container-inner .container-fluid,
.bd-container-inner .bd-container-inner,
[data-aligncontent-size="sheet"] .bd-section-inner .bd-container-inner {
    padding-left: 0;
    padding-right: 0;
}

.bd-container-inner-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

#marker-end-L3N0eWxlLmNzcw.Lw {
}

#marker-start-L3N0eWxlLmNzcw.L3RlbXBsYXRlcy9kZWZhdWx0 {
}

#marker-end-L3N0eWxlLmNzcw.L3RlbXBsYXRlcy9kZWZhdWx0 {
}

#marker-start-L3N0eWxlLmNzcw.L3RlbXBsYXRlcy9ob21l {
}

.bd-body-1 {
    position: relative;
}

#marker-end-L3N0eWxlLmNzcw.L3RlbXBsYXRlcy9ob21l {
}

#marker-start-L3N0eWxlLmNzcw.L3RlbXBsYXRlcy9wYWdlVGVtcGxhdGU {
}

.bd-body-7 {
    position: relative;
}

#marker-end-L3N0eWxlLmNzcw.L3RlbXBsYXRlcy9wYWdlVGVtcGxhdGU {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQWZmaXhDb3JlQ29tbW9u {
}

[data-affix].affix {
    height: auto;
}

@media (min-width: 1200px) {
    [data-affix][data-enable-lg] + .bd-affix-fake {
        display: block;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    [data-affix][data-enable-md] + .bd-affix-fake {
        display: block;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    [data-affix][data-enable-sm] + .bd-affix-fake {
        display: block;
    }
}

@media (max-width: 767px) {
    [data-affix][data-enable-xs] + .bd-affix-fake {
        display: block;
    }
}

.bd-affix-fake {
    display: none;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQWZmaXhDb3JlQ29tbW9u {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQWxlcnRzTWl4aW4 {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQWxlcnRzTWl4aW4 {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQWxpZ25Db250ZW50Q29yZUNvbW1vbg {
}

.bd-aligncontent[data-aligncontent-size="sheet"] > .bd-section-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

    .bd-aligncontent[data-aligncontent-size="sheet"] > .bd-section-inner > .bd-section-inner > .bd-section-align-wrapper {
        height: auto;
    }

.bd-aligncontent[data-aligncontent-size="page"] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

    .bd-aligncontent[data-aligncontent-size="page"] > .bd-container-inner,
    .bd-aligncontent[data-aligncontent-size="page"] > .bd-section-inner {
        height: auto;
    }

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQWxpZ25Db250ZW50Q29yZUNvbW1vbg {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQW5pbWF0aW9uQ29yZUNvbW1vbg {
}
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT
Copyright (c) 2015 Daniel Eden
*/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .animated.infinite {
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
    }

    .animated.hinge {
        -webkit-animation-duration: 2s;
        animation-duration: 2s;
    }

@-webkit-keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        -ms-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        -ms-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        -ms-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
}

@-webkit-keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

@keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        -ms-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        -ms-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        -ms-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        -ms-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        -ms-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        -ms-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

@-webkit-keyframes shake {
    0%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

@keyframes shake {
    0%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        -ms-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        -ms-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        -ms-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        -ms-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        -ms-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        -ms-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        -ms-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.swing {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        -ms-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none;
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        -ms-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        -ms-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        -ms-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        -ms-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        -ms-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}

@-webkit-keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        -ms-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        -ms-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        -ms-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        -ms-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        -ms-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

@-webkit-keyframes bounceInDown {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInDown {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        -ms-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        -ms-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        -ms-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        -ms-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInLeft {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        -ms-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        -ms-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        -ms-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        -ms-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInRight {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        -ms-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        -ms-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        -ms-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        -ms-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInUp {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        -ms-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        -ms-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        -ms-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        -ms-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        -ms-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        -ms-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        -ms-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        -ms-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        -ms-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        -ms-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        -ms-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        -ms-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        -ms-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        -ms-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        -ms-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        -ms-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        -ms-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        -ms-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        -ms-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        -ms-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        -ms-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        -ms-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        -ms-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        -ms-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        -ms-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        -ms-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        -ms-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -ms-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    -ms-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        -ms-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: skewX(20deg);
        -ms-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: skewX(-5deg);
        -ms-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        -ms-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        -ms-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        -ms-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        -ms-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        -ms-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        -ms-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        -ms-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        -ms-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        -ms-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        -ms-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        -ms-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        -ms-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        -ms-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        -ms-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        -ms-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        -ms-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        -ms-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    100% {
        opacity: 0;
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        -ms-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    100% {
        opacity: 0;
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        -ms-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        -ms-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
        transform-origin: left center;
    }
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        -ms-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
        transform-origin: right center;
    }
}

.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        -ms-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}
/* Slide In Left Medium */
@-webkit-keyframes slideInLeftMedium {
    0% {
        -webkit-transform: translateX(-60%);
        transform: translateX(-60%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInLeftMedium {
    0% {
        -webkit-transform: translateX(-60%);
        -ms-transform: translateX(-60%);
        transform: translateX(-60%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.slideInLeftMedium {
    -webkit-animation-name: slideInLeftMedium;
    animation-name: slideInLeftMedium;
}
/* Slide In Left Short */
@-webkit-keyframes slideInLeftShort {
    0% {
        -webkit-transform: translateX(-30%);
        transform: translateX(-30%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInLeftShort {
    0% {
        -webkit-transform: translateX(-30%);
        -ms-transform: translateX(-30%);
        transform: translateX(-30%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.slideInLeftShort {
    -webkit-animation-name: slideInLeftShort;
    animation-name: slideInLeftShort;
}
/* Slide in Right */
@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}
/* Slide in Right Medium */
@-webkit-keyframes slideInRightMedium {
    0% {
        -webkit-transform: translateX(60%);
        transform: translateX(60%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInRightMedium {
    0% {
        -webkit-transform: translateX(60%);
        -ms-transform: translateX(60%);
        transform: translateX(60%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.slideInRightMedium {
    -webkit-animation-name: slideInRightMedium;
    animation-name: slideInRightMedium;
}
/* Slide in Right Short */
@-webkit-keyframes slideInRightShort {
    0% {
        -webkit-transform: translateX(30%);
        transform: translateX(30%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInRightShort {
    0% {
        -webkit-transform: translateX(30%);
        -ms-transform: translateX(30%);
        transform: translateX(30%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.slideInRightShort {
    -webkit-animation-name: slideInRightShort;
    animation-name: slideInRightShort;
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQW5pbWF0aW9uQ29yZUNvbW1vbg {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQmxvZ0NvbW1vbg {
}

.bd-pager-6 ul {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.bd-pager-6 ul {
    display: inline-block;
    width: 100%;
    margin: 0;
}

    .bd-pager-6 ul li {
        display: inline-block;
    }

    .bd-pager-6 ul > li:first-child {
        float: left;
    }

    .bd-pager-6 ul > li:last-child {
        float: right;
    }

.bd-pager-6 > .bd-pagination-5 > li.bd-paginationitem-5 > a,
.bd-pager-6 > .bd-pagination-5 > li.bd-paginationitem-5 > span,
.bd-pager-6 > .bd-pagination-5 > li.bd-paginationitem-5 > a:link,
.bd-pager-6 > .bd-pagination-5 > li.bd-paginationitem-5 > a:visited {
    border-radius: 0px;
}

.bd-pagination-5.right {
    text-align: right;
}

.bd-pagination-5.center {
    text-align: center;
}

.bd-pagination-5 > *:last-child {
    margin-right: 0;
}

.bd-pagination-5 span {
    cursor: default;
}

.pagination > ul.bd-pagination-5 > .active > a,
.pagination > ul.bd-pagination-5 > .active > span {
    color: inherit;
    line-height: inherit;
}

.bd-pagination-5 > li.bd-paginationitem-5 > a,
.bd-pagination-5 > li.bd-paginationitem-5 > span,
.bd-pagination-5 > li.bd-paginationitem-5 > a:link,
.bd-pagination-5 > li.bd-paginationitem-5 > a:visited {
    color: #555555;
    border: 1px solid #ffffff;
    border-radius: 0px;
}

    .bd-pagination-5 > li.bd-paginationitem-5 > a:hover {
        background-color: #dddddd;
        background-image: none;
    }

.bd-pagination-5 > li.active.bd-paginationitem-5 > a,
.bd-pagination-5 > li.active.bd-paginationitem-5 > span {
    color: inherit;
    background-color: #f5f5f5;
    font-weight: bold;
    background-image: none;
}

.bd-comments-5 ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bd-comments-5 li {
    display: block;
}

    .bd-comments-5 li > ul {
        margin-left: 20px;
    }

.bd-comment-5 {
    padding: 5px;
}

.bd-griditem-28 {
    margin-bottom: 20px;
}

.separated-item-28 {
    position: relative;
    z-index: 0;
}

    .separated-item-28:before,
    .separated-item-28:after {
        content: "";
        position: absolute;
        z-index: 10;
    }

    .separated-item-28:before {
        top: 0;
        bottom: 0;
        left: 0;
    }

    .separated-item-28:after {
        left: 0;
        right: 0;
        bottom: 10px;
    }

.first-col.separated-item-28:after {
    left: 5px;
}

.last-col.separated-item-28:after {
    right: 5px;
}

.separated-item-28.first-col:before,
.separated-item-28.last-row:after {
    content: none;
}

.bd-pagination-6.right {
    text-align: right;
}

.bd-pagination-6.center {
    text-align: center;
}

.bd-pagination-6 > *:last-child {
    margin-right: 0;
}

.bd-pagination-6 span {
    cursor: default;
}

.pagination > ul.bd-pagination-6 > .active > a,
.pagination > ul.bd-pagination-6 > .active > span {
    color: inherit;
    line-height: inherit;
}

.bd-pagination-6 > li.bd-paginationitem-6 > a,
.bd-pagination-6 > li.bd-paginationitem-6 > span,
.bd-pagination-6 > li.bd-paginationitem-6 > a:link,
.bd-pagination-6 > li.bd-paginationitem-6 > a:visited {
    color: #555555;
    border: 1px solid #ffffff;
    border-radius: 0px;
}

    .bd-pagination-6 > li.bd-paginationitem-6 > a:hover {
        background-color: #dddddd;
        background-image: none;
    }

.bd-pagination-6 > li.active.bd-paginationitem-6 > a,
.bd-pagination-6 > li.active.bd-paginationitem-6 > span {
    color: inherit;
    background-color: #f5f5f5;
    font-weight: bold;
    background-image: none;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQmxvZ0NvbW1vbg {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQm9vdHN0cmFwQnV0dG9u {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQm9vdHN0cmFwQnV0dG9u {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQm9vdHN0cmFwQnV0dG9uQ29tbW9u {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQm9vdHN0cmFwQnV0dG9uQ29tbW9u {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQm9vdHN0cmFwSW1hZ2VDb21tb24 {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQm9vdHN0cmFwSW1hZ2VDb21tb24 {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQ29udGFpbmVySW5uZXJFZmZlY3RDb3JlQ29tbW9u {
}

.bd-page-width .bd-container-inner {
    padding-left: 0px;
    padding-right: 0px;
}

.bd-page-width > .bd-container-inner,
.bd-page-width *:not(.bd-background-width) > .bd-container-inner {
    max-width: none;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQ29udGFpbmVySW5uZXJFZmZlY3RDb3JlQ29tbW9u {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQ29udGVudExheW91dENvcmVDb21tb24 {
}

.bd-flex-vertical,
.bd-flex-horizontal {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.bd-flex-vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.bd-flex-wide {
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    min-width: 0;
    min-height: 0;
}

    .bd-flex-wide:not(.bd-flex-horizontal) {
        width: 100%;
        /* IE10-11 flex-basis with border-box fix */
    }

.bd-flex-fixed {
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQ29udGVudExheW91dENvcmVDb21tb24 {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvR3JpZENvcmVDb21tb24 {
}

.bd-empty-grid-item {
    clear: both;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvR3JpZENvcmVDb21tb24 {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvSG92ZXJCb3hDb3JlQ29tbW9u {
}

.bd-backSlide,
.bd-overSlide {
    display: block;
}

    .bd-backSlide,
    .bd-backSlide > *,
    .bd-overSlide,
    .bd-overSlide > *,
    .bd-slidesWrapper {
        width: 100%;
        height: 100%;
    }

.bd-slidesWrapper {
    overflow: hidden;
    position: relative;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvSG92ZXJCb3hDb3JlQ29tbW9u {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvSWNvbkNvcmVDb21tb24 {
}

.bd-icon,
[class^="icon-"],
[class*=" icon-"] {
    display: inline-block;
    text-decoration: none;
    speak: none;
}

    .bd-icon:before,
    [class^="icon-"]:before,
    [class*=" icon-"]:before {
        display: inline-block;
        vertical-align: middle;
        text-decoration: none;
        font-style: normal;
        font-weight: normal;
        text-align: center;
        text-transform: none;
        width: auto;
        opacity: 1;
        font-family: 'Billion Web Font';
    }

    .bd-icon > span:first-child,
    [class^="icon-"] > span:first-child,
    [class*=" icon-"] > span:first-child {
        vertical-align: middle;
    }

.bd-iconlink {
    display: inline-block;
    color: #3177bd;
    font-size: 30px;
}

a.bd-iconlink:hover {
    text-decoration: none;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvSWNvbkNvcmVDb21tb24 {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvSW1hZ2VTY2FsaW5nQ29yZUNvbW1vbg {
}

.bd-imagescaling-img img {
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvSW1hZ2VTY2FsaW5nQ29yZUNvbW1vbg {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvTGF5b3V0Q29yZUNvbW1vbg {
}

.bd-column {
    min-height: 0;
    min-width: 0;
}

.bd-row-flex.row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

    .bd-row-flex.row > [class*="bd-columnwrapper-"] {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        min-height: 0;
        min-width: 0;
    }

        .bd-row-flex.row > [class*="bd-columnwrapper-"] > .bd-column {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-flex: 1;
            -webkit-flex-grow: 1;
            -ms-flex-positive: 1;
            flex-grow: 1;
        }

.bd-row-align-middle.bd-row-flex.row > [class*="bd-columnwrapper-"] > .bd-column {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.bd-row-align-bottom.bd-row-flex.row > [class*="bd-columnwrapper-"] > .bd-column {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

.bd-row-flex.row > [class*="bd-columnwrapper-"] > .bd-column > .bd-vertical-align-wrapper {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-height: 0;
    min-width: 0;
}

.bd-row-flex.row:before,
.bd-row-flex.row:after {
    display: none;
}

.bd-columns > .bd-container-inner > .container-fluid,
.bd-columns > .bd-container-inner > .container-fluid > .row {
    height: 100%;
}

.bd-columns:before {
    clear: both;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvTGF5b3V0Q29yZUNvbW1vbg {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvTGF5b3V0SnNDb3JlQ29tbW9u {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvTGF5b3V0SnNDb3JlQ29tbW9u {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvTGlnaHRib3hDb21tb24 {
}

.bd-lightbox {
    background: #333;
    background: rgba(0, 0, 0, 0.8);
    bottom: 0;
    left: 0;
    padding: 0 100px;
    position: fixed;
    right: 0;
    text-align: center;
    top: 0;
    z-index: 1000000;
}

    .bd-lightbox .lightbox-image {
        border: 6px solid #fff;
        border-radius: 3px;
        display: none;
        max-width: 100%;
        vertical-align: middle;
    }

        .bd-lightbox .lightbox-image.active {
            display: inline-block;
        }

    .bd-lightbox .lightbox-error {
        background: #fff;
        border: 1px solid #b4b4b4;
        border-radius: 10px;
        box-shadow: 0 2px 5px #333;
        height: 80px;
        opacity: .95;
        padding: 20px;
        position: fixed;
        width: 300px;
        z-index: 100;
    }

    .bd-lightbox .loading {
        background: #ffffff url(images/preloader01.gif) center center no-repeat;
        border: 1px solid #b4b4b4;
        border-radius: 10px;
        box-shadow: 0 2px 5px #333;
        height: 32px;
        opacity: .5;
        padding: 10px;
        position: fixed;
        width: 32px;
        z-index: 10100;
    }

    .bd-lightbox .arrow {
        cursor: pointer;
        height: 100px;
        opacity: .5;
        filter: alpha(opacity=50);
        position: fixed;
        width: 82px;
        z-index: 10003;
    }

        .bd-lightbox .arrow.left {
            left: 9px;
        }

        .bd-lightbox .arrow.right {
            right: 9px;
        }

        .bd-lightbox .arrow:hover {
            opacity: 1;
            filter: alpha(opacity=100);
        }

        .bd-lightbox .arrow.disabled {
            display: none;
        }

    .bd-lightbox .arrow-t,
    .bd-lightbox .arrow-b {
        background-color: #fff;
        border-radius: 3px;
        height: 6px;
        position: relative;
        width: 30px;
    }

html[dir="rtl"] .bd-lightbox .arrow-t,
html[dir="rtl"] .bd-lightbox .arrow-b {
    right: 26px;
}

html[dir="ltr"] .bd-lightbox .arrow-t,
html[dir="ltr"] .bd-lightbox .arrow-b {
    left: 26px;
}

.bd-lightbox .arrow-t {
    top: 38px;
}

.bd-lightbox .arrow-b {
    top: 50px;
}

.bd-lightbox .close {
    cursor: pointer;
    height: 22px;
    opacity: .5;
    filter: alpha(opacity=50);
    position: fixed;
    right: 39px;
    top: 30px;
    width: 22px;
    z-index: 10003;
}

    .bd-lightbox .close:hover {
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .bd-lightbox .close .cw,
    .bd-lightbox .close .ccw {
        background-color: #fff;
        border-radius: 3px;
        height: 6px;
        position: absolute;
        left: -4px;
        top: 8px;
        width: 30px;
    }

.bd-lightbox .cw {
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    /* IE 9 */
    -webkit-transform: rotate(45deg);
    /* Safari and Chrome */
    -o-transform: rotate(45deg);
    /* Opera */
    -moz-transform: rotate(45deg);
    /* Firefox */
}

.bd-lightbox .ccw {
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    /* IE 9 */
    -webkit-transform: rotate(-45deg);
    /* Safari and Chrome */
    -o-transform: rotate(-45deg);
    /* Opera */
    -moz-transform: rotate(-45deg);
    /* Firefox */
}

.bd-lightbox .close-alt,
.bd-lightbox .arrow-right-alt,
.bd-lightbox .arrow-left-alt {
    color: #fff;
    display: none;
    font-size: 2.5em;
    line-height: 100%;
}

.ie8 .bd-lightbox .close-alt,
.ie8 .bd-lightbox .arrow-right-alt,
.ie8 .bd-lightbox .arrow-left-alt {
    display: block;
}

.ie8 .bd-lightbox .cw,
.ie8 .bd-lightbox .ccw {
    display: none;
}

.ie7 .close-alt,
.ie7 .arrow-right-alt,
.ie7 .arrow-left-alt {
    display: block !important;
}

.ie7 .cw,
.ie7 .ccw {
    display: none !important;
}

.bd-lightbox,
.lightbox,
.bd-lightbox .lightbox-image {
    cursor: pointer;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvTGlnaHRib3hDb21tb24 {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvTWVudUNvcmVDb21tb24 {
}

@media (min-width: 768px) {
    html[dir="rtl"] .navbar-left {
        float: right !important;
    }
}

html[dir="rtl"] .navbar-left > li {
    float: right;
}

@media (min-width: 768px) {
    html[dir="rtl"] .navbar-right {
        float: left !important;
    }
}

html[dir="rtl"] .navbar-right > li {
    float: right;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvTWVudUNvcmVDb21tb24 {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvUGFyYWxsYXhCYWNrZ3JvdW5kQ29yZUNvbW1vbg {
}

.bd-parallax-image {
    min-width: 100vw;
    min-height: 100vh;
    position: absolute;
    background-size: cover;
    left: 0;
    top: 0;
    width: auto;
}

.bd-parallax-image-wrapper {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.bd-parallax-bg-effect {
    position: relative;
}

    .bd-parallax-bg-effect[data-control-selector*=".bd-layoutcolumn-"] {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
    }

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvUGFyYWxsYXhCYWNrZ3JvdW5kQ29yZUNvbW1vbg {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvUHJvZHVjdHNTbGlkZXJDb3JlQ29tbW9u {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvUHJvZHVjdHNTbGlkZXJDb3JlQ29tbW9u {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvUmliYm9uQ29yZUNvbW1vbg {
}

.bd-ribbon-core.bd-ribbon {
    padding-left: 2em;
    padding-right: 2em;
    padding-bottom: 1em;
    z-index: 500;
}

    .bd-ribbon-core.bd-ribbon .ribbon-inner:before,
    .bd-ribbon-core.bd-ribbon .ribbon-inner:after {
        bottom: -1em;
        content: '';
        display: block;
        position: absolute;
        z-index: -2;
    }

    .bd-ribbon-core.bd-ribbon .ribbon-inner .ribbon-content:before,
    .bd-ribbon-core.bd-ribbon .ribbon-inner .ribbon-content:after {
        border-style: solid;
        bottom: -1em;
        content: '';
        display: block;
        position: absolute;
        z-index: -1;
    }

    .bd-ribbon-core.bd-ribbon .ribbon-inner {
        position: relative;
        text-align: center;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        height: 100%;
        width: 100%;
    }

    .bd-ribbon-core.bd-ribbon .ribbon-content div {
        height: auto;
        margin: 0;
        padding: 15px 10px;
        word-wrap: break-word;
    }

    .bd-ribbon-core.bd-ribbon .ribbon-inner:before {
        border-left-color: transparent;
        border-right-width: 1.5em;
        left: -2em;
    }

    .bd-ribbon-core.bd-ribbon .ribbon-inner:after {
        border-left-width: 1.5em;
        border-right-color: transparent;
        right: -2em;
    }

    .bd-ribbon-core.bd-ribbon .ribbon-inner .ribbon-content:before {
        border-width: 1em 0 0 1em;
        left: 0;
    }

    .bd-ribbon-core.bd-ribbon .ribbon-inner .ribbon-content:after {
        border-width: 1em 1em 0 0;
        right: 0;
    }

    .bd-ribbon-core.bd-ribbon .ribbon-inner .ribbon-stitches-top,
    .bd-ribbon-core.bd-ribbon .ribbon-inner .ribbon-stitches-bottom {
        position: absolute;
        width: 100%;
    }

    .bd-ribbon-core.bd-ribbon .ribbon-content > div:after {
        content: '\0000a0';
        display: inline-block;
        width: 1px;
    }

    .bd-ribbon-core.bd-ribbon.ribbon-shadow .ribbon-inner {
        -moz-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 1px;
        -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 1px;
        box-shadow: rgba(0, 0, 0, 0.3) 0 1px 1px;
    }

        .bd-ribbon-core.bd-ribbon.ribbon-shadow .ribbon-inner:before {
            -moz-box-shadow: rgba(0, 0, 0, 0.4) 1px 1px 1px;
            -webkit-box-shadow: rgba(0, 0, 0, 0.4) 1px 1px 1px;
            box-shadow: rgba(0, 0, 0, 0.4) 1px 1px 1px;
        }

        .bd-ribbon-core.bd-ribbon.ribbon-shadow .ribbon-inner:after {
            -moz-box-shadow: rgba(0, 0, 0, 0.4) -1px 1px 1px;
            -webkit-box-shadow: rgba(0, 0, 0, 0.4) -1px 1px 1px;
            box-shadow: rgba(0, 0, 0, 0.4) -1px 1px 1px;
        }

        .bd-ribbon-core.bd-ribbon.ribbon-shadow .ribbon-inner .ribbon-stitches-top {
            -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
            -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
        }

    .bd-ribbon-core.bd-ribbon.ribbon-shadow .ribbon-stitches-bottom {
        -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
        -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
        box-shadow: 0 0 2px rgba(255, 255, 255, 0.3);
    }

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvUmliYm9uQ29yZUNvbW1vbg {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvU2VjdGlvbkNvcmVDb21tb24 {
}

.bd-section-align-wrapper {
    margin-left: auto;
    margin-right: auto;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvU2VjdGlvbkNvcmVDb21tb24 {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvU2VwYXJhdG9yQ29yZUNvbW1vbg {
}

.bd-separator-left .bd-container-inner,
.bd-separator-right .bd-container-inner,
.bd-separator-center .bd-container-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.bd-separator-left .bd-separator-inner {
    margin-right: auto;
}

.bd-separator-right .bd-separator-inner {
    margin-left: auto;
}

.bd-separator-center .bd-separator-inner {
    margin: 0 auto;
}

.bd-separator-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
}

    .bd-separator-inner:before,
    .bd-separator-inner:after {
        display: none;
        content: '';
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }

.bd-separator-content-left .bd-separator-inner:after {
    display: block;
}

.bd-separator-content-right .bd-separator-inner:before {
    display: block;
}

.bd-separator-content-center .bd-separator-inner:before,
.bd-separator-content-center .bd-separator-inner:after {
    display: block;
}

.bd-separator-inner .bd-separator-content {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.bd-separator-content-left .bd-separator-inner .bd-separator-content {
    margin-left: 0;
}

.bd-separator-content-right .bd-separator-inner .bd-separator-content {
    margin-right: 0;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvU2VwYXJhdG9yQ29yZUNvbW1vbg {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvU2xpZGVyQ29yZUNvbW1vbg {
}

.bd-slider {
    min-height: 20px;
    clear: both;
}

.bd-left-button,
.bd-right-button {
    display: inline-block;
    font-size: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    bottom: 0;
}

    .bd-left-button:before,
    .bd-right-button:before {
        content: "";
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        width: 0;
    }

    .bd-left-button > a,
    .bd-right-button > a {
        display: inline-block;
        vertical-align: middle;
        font-size: 14px;
        pointer-events: auto;
    }

        .bd-left-button > a > span,
        .bd-right-button > a > span {
            display: inline-block;
        }

.bd-left-button {
    left: 0;
}

    .bd-left-button > a {
        -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
        -moz-transform: matrix(1, 0, 0, 1, 0, 0);
        -ms-transform: matrix(1, 0, 0, 1, 0, 0);
        -o-transform: matrix(1, 0, 0, 1, 0, 0);
        transform: matrix(1, 0, 0, 1, 0, 0);
    }

.bd-right-button {
    right: 0;
}

    .bd-right-button > a {
        -webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
        -moz-transform: matrix(-1, 0, 0, 1, 0, 0);
        -ms-transform: matrix(-1, 0, 0, 1, 0, 0);
        -o-transform: matrix(-1, 0, 0, 1, 0, 0);
        transform: matrix(-1, 0, 0, 1, 0, 0);
    }

.carousel {
    line-height: inherit;
}

    .carousel.bd-carousel-fade .item {
        left: 0 !important;
        -webkit-transition-property: opacity;
        transition-property: opacity;
    }

    .carousel.bd-carousel-fade .next,
    .carousel.bd-carousel-fade .prev {
        opacity: 0;
    }

        .carousel.bd-carousel-fade .next.left,
        .carousel.bd-carousel-fade .prev.right {
            opacity: 1;
            z-index: 1;
        }

    .carousel.bd-carousel-fade .active.left,
    .carousel.bd-carousel-fade .active.right {
        opacity: 0;
        z-index: 2;
    }

    .carousel.bd-carousel-fade .bd-left-button,
    .carousel.bd-carousel-fade .bd-right-button,
    .carousel.bd-carousel-fade .bd-slider-indicators {
        z-index: 3;
    }

    .carousel.bd-carousel-right .next {
        left: -100%;
    }

    .carousel.bd-carousel-right .prev {
        left: 100%;
    }

        .carousel.bd-carousel-right .next.left,
        .carousel.bd-carousel-right .prev.right {
            left: 0;
        }

    .carousel.bd-carousel-right .active.left {
        left: 100%;
    }

    .carousel.bd-carousel-right .active.right {
        left: -100%;
    }

    .carousel.bd-carousel-top .item {
        left: 0;
        -webkit-transition-property: top;
        transition-property: top;
    }

    .carousel.bd-carousel-top .active {
        top: 0;
    }

    .carousel.bd-carousel-top .next {
        top: 100%;
    }

    .carousel.bd-carousel-top .prev {
        top: -100%;
    }

        .carousel.bd-carousel-top .next.left,
        .carousel.bd-carousel-top .prev.right {
            top: 0;
        }

    .carousel.bd-carousel-top .active.left {
        top: -100%;
    }

    .carousel.bd-carousel-top .active.right {
        top: 100%;
    }

    .carousel.bd-carousel-bottom .item {
        left: 0;
        -webkit-transition-property: top;
        transition-property: top;
    }

    .carousel.bd-carousel-bottom .active {
        top: 0;
    }

    .carousel.bd-carousel-bottom .next {
        top: -100%;
    }

    .carousel.bd-carousel-bottom .prev {
        top: 100%;
    }

        .carousel.bd-carousel-bottom .next.left,
        .carousel.bd-carousel-bottom .prev.right {
            top: 0;
        }

    .carousel.bd-carousel-bottom .active.left {
        top: 100%;
    }

    .carousel.bd-carousel-bottom .active.right {
        top: -100%;
    }

    .carousel.bd-vertical-items .bd-left-button,
    .carousel.bd-vertical-items .bd-right-button {
        position: relative;
    }

    .carousel.bd-vertical-items.bd-vertical-arrows .bd-right-button > a {
        -webkit-transform: matrix(1, 0, 0, -1, 0, 0);
        -moz-transform: matrix(1, 0, 0, -1, 0, 0);
        -ms-transform: matrix(1, 0, 0, -1, 0, 0);
        -o-transform: matrix(1, 0, 0, -1, 0, 0);
        transform: matrix(1, 0, 0, -1, 0, 0);
    }

.bd-slider-indicators {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    white-space: nowrap;
    pointer-events: none !important;
}

    .bd-slider-indicators:before {
        content: '';
        display: inline-block;
        height: 100%;
        width: 0;
    }

    .bd-slider-indicators ol {
        pointer-events: auto;
    }

.carousel-inner > [data-url],
header[data-setlocation] {
    cursor: pointer;
}

.bd-slides,
.bd-slide {
    height: 100%;
    width: 100%;
}

.bd-slide {
    z-index: 0;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvU2xpZGVyQ29yZUNvbW1vbg {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvU2xpZGVySnNDb3JlQ29tbW9u {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvU2xpZGVySnNDb3JlQ29tbW9u {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvU21vb3RoU2Nyb2xsQ29yZUNvbW1vbg {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvU21vb3RoU2Nyb2xsQ29yZUNvbW1vbg {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvU21vb3RoV2hlZWxDb3JlQ29tbW9u {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvU21vb3RoV2hlZWxDb3JlQ29tbW9u {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvU3RyZXRjaFRvQm90dG9tQ29yZUNvbW1vbg {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvU3RyZXRjaFRvQm90dG9tQ29yZUNvbW1vbg {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvVGV4dEdyb3VwQ29yZUNvbW1vbg {
}

@media (max-width: 767px) {
    .bd-media-xs.media-object.pull-left,
    .bd-media-xs.media-object.pull-right {
        float: none !important;
    }
}

@media (max-width: 991px) {
    .bd-media-sm.media-object.pull-left,
    .bd-media-sm.media-object.pull-right {
        float: none !important;
    }
}

@media (max-width: 1199px) {
    .bd-media-md.media-object.pull-left,
    .bd-media-md.media-object.pull-right {
        float: none !important;
    }
}

@media (min-width: 1200px) {
    .bd-media-lg.media-object.pull-left,
    .bd-media-lg.media-object.pull-right {
        float: none !important;
    }
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvVGV4dEdyb3VwQ29yZUNvbW1vbg {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvVGV4dHVyZU92ZXJsYXlDb3JlQ29tbW9u {
}

.bd-textureoverlay {
    position: relative;
    z-index: 0;
}

    .bd-textureoverlay:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        display: block;
        -webkit-transform: translate3d(0, 0, 0px);
        transform: translate3d(0, 0, 0px);
    }

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvVGV4dHVyZU92ZXJsYXlDb3JlQ29tbW9u {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvVmlkZW9Db3JlQ29tbW9u {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvVmlkZW9Db3JlQ29tbW9u {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQWNjb3JkaW9u {
}

.bd-menuitem-8 {
    cursor: pointer;
}

.bd-container-41 {
    padding: 10px 20px;
}

.bd-accordion .bd-menuitem-8 {
    list-style: none;
    position: relative;
}

    .bd-accordion .bd-menuitem-8 > a,
    .bd-accordion .bd-menuitem-8 > a:link,
    .bd-accordion .bd-menuitem-8 > a:visited {
        background-color: #f5f5f5;
        color: #777777;
        text-decoration: none;
        padding: 10px 20px;
        background-image: none;
        display: block;
        white-space: nowrap;
    }

        .bd-accordion .bd-menuitem-8 > a:before,
        .bd-accordion .bd-menuitem-8 > a:link:before,
        .bd-accordion .bd-menuitem-8 > a:visited:before {
            display: inline-block;
            vertical-align: middle;
            text-decoration: none;
            font-style: normal;
            font-weight: normal;
            text-align: center;
            text-transform: none;
            width: auto;
            opacity: 1;
            font-family: 'Billion Web Font';
        }

        .bd-accordion .bd-menuitem-8 > a:focus {
            outline-width: 0;
        }

    .bd-accordion .bd-menuitem-8:not(.active) > a.hover:not(.active),
    .bd-accordion .bd-menuitem-8:not(.active) > a:hover:not(.active),
    .bd-accordion .bd-menuitem-8:not(.active) > a:focus:not(.active),
    .bd-accordion .bd-menuitem-8:hover:not(.active) > a:not(.active) {
        background-color: #ededed;
        color: #333333;
        background-image: none;
    }

    .bd-accordion .bd-menuitem-8 > a.active,
    .bd-accordion .bd-menuitem-8.active > a {
        background-color: #ededed;
        color: #333333;
        background-image: none;
    }

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQWNjb3JkaW9u {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvYmxvY2s {
}

.bd-block {
    margin-top: 10px;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .bd-block .bd-blockcontent:not(.shape-only) {
        text-align: left;
    }
}

.bd-block .bd-blockheader h6 {
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    color: #3177bd;
}

.bd-block .bd-blockheader h5 {
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    color: #3177bd;
}

.bd-block .bd-blockheader h4 {
    line-height: 25.71428572px;
    font-weight: normal;
    margin-bottom: 5px;
    color: #777777;
    font-size: 18px;
    text-transform: none;
}

.bd-block .bd-blockheader h3 {
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    color: #3177bd;
}

.bd-block .bd-blockheader h2 {
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    color: #3177bd;
}

.bd-block .bd-blockheader h1 {
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    color: #3177bd;
}

@media (max-width: 767px) {
    .bd-block .bd-blockheader h4 {
        text-align: left;
    }
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvYmxvY2s {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQmxvY2txdW90ZXNNaXhpbg {
}

blockquote:not([class]),
.bd-tagstyles:not(.bd-custom-blockquotes) blockquote,
.bd-blockquotes {
    border-top-width: 0;
    border-right-width: 0;
    border-bottom-width: 0;
    margin-left: 5px;
    border-left: 3px solid #dddddd;
    border-radius: 0px;
}

    blockquote:not([class]),
    .bd-tagstyles:not(.bd-custom-blockquotes) blockquote,
    .bd-blockquotes,
    blockquote:not([class]) p,
    .bd-tagstyles:not(.bd-custom-blockquotes) blockquote p,
    .bd-blockquotes p {
        line-height: 20.00000001px;
        font-size: 14px;
        font-style: italic;
    }

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQmxvY2txdW90ZXNNaXhpbg {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQnVsbGV0TGlzdE1peGlu {
}

.bd-tagstyles:not(.bd-custom-bulletlist):not(.shape-only) ul:not([class*="menu"]),
.bd-bulletlist {
    padding-left: 5px;
}

    .bd-tagstyles:not(.bd-custom-bulletlist):not(.shape-only) ul:not([class*="menu"]) li,
    .bd-bulletlist li {
        list-style: none;
    }

        .bd-tagstyles:not(.bd-custom-bulletlist):not(.shape-only) ul:not([class*="menu"]) li:before,
        .bd-bulletlist li:before {
            display: inline-block;
            vertical-align: middle;
            text-decoration: none;
            font-style: normal;
            font-weight: normal;
            text-align: center;
            text-transform: none;
            width: auto;
            opacity: 1;
            font-family: 'Billion Web Font';
        }

        .bd-icon-1:before,
        .bd-tagstyles:not(.bd-custom-bulletlist):not(.shape-only) ul:not([class*="menu"]) li:before,
        .bd-bulletlist li:before {
            content: '\133';
        }

        .bd-icon-1:before,
        .bd-tagstyles:not(.bd-custom-bulletlist):not(.shape-only) ul:not([class*="menu"]) li:before,
        .bd-bulletlist li:before {
            visibility: inherit;
        }

        .bd-icon-1:before,
        .bd-tagstyles:not(.bd-custom-bulletlist):not(.shape-only) ul:not([class*="menu"]) li:before,
        .bd-bulletlist li:before {
            margin-right: 5px;
        }

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQnVsbGV0TGlzdE1peGlu {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQnV0dG9uTWl4aW4 {
}

.bd-button a {
    line-height: 20.00000001px;
    font-size: 14px;
}

button:not([class]),
input[type="submit"]:not([class]),
input[type="button"]:not([class]),
.bd-tagstyles:not(.bd-custom-button):not(.shape-only) button,
.bd-tagstyles:not(.bd-custom-button):not(.shape-only) input[type="submit"],
.bd-tagstyles:not(.bd-custom-button):not(.shape-only) input[type="button"],
button.bd-button,
input.bd-button,
a.bd-button[href],
.bd-button {
    /* default transparent bg otherwise you get gray default bg */
    background-color: transparent;
}

    button:not([class]),
    input[type="submit"]:not([class]),
    input[type="button"]:not([class]),
    .bd-tagstyles:not(.bd-custom-button):not(.shape-only) button,
    .bd-tagstyles:not(.bd-custom-button):not(.shape-only) input[type="submit"],
    .bd-tagstyles:not(.bd-custom-button):not(.shape-only) input[type="button"],
    button.bd-button,
    input.bd-button,
    a.bd-button[href],
    .bd-button,
    button:not([class]):link,
    input[type="submit"]:not([class]):link,
    input[type="button"]:not([class]):link,
    .bd-tagstyles:not(.bd-custom-button):not(.shape-only) button:link,
    .bd-tagstyles:not(.bd-custom-button):not(.shape-only) input[type="submit"]:link,
    .bd-tagstyles:not(.bd-custom-button):not(.shape-only) input[type="button"]:link,
    button.bd-button:link,
    input.bd-button:link,
    a.bd-button[href]:link,
    .bd-button:link,
    button:not([class]):visited,
    input[type="submit"]:not([class]):visited,
    input[type="button"]:not([class]):visited,
    .bd-tagstyles:not(.bd-custom-button):not(.shape-only) button:visited,
    .bd-tagstyles:not(.bd-custom-button):not(.shape-only) input[type="submit"]:visited,
    .bd-tagstyles:not(.bd-custom-button):not(.shape-only) input[type="button"]:visited,
    button.bd-button:visited,
    input.bd-button:visited,
    a.bd-button[href]:visited,
    .bd-button:visited {
        /* reset browser styles */
        border-width: 0;
        padding: 0;
        color: #ffffff;
        background-color: #3177bd;
        vertical-align: middle;
        display: inline-block;
        text-align: center;
        padding: 5px 15px;
        background-image: none;
    }

        button:not([class]):hover,
        input[type="submit"]:not([class]):hover,
        input[type="button"]:not([class]):hover,
        .bd-tagstyles:not(.bd-custom-button):not(.shape-only) button:hover,
        .bd-tagstyles:not(.bd-custom-button):not(.shape-only) input[type="submit"]:hover,
        .bd-tagstyles:not(.bd-custom-button):not(.shape-only) input[type="button"]:hover,
        button.bd-button:hover,
        input.bd-button:hover,
        a.bd-button[href]:hover,
        .bd-button:hover,
        button:not([class]):focus,
        input[type="submit"]:not([class]):focus,
        input[type="button"]:not([class]):focus,
        .bd-tagstyles:not(.bd-custom-button):not(.shape-only) button:focus,
        .bd-tagstyles:not(.bd-custom-button):not(.shape-only) input[type="submit"]:focus,
        .bd-tagstyles:not(.bd-custom-button):not(.shape-only) input[type="button"]:focus,
        button.bd-button:focus,
        input.bd-button:focus,
        a.bd-button[href]:focus,
        .bd-button:focus {
            background-color: #3c8fe2;
            text-decoration: none;
            color: #ffffff;
            background-image: none;
        }

        button:not([class]):active,
        input[type="submit"]:not([class]):active,
        input[type="button"]:not([class]):active,
        .bd-tagstyles:not(.bd-custom-button):not(.shape-only) button:active,
        .bd-tagstyles:not(.bd-custom-button):not(.shape-only) input[type="submit"]:active,
        .bd-tagstyles:not(.bd-custom-button):not(.shape-only) input[type="button"]:active,
        button.bd-button:active,
        input.bd-button:active,
        a.bd-button[href]:active,
        .bd-button:active {
            background-color: #2b5ea0;
            background-image: none;
        }

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQnV0dG9uTWl4aW4 {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvY2Fyb3VzZWw {
}

.bd-carousel {
    display: inline-block;
}

    .bd-carousel span:before {
        content: '\1fa';
    }

    .bd-carousel span:before {
        visibility: inherit;
    }

    .bd-carousel span:before {
        font-size: 48px;
        color: rgba(204, 204, 204, 0.5);
        line-height: 68.57142859px;
        line-height: 48px;
    }

@media (max-width: 767px) {
    .bd-carousel span:before {
        font-size: 37px;
        line-height: 52.85714287px;
    }
}

.bd-carousel span:hover:before {
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0);
    color: rgba(120, 120, 120, 0.5);
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvY2Fyb3VzZWw {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvY2hlY2tib3hNaXhpbg {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvY2hlY2tib3hNaXhpbg {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvRm9ybUxhYmVsTWl4aW4 {
}

label {
    font-weight: normal;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvRm9ybUxhYmVsTWl4aW4 {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvSE1lbnVNaXhpbg {
}

@media (min-width: 768px) {
    html[dir="rtl"] [data-responsive-menu="true"] .bd-horizontalmenu .bd-menuitem-11:last-child > a {
        border-left-width: 0 !important;
    }
}

html[dir="rtl"] [data-responsive-menu="false"] .bd-horizontalmenu .bd-menuitem-11:last-child > a {
    border-left-width: 0 !important;
}

@media (min-width: 768px) {
    html[dir="ltr"] [data-responsive-menu="true"] .bd-horizontalmenu .bd-menuitem-11:last-child > a {
        border-right-width: 0 !important;
    }
}

html[dir="ltr"] [data-responsive-menu="false"] .bd-horizontalmenu .bd-menuitem-11:last-child > a {
    border-right-width: 0 !important;
}

.bd-menu-11.nav.nav-pills > li + li {
    margin: 0;
}

.bd-menu-11 {
    /* reset default bootstrap values */
    padding: 0;
    margin: 0;
}

.bd-menuitem-11 > a {
    cursor: pointer;
    /* Safari click events fix */
}

.bd-menu-11.nav-pills .bd-menuitem-11 {
    list-style: none;
    position: relative;
}

    .bd-menu-11.nav-pills .bd-menuitem-11 > a,
    .bd-menu-11.nav-pills .bd-menuitem-11 > a:link,
    .bd-menu-11.nav-pills .bd-menuitem-11 > a:visited {
        color: #555555;
        border-radius: 0px;
        display: block;
        white-space: nowrap;
    }

        .bd-menu-11.nav-pills .bd-menuitem-11 > a:before,
        .bd-menu-11.nav-pills .bd-menuitem-11 > a:link:before,
        .bd-menu-11.nav-pills .bd-menuitem-11 > a:visited:before {
            display: inline-block;
            vertical-align: middle;
            text-decoration: none;
            font-style: normal;
            font-weight: normal;
            text-align: center;
            text-transform: none;
            width: auto;
            opacity: 1;
            font-family: 'Billion Web Font';
        }

        .bd-menu-11.nav-pills .bd-menuitem-11 > a:focus {
            outline-width: 0;
        }

    .bd-menu-11.nav-pills .bd-menuitem-11:not(.active) > a.hover:not(.active),
    .bd-menu-11.nav-pills .bd-menuitem-11:not(.active) > a:hover:not(.active),
    .bd-menu-11.nav-pills .bd-menuitem-11:not(.active) > a:focus:not(.active),
    .bd-menu-11.nav-pills .bd-menuitem-11:hover:not(.active) > a:not(.active) {
        color: #3177bd;
        text-decoration: none;
        background-color: #ededed;
        background-image: none;
    }

    .bd-menu-11.nav-pills .bd-menuitem-11 > a.active,
    .bd-menu-11.nav-pills .bd-menuitem-11.active > a {
        color: #3177bd;
        background-color: #f5f5f5;
        background-image: none;
    }

.bd-menu-13-popup {
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    z-index: 1001;
}

    .bd-menu-13-popup.bd-popup-left {
        left: auto;
        right: 0;
    }

    .bd-menu-13-popup,
    .bd-menu-13-popup.bd-popup-right {
        left: 0;
        right: auto;
    }

.bd-menuitem-13 > .bd-menu-13-popup {
    top: -1px;
}

    .bd-menuitem-13 > .bd-menu-13-popup.bd-popup-left {
        left: auto;
        right: 100%;
    }

    .bd-menuitem-13 > .bd-menu-13-popup,
    .bd-menuitem-13 > .bd-menu-13-popup.bd-popup-right {
        left: 100%;
        right: auto;
    }

.bd-menu-13 .bd-menuitem-13:last-child > a:not(.active):not(:hover) {
    border-bottom-width: 0;
}

.bd-menu-13 .bd-menuitem-13:last-child > a:hover {
    border-bottom-width: 0;
}

.bd-menu-13 .bd-menuitem-13:last-child > a.active {
    border-bottom-width: 0;
}

.bd-menu-13 {
    /* reset default bootstrap values */
    padding: 0;
    margin: 0;
    background-color: #ffffff;
    min-width: 160px;
    position: relative;
    -webkit-box-shadow: 4px 4px 0px 0 rgba(0, 0, 0, 0.09);
    -o-box-shadow: 4px 4px 0px 0 rgba(0, 0, 0, 0.09);
    -ms-box-shadow: 4px 4px 0px 0 rgba(0, 0, 0, 0.09);
    -moz-box-shadow: 4px 4px 0px 0 rgba(0, 0, 0, 0.09);
    box-shadow: 4px 4px 0px 0 rgba(0, 0, 0, 0.09);
    margin: 0px;
    border: 1px solid #cccccc;
}

    .bd-menu-13 .bd-menuitem-13 {
        list-style: none;
        position: relative;
    }

        .bd-menu-13 .bd-menuitem-13 > a,
        .bd-menu-13 .bd-menuitem-13 > a:link,
        .bd-menu-13 .bd-menuitem-13 > a:visited {
            color: #777777;
            text-decoration: none;
            padding: 10px;
            display: block;
            white-space: nowrap;
        }

            .bd-menu-13 .bd-menuitem-13 > a:before,
            .bd-menu-13 .bd-menuitem-13 > a:link:before,
            .bd-menu-13 .bd-menuitem-13 > a:visited:before {
                display: inline-block;
                vertical-align: middle;
                text-decoration: none;
                font-style: normal;
                font-weight: normal;
                text-align: center;
                text-transform: none;
                width: auto;
                opacity: 1;
                font-family: 'Billion Web Font';
            }

            .bd-menu-13 .bd-menuitem-13 > a:focus {
                outline-width: 0;
            }

        .bd-menu-13 .bd-menuitem-13:not(.active) > a.hover:not(.active),
        .bd-menu-13 .bd-menuitem-13:not(.active) > a:hover:not(.active),
        .bd-menu-13 .bd-menuitem-13:not(.active) > a:focus:not(.active),
        .bd-menu-13 .bd-menuitem-13:hover:not(.active) > a:not(.active) {
            color: #3177bd;
            text-decoration: none;
            background-color: #ededed;
            background-image: none;
        }

        .bd-menu-13 .bd-menuitem-13 > a.active,
        .bd-menu-13 .bd-menuitem-13.active > a {
            color: #3177bd;
            background-color: #f7f7f7;
            background-image: none;
        }

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvSE1lbnVNaXhpbg {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvSW1hZ2VNaXhpbg {
}

img:not([class]),
.bd-imagestyles {
    vertical-align: middle;
    display: inline-block;
    text-align: center;
}

.bd-tagstyles:not(.bd-custom-image):not(.shape-only) img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
    text-align: center;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvSW1hZ2VNaXhpbg {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvaW5kaWNhdG9ycw {
}

.bd-indicators {
    margin: 0;
    padding: 0;
    text-align: center;
    line-height: 0;
    display: inline-block;
    position: relative;
    z-index: 1;
    margin: 10px;
}

    .bd-indicators > li {
        list-style: none;
        position: relative;
    }

        .bd-indicators > li > a,
        .bd-indicators > li > a:link,
        .bd-indicators > li > a:visited {
            width: 12px;
            height: 12px;
            margin-right: 2px;
            margin-left: 2px;
            border: 1px solid #3177bd;
            border-radius: 50%;
            display: block;
            white-space: nowrap;
        }

            .bd-indicators > li > a:before,
            .bd-indicators > li > a:link:before,
            .bd-indicators > li > a:visited:before {
                display: inline-block;
                vertical-align: middle;
                text-decoration: none;
                font-style: normal;
                font-weight: normal;
                text-align: center;
                text-transform: none;
                width: auto;
                opacity: 1;
                font-family: 'Billion Web Font';
            }

            .bd-indicators > li > a:before,
            .bd-indicators > li > a:link:before,
            .bd-indicators > li > a:visited:before {
                color: #dddddd;
            }

            .bd-indicators > li > a:focus {
                outline-width: 0;
            }

        .bd-indicators > li:not(.active) > a.hover:not(.active),
        .bd-indicators > li:not(.active) > a:hover:not(.active),
        .bd-indicators > li:not(.active) > a:focus:not(.active),
        .bd-indicators > li:hover:not(.active) > a:not(.active) {
            background-color: #8bb6e1;
            background-image: none;
        }

            .bd-indicators > li:not(.active) > a.hover:not(.active):before,
            .bd-indicators > li:not(.active) > a:hover:not(.active):before,
            .bd-indicators > li:not(.active) > a:focus:not(.active):before,
            .bd-indicators > li:hover:not(.active) > a:not(.active):before {
                color: #3177bd;
            }

        .bd-indicators > li > a.active,
        .bd-indicators > li.active > a {
            background-color: #3177bd;
            background-image: none;
        }

            .bd-indicators > li > a.active:before,
            .bd-indicators > li.active > a:before {
                color: #777777;
            }

    .bd-indicators > li {
        display: inline-block;
        cursor: pointer;
    }

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvaW5kaWNhdG9ycw {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvSW5wdXRNaXhpbg {
}

input[type="text"]:not([class]),
input[type="password"]:not([class]),
input[type="datetime"]:not([class]),
input[type="datetime-local"]:not([class]),
input[type="date"]:not([class]),
input[type="month"]:not([class]),
input[type="time"]:not([class]),
input[type="week"]:not([class]),
input[type="number"]:not([class]),
input[type="email"]:not([class]),
input[type="url"]:not([class]),
input[type="search"]:not([class]),
input[type="tel"]:not([class]),
input[type="color"]:not([class]),
textarea:not([class]),
select:not([class]),
.bd-form-input {
    -webkit-box-shadow: none;
    -o-box-shadow: none;
    -ms-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background-color: #ffffff;
    border-radius: 0px;
}

.bd-tagstyles:not(.bd-custom-inputs) input[type="text"],
.bd-tagstyles:not(.bd-custom-inputs) input[type="password"],
.bd-tagstyles:not(.bd-custom-inputs) input[type="datetime"],
.bd-tagstyles:not(.bd-custom-inputs) input[type="datetime-local"],
.bd-tagstyles:not(.bd-custom-inputs) input[type="date"],
.bd-tagstyles:not(.bd-custom-inputs) input[type="month"],
.bd-tagstyles:not(.bd-custom-inputs) input[type="time"],
.bd-tagstyles:not(.bd-custom-inputs) input[type="week"],
.bd-tagstyles:not(.bd-custom-inputs) input[type="number"],
.bd-tagstyles:not(.bd-custom-inputs) input[type="email"],
.bd-tagstyles:not(.bd-custom-inputs) input[type="url"],
.bd-tagstyles:not(.bd-custom-inputs) input[type="search"],
.bd-tagstyles:not(.bd-custom-inputs) input[type="tel"],
.bd-tagstyles:not(.bd-custom-inputs) input[type="color"],
.bd-tagstyles:not(.bd-custom-inputs) textarea,
.bd-tagstyles:not(.bd-custom-inputs) select,
.bd-tagstyles:not(.bd-custom-inputs) .bd-form-input {
    -webkit-box-shadow: none;
    -o-box-shadow: none;
    -ms-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background-color: #ffffff;
    border-radius: 0px;
}

input[type="text"].bd-bootstrapinput.form-control,
input[type="password"].bd-bootstrapinput.form-control,
input[type="datetime"].bd-bootstrapinput.form-control,
input[type="datetime-local"].bd-bootstrapinput.form-control,
input[type="date"].bd-bootstrapinput.form-control,
input[type="month"].bd-bootstrapinput.form-control,
input[type="time"].bd-bootstrapinput.form-control,
input[type="week"].bd-bootstrapinput.form-control,
input[type="number"].bd-bootstrapinput.form-control,
input[type="email"].bd-bootstrapinput.form-control,
input[type="url"].bd-bootstrapinput.form-control,
input[type="search"].bd-bootstrapinput.form-control,
input[type="tel"].bd-bootstrapinput.form-control,
input[type="color"].bd-bootstrapinput.form-control,
textarea.bd-bootstrapinput.form-control,
select.bd-bootstrapinput.form-control,
.bd-form-input {
    -webkit-box-shadow: none;
    -o-box-shadow: none;
    -ms-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background-color: #ffffff;
    border-radius: 0px;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvSW5wdXRNaXhpbg {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvT3JkZXJlZExpc3RNaXhpbg {
}

.bd-tagstyles:not(.bd-custom-orderedlist) ol:not([class*="bd-indicators"]),
.bd-orderedlist {
    padding-left: 28px;
}

    .bd-tagstyles:not(.bd-custom-orderedlist) ol:not([class*="bd-indicators"]) li,
    .bd-orderedlist li {
        position: relative;
    }

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvT3JkZXJlZExpc3RNaXhpbg {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvUGFnZUJhY2tncm91bmRNaXhpbg {
}

.bd-pagebackground {
    background-attachment: fixed;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvUGFnZUJhY2tncm91bmRNaXhpbg {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvUGFnaW5hdGlvbk1peGlu {
}

.bd-pagination.right {
    text-align: right;
}

.bd-pagination.center {
    text-align: center;
}

.bd-pagination > *:last-child {
    margin-right: 0;
}

.bd-pagination span {
    cursor: default;
}

.pagination > ul.bd-pagination > .active > a,
.pagination > ul.bd-pagination > .active > span {
    color: inherit;
    line-height: inherit;
}

.bd-pagination > li.bd-paginationitem-1 > a,
.bd-pagination > li.bd-paginationitem-1 > span,
.bd-pagination > li.bd-paginationitem-1 > a:link,
.bd-pagination > li.bd-paginationitem-1 > a:visited {
    color: #555555;
    border: 1px solid #ffffff;
    border-radius: 0px;
}

.bd-pagination > li.active.bd-paginationitem-1 > a,
.bd-pagination > li.active.bd-paginationitem-1 > span {
    color: inherit;
    background-color: #ededed;
    font-weight: bold;
    background-image: none;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvUGFnaW5hdGlvbk1peGlu {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvUHJvZHVjdE5ld01peGlu {
}

.bd-productnewicon {
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    background-color: rgba(92, 183, 92, 0.75);
    padding: 16px 10px;
    border-radius: 50%;
}

.bd-productnewicon {
    line-height: 17.14285715px;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    color: #ffffff;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvUHJvZHVjdE5ld01peGlu {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvUHJvZHVjdE91dE9mU3RvY2tNaXhpbg {
}

.bd-productoutofstockicon {
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    background-color: rgba(119, 119, 119, 0.5);
    padding: 5px;
}

.bd-productoutofstockicon {
    line-height: 17.14285715px;
    text-align: center;
    font-size: 12px;
    color: #ffffff;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvUHJvZHVjdE91dE9mU3RvY2tNaXhpbg {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvUHJvZHVjdFNhbGVNaXhpbg {
}

.bd-productsaleicon {
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    background-color: rgba(216, 84, 79, 0.75);
    padding: 16px 10px;
    border-radius: 100%;
}

.bd-productsaleicon {
    line-height: 17.14285715px;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    color: #ffffff;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvUHJvZHVjdFNhbGVNaXhpbg {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvcmFkaW9idXR0b25NaXhpbg {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvcmFkaW9idXR0b25NaXhpbg {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvUmF0aW5nTWl4aW4 {
}

.bd-rating {
    display: table;
}

    .bd-rating span {
        display: table-cell;
    }

.bd-icon-3:before {
    content: '\25f';
}

.bd-icon-3:before {
    visibility: inherit;
}

.bd-icon-3:before {
    color: #f0ad4e;
    font-size: 18px;
    line-height: 25.71428572px;
    line-height: 18px;
}

.bd-icon-3:hover.active:before,
.bd-icon-3.active:before {
    color: #2a72ba;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvUmF0aW5nTWl4aW4 {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvU2hlZXRNaXhpbg {
}

.bd-sheetstyles {
    background-color: #ffffff;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvU2hlZXRNaXhpbg {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvVGFibGVNaXhpbg {
}

table:not([class]),
.bd-tagstyles:not(.bd-custom-table) table,
.bd-table {
    border-collapse: collapse;
    width: 100%;
}

    table:not([class]) thead td,
    .bd-tagstyles:not(.bd-custom-table) table thead td,
    .bd-table thead td,
    table:not([class]) thead th,
    .bd-tagstyles:not(.bd-custom-table) table thead th,
    .bd-table thead th {
        border-bottom: 1px solid #dddddd;
    }

    table:not([class]) td,
    .bd-tagstyles:not(.bd-custom-table) table td,
    .bd-table td,
    table:not([class]) th,
    .bd-tagstyles:not(.bd-custom-table) table th,
    .bd-table th {
        padding: 5px;
    }

    table:not([class]) tbody > tr:nth-child(odd) > td,
    .bd-tagstyles:not(.bd-custom-table) table tbody > tr:nth-child(odd) > td,
    .bd-table tbody > tr:nth-child(odd) > td,
    table:not([class]) tbody > tr:nth-child(odd) > th,
    .bd-tagstyles:not(.bd-custom-table) table tbody > tr:nth-child(odd) > th,
    .bd-table tbody > tr:nth-child(odd) > th {
        background-color: #f5f5f5;
        background-image: none;
    }

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvVGFibGVNaXhpbg {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvVk1lbnVNaXhpbg {
}

.bd-verticalmenu {
    display: block;
}

.bd-menuitem-43 {
    position: relative;
}

.bd-verticalmenu .nav-tabs > li,
.bd-verticalmenu .nav-pills > li {
    float: none;
}

.bd-verticalmenu .bd-menu-45-popup {
    top: 0;
    left: 100%;
}

.bd-menu-47.nav.nav-pills > li + li {
    margin: 0;
}

.bd-menu-47 {
    /* reset default bootstrap values */
    padding: 0;
    margin: 0;
}

.bd-menuitem-39 > a {
    cursor: pointer;
    /* Safari click events fix */
}

.bd-menu-47.nav-pills .bd-menuitem-39 {
    list-style: none;
    position: relative;
}

    .bd-menu-47.nav-pills .bd-menuitem-39 > a,
    .bd-menu-47.nav-pills .bd-menuitem-39 > a:link,
    .bd-menu-47.nav-pills .bd-menuitem-39 > a:visited {
        color: #777777;
        padding: 10px;
        border-radius: 0px;
        display: block;
        white-space: nowrap;
    }

        .bd-menu-47.nav-pills .bd-menuitem-39 > a:before,
        .bd-menu-47.nav-pills .bd-menuitem-39 > a:link:before,
        .bd-menu-47.nav-pills .bd-menuitem-39 > a:visited:before {
            display: inline-block;
            vertical-align: middle;
            text-decoration: none;
            font-style: normal;
            font-weight: normal;
            text-align: center;
            text-transform: none;
            width: auto;
            opacity: 1;
            font-family: 'Billion Web Font';
        }

        .bd-menu-47.nav-pills .bd-menuitem-39 > a:focus {
            outline-width: 0;
        }

    .bd-menu-47.nav-pills .bd-menuitem-39:not(.active) > a.hover:not(.active),
    .bd-menu-47.nav-pills .bd-menuitem-39:not(.active) > a:hover:not(.active),
    .bd-menu-47.nav-pills .bd-menuitem-39:not(.active) > a:focus:not(.active),
    .bd-menu-47.nav-pills .bd-menuitem-39:hover:not(.active) > a:not(.active) {
        color: #3177bd;
        text-decoration: none;
        background-color: #ededed;
        background-image: none;
    }

    .bd-menu-47.nav-pills .bd-menuitem-39 > a.active,
    .bd-menu-47.nav-pills .bd-menuitem-39.active > a {
        color: #3177bd;
        background-color: #f7f7f7;
        background-image: none;
    }

.bd-menu-45-popup {
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    z-index: 1001;
}

    .bd-menu-45-popup.bd-popup-left {
        left: auto;
        right: 0;
    }

    .bd-menu-45-popup,
    .bd-menu-45-popup.bd-popup-right {
        left: 0;
        right: auto;
    }

.bd-menuitem-43 > .bd-menu-45-popup {
    top: -1px;
}

    .bd-menuitem-43 > .bd-menu-45-popup.bd-popup-left {
        left: auto;
        right: 100%;
    }

    .bd-menuitem-43 > .bd-menu-45-popup,
    .bd-menuitem-43 > .bd-menu-45-popup.bd-popup-right {
        left: 100%;
        right: auto;
    }

.bd-menu-45 .bd-menuitem-43:last-child > a:not(.active):not(:hover) {
    border-bottom-width: 0;
}

.bd-menu-45 .bd-menuitem-43:last-child > a:hover {
    border-bottom-width: 0;
}

.bd-menu-45 .bd-menuitem-43:last-child > a.active {
    border-bottom-width: 0;
}

.bd-menu-45 {
    /* reset default bootstrap values */
    padding: 0;
    margin: 0;
    background-color: #ffffff;
    min-width: 160px;
    position: relative;
    -webkit-box-shadow: 4px 4px 0px 0 rgba(0, 0, 0, 0.09);
    -o-box-shadow: 4px 4px 0px 0 rgba(0, 0, 0, 0.09);
    -ms-box-shadow: 4px 4px 0px 0 rgba(0, 0, 0, 0.09);
    -moz-box-shadow: 4px 4px 0px 0 rgba(0, 0, 0, 0.09);
    box-shadow: 4px 4px 0px 0 rgba(0, 0, 0, 0.09);
    margin: 0px 2px 0px 0px;
    border: 1px solid #cccccc;
}

    .bd-menu-45 .bd-menuitem-43 {
        list-style: none;
        position: relative;
    }

        .bd-menu-45 .bd-menuitem-43 > a,
        .bd-menu-45 .bd-menuitem-43 > a:link,
        .bd-menu-45 .bd-menuitem-43 > a:visited {
            color: #777777;
            padding: 10px;
            display: block;
            white-space: nowrap;
        }

            .bd-menu-45 .bd-menuitem-43 > a:before,
            .bd-menu-45 .bd-menuitem-43 > a:link:before,
            .bd-menu-45 .bd-menuitem-43 > a:visited:before {
                display: inline-block;
                vertical-align: middle;
                text-decoration: none;
                font-style: normal;
                font-weight: normal;
                text-align: center;
                text-transform: none;
                width: auto;
                opacity: 1;
                font-family: 'Billion Web Font';
            }

            .bd-menu-45 .bd-menuitem-43 > a:focus {
                outline-width: 0;
            }

        .bd-menu-45 .bd-menuitem-43:not(.active) > a.hover:not(.active),
        .bd-menu-45 .bd-menuitem-43:not(.active) > a:hover:not(.active),
        .bd-menu-45 .bd-menuitem-43:not(.active) > a:focus:not(.active),
        .bd-menu-45 .bd-menuitem-43:hover:not(.active) > a:not(.active) {
            color: #3177bd;
            text-decoration: none;
            background-color: #ededed;
            background-image: none;
        }

        .bd-menu-45 .bd-menuitem-43 > a.active,
        .bd-menu-45 .bd-menuitem-43.active > a {
            color: #3177bd;
            background-color: #f7f7f7;
            background-image: none;
        }

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvVk1lbnVNaXhpbg {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQWZmaXhTaG9ydENvZGU {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQWZmaXhTaG9ydENvZGU {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQWxpZ25Db250ZW50U2hvcnRDb2Rl {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQWxpZ25Db250ZW50U2hvcnRDb2Rl {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQWxpZ25TaG9ydENvZGU {
}

.bd-boxalign {
    text-align: center !important;
}

    .bd-boxalign > * {
        text-align: left !important;
        display: inline-block !important;
    }

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQWxpZ25TaG9ydENvZGU {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQW5pbWF0aW9uU2hvcnRDb2Rl {
}

.bd-animation.animated.bounce {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-delay: 0ms;
    animation-delay: 0ms;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQW5pbWF0aW9uU2hvcnRDb2Rl {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQmFja2dyb3VuZFdpZHRoRWZmZWN0U2hvcnRDb2Rl {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQmFja2dyb3VuZFdpZHRoRWZmZWN0U2hvcnRDb2Rl {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQmFsbG9vblNob3J0Q29kZQ {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQmFsbG9vblNob3J0Q29kZQ {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQm9vdHN0cmFwUHJvZ3Jlc3NiYXJzU2hvcnRDb2Rl {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQm9vdHN0cmFwUHJvZ3Jlc3NiYXJzU2hvcnRDb2Rl {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQm94Q29udHJvbFNob3J0Q29kZQ {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQm94Q29udHJvbFNob3J0Q29kZQ {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQnV0dG9uU2hvcnRDb2Rl {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQnV0dG9uU2hvcnRDb2Rl {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQ29udGFpbmVyRWZmZWN0U2hvcnRDb2Rl {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQ29udGFpbmVyRWZmZWN0U2hvcnRDb2Rl {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQ29udGFpbmVySW5uZXJFZmZlY3RTaG9ydENvZGU {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQ29udGFpbmVySW5uZXJFZmZlY3RTaG9ydENvZGU {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQ3VzdG9tQ21zQ29kZVNob3J0Q29kZQ {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQ3VzdG9tQ21zQ29kZVNob3J0Q29kZQ {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQ3VzdG9tSHRtbFNob3J0Q29kZQ {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQ3VzdG9tSHRtbFNob3J0Q29kZQ {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvRG5uR29vZ2xlRm9udHM {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvRG5uR29vZ2xlRm9udHM {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvZXJyb3JNZXNzYWdl {
}

.bd-errormessage-1 {
    border-radius: 0px;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvZXJyb3JNZXNzYWdl {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvRmxleENvbHVtblNob3J0Q29kZQ {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvRmxleENvbHVtblNob3J0Q29kZQ {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvR29vZ2xlRm9udHM {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvR29vZ2xlRm9udHM {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvR29vZ2xlTWFwU2hvcnRDb2Rl {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvR29vZ2xlTWFwU2hvcnRDb2Rl {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvSG92ZXJCb3hTaG9ydENvZGU {
}
/* Default fade effect */
.bd-effect-fade .bd-overSlide {
    left: 0;
    top: 0;
    opacity: 0;
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.bd-effect-fade:hover .bd-overSlide,
.bd-effect-fade.bd-effect-active .bd-overSlide {
    opacity: 1;
}
/* Default over effect */
.bd-effect-over-left .bd-overSlide {
    top: 0;
    left: 0;
    position: absolute;
    -webkit-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.bd-effect-over-left:hover .bd-overSlide,
.bd-effect-over-left.bd-effect-active .bd-overSlide {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.bd-effect-over-right .bd-overSlide {
    top: 0;
    left: 0;
    position: absolute;
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.bd-effect-over-right:hover .bd-overSlide,
.bd-effect-over-right.bd-effect-active .bd-overSlide {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.bd-effect-over-top .bd-overSlide {
    top: 0;
    left: 0;
    position: absolute;
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.bd-effect-over-top:hover .bd-overSlide,
.bd-effect-over-top.bd-effect-active .bd-overSlide {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.bd-effect-over-bottom .bd-overSlide {
    top: 0;
    left: 0;
    position: absolute;
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    transform: translate(0, 100%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.bd-effect-over-bottom:hover .bd-overSlide,
.bd-effect-over-bottom.bd-effect-active .bd-overSlide {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.bd-effect-over-topleft .bd-overSlide {
    top: 0;
    left: 0;
    position: absolute;
    -webkit-transform: translate(-100%, -100%);
    -ms-transform: translate(-100%, -100%);
    transform: translate(-100%, -100%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.bd-effect-over-topleft:hover .bd-overSlide,
.bd-effect-over-topleft.bd-effect-active .bd-overSlide {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.bd-effect-over-topright .bd-overSlide {
    top: 0;
    left: 0;
    position: absolute;
    -webkit-transform: translate(100%, -100%);
    -ms-transform: translate(100%, -100%);
    transform: translate(100%, -100%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.bd-effect-over-topright:hover .bd-overSlide,
.bd-effect-over-topright.bd-effect-active .bd-overSlide {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.bd-effect-over-bottomleft .bd-overSlide {
    top: 0;
    left: 0;
    position: absolute;
    -webkit-transform: translate(-100%, 100%);
    -ms-transform: translate(-100%, 100%);
    transform: translate(-100%, 100%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.bd-effect-over-bottomleft:hover .bd-overSlide,
.bd-effect-over-bottomleft.bd-effect-active .bd-overSlide {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.bd-effect-over-bottomright .bd-overSlide {
    top: 0;
    left: 0;
    position: absolute;
    -webkit-transform: translate(100%, 100%);
    -ms-transform: translate(100%, 100%);
    transform: translate(100%, 100%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.bd-effect-over-bottomright:hover .bd-overSlide,
.bd-effect-over-bottomright.bd-effect-active .bd-overSlide {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}
/* Default slide effect */
.bd-effect-slide-left .bd-overSlide {
    top: 0;
    left: 0;
    position: absolute;
    -webkit-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.bd-effect-slide-left:hover .bd-overSlide,
.bd-effect-slide-left.bd-effect-active .bd-overSlide {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.bd-effect-slide-left .bd-backSlide {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.bd-effect-slide-left:hover .bd-backSlide,
.bd-effect-slide-left.bd-effect-active .bd-backSlide {
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
}

.bd-effect-slide-right .bd-overSlide {
    top: 0;
    left: 0;
    position: absolute;
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.bd-effect-slide-right:hover .bd-overSlide,
.bd-effect-slide-right.bd-effect-active .bd-overSlide {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.bd-effect-slide-right .bd-backSlide {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.bd-effect-slide-right:hover .bd-backSlide,
.bd-effect-slide-right.bd-effect-active .bd-backSlide {
    -webkit-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
}

.bd-effect-slide-top .bd-overSlide {
    top: 0;
    left: 0;
    position: absolute;
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.bd-effect-slide-top:hover .bd-overSlide,
.bd-effect-slide-top.bd-effect-active .bd-overSlide {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.bd-effect-slide-top .bd-backSlide {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.bd-effect-slide-top:hover .bd-backSlide,
.bd-effect-slide-top.bd-effect-active .bd-backSlide {
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    transform: translate(0, 100%);
}

.bd-effect-slide-bottom .bd-overSlide {
    top: 0;
    left: 0;
    position: absolute;
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    transform: translate(0, 100%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.bd-effect-slide-bottom:hover .bd-overSlide,
.bd-effect-slide-bottom.bd-effect-active .bd-overSlide {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.bd-effect-slide-bottom .bd-backSlide {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.bd-effect-slide-bottom:hover .bd-backSlide,
.bd-effect-slide-bottom.bd-effect-active .bd-backSlide {
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
}

.bd-effect-slide-topleft .bd-overSlide {
    top: 0;
    left: 0;
    position: absolute;
    -webkit-transform: translate(-100%, -100%);
    -ms-transform: translate(-100%, -100%);
    transform: translate(-100%, -100%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.bd-effect-slide-topleft:hover .bd-overSlide,
.bd-effect-slide-topleft.bd-effect-active .bd-overSlide {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.bd-effect-slide-topleft .bd-backSlide {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.bd-effect-slide-topleft:hover .bd-backSlide,
.bd-effect-slide-topleft.bd-effect-active .bd-backSlide {
    -webkit-transform: translate(100%, 100%);
    -ms-transform: translate(100%, 100%);
    transform: translate(100%, 100%);
}

.bd-effect-slide-topright .bd-overSlide {
    top: 0;
    left: 0;
    position: absolute;
    -webkit-transform: translate(100%, -100%);
    -ms-transform: translate(100%, -100%);
    transform: translate(100%, -100%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.bd-effect-slide-topright:hover .bd-overSlide,
.bd-effect-slide-topright.bd-effect-active .bd-overSlide {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.bd-effect-slide-topright .bd-backSlide {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.bd-effect-slide-topright:hover .bd-backSlide,
.bd-effect-slide-topright.bd-effect-active .bd-backSlide {
    -webkit-transform: translate(-100%, 100%);
    -ms-transform: translate(-100%, 100%);
    transform: translate(-100%, 100%);
}

.bd-effect-slide-bottomleft .bd-overSlide {
    top: 0;
    left: 0;
    position: absolute;
    -webkit-transform: translate(-100%, 100%);
    -ms-transform: translate(-100%, 100%);
    transform: translate(-100%, 100%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.bd-effect-slide-bottomleft:hover .bd-overSlide,
.bd-effect-slide-bottomleft.bd-effect-active .bd-overSlide {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.bd-effect-slide-bottomleft .bd-backSlide {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.bd-effect-slide-bottomleft:hover .bd-backSlide,
.bd-effect-slide-bottomleft.bd-effect-active .bd-backSlide {
    -webkit-transform: translate(100%, -100%);
    -ms-transform: translate(100%, -100%);
    transform: translate(100%, -100%);
}

.bd-effect-slide-bottomright .bd-overSlide {
    top: 0;
    left: 0;
    position: absolute;
    -webkit-transform: translate(100%, 100%);
    -ms-transform: translate(100%, 100%);
    transform: translate(100%, 100%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.bd-effect-slide-bottomright:hover .bd-overSlide,
.bd-effect-slide-bottomright.bd-effect-active .bd-overSlide {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.bd-effect-slide-bottomright .bd-backSlide {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.bd-effect-slide-bottomright:hover .bd-backSlide,
.bd-effect-slide-bottomright.bd-effect-active .bd-backSlide {
    -webkit-transform: translate(-100%, -100%);
    -ms-transform: translate(-100%, -100%);
    transform: translate(-100%, -100%);
}
/* Default flip */
.bd-effect-flip-left,
.bd-effect-flip-left .bd-slidesWrapper {
    -webkit-perspective: 300px;
    -moz-perspective: 300px;
    perspective: 300px;
}

    .bd-effect-flip-left .bd-overSlide {
        top: 0;
        left: 0;
        opacity: 0;
        position: absolute;
        -webkit-transform: rotateY(130deg);
        -ms-transform: rotateY(130deg);
        transform: rotateY(130deg);
        -webkit-transform-origin: center left;
        -moz-transform-origin: center left;
        -ms-transform-origin: center left;
        transform-origin: center left;
        -webkit-transition: -webkit-transform 300ms ease, -webkit-transform-origin 300ms ease, opacity 0ms ease 300ms;
        -moz-transition: -moz-transform 300ms ease, -moz-transform-origin 300ms ease, opacity 0ms ease 300ms;
        -o-transition: -o-transform 300ms ease, -o-transform-origin 300ms ease, opacity 0ms ease 300ms;
        transition: transform 300ms ease, transform-origin 300ms ease, opacity 0ms ease 300ms;
    }

    .bd-effect-flip-left:hover .bd-overSlide,
    .bd-effect-flip-left.bd-effect-active .bd-overSlide {
        opacity: 1;
        -webkit-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
        transform: rotateY(0deg);
        -webkit-transition: -webkit-transform 300ms ease, -webkit-transform-origin 300ms ease;
        -moz-transition: -moz-transform 300ms ease, -moz-transform-origin 300ms ease;
        -o-transition: -o-transform 300ms ease, -o-transform-origin 300ms ease;
        transition: transform 300ms ease, transform-origin 300ms ease;
    }

.bd-effect-flip-right,
.bd-effect-flip-right .bd-slidesWrapper {
    -webkit-perspective: 300px;
    -moz-perspective: 300px;
    perspective: 300px;
}

    .bd-effect-flip-right .bd-overSlide {
        top: 0;
        left: 0;
        opacity: 0;
        position: absolute;
        -webkit-transform: rotateY(-130deg);
        -ms-transform: rotateY(-130deg);
        transform: rotateY(-130deg);
        -webkit-transform-origin: center right;
        -moz-transform-origin: center right;
        -ms-transform-origin: center right;
        transform-origin: center right;
        -webkit-transition: -webkit-transform 300ms ease, -webkit-transform-origin 300ms ease, opacity 0ms ease 300ms;
        -moz-transition: -moz-transform 300ms ease, -moz-transform-origin 300ms ease, opacity 0ms ease 300ms;
        -o-transition: -o-transform 300ms ease, -o-transform-origin 300ms ease, opacity 0ms ease 300ms;
        transition: transform 300ms ease, transform-origin 300ms ease, opacity 0ms ease 300ms;
    }

    .bd-effect-flip-right:hover .bd-overSlide,
    .bd-effect-flip-right.bd-effect-active .bd-overSlide {
        opacity: 1;
        -webkit-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
        transform: rotateY(0deg);
        -webkit-transition: -webkit-transform 300ms ease, -webkit-transform-origin 300ms ease;
        -moz-transition: -moz-transform 300ms ease, -moz-transform-origin 300ms ease;
        -o-transition: -o-transform 300ms ease, -o-transform-origin 300ms ease;
        transition: transform 300ms ease, transform-origin 300ms ease;
    }

.bd-effect-flip-top,
.bd-effect-flip-top .bd-slidesWrapper {
    -webkit-perspective: 300px;
    -moz-perspective: 300px;
    perspective: 300px;
}

    .bd-effect-flip-top .bd-overSlide {
        top: 0;
        left: 0;
        opacity: 0;
        position: absolute;
        -webkit-transform: rotateX(-130deg);
        -ms-transform: rotateX(-130deg);
        transform: rotateX(-130deg);
        -webkit-transform-origin: center top;
        -moz-transform-origin: center top;
        -ms-transform-origin: center top;
        transform-origin: center top;
        -webkit-transition: -webkit-transform 300ms ease, -webkit-transform-origin 300ms ease, opacity 0ms ease 300ms;
        -moz-transition: -moz-transform 300ms ease, -moz-transform-origin 300ms ease, opacity 0ms ease 300ms;
        -o-transition: -o-transform 300ms ease, -o-transform-origin 300ms ease, opacity 0ms ease 300ms;
        transition: transform 300ms ease, transform-origin 300ms ease, opacity 0ms ease 300ms;
    }

    .bd-effect-flip-top:hover .bd-overSlide,
    .bd-effect-flip-top.bd-effect-active .bd-overSlide {
        opacity: 1;
        -webkit-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-transition: -webkit-transform 300ms ease, -webkit-transform-origin 300ms ease;
        -moz-transition: -moz-transform 300ms ease, -moz-transform-origin 300ms ease;
        -o-transition: -o-transform 300ms ease, -o-transform-origin 300ms ease;
        transition: transform 300ms ease, transform-origin 300ms ease;
    }

.bd-effect-flip-bottom,
.bd-effect-flip-bottom .bd-slidesWrapper {
    -webkit-perspective: 300px;
    -moz-perspective: 300px;
    perspective: 300px;
}

    .bd-effect-flip-bottom .bd-overSlide {
        top: 0;
        left: 0;
        opacity: 0;
        position: absolute;
        -webkit-transform: rotateX(130deg);
        -ms-transform: rotateX(130deg);
        transform: rotateX(130deg);
        -webkit-transform-origin: center bottom;
        -moz-transform-origin: center bottom;
        -ms-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-transition: -webkit-transform 300ms ease, -webkit-transform-origin 300ms ease, opacity 0ms ease 300ms;
        -moz-transition: -moz-transform 300ms ease, -moz-transform-origin 300ms ease, opacity 0ms ease 300ms;
        -o-transition: -o-transform 300ms ease, -o-transform-origin 300ms ease, opacity 0ms ease 300ms;
        transition: transform 300ms ease, transform-origin 300ms ease, opacity 0ms ease 300ms;
    }

    .bd-effect-flip-bottom:hover .bd-overSlide,
    .bd-effect-flip-bottom.bd-effect-active .bd-overSlide {
        opacity: 1;
        -webkit-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-transition: -webkit-transform 300ms ease, -webkit-transform-origin 300ms ease;
        -moz-transition: -moz-transform 300ms ease, -moz-transform-origin 300ms ease;
        -o-transition: -o-transform 300ms ease, -o-transform-origin 300ms ease;
        transition: transform 300ms ease, transform-origin 300ms ease;
    }
/* Default wooble */
.bd-effect-wobble-left,
.bd-effect-wobble-left .bd-slidesWrapper {
    -webkit-perspective: 300px;
    -moz-perspective: 300px;
    perspective: 300px;
}

    .bd-effect-wobble-left .bd-overSlide {
        top: 0;
        left: 0;
        opacity: 0;
        position: absolute;
        -webkit-transform: rotateY(130deg);
        -ms-transform: rotateY(130deg);
        transform: rotateY(130deg);
        -webkit-transform-origin: center left;
        -moz-transform-origin: center left;
        -ms-transform-origin: center left;
        transform-origin: center left;
        -webkit-transition: -webkit-transform 300ms ease, -webkit-transform-origin 300ms ease, opacity 0ms ease 300ms;
        -moz-transition: -moz-transform 300ms ease, -moz-transform-origin 300ms ease, opacity 0ms ease 300ms;
        -o-transition: -o-transform 300ms ease, -o-transform-origin 300ms ease, opacity 0ms ease 300ms;
        transition: transform 300ms ease, transform-origin 300ms ease, opacity 0ms ease 300ms;
    }

    .bd-effect-wobble-left:hover .bd-overSlide,
    .bd-effect-wobble-left.bd-effect-active .bd-overSlide {
        opacity: 1;
        -webkit-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
        transform: rotateY(0deg);
        -webkit-transform-origin: center right;
        -moz-transform-origin: center right;
        -ms-transform-origin: center right;
        transform-origin: center right;
        -webkit-transition: -webkit-transform 300ms ease, -webkit-transform-origin 300ms ease;
        -moz-transition: -moz-transform 300ms ease, -moz-transform-origin 300ms ease;
        -o-transition: -o-transform 300ms ease, -o-transform-origin 300ms ease;
        transition: transform 300ms ease, transform-origin 300ms ease;
    }

.bd-effect-wobble-right,
.bd-effect-wobble-right .bd-slidesWrapper {
    -webkit-perspective: 300px;
    -moz-perspective: 300px;
    perspective: 300px;
}

    .bd-effect-wobble-right .bd-overSlide {
        top: 0;
        left: 0;
        opacity: 0;
        position: absolute;
        -webkit-transform: rotateY(-130deg);
        -ms-transform: rotateY(-130deg);
        transform: rotateY(-130deg);
        -webkit-transform-origin: center right;
        -moz-transform-origin: center right;
        -ms-transform-origin: center right;
        transform-origin: center right;
        -webkit-transition: -webkit-transform 300ms ease, -webkit-transform-origin 300ms ease, opacity 0ms ease 300ms;
        -moz-transition: -moz-transform 300ms ease, -moz-transform-origin 300ms ease, opacity 0ms ease 300ms;
        -o-transition: -o-transform 300ms ease, -o-transform-origin 300ms ease, opacity 0ms ease 300ms;
        transition: transform 300ms ease, transform-origin 300ms ease, opacity 0ms ease 300ms;
    }

    .bd-effect-wobble-right:hover .bd-overSlide,
    .bd-effect-wobble-right.bd-effect-active .bd-overSlide {
        opacity: 1;
        -webkit-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
        transform: rotateY(0deg);
        -webkit-transform-origin: center left;
        -moz-transform-origin: center left;
        -ms-transform-origin: center left;
        transform-origin: center left;
        -webkit-transition: -webkit-transform 300ms ease, -webkit-transform-origin 300ms ease;
        -moz-transition: -moz-transform 300ms ease, -moz-transform-origin 300ms ease;
        -o-transition: -o-transform 300ms ease, -o-transform-origin 300ms ease;
        transition: transform 300ms ease, transform-origin 300ms ease;
    }

.bd-effect-wobble-top,
.bd-effect-wobble-top .bd-slidesWrapper {
    -webkit-perspective: 300px;
    -moz-perspective: 300px;
    perspective: 300px;
}

    .bd-effect-wobble-top .bd-overSlide {
        top: 0;
        left: 0;
        opacity: 0;
        position: absolute;
        -webkit-transform: rotateX(-130deg);
        -ms-transform: rotateX(-130deg);
        transform: rotateX(-130deg);
        -webkit-transform-origin: center top;
        -moz-transform-origin: center top;
        -ms-transform-origin: center top;
        transform-origin: center top;
        -webkit-transition: -webkit-transform 300ms ease, -webkit-transform-origin 300ms ease, opacity 0ms ease 300ms;
        -moz-transition: -moz-transform 300ms ease, -moz-transform-origin 300ms ease, opacity 0ms ease 300ms;
        -o-transition: -o-transform 300ms ease, -o-transform-origin 300ms ease, opacity 0ms ease 300ms;
        transition: transform 300ms ease, transform-origin 300ms ease, opacity 0ms ease 300ms;
    }

    .bd-effect-wobble-top:hover .bd-overSlide,
    .bd-effect-wobble-top.bd-effect-active .bd-overSlide {
        opacity: 1;
        -webkit-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-transform-origin: center bottom;
        -moz-transform-origin: center bottom;
        -ms-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-transition: -webkit-transform 300ms ease, -webkit-transform-origin 300ms ease;
        -moz-transition: -moz-transform 300ms ease, -moz-transform-origin 300ms ease;
        -o-transition: -o-transform 300ms ease, -o-transform-origin 300ms ease;
        transition: transform 300ms ease, transform-origin 300ms ease;
    }

.bd-effect-wobble-bottom,
.bd-effect-wobble-bottom .bd-slidesWrapper {
    -webkit-perspective: 300px;
    -moz-perspective: 300px;
    perspective: 300px;
}

    .bd-effect-wobble-bottom .bd-overSlide {
        top: 0;
        left: 0;
        opacity: 0;
        position: absolute;
        -webkit-transform: rotateX(130deg);
        -ms-transform: rotateX(130deg);
        transform: rotateX(130deg);
        -webkit-transform-origin: center bottom;
        -moz-transform-origin: center bottom;
        -ms-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-transition: -webkit-transform 300ms ease, -webkit-transform-origin 300ms ease, opacity 0ms ease 300ms;
        -moz-transition: -moz-transform 300ms ease, -moz-transform-origin 300ms ease, opacity 0ms ease 300ms;
        -o-transition: -o-transform 300ms ease, -o-transform-origin 300ms ease, opacity 0ms ease 300ms;
        transition: transform 300ms ease, transform-origin 300ms ease, opacity 0ms ease 300ms;
    }

    .bd-effect-wobble-bottom:hover .bd-overSlide,
    .bd-effect-wobble-bottom.bd-effect-active .bd-overSlide {
        opacity: 1;
        -webkit-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-transform-origin: center top;
        -moz-transform-origin: center top;
        -ms-transform-origin: center top;
        transform-origin: center top;
        -webkit-transition: -webkit-transform 300ms ease, -webkit-transform-origin 300ms ease;
        -moz-transition: -moz-transform 300ms ease, -moz-transform-origin 300ms ease;
        -o-transition: -o-transform 300ms ease, -o-transform-origin 300ms ease;
        transition: transform 300ms ease, transform-origin 300ms ease;
    }
/* Default zoom */
.bd-effect-zoom .bd-overSlide {
    left: 0;
    top: 0;
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    transform: scale(0, 0);
}

.bd-effect-zoom:hover .bd-overSlide,
.bd-effect-zoom.bd-effect-active .bd-overSlide {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}

.bd-effect-zoom-rotate .bd-overSlide {
    left: 0;
    top: 0;
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-transform: rotate(0deg) scale(0, 0);
    -ms-transform: rotate(0deg) scale(0, 0);
    transform: rotate(0deg) scale(0, 0);
}

.bd-effect-zoom-rotate:hover .bd-overSlide,
.bd-effect-zoom-rotate.bd-effect-active .bd-overSlide {
    -webkit-transform: rotate(360deg) scale(1, 1);
    -ms-transform: rotate(360deg) scale(1, 1);
    transform: rotate(360deg) scale(1, 1);
}

.bd-effect-zoom-rotateX .bd-overSlide {
    left: 0;
    top: 0;
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-transform: rotateX(0deg) scale(0, 0);
    -ms-transform: rotateX(0deg) scale(0, 0);
    transform: rotateX(0deg) scale(0, 0);
}

.bd-effect-zoom-rotateX:hover .bd-overSlide,
.bd-effect-zoom-rotateX.bd-effect-active .bd-overSlide {
    -webkit-transform: rotateX(360deg) scale(1, 1);
    -ms-transform: rotateX(360deg) scale(1, 1);
    transform: rotateX(360deg) scale(1, 1);
}

.bd-effect-zoom-rotateY .bd-overSlide {
    left: 0;
    top: 0;
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-transform: rotateY(0deg) scale(0, 0);
    -ms-transform: rotateY(0deg) scale(0, 0);
    transform: rotateY(0deg) scale(0, 0);
}

.bd-effect-zoom-rotateY:hover .bd-overSlide,
.bd-effect-zoom-rotateY.bd-effect-active .bd-overSlide {
    -webkit-transform: rotateY(360deg) scale(1, 1);
    -ms-transform: rotateY(360deg) scale(1, 1);
    transform: rotateY(360deg) scale(1, 1);
}
/* Transition Effects Less */
/* Fade effect */
/* Over effect */
/* Slide effect */
/* Over and Slide effect */
/* Flip Left effect */
/* Flip Right effect */
/* Flip Top effect */
/* Flip Bottom effect */
/* Wobble Left effect */
/* Wobble Right effect */
/* Wobble top effect */
/* Wobble bottom effect */
/* Zoom and Rotate Effects */
/* Utility */
#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvSG92ZXJCb3hTaG9ydENvZGU {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvSWNvbkNvbW1vbjA {
}

@charset "UTF-8";

@font-face {
    font-family: 'Billion Web Font';
    src: url("BillionWebFonts.woff") format('woff'), url("BillionWebFonts.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
}

.icon-booth:before {
    content: '\ff';
}

.icon-youtube:before {
    content: '\100';
}

.icon-random:before {
    content: '\101';
}

.icon-cloud-upload:before {
    content: '\102';
}

.icon-road:before {
    content: '\103';
}

.icon-arrow-small-up:before {
    content: '\104';
}

.icon-dropbox:before {
    content: '\105';
}

.icon-sort:before {
    content: '\106';
}

.icon-angle-small:before {
    content: '\107';
}

.icon-bitcoin:before {
    content: '\108';
}

.icon-delicious:before {
    content: '\109';
}

.icon-stethoscope:before {
    content: '\10a';
}

.icon-weibo:before {
    content: '\10b';
}

.icon-volume-off:before {
    content: '\10c';
}

.icon-earth:before {
    content: '\10d';
}

.icon-node-square:before {
    content: '\10e';
}

.icon-plane:before {
    content: '\10f';
}

.icon-undo:before {
    content: '\110';
}

.icon-question-circle:before {
    content: '\111';
}

.icon-tablet:before {
    content: '\112';
}

.icon-filter-alt:before {
    content: '\113';
}

.icon-happy:before {
    content: '\114';
}

.icon-dialer:before {
    content: '\115';
}

.icon-bag:before {
    content: '\116';
}

.icon-credit-card:before {
    content: '\117';
}

.icon-image-alt:before {
    content: '\118';
}

.icon-shopping-cart-simple:before {
    content: '\119';
}

.icon-arrow-basic-right:before {
    content: '\11a';
}

.icon-male:before {
    content: '\11b';
}

.icon-cut:before {
    content: '\11c';
}

.icon-unhappy:before {
    content: '\11d';
}

.icon-circle-alt:before {
    content: '\11e';
}

.icon-double-chevron-right:before {
    content: '\11f';
}

.icon-star-alt:before {
    content: '\120';
}

.icon-rhomb:before {
    content: '\121';
}

.icon-thumbs-down:before {
    content: '\122';
}

.icon-github-alt:before {
    content: '\123';
}

.icon-text-width:before {
    content: '\124';
}

.icon-bookmark-alt:before {
    content: '\125';
}

.icon-list-details:before {
    content: '\126';
}

.icon-bullhorn:before {
    content: '\127';
}

.icon-ellipsis:before {
    content: '\128';
}

.icon-map-marker:before {
    content: '\129';
}

.icon-typeface:before {
    content: '\12a';
}

.icon-help:before {
    content: '\12b';
}

.icon-triangle-circle:before {
    content: '\12c';
}

.icon-gbp:before {
    content: '\12d';
}

.icon-arrow-small-left:before {
    content: '\12e';
}

.icon-anchor:before {
    content: '\12f';
}

.icon-align-justify:before {
    content: '\130';
}

.icon-arrow-circle-alt-up:before {
    content: '\131';
}

.icon-growth:before {
    content: '\132';
}

.icon-round-small:before {
    content: '\133';
}

.icon-triangle-circle-alt:before {
    content: '\134';
}

.icon-eye-close:before {
    content: '\135';
}

.icon-code:before {
    content: '\136';
}

.icon-step-forward:before {
    content: '\137';
}

.icon-music:before {
    content: '\138';
}

.icon-lightbulb:before {
    content: '\139';
}

.icon-arrows-horizontal:before {
    content: '\13a';
}

.icon-sign-out:before {
    content: '\13b';
}

.icon-sort-asc:before {
    content: '\13c';
}

.icon-play-circle:before {
    content: '\13d';
}

.icon-bookmark:before {
    content: '\13e';
}

.icon-pencil:before {
    content: '\13f';
}

.icon-won:before {
    content: '\140';
}

.icon-zoom-out:before {
    content: '\141';
}

.icon-user-alt:before {
    content: '\142';
}

.icon-repeat:before {
    content: '\143';
}

.icon-text-height:before {
    content: '\144';
}

.icon-shopping-cart-wire:before {
    content: '\145';
}

.icon-rubl:before {
    content: '\146';
}

.icon-find-contact:before {
    content: '\147';
}

.icon-upload-circle-alt:before {
    content: '\148';
}

.icon-arrow-small-down:before {
    content: '\149';
}

.icon-file:before {
    content: '\14a';
}

.icon-building:before {
    content: '\14b';
}

.icon-certificate:before {
    content: '\14c';
}

.icon-double-chevron-up:before {
    content: '\14d';
}

.icon-hand-up:before {
    content: '\14e';
}

.icon-italic:before {
    content: '\14f';
}

.icon-volume-up:before {
    content: '\150';
}

.icon-quote-right:before {
    content: '\151';
}

.icon-sort-numeric-desc:before {
    content: '\152';
}

.icon-four-rhombs:before {
    content: '\153';
}

.icon-brain:before {
    content: '\154';
}

.icon-mark:before {
    content: '\155';
}

.icon-flickr:before {
    content: '\156';
}

.icon-envelope:before {
    content: '\157';
}

.icon-indent-right:before {
    content: '\158';
}

.icon-basket-simple:before {
    content: '\159';
}

.icon-cloud:before {
    content: '\15a';
}

.icon-check:before {
    content: '\15b';
}

.icon-youtube-square:before {
    content: '\15c';
}

.icon-envelope-alt:before {
    content: '\15d';
}

.icon-bitbucket-alt:before {
    content: '\15e';
}

.icon-round-small-alt:before {
    content: '\15f';
}

.icon-adn:before {
    content: '\160';
}

.icon-linkedin-square:before {
    content: '\161';
}

.icon-expand:before {
    content: '\162';
}

.icon-tumblr-square:before {
    content: '\163';
}

.icon-angle-double:before {
    content: '\164';
}

.icon-compress:before {
    content: '\165';
}

.icon-plus-square-alt:before {
    content: '\166';
}

.icon-camera:before {
    content: '\167';
}

.icon-four-boxes:before {
    content: '\168';
}

.icon-shopping-cart-buggy:before {
    content: '\169';
}

.icon-arrow-square-left:before {
    content: '\16a';
}

.icon-delete-circle-alt:before {
    content: '\16b';
}

.icon-suitcase:before {
    content: '\16c';
}

.icon-curve-bottom:before {
    content: '\16d';
}

.icon-caret-up:before {
    content: '\16e';
}

.icon-renren:before {
    content: '\16f';
}

.icon-linkedin:before {
    content: '\170';
}

.icon-asterisk:before {
    content: '\171';
}

.icon-arrow-pointer-left:before {
    content: '\172';
}

.icon-sort-numeric-asc:before {
    content: '\173';
}

.icon-calendar-simple:before {
    content: '\174';
}

.icon-home-alt:before {
    content: '\175';
}

.icon-step-backward:before {
    content: '\176';
}

.icon-rss:before {
    content: '\177';
}

.icon-globe:before {
    content: '\178';
}

.icon-paste:before {
    content: '\179';
}

.icon-fire:before {
    content: '\17a';
}

.icon-star-half:before {
    content: '\17b';
}

.icon-renminbi:before {
    content: '\17c';
}

.icon-dribbble:before {
    content: '\17d';
}

.icon-google-plus-square:before {
    content: '\17e';
}

.icon-plus-square:before {
    content: '\17f';
}

.icon-yen:before {
    content: '\180';
}

.icon-briefcase:before {
    content: '\181';
}

.icon-shopping-cart-trolley:before {
    content: '\182';
}

.icon-warning:before {
    content: '\183';
}

.icon-moon:before {
    content: '\184';
}

.icon-sort-alpha:before {
    content: '\185';
}

.icon-arrow-long-down:before {
    content: '\186';
}

.icon-globe-alt:before {
    content: '\187';
}

.icon-thumbs-up:before {
    content: '\188';
}

.icon-sandwich:before {
    content: '\189';
}

.icon-arrow-basic-down:before {
    content: '\18a';
}

.icon-double-chevron-down:before {
    content: '\18b';
}

.icon-legal:before {
    content: '\18c';
}

.icon-apple:before {
    content: '\18d';
}

.icon-power:before {
    content: '\18e';
}

.icon-time-alt:before {
    content: '\18f';
}

.icon-list:before {
    content: '\190';
}

.icon-h-sign:before {
    content: '\191';
}

.icon-css3:before {
    content: '\192';
}

.icon-copy:before {
    content: '\193';
}

.icon-arrow-tall-up:before {
    content: '\194';
}

.icon-hdd:before {
    content: '\195';
}

.icon-font:before {
    content: '\196';
}

.icon-heart-circle:before {
    content: '\197';
}

.icon-glass:before {
    content: '\198';
}

.icon-picasa:before {
    content: '\199';
}

.icon-arrow-long-left:before {
    content: '\19a';
}

.icon-fullscreen:before {
    content: '\19b';
}

.icon-lemon:before {
    content: '\19c';
}

.icon-arrow-long-right:before {
    content: '\19d';
}

.icon-hand-right:before {
    content: '\19e';
}

.icon-list-details-small:before {
    content: '\19f';
}

.icon-cog:before {
    content: '\1a0';
}

.icon-four-boxes-alt:before {
    content: '\1a1';
}

.icon-properties:before {
    content: '\1a2';
}

.icon-arrow-pointer-down:before {
    content: '\1a3';
}

.icon-inbox:before {
    content: '\1a4';
}

.icon-arrow-double-up:before {
    content: '\1a5';
}

.icon-plane-takeoff:before {
    content: '\1a6';
}

.icon-arrow-square-down:before {
    content: '\1a7';
}

.icon-tick-circle-alt:before {
    content: '\1a8';
}

.icon-node-circle:before {
    content: '\1a9';
}

.icon-arrow-pointer-right:before {
    content: '\1aa';
}

.icon-starlet:before {
    content: '\1ab';
}

.icon-cogs:before {
    content: '\1ac';
}

.icon-arrow-long-up:before {
    content: '\1ad';
}

.icon-bug:before {
    content: '\1ae';
}

.icon-upload:before {
    content: '\1af';
}

.icon-xing:before {
    content: '\1b0';
}

.icon-minus-square-alt:before {
    content: '\1b1';
}

.icon-arrows:before {
    content: '\1b2';
}

.icon-trash-can:before {
    content: '\1b3';
}

.icon-pushpin:before {
    content: '\1b4';
}

.icon-eye-open:before {
    content: '\1b5';
}

.icon-caret-left:before {
    content: '\1b6';
}

.icon-bitbucket:before {
    content: '\1b7';
}

.icon-lines:before {
    content: '\1b8';
}

.icon-magic:before {
    content: '\1b9';
}

.icon-arrow-double-right:before {
    content: '\1ba';
}

.icon-remove-sign:before {
    content: '\1bb';
}

.icon-exclamation-sign:before {
    content: '\1bc';
}

.icon-chevron-down:before {
    content: '\1bd';
}

.icon-sort-alpha-asc:before {
    content: '\1be';
}

.icon-comments-alt:before {
    content: '\1bf';
}

.icon-terminal:before {
    content: '\1c0';
}

.icon-box:before {
    content: '\1c1';
}

.icon-lock:before {
    content: '\1c2';
}

.icon-bolt:before {
    content: '\1c3';
}

.icon-filter:before {
    content: '\1c4';
}

.icon-folder-alt:before {
    content: '\1c5';
}

.icon-backward:before {
    content: '\1c6';
}

.icon-sort-amount-asc:before {
    content: '\1c7';
}

.icon-tag:before {
    content: '\1c8';
}

.icon-house:before {
    content: '\1c9';
}

.icon-drop:before {
    content: '\1ca';
}

.icon-arrow-thick-right:before {
    content: '\1cb';
}

.icon-ambulance:before {
    content: '\1cc';
}

.icon-chevron-right:before {
    content: '\1cd';
}

.icon-sign-in:before {
    content: '\1ce';
}

.icon-sort-amount-desc:before {
    content: '\1cf';
}

.icon-search-circle:before {
    content: '\1d0';
}

.icon-skype:before {
    content: '\1d1';
}

.icon-fast-forward:before {
    content: '\1d2';
}

.icon-maxcdn:before {
    content: '\1d3';
}

.icon-book-open:before {
    content: '\1d4';
}

.icon-vimeo:before {
    content: '\1d5';
}

.icon-beaker:before {
    content: '\1d6';
}

.icon-facebook-alt:before {
    content: '\1d7';
}

.icon-arrow-thin-down:before {
    content: '\1d8';
}

.icon-heartlet:before {
    content: '\1d9';
}

.icon-shopping-cart-solid:before {
    content: '\1da';
}

.icon-linux:before {
    content: '\1db';
}

.icon-leaf:before {
    content: '\1dc';
}

.icon-hand-down:before {
    content: '\1dd';
}

.icon-pinterest:before {
    content: '\1de';
}

.icon-barcode:before {
    content: '\1df';
}

.icon-curve-top:before {
    content: '\1e0';
}

.icon-euro:before {
    content: '\1e1';
}

.icon-arrow-basic-left:before {
    content: '\1e2';
}

.icon-group:before {
    content: '\1e3';
}

.icon-tumblr:before {
    content: '\1e4';
}

.icon-fighter:before {
    content: '\1e5';
}

.icon-hand-left:before {
    content: '\1e6';
}

.icon-stripes-thick:before {
    content: '\1e7';
}

.icon-superscript:before {
    content: '\1e8';
}

.icon-minus-square:before {
    content: '\1e9';
}

.icon-ticklet-circle:before {
    content: '\1ea';
}

.icon-xing-square:before {
    content: '\1eb';
}

.icon-arrow-double-left:before {
    content: '\1ec';
}

.icon-forward:before {
    content: '\1ed';
}

.icon-arrow-thick-down:before {
    content: '\1ee';
}

.icon-eject:before {
    content: '\1ef';
}

.icon-reply:before {
    content: '\1f0';
}

.icon-search:before {
    content: '\1f1';
}

.icon-comment-alt:before {
    content: '\1f2';
}

.icon-share:before {
    content: '\1f3';
}

.icon-arrows-vertical:before {
    content: '\1f4';
}

.icon-food:before {
    content: '\1f5';
}

.icon-flag:before {
    content: '\1f6';
}

.icon-female:before {
    content: '\1f7';
}

.icon-tasks:before {
    content: '\1f8';
}

.icon-quote-left:before {
    content: '\1f9';
}

.icon-arrow-tall-left:before {
    content: '\1fa';
}

.icon-minus-circle:before {
    content: '\1fb';
}

.icon-box-alt:before {
    content: '\1fc';
}

.icon-arrow-tall-down:before {
    content: '\1fd';
}

.icon-indent-left:before {
    content: '\1fe';
}

.icon-arrow-thick-left:before {
    content: '\1ff';
}

.icon-list-adv:before {
    content: '\200';
}

.icon-chevron-up:before {
    content: '\201';
}

.icon-medkit:before {
    content: '\202';
}

.icon-tags:before {
    content: '\203';
}

.icon-coffee:before {
    content: '\204';
}

.icon-ticklet:before {
    content: '\205';
}

.icon-box-small:before {
    content: '\206';
}

.icon-sign-blank:before {
    content: '\207';
}

.icon-basket:before {
    content: '\208';
}

.icon-search-thick:before {
    content: '\209';
}

.icon-edit-alt:before {
    content: '\20a';
}

.icon-comment:before {
    content: '\20b';
}

.icon-hospital:before {
    content: '\20c';
}

.icon-arrow-small-right:before {
    content: '\20d';
}

.icon-grid-small:before {
    content: '\20e';
}

.icon-circle-arrow-left:before {
    content: '\20f';
}

.icon-yahoo:before {
    content: '\210';
}

.icon-print:before {
    content: '\211';
}

.icon-instagram:before {
    content: '\212';
}

.icon-arrow-angle-up:before {
    content: '\213';
}

.icon-leaf-thin:before {
    content: '\214';
}

.icon-magnet:before {
    content: '\215';
}

.icon-arrow-thin-up:before {
    content: '\216';
}

.icon-retweet:before {
    content: '\217';
}

.icon-search-glare:before {
    content: '\218';
}

.icon-search-thin:before {
    content: '\219';
}

.icon-heart-empty:before {
    content: '\21a';
}

.icon-scales:before {
    content: '\21b';
}

.icon-sort-alpha-desc:before {
    content: '\21c';
}

.icon-align-right:before {
    content: '\21d';
}

.icon-stripes:before {
    content: '\21e';
}

.icon-arrow-pointer-up:before {
    content: '\21f';
}

.icon-round:before {
    content: '\220';
}

.icon-user-medical:before {
    content: '\221';
}

.icon-arrow-thin-left:before {
    content: '\222';
}

.icon-arrow-circle-alt-right:before {
    content: '\223';
}

.icon-starlet-alt:before {
    content: '\224';
}

.icon-bold:before {
    content: '\225';
}

.icon-aperture:before {
    content: '\226';
}

.icon-pointer-basic:before {
    content: '\227';
}

.icon-folder:before {
    content: '\228';
}

.icon-heart:before {
    content: '\229';
}

.icon-cloud-download:before {
    content: '\22a';
}

.icon-bar-chart:before {
    content: '\22b';
}

.icon-mobile:before {
    content: '\22c';
}

.icon-volume-down:before {
    content: '\22d';
}

.icon-exchange:before {
    content: '\22e';
}

.icon-folder-open:before {
    content: '\22f';
}

.icon-phone-square:before {
    content: '\230';
}

.icon-zoom-in:before {
    content: '\231';
}

.icon-beer:before {
    content: '\232';
}

.icon-trello-square:before {
    content: '\233';
}

.icon-delete:before {
    content: '\234';
}

.icon-image:before {
    content: '\235';
}

.icon-edit:before {
    content: '\236';
}

.icon-twitter-square:before {
    content: '\237';
}

.icon-external-link:before {
    content: '\238';
}

.icon-money:before {
    content: '\239';
}

.icon-html5:before {
    content: '\23a';
}

.icon-youtube-play:before {
    content: '\23b';
}

.icon-play:before {
    content: '\23c';
}

.icon-calendar:before {
    content: '\23d';
}

.icon-video:before {
    content: '\23e';
}

.icon-adjust:before {
    content: '\23f';
}

.icon-plus-circle:before {
    content: '\240';
}

.icon-strikethrough:before {
    content: '\241';
}

.icon-bell:before {
    content: '\242';
}

.icon-crop:before {
    content: '\243';
}

.icon-restore:before {
    content: '\244';
}

.icon-circle-arrow-up:before {
    content: '\245';
}

.icon-twitter:before {
    content: '\246';
}

.icon-sitemap:before {
    content: '\247';
}

.icon-facebook-square:before {
    content: '\248';
}

.icon-downturn:before {
    content: '\249';
}

.icon-fancy-circle-alt:before {
    content: '\24a';
}

.icon-arrow-square-right:before {
    content: '\24b';
}

.icon-save:before {
    content: '\24c';
}

.icon-share-alt:before {
    content: '\24d';
}

.icon-arrow-thick-up:before {
    content: '\24e';
}

.icon-plus:before {
    content: '\24f';
}

.icon-arrows-alt:before {
    content: '\250';
}

.icon-chevron-left:before {
    content: '\251';
}

.icon-circle-arrow-right:before {
    content: '\252';
}

.icon-arrow-double-down:before {
    content: '\253';
}

.icon-film:before {
    content: '\254';
}

.icon-pie-chart:before {
    content: '\255';
}

.icon-github:before {
    content: '\256';
}

.icon-calendar-day-alt:before {
    content: '\257';
}

.icon-sort-numeric:before {
    content: '\258';
}

.icon-align-center:before {
    content: '\259';
}

.icon-caret-down:before {
    content: '\25a';
}

.icon-round-alt:before {
    content: '\25b';
}

.icon-user-business:before {
    content: '\25c';
}

.icon-signal:before {
    content: '\25d';
}

.icon-reply-all:before {
    content: '\25e';
}

.icon-star:before {
    content: '\25f';
}

.icon-book:before {
    content: '\260';
}

.icon-triangle:before {
    content: '\261';
}

.icon-arrow-angle-right:before {
    content: '\262';
}

.icon-arrow-basic-up:before {
    content: '\263';
}

.icon-caret-right:before {
    content: '\264';
}

.icon-align-left:before {
    content: '\265';
}

.icon-comments:before {
    content: '\266';
}

.icon-vk:before {
    content: '\267';
}

.icon-qrcode:before {
    content: '\268';
}

.icon-arrow-tall-right:before {
    content: '\269';
}

.icon-shopping-cart:before {
    content: '\26a';
}

.icon-pause:before {
    content: '\26b';
}

.icon-umbrella:before {
    content: '\26c';
}

.icon-ban:before {
    content: '\26d';
}

.icon-plane-alt:before {
    content: '\26e';
}

.icon-ticklet-circle-alt:before {
    content: '\26f';
}

.icon-arrow-angle-left:before {
    content: '\270';
}

.icon-android:before {
    content: '\271';
}

.icon-arrow-square-up:before {
    content: '\272';
}

.icon-inr:before {
    content: '\273';
}

.icon-label:before {
    content: '\274';
}

.icon-spinner:before {
    content: '\275';
}

.icon-headphones:before {
    content: '\276';
}

.icon-arrow-fancy:before {
    content: '\277';
}

.icon-sort-desc:before {
    content: '\278';
}

.icon-tick-circle:before {
    content: '\279';
}

.icon-info-sign:before {
    content: '\27a';
}

.icon-screenshot:before {
    content: '\27b';
}

.icon-briefcase-simple:before {
    content: '\27c';
}

.icon-search-alt:before {
    content: '\27d';
}

.icon-time:before {
    content: '\27e';
}

.icon-grid:before {
    content: '\27f';
}

.icon-user:before {
    content: '\280';
}

.icon-facebook:before {
    content: '\281';
}

.icon-google-plus:before {
    content: '\282';
}

.icon-github-square:before {
    content: '\283';
}

.icon-check-empty:before {
    content: '\284';
}

.icon-circle:before {
    content: '\285';
}

.icon-fast-backward:before {
    content: '\286';
}

.icon-calendar-day:before {
    content: '\287';
}

.icon-phone:before {
    content: '\288';
}

.icon-pinterest-square:before {
    content: '\289';
}

.icon-cup:before {
    content: '\28a';
}

.icon-star-thin:before {
    content: '\28b';
}

.icon-wrench:before {
    content: '\28c';
}

.icon-truck:before {
    content: '\28d';
}

.icon-product-view-mode:before {
    content: '\28e';
}

.icon-circle-arrow-down:before {
    content: '\28f';
}

.icon-arrow-circle-alt-left:before {
    content: '\290';
}

.icon-stackexchange:before {
    content: '\291';
}

.icon-ticklet-thick:before {
    content: '\292';
}

.icon-arrow-thin-right:before {
    content: '\293';
}

.icon-tick:before {
    content: '\294';
}

.icon-box-small-alt:before {
    content: '\295';
}

.icon-file-alt:before {
    content: '\296';
}

.icon-minus:before {
    content: '\297';
}

.icon-upload-circle:before {
    content: '\298';
}

.icon-gift:before {
    content: '\299';
}

.icon-globe-outline:before {
    content: '\29a';
}

.icon-windows:before {
    content: '\29b';
}

.icon-arrow-line:before {
    content: '\29c';
}

.icon-flag-alt:before {
    content: '\29d';
}

.icon-home:before {
    content: '\29e';
}

.icon-arrow-circle-alt-down:before {
    content: '\29f';
}

.icon-dollar:before {
    content: '\2a0';
}

.icon-double-chevron-left:before {
    content: '\2a1';
}

.icon-arrow-angle-down:before {
    content: '\2a2';
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvSWNvbkNvbW1vbjA {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvSWNvbkxpbmtTaG9ydENvZGU {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvSWNvbkxpbmtTaG9ydENvZGU {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvSW1hZ2VMaW5rU2hvcnRDb2Rl {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvSW1hZ2VMaW5rU2hvcnRDb2Rl {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvSW1hZ2VTY2FsaW5nU2hvcnRDb2Rl {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvSW1hZ2VTY2FsaW5nU2hvcnRDb2Rl {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvaW5mb01lc3NhZ2U {
}

.bd-informationmessage-1 {
    border-radius: 0px;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvaW5mb01lc3NhZ2U {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvTGF5b3V0Qm94U2hvcnRDb2Rl {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvTGF5b3V0Qm94U2hvcnRDb2Rl {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvTGF5b3V0Q29sdW1uU2hvcnRDb2Rl {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvTGF5b3V0Q29sdW1uU2hvcnRDb2Rl {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvTGF5b3V0Q29udGFpbmVyU2hvcnRDb2Rl {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvTGF5b3V0Q29udGFpbmVyU2hvcnRDb2Rl {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvUGFyYWxsYXhCYWNrZ3JvdW5kU2hvcnRDb2Rl {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvUGFyYWxsYXhCYWNrZ3JvdW5kU2hvcnRDb2Rl {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvUHJvZHVjdHNTbGlkZXI {
}

.bd-productsslider-1 > .carousel-control.left,
.bd-productsslider-1 > .carousel-control.right {
    color: #ffffff;
    text-decoration: none;
}

.bd-productsslider-1.carousel .item {
    text-align: initial !important;
}

.bd-productsslider-1.carousel carousel-inner {
    overflow: hidden;
}

.bd-productsslider-1 {
    clear: both;
    position: relative;
    width: 100%;
}

    .bd-productsslider-1.single {
        padding-left: 0;
        padding-right: 0;
    }

    .bd-productsslider-1 .carousel,
    .bd-productsslider-1 .carousel .carousel-inner {
        height: 100%;
    }

.bd-top-navigation {
    display: table;
    width: 100%;
}

.bd-productsslider-1 .bd-top-navigation-wrapper {
    display: table-cell;
    width: 1%;
    white-space: nowrap;
    direction: ltr;
}

    .bd-productsslider-1 .bd-top-navigation-wrapper .bd-left-button,
    .bd-productsslider-1 .bd-top-navigation-wrapper .bd-right-button {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
    }

.bd-grid-41 {
    margin-bottom: 20px;
}

.bd-griditem-2 {
    text-align: center;
}

.separated-item-2 {
    position: relative;
    z-index: 0;
}

    .separated-item-2:before,
    .separated-item-2:after {
        content: "";
        position: absolute;
        z-index: 10;
    }

    .separated-item-2:before {
        top: 0;
        bottom: 0;
        left: 0;
    }

    .separated-item-2:after {
        left: 0;
        right: 0;
        bottom: 0;
    }

.first-col.separated-item-2:after {
    left: 5px;
}

.last-col.separated-item-2:after {
    right: 5px;
}

.separated-item-2.first-col:before,
.separated-item-2.last-row:after {
    content: none;
}

.bd-icon-14:before {
    content: '\20e';
}

.bd-icon-14:before {
    visibility: inherit;
}

.bd-carousel-2 {
    display: inline-block;
}

    .bd-carousel-2 span:before {
        content: '\1fa';
    }

    .bd-carousel-2 span:before {
        visibility: inherit;
    }

    .bd-carousel-2 span:before {
        font-size: 31px;
        color: rgba(204, 204, 204, 0.5);
        border: 0px solid #ffffff;
        line-height: 44.2857143px;
        line-height: 31px;
    }

    .bd-carousel-2 span:hover:before {
        text-decoration: none;
        background-color: rgba(255, 255, 255, 0);
        color: rgba(120, 120, 120, 0.5);
    }

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvUHJvZHVjdHNTbGlkZXI {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvUmliYm9uU2hvcnRDb2Rl {
}

.bd-ribbon .ribbon-inner:before,
.bd-ribbon .ribbon-inner:after,
.bd-ribbon .ribbon-content:before,
.bd-ribbon .ribbon-content:after {
    font-size: 0px !important;
}

.bd-ribbon .ribbon-inner:before,
.bd-ribbon .ribbon-inner:after {
    border: 1.5em solid;
}

.bd-ribbon .ribbon-inner .ribbon-content:before,
.bd-ribbon .ribbon-inner .ribbon-content:after {
    border-color: transparent transparent transparent;
}

.bd-ribbon .ribbon-inner .ribbon-stitches-top {
    border-top: 1px dashed;
    top: 2px;
}

.bd-ribbon .ribbon-inner .ribbon-stitches-bottom {
    border-top: 1px dashed;
    bottom: 2px;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvUmliYm9uU2hvcnRDb2Rl {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvc2VhcmNoV2lkZ2V0 {
}

.bd-searchwidget-2 {
    position: relative;
}

    .bd-searchwidget-2 .bd-search-wrapper {
        width: 100%;
    }

.form-inline.bd-searchwidget-2 {
    display: inline-block;
}

    .form-inline.bd-searchwidget-2 .bd-search-wrapper {
        display: table;
        position: relative;
        white-space: nowrap;
    }

        .form-inline.bd-searchwidget-2 .bd-search-wrapper > *:not(script) {
            display: table-cell;
            vertical-align: middle;
        }

        .form-inline.bd-searchwidget-2 .bd-search-wrapper .bd-icon-6 {
            display: none;
        }

        .form-inline.bd-searchwidget-2 .bd-search-wrapper > :last-child > * {
            border-top-left-radius: 0 !important;
            border-bottom-left-radius: 0 !important;
            margin-left: 0 !important;
        }

        .form-inline.bd-searchwidget-2 .bd-search-wrapper > :first-child > * {
            border-top-right-radius: 0 !important;
            border-bottom-right-radius: 0 !important;
            margin-right: 0 !important;
        }

        .form-inline.bd-searchwidget-2 .bd-search-wrapper > :not(:first-child):not(:last-child) > * {
            border-radius: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

.bd-icon-6:before {
    color: #dedede;
    padding-left: 5px;
    padding-right: 5px;
}

.bd-icon-6:hover:before {
    color: #787878;
    text-decoration: none;
}

.bd-bootstrapinput-2.form-control {
    width: auto;
    border-radius: 0px;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvc2VhcmNoV2lkZ2V0 {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvU2VjdGlvblNob3J0Q29kZQ {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvU2VjdGlvblNob3J0Q29kZQ {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvU2VwYXJhdG9yU2hvcnRDb2Rl {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvU2VwYXJhdG9yU2hvcnRDb2Rl {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvc2hvcHBpbmdDYXJ0QmxvY2s {
}

@media (max-width: 767px) {
    .bd-cartcontainer-1 {
        text-align: center;
    }
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvc2hvcHBpbmdDYXJ0QmxvY2s {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvU2xpZGVyU2hvcnRDb2Rl {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvU2xpZGVyU2hvcnRDb2Rl {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvU2xpZGVTaG9ydENvZGU {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvU2xpZGVTaG9ydENvZGU {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvU29jaWFsSWNvbnNTaG9ydENvZGU {
}

.bd-socialicon-14 {
    float: left;
}

.bd-socialicon-11 {
    float: left;
}

.bd-socialicon-45 {
    float: left;
}

.bd-socialicon-13 {
    float: left;
}

.bd-socialicon-50 {
    float: left;
}

.bd-socialicon-4 {
    float: left;
}

.bd-socialicon-2 {
    float: left;
}

.bd-socialicon-56 {
    float: left;
}

.bd-socialicon-12 {
    float: left;
}

.bd-socialicon-47 {
    float: left;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvU29jaWFsSWNvbnNTaG9ydENvZGU {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvU3BhY2VyU2hvcnRDb2Rl {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvU3BhY2VyU2hvcnRDb2Rl {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvc3VjY2Vzc01lc3NhZ2U {
}

.bd-successmessage-1 {
    border-radius: 0px;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvc3VjY2Vzc01lc3NhZ2U {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvVGV4dEJsb2NrU2hvcnRDb2Rl {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvVGV4dEJsb2NrU2hvcnRDb2Rl {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvVGV4dEdyb3VwU2hvcnRDb2Rl {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvVGV4dEdyb3VwU2hvcnRDb2Rl {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvVGV4dHVyZU92ZXJsYXlTaG9ydENvZGU {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvVGV4dHVyZU92ZXJsYXlTaG9ydENvZGU {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvVmlkZW9TaG9ydENvZGU {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvVmlkZW9TaG9ydENvZGU {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvdm1lbnU {
}

@media (min-width: 768px) {
    .bd-vmenu-1 .bd-verticalmenu-3 .bd-menuitem-23:hover > .bd-menu-24-popup,
    .bd-vmenu-1 .bd-verticalmenu-3 .bd-menuitem-24:hover > .bd-menu-24-popup,
    .bd-vmenu-1 .bd-verticalmenu-3 .bd-menuitem-23.hover > .bd-menu-24-popup,
    .bd-vmenu-1 .bd-verticalmenu-3 .bd-menuitem-24.hover > .bd-menu-24-popup {
        display: block;
        visibility: visible;
        pointer-events: auto;
    }
}

@media (max-width: 767px) {
    .bd-vmenu-1 .bd-verticalmenu-3 .bd-menuitem-23 > .bd-menu-24-popup,
    .bd-vmenu-1 .bd-verticalmenu-3 .bd-menuitem-24 > .bd-menu-24-popup {
        visibility: hidden;
    }

    .bd-vmenu-1 .bd-verticalmenu-3 .bd-menu-24-popup {
        position: static;
        display: none;
    }

        .bd-vmenu-1 .bd-verticalmenu-3 .bd-menu-24-popup.show {
            display: block;
            visibility: visible;
            pointer-events: auto;
        }

    .bd-vmenu-1 .bd-verticalmenu-3 .bd-menu-24 {
        float: none;
    }
}

.bd-responsivemenu-13 .bd-menuitem-5 {
    list-style: none;
    position: relative;
}

    .bd-responsivemenu-13 .bd-menuitem-5 > a,
    .bd-responsivemenu-13 .bd-menuitem-5 > a:link,
    .bd-responsivemenu-13 .bd-menuitem-5 > a:visited {
        display: block;
        white-space: nowrap;
    }

        .bd-responsivemenu-13 .bd-menuitem-5 > a:before,
        .bd-responsivemenu-13 .bd-menuitem-5 > a:link:before,
        .bd-responsivemenu-13 .bd-menuitem-5 > a:visited:before {
            display: inline-block;
            vertical-align: middle;
            text-decoration: none;
            font-style: normal;
            font-weight: normal;
            text-align: center;
            text-transform: none;
            width: auto;
            opacity: 1;
            font-family: 'Billion Web Font';
        }

        .bd-responsivemenu-13 .bd-menuitem-5 > a:focus {
            outline-width: 0;
        }

.bd-verticalmenu-3 {
    display: block;
}

.bd-menuitem-24 {
    position: relative;
}

.bd-verticalmenu-3 .nav-tabs > li,
.bd-verticalmenu-3 .nav-pills > li {
    float: none;
}

.bd-verticalmenu-3 .bd-menu-24-popup {
    top: 0;
    left: 100%;
}

.bd-menu-23.nav.nav-pills > li + li {
    margin: 0;
}

.bd-menu-23 {
    /* reset default bootstrap values */
    padding: 0;
    margin: 0;
}

.bd-menuitem-23 > a {
    cursor: pointer;
    /* Safari click events fix */
}

.bd-menu-23 .bd-menuitem-23 {
    list-style: none;
    position: relative;
}

    .bd-menu-23 .bd-menuitem-23 > a,
    .bd-menu-23 .bd-menuitem-23 > a:link,
    .bd-menu-23 .bd-menuitem-23 > a:visited {
        color: #777777;
        padding: 5px;
        border-radius: 0px;
        display: block;
        white-space: nowrap;
    }

        .bd-menu-23 .bd-menuitem-23 > a:before,
        .bd-menu-23 .bd-menuitem-23 > a:link:before,
        .bd-menu-23 .bd-menuitem-23 > a:visited:before {
            display: inline-block;
            vertical-align: middle;
            text-decoration: none;
            font-style: normal;
            font-weight: normal;
            text-align: center;
            text-transform: none;
            width: auto;
            opacity: 1;
            font-family: 'Billion Web Font';
        }

        .bd-menu-23 .bd-menuitem-23 > a:focus {
            outline-width: 0;
        }

    .bd-menu-23 .bd-menuitem-23:not(.active) > a.hover:not(.active),
    .bd-menu-23 .bd-menuitem-23:not(.active) > a:hover:not(.active),
    .bd-menu-23 .bd-menuitem-23:not(.active) > a:focus:not(.active),
    .bd-menu-23 .bd-menuitem-23:hover:not(.active) > a:not(.active) {
        color: #3c8fe2;
        text-decoration: none;
        background-color: #f5f5f5;
        background-image: none;
    }

    .bd-menu-23 .bd-menuitem-23 > a.active,
    .bd-menu-23 .bd-menuitem-23.active > a {
        color: #ffffff;
        background-color: #ededed;
        background-image: none;
    }

.bd-menu-24-popup {
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    z-index: 1001;
}

    .bd-menu-24-popup.bd-popup-left {
        left: auto;
        right: 0;
    }

    .bd-menu-24-popup,
    .bd-menu-24-popup.bd-popup-right {
        left: 0;
        right: auto;
    }

.bd-menuitem-24 > .bd-menu-24-popup {
    top: -1px;
}

    .bd-menuitem-24 > .bd-menu-24-popup.bd-popup-left {
        left: auto;
        right: 100%;
    }

    .bd-menuitem-24 > .bd-menu-24-popup,
    .bd-menuitem-24 > .bd-menu-24-popup.bd-popup-right {
        left: 100%;
        right: auto;
    }

.bd-menu-24 .bd-menuitem-24:last-child > a:not(.active):not(:hover) {
    border-bottom-width: 0;
}

.bd-menu-24 .bd-menuitem-24:last-child > a:hover {
    border-bottom-width: 0;
}

.bd-menu-24 .bd-menuitem-24:last-child > a.active {
    border-bottom-width: 0;
}

.bd-menu-24 {
    /* reset default bootstrap values */
    padding: 0;
    margin: 0;
    background-color: #ffffff;
    min-width: 160px;
    position: relative;
    -webkit-box-shadow: 4px 4px 0px 0 rgba(0, 0, 0, 0.09);
    -o-box-shadow: 4px 4px 0px 0 rgba(0, 0, 0, 0.09);
    -ms-box-shadow: 4px 4px 0px 0 rgba(0, 0, 0, 0.09);
    -moz-box-shadow: 4px 4px 0px 0 rgba(0, 0, 0, 0.09);
    box-shadow: 4px 4px 0px 0 rgba(0, 0, 0, 0.09);
    margin: 0px 2px 0px 0px;
    border: 1px solid #f7f7f7;
}

    .bd-menu-24 .bd-menuitem-24 {
        list-style: none;
        position: relative;
    }

        .bd-menu-24 .bd-menuitem-24 > a,
        .bd-menu-24 .bd-menuitem-24 > a:link,
        .bd-menu-24 .bd-menuitem-24 > a:visited {
            color: #777777;
            padding: 5px 10px 5px 15px;
            display: block;
            white-space: nowrap;
        }

            .bd-menu-24 .bd-menuitem-24 > a:before,
            .bd-menu-24 .bd-menuitem-24 > a:link:before,
            .bd-menu-24 .bd-menuitem-24 > a:visited:before {
                display: inline-block;
                vertical-align: middle;
                text-decoration: none;
                font-style: normal;
                font-weight: normal;
                text-align: center;
                text-transform: none;
                width: auto;
                opacity: 1;
                font-family: 'Billion Web Font';
            }

            .bd-menu-24 .bd-menuitem-24 > a:focus {
                outline-width: 0;
            }

        .bd-menu-24 .bd-menuitem-24:not(.active) > a.hover:not(.active),
        .bd-menu-24 .bd-menuitem-24:not(.active) > a:hover:not(.active),
        .bd-menu-24 .bd-menuitem-24:not(.active) > a:focus:not(.active),
        .bd-menu-24 .bd-menuitem-24:hover:not(.active) > a:not(.active) {
            color: #3c8fe2;
            text-decoration: none;
            background-color: #f5f5f5;
            background-image: none;
        }

        .bd-menu-24 .bd-menuitem-24 > a.active,
        .bd-menu-24 .bd-menuitem-24.active > a {
            color: #2b5ea0;
            background-color: #3177bd;
            background-image: none;
        }

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvdm1lbnU {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvd2FybmluZ01lc3NhZ2U {
}

.bd-warningmessage-1 {
    border-radius: 0px;
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvd2FybmluZ01lc3NhZ2U {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2FydGljbGU {
}

.bd-pager-1 ul {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.bd-pager-1 ul {
    display: inline-block;
    width: 100%;
    margin: 0;
}

    .bd-pager-1 ul li {
        display: inline-block;
    }

    .bd-pager-1 ul > li:first-child {
        float: left;
    }

    .bd-pager-1 ul > li:last-child {
        float: right;
    }

.bd-pager-1 > .bd-pagination-13 > li.bd-paginationitem-13 > a,
.bd-pager-1 > .bd-pagination-13 > li.bd-paginationitem-13 > span,
.bd-pager-1 > .bd-pagination-13 > li.bd-paginationitem-13 > a:link,
.bd-pager-1 > .bd-pagination-13 > li.bd-paginationitem-13 > a:visited {
    border-radius: 0px;
}

.bd-pagination-13.right {
    text-align: right;
}

.bd-pagination-13.center {
    text-align: center;
}

.bd-pagination-13 > *:last-child {
    margin-right: 0;
}

.bd-pagination-13 span {
    cursor: default;
}

.pagination > ul.bd-pagination-13 > .active > a,
.pagination > ul.bd-pagination-13 > .active > span {
    color: inherit;
    line-height: inherit;
}

.bd-pagination-13 > li.bd-paginationitem-13 > a,
.bd-pagination-13 > li.bd-paginationitem-13 > span,
.bd-pagination-13 > li.bd-paginationitem-13 > a:link,
.bd-pagination-13 > li.bd-paginationitem-13 > a:visited {
    color: #555555;
    border: 1px solid #ffffff;
    border-radius: 0px;
}

    .bd-pagination-13 > li.bd-paginationitem-13 > a:hover {
        background-color: #dddddd;
        background-image: none;
    }

.bd-pagination-13 > li.active.bd-paginationitem-13 > a,
.bd-pagination-13 > li.active.bd-paginationitem-13 > span {
    color: inherit;
    background-color: #f5f5f5;
    font-weight: bold;
    background-image: none;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2FydGljbGU {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2FydGljbGVDb250ZW50MQ {
}

.bd-lightbox-5 {
    background: #333;
    background: rgba(0, 0, 0, 0.8);
    bottom: 0;
    left: 0;
    padding: 0 100px;
    position: fixed;
    right: 0;
    text-align: center;
    top: 0;
    z-index: 1000000;
}

    .bd-lightbox-5 .lightbox-image {
        border: 6px solid #fff;
        border-radius: 3px;
        display: none;
        max-width: 100%;
        vertical-align: middle;
    }

        .bd-lightbox-5 .lightbox-image.active {
            display: inline-block;
        }

    .bd-lightbox-5 .lightbox-error {
        background: #fff;
        border: 1px solid #b4b4b4;
        border-radius: 10px;
        box-shadow: 0 2px 5px #333;
        height: 80px;
        opacity: .95;
        padding: 20px;
        position: fixed;
        width: 300px;
        z-index: 100;
    }

    .bd-lightbox-5 .loading {
        background: #ffffff url(images/preloader01.gif) center center no-repeat;
        border: 1px solid #b4b4b4;
        border-radius: 10px;
        box-shadow: 0 2px 5px #333;
        height: 32px;
        opacity: .5;
        padding: 10px;
        position: fixed;
        width: 32px;
        z-index: 10100;
    }

    .bd-lightbox-5 .arrow {
        cursor: pointer;
        height: 100px;
        opacity: .5;
        filter: alpha(opacity=50);
        position: fixed;
        width: 82px;
        z-index: 10003;
    }

        .bd-lightbox-5 .arrow.left {
            left: 9px;
        }

        .bd-lightbox-5 .arrow.right {
            right: 9px;
        }

        .bd-lightbox-5 .arrow:hover {
            opacity: 1;
            filter: alpha(opacity=100);
        }

        .bd-lightbox-5 .arrow.disabled {
            display: none;
        }

    .bd-lightbox-5 .arrow-t,
    .bd-lightbox-5 .arrow-b {
        background-color: #fff;
        border-radius: 3px;
        height: 6px;
        position: relative;
        width: 30px;
    }

html[dir="rtl"] .bd-lightbox-5 .arrow-t,
html[dir="rtl"] .bd-lightbox-5 .arrow-b {
    right: 26px;
}

html[dir="ltr"] .bd-lightbox-5 .arrow-t,
html[dir="ltr"] .bd-lightbox-5 .arrow-b {
    left: 26px;
}

.bd-lightbox-5 .arrow-t {
    top: 38px;
}

.bd-lightbox-5 .arrow-b {
    top: 50px;
}

.bd-lightbox-5 .close {
    cursor: pointer;
    height: 22px;
    opacity: .5;
    filter: alpha(opacity=50);
    position: fixed;
    right: 39px;
    top: 30px;
    width: 22px;
    z-index: 10003;
}

    .bd-lightbox-5 .close:hover {
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .bd-lightbox-5 .close .cw,
    .bd-lightbox-5 .close .ccw {
        background-color: #fff;
        border-radius: 3px;
        height: 6px;
        position: absolute;
        left: -4px;
        top: 8px;
        width: 30px;
    }

.bd-lightbox-5 .cw {
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    /* IE 9 */
    -webkit-transform: rotate(45deg);
    /* Safari and Chrome */
    -o-transform: rotate(45deg);
    /* Opera */
    -moz-transform: rotate(45deg);
    /* Firefox */
}

.bd-lightbox-5 .ccw {
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    /* IE 9 */
    -webkit-transform: rotate(-45deg);
    /* Safari and Chrome */
    -o-transform: rotate(-45deg);
    /* Opera */
    -moz-transform: rotate(-45deg);
    /* Firefox */
}

.bd-lightbox-5 .close-alt,
.bd-lightbox-5 .arrow-right-alt,
.bd-lightbox-5 .arrow-left-alt {
    color: #fff;
    display: none;
    font-size: 2.5em;
    line-height: 100%;
}

.ie8 .bd-lightbox-5 .close-alt,
.ie8 .bd-lightbox-5 .arrow-right-alt,
.ie8 .bd-lightbox-5 .arrow-left-alt {
    display: block;
}

.ie8 .bd-lightbox-5 .cw,
.ie8 .bd-lightbox-5 .ccw {
    display: none;
}

.ie7 .close-alt,
.ie7 .arrow-right-alt,
.ie7 .arrow-left-alt {
    display: block !important;
}

.ie7 .cw,
.ie7 .ccw {
    display: none !important;
}

.bd-postcontent-1 img:not(.no-lightbox),
.bd-lightbox-5 .lightbox-image {
    cursor: pointer;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2FydGljbGVDb250ZW50MQ {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2FydGljbGVDb250ZW50Mw {
}

.bd-postcontent-2 {
    position: relative;
}

.bd-lightbox-2 {
    background: #333;
    background: rgba(0, 0, 0, 0.8);
    bottom: 0;
    left: 0;
    padding: 0 100px;
    position: fixed;
    right: 0;
    text-align: center;
    top: 0;
    z-index: 1000000;
}

    .bd-lightbox-2 .lightbox-image {
        border: 6px solid #fff;
        border-radius: 3px;
        display: none;
        max-width: 100%;
        vertical-align: middle;
    }

        .bd-lightbox-2 .lightbox-image.active {
            display: inline-block;
        }

    .bd-lightbox-2 .lightbox-error {
        background: #fff;
        border: 1px solid #b4b4b4;
        border-radius: 10px;
        box-shadow: 0 2px 5px #333;
        height: 80px;
        opacity: .95;
        padding: 20px;
        position: fixed;
        width: 300px;
        z-index: 100;
    }

    .bd-lightbox-2 .loading {
        background: #ffffff url(images/preloader01.gif) center center no-repeat;
        border: 1px solid #b4b4b4;
        border-radius: 10px;
        box-shadow: 0 2px 5px #333;
        height: 32px;
        opacity: .5;
        padding: 10px;
        position: fixed;
        width: 32px;
        z-index: 10100;
    }

    .bd-lightbox-2 .arrow {
        cursor: pointer;
        height: 100px;
        opacity: .5;
        filter: alpha(opacity=50);
        position: fixed;
        width: 82px;
        z-index: 10003;
    }

        .bd-lightbox-2 .arrow.left {
            left: 9px;
        }

        .bd-lightbox-2 .arrow.right {
            right: 9px;
        }

        .bd-lightbox-2 .arrow:hover {
            opacity: 1;
            filter: alpha(opacity=100);
        }

        .bd-lightbox-2 .arrow.disabled {
            display: none;
        }

    .bd-lightbox-2 .arrow-t,
    .bd-lightbox-2 .arrow-b {
        background-color: #fff;
        border-radius: 3px;
        height: 6px;
        position: relative;
        width: 30px;
    }

html[dir="rtl"] .bd-lightbox-2 .arrow-t,
html[dir="rtl"] .bd-lightbox-2 .arrow-b {
    right: 26px;
}

html[dir="ltr"] .bd-lightbox-2 .arrow-t,
html[dir="ltr"] .bd-lightbox-2 .arrow-b {
    left: 26px;
}

.bd-lightbox-2 .arrow-t {
    top: 38px;
}

.bd-lightbox-2 .arrow-b {
    top: 50px;
}

.bd-lightbox-2 .close {
    cursor: pointer;
    height: 22px;
    opacity: .5;
    filter: alpha(opacity=50);
    position: fixed;
    right: 39px;
    top: 30px;
    width: 22px;
    z-index: 10003;
}

    .bd-lightbox-2 .close:hover {
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .bd-lightbox-2 .close .cw,
    .bd-lightbox-2 .close .ccw {
        background-color: #fff;
        border-radius: 3px;
        height: 6px;
        position: absolute;
        left: -4px;
        top: 8px;
        width: 30px;
    }

.bd-lightbox-2 .cw {
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    /* IE 9 */
    -webkit-transform: rotate(45deg);
    /* Safari and Chrome */
    -o-transform: rotate(45deg);
    /* Opera */
    -moz-transform: rotate(45deg);
    /* Firefox */
}

.bd-lightbox-2 .ccw {
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    /* IE 9 */
    -webkit-transform: rotate(-45deg);
    /* Safari and Chrome */
    -o-transform: rotate(-45deg);
    /* Opera */
    -moz-transform: rotate(-45deg);
    /* Firefox */
}

.bd-lightbox-2 .close-alt,
.bd-lightbox-2 .arrow-right-alt,
.bd-lightbox-2 .arrow-left-alt {
    color: #fff;
    display: none;
    font-size: 2.5em;
    line-height: 100%;
}

.ie8 .bd-lightbox-2 .close-alt,
.ie8 .bd-lightbox-2 .arrow-right-alt,
.ie8 .bd-lightbox-2 .arrow-left-alt {
    display: block;
}

.ie8 .bd-lightbox-2 .cw,
.ie8 .bd-lightbox-2 .ccw {
    display: none;
}

.ie7 .close-alt,
.ie7 .arrow-right-alt,
.ie7 .arrow-left-alt {
    display: block !important;
}

.ie7 .cw,
.ie7 .ccw {
    display: none !important;
}

.bd-postcontent-2 img:not(.no-lightbox),
.bd-lightbox-2 .lightbox-image {
    cursor: pointer;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2FydGljbGVDb250ZW50Mw {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2FydGljbGVFeGNlcnB0Mg {
}

.bd-postcontent-8 {
    position: relative;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2FydGljbGVFeGNlcnB0Mg {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2FydGljbGVFeGNlcnB0Ng {
}

.bd-postcontent-10 {
    position: relative;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2FydGljbGVFeGNlcnB0Ng {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2FydGljbGVIZWFkZXIx {
}

.bd-postheader-1 {
    margin-top: 0;
    padding-top: 20px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2FydGljbGVIZWFkZXIx {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2FydGljbGVIZWFkZXIy {
}

h2.bd-postheader-2 {
    line-height: 14px;
    text-transform: none;
    margin-top: 0;
    margin-bottom: 0;
}

    h2.bd-postheader-2 a:hover {
        text-decoration: none;
    }

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2FydGljbGVIZWFkZXIy {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2FydGljbGVIZWFkZXIz {
}

.bd-postheader-3 {
    margin-top: 10px;
}

h2.bd-postheader-3 {
    line-height: 14px;
    text-transform: none;
    color: #3177bd;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 200;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2FydGljbGVIZWFkZXIz {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2FydGljbGVIZWFkZXJEZWZhdWx0 {
}

h2.bd-postheader-6 {
    line-height: 48px;
    text-transform: none;
    font-size: 48px;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 200;
}

    h2.bd-postheader-6 a {
        line-height: 14px;
    }

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2FydGljbGVIZWFkZXJEZWZhdWx0 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2FydGljbGVJbWFnZTE {
}

.bd-postimage-1 {
    display: inline-block;
}

    .bd-postimage-1 img {
        display: block;
        width: 100%;
        height: 100%;
    }

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2FydGljbGVJbWFnZTE {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2FydGljbGVJbWFnZTY {
}

.bd-postimage-5 {
    margin-right: 10px;
    margin-bottom: 10px;
    position: relative;
    float: left;
    display: inline-block;
}

.bd-postimage-5 {
    display: inline-block;
}

    .bd-postimage-5 img {
        display: block;
        width: 100%;
        height: 100%;
    }

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2FydGljbGVJbWFnZTY {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2FydGljbGVOYXZpZ2F0aW9uMQ {
}

.bd-pagination-14.right {
    text-align: right;
}

.bd-pagination-14.center {
    text-align: center;
}

.bd-pagination-14 > *:last-child {
    margin-right: 0;
}

.bd-pagination-14 span {
    cursor: default;
}

.pagination > ul.bd-pagination-14 > .active > a,
.pagination > ul.bd-pagination-14 > .active > span {
    color: inherit;
    line-height: inherit;
}

.bd-pagination-14 > li.bd-paginationitem-14 > a,
.bd-pagination-14 > li.bd-paginationitem-14 > span,
.bd-pagination-14 > li.bd-paginationitem-14 > a:link,
.bd-pagination-14 > li.bd-paginationitem-14 > a:visited {
    color: #555555;
    border: 1px solid #ffffff;
    border-radius: 0px;
}

    .bd-pagination-14 > li.bd-paginationitem-14 > a:hover {
        background-color: #dddddd;
        background-image: none;
    }

.bd-pagination-14 > li.active.bd-paginationitem-14 > a,
.bd-pagination-14 > li.active.bd-paginationitem-14 > span {
    color: inherit;
    background-color: #f5f5f5;
    font-weight: bold;
    background-image: none;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2FydGljbGVOYXZpZ2F0aW9uMQ {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JhY2tUb1RvcDE {
}

a.bd-backtotop-1:hover {
    text-decoration: none;
}

.bd-backtotop-1 {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    z-index: auto;
}

@media (max-width: 1199px) {
    .bd-backtotop-1 {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }
}

@media (max-width: 991px) {
    .bd-backtotop-1 {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }
}

@media (max-width: 767px) {
    .bd-backtotop-1 {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }
}

.bd-smoothscroll-3 {
    position: fixed;
    left: auto;
    right: 13.071%;
    top: 89.798%;
    bottom: auto;
    z-index: 9999;
}

@media (max-width: 1199px) {
    .bd-smoothscroll-3 {
        position: fixed;
        left: auto;
        right: 3.172%;
        top: 89.803%;
        bottom: auto;
    }
}

@media (max-width: 991px) {
    .bd-smoothscroll-3 {
        position: fixed;
        left: auto;
        right: 1.870%;
        top: 89.798%;
        bottom: auto;
    }
}

@media (max-width: 767px) {
    .bd-smoothscroll-3 {
        position: fixed;
        left: auto;
        right: 1.558%;
        top: 49.039%;
        bottom: auto;
    }
}

.bd-icon-67:before {
    content: '\216';
}

.bd-icon-67:before {
    visibility: inherit;
}

.bd-icon-67:before {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    background-color: rgba(36, 52, 74, 0.25);
    font-size: 30px;
    padding: 10px;
    line-height: 42.85714287px;
    line-height: 30px;
}

.bd-icon-67:hover:before {
    background-color: rgba(27, 65, 103, 0.5);
    color: #ffffff;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JhY2tUb1RvcDE {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWNhdGVnb3J5bmFtZTE {
}

.bd-categoryname-1 {
    padding: 5px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWNhdGVnb3J5bmFtZTE {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWNvbnRlbnQ3 {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWNvbnRlbnQ3 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWNvbnRlbnRsYXlvdXQxMw {
}

.bd-contentlayout-13 {
    clear: both;
    /* DR-15613 */
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWNvbnRlbnRsYXlvdXQxMw {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWNvbnZlcnRlZC1jdXN0b21odG1sLTIw {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWNvbnZlcnRlZC1jdXN0b21odG1sLTIw {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWRubm1vZHVsZWNvbnRhaW5lcjE {
}

@media (max-width: 767px) {
    .bd-dnnmodulecontainer-1 {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .bd-containereffect-2 {
        margin-top: 0px;
    }
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWRubm1vZHVsZWNvbnRhaW5lcjE {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWZvb3RlcmFyZWEx {
}

.bd-footerarea-1 {
    background-color: #19315a;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWZvb3RlcmFyZWEx {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWdvb2dsZW1hcDI {
}

.bd-googlemap-2 {
    height: 300px;
    width: 100%;
    display: block;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWdvb2dsZW1hcDI {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWhlYWRlcmFyZWEx {
}

@media (max-width: 991px) {
    .bd-headerarea-1 {
        margin-bottom: 65px;
    }
}

@media (max-width: 767px) {
    .bd-headerarea-1 {
        margin-bottom: 0px;
        background-color: #cccccc;
        border-top-width: 0px;
        border-left-width: 0px;
        border-bottom-width: 0px;
        border-right-width: 0px;
    }
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWhlYWRlcmFyZWEx {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWhtZW51Mw {
}

@media (max-width: 991px) {
    .bd-hmenu-3 {
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .bd-hmenu-3 {
        margin-right: 0px;
        float: none;
        margin-bottom: 0px;
    }
}

@media (min-width: 768px) {
    .bd-hmenu-3 .bd-menuitem-10:hover > .bd-menu-4-popup,
    .bd-hmenu-3 .bd-menuitem-14:hover > .bd-menu-4-popup {
        display: block;
        visibility: visible;
        pointer-events: auto;
    }
}

@media (max-width: 767px) {
    .bd-hmenu-3 {
        /* since 3.1.0 */
    }

        .bd-hmenu-3 .navbar-collapse .bd-horizontalmenu-2 .bd-menu-4-popup {
            display: none;
            position: static;
        }

            .bd-hmenu-3 .navbar-collapse .bd-horizontalmenu-2 .bd-menu-4-popup.show {
                display: block;
                visibility: visible;
                pointer-events: auto;
            }

        .bd-hmenu-3 .navbar-collapse .bd-horizontalmenu-2 .nav {
            float: none !important;
            display: block !important;
        }

            .bd-hmenu-3 .navbar-collapse .bd-horizontalmenu-2 .nav > li {
                float: none;
                display: block;
                width: auto;
            }

        .bd-hmenu-3 .navbar-collapse .bd-horizontalmenu-2 .bd-menu-4 {
            float: none;
        }

        .bd-hmenu-3 .navbar-toggle {
            display: block;
        }

        .bd-hmenu-3 .navbar-collapse.collapse {
            display: none !important;
        }

            .bd-hmenu-3 .navbar-collapse.collapse.in {
                display: block !important;
            }

        .bd-hmenu-3 .collapsing {
            overflow: hidden !important;
        }
}

.bd-horizontalmenu-2 {
    margin-top: 10px;
}

@media (max-width: 767px) {
    .bd-horizontalmenu-2 {
        background-color: #ffffff;
        background-image: linear-gradient(0deg, #eeeeee 0%, #f7f7f7 50%, #fefefe 100%);
        background-image: -webkit-linear-gradient(90deg, #eeeeee 0%, #f7f7f7 50%, #fefefe 100%);
        background-image: -o-linear-gradient(90deg, #eeeeee 0%, #f7f7f7 50%, #fefefe 100%);
        background-image: -ms-linear-gradient(90deg, #eeeeee 0%, #f7f7f7 50%, #fefefe 100%);
        background-image: -moz-linear-gradient(90deg, #eeeeee 0%, #f7f7f7 50%, #fefefe 100%);
        background-repeat: repeat;
        background-attachment: scroll;
        background-position: 0% 0%;
        border: 1px solid #cccccc;
    }
}

.bd-menu-3.nav.nav-pills > li + li {
    margin: 0;
}

.bd-menu-3 {
    /* reset default bootstrap values */
    padding: 0;
    margin: 0;
}

.bd-menu-3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.bd-menuitem-10 > a {
    cursor: pointer;
    /* Safari click events fix */
}

.bd-menu-3.nav-pills .bd-menuitem-10 {
    list-style: none;
    position: relative;
}

    .bd-menu-3.nav-pills .bd-menuitem-10 > a,
    .bd-menu-3.nav-pills .bd-menuitem-10 > a:link,
    .bd-menu-3.nav-pills .bd-menuitem-10 > a:visited {
        color: #1a345f;
        -webkit-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out;
        text-transform: uppercase;
        margin-right: 10px;
        font-weight: 600;
        font-size: 16px;
        letter-spacing: 1px;
        margin-left: 10px;
        padding: 15px 0px;
        border-bottom: 4px solid rgba(0, 0, 0, 0);
        border-radius: 0px;
        line-height: 22.85714286px;
        display: block;
        white-space: nowrap;
    }

        .bd-menu-3.nav-pills .bd-menuitem-10 > a:before,
        .bd-menu-3.nav-pills .bd-menuitem-10 > a:link:before,
        .bd-menu-3.nav-pills .bd-menuitem-10 > a:visited:before {
            display: inline-block;
            vertical-align: middle;
            text-decoration: none;
            font-style: normal;
            font-weight: normal;
            text-align: center;
            text-transform: none;
            width: auto;
            opacity: 1;
            font-family: 'Billion Web Font';
        }

@media (max-width: 767px) {
    .bd-menu-3.nav-pills .bd-menuitem-10 > a,
    .bd-menu-3.nav-pills .bd-menuitem-10 > a:link,
    .bd-menu-3.nav-pills .bd-menuitem-10 > a:visited {
        border-bottom-width: 0px;
        border-bottom-style: none;
        border-left-width: 0px;
        border-left-style: none;
        border-right-width: 0px;
        border-right-style: none;
        border-top-width: 0px;
        border-top-style: none;
        background-color: #ffffff;
        margin: 0px;
    }
}

.bd-menu-3.nav-pills .bd-menuitem-10 > a:before,
.bd-menu-3.nav-pills .bd-menuitem-10 > a:link:before,
.bd-menu-3.nav-pills .bd-menuitem-10 > a:visited:before {
    display: none;
}

.bd-menu-3.nav-pills .bd-menuitem-10 > a:focus {
    outline-width: 0;
}

.bd-menu-3.nav-pills .bd-menuitem-10:not(.active) > a.hover:not(.active),
.bd-menu-3.nav-pills .bd-menuitem-10:not(.active) > a:hover:not(.active),
.bd-menu-3.nav-pills .bd-menuitem-10:not(.active) > a:focus:not(.active),
.bd-menu-3.nav-pills .bd-menuitem-10:hover:not(.active) > a:not(.active) {
    text-decoration: none;
    color: #2cb54c;
    border-bottom: 4px solid #3c8fe2;
}

@media (max-width: 767px) {
    .bd-menu-3.nav-pills .bd-menuitem-10:not(.active) > a.hover:not(.active),
    .bd-menu-3.nav-pills .bd-menuitem-10:not(.active) > a:hover:not(.active),
    .bd-menu-3.nav-pills .bd-menuitem-10:not(.active) > a:focus:not(.active),
    .bd-menu-3.nav-pills .bd-menuitem-10:hover:not(.active) > a:not(.active) {
        background-color: #f5f5f5;
        border-bottom-width: 0px;
        border-bottom-style: none;
        border-left-width: 0px;
        border-left-style: none;
        border-right-width: 0px;
        border-right-style: none;
        border-top-width: 0px;
        border-top-style: none;
        -webkit-box-shadow: 0px 3px 5px 0 rgba(0, 0, 0, 0.33), 0px 7px 5px 3px rgba(0, 0, 0, 0.11);
        -o-box-shadow: 0px 3px 5px 0 rgba(0, 0, 0, 0.33), 0px 7px 5px 3px rgba(0, 0, 0, 0.11);
        -ms-box-shadow: 0px 3px 5px 0 rgba(0, 0, 0, 0.33), 0px 7px 5px 3px rgba(0, 0, 0, 0.11);
        -moz-box-shadow: 0px 3px 5px 0 rgba(0, 0, 0, 0.33), 0px 7px 5px 3px rgba(0, 0, 0, 0.11);
        box-shadow: 0px 3px 5px 0 rgba(0, 0, 0, 0.33), 0px 7px 5px 3px rgba(0, 0, 0, 0.11);
    }
}

.bd-menu-3.nav-pills .bd-menuitem-10:not(.active) > a.hover:not(.active):before,
.bd-menu-3.nav-pills .bd-menuitem-10:not(.active) > a:hover:not(.active):before,
.bd-menu-3.nav-pills .bd-menuitem-10:not(.active) > a:focus:not(.active):before,
.bd-menu-3.nav-pills .bd-menuitem-10:hover:not(.active) > a:not(.active):before {
    display: none;
}

.bd-menu-3.nav-pills .bd-menuitem-10 > a.active,
.bd-menu-3.nav-pills .bd-menuitem-10.active > a {
    color: #2cb54c;
    -webkit-box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.25);
    -o-box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.25);
    -ms-box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.25);
    border-bottom: 4px solid #3177bd;
}

@media (max-width: 767px) {
    .bd-menu-3.nav-pills .bd-menuitem-10 > a.active,
    .bd-menu-3.nav-pills .bd-menuitem-10.active > a {
        background-color: #f5f5f5;
        border-bottom-width: 0px;
        border-bottom-style: none;
        border-left-width: 0px;
        border-left-style: none;
        border-right-width: 0px;
        border-right-style: none;
        border-top-width: 0px;
        border-top-style: none;
    }
}

.bd-menu-3.nav-pills .bd-menuitem-10 > a.active:before,
.bd-menu-3.nav-pills .bd-menuitem-10.active > a:before {
    display: none;
}

.bd-menu-3.nav-pills .bd-menuitem-10.bd-submenu-icon-only > a:before,
.bd-menu-3.nav-pills .bd-menuitem-10.bd-submenu-icon-only > a:link:before,
.bd-menu-3.nav-pills .bd-menuitem-10.bd-submenu-icon-only > a:visited:before,
.bd-menu-3.nav-pills .bd-menuitem-10.bd-submenu-icon-only:not(.active) > a.hover:not(.active):before,
.bd-menu-3.nav-pills .bd-menuitem-10.bd-submenu-icon-only:not(.active) > a:hover:not(.active):before,
.bd-menu-3.nav-pills .bd-menuitem-10.bd-submenu-icon-only:not(.active) > a:focus:not(.active):before,
.bd-menu-3.nav-pills .bd-menuitem-10.bd-submenu-icon-only:hover:not(.active) > a:not(.active):before,
.bd-menu-3.nav-pills .bd-menuitem-10.bd-submenu-icon-only > a.active:before,
.bd-menu-3.nav-pills .bd-menuitem-10.bd-submenu-icon-only.active > a:before {
    display: inline-block;
}

.bd-menu-4-popup {
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    z-index: 1001;
}

    .bd-menu-4-popup,
    .bd-menu-4-popup.bd-popup-left {
        left: auto;
        right: 0;
    }

        .bd-menu-4-popup.bd-popup-right {
            left: 0;
            right: auto;
        }

.bd-menuitem-14 > .bd-menu-4-popup {
    top: 0;
}

    .bd-menuitem-14 > .bd-menu-4-popup,
    .bd-menuitem-14 > .bd-menu-4-popup.bd-popup-left {
        left: auto;
        right: 100%;
    }

        .bd-menuitem-14 > .bd-menu-4-popup.bd-popup-right {
            left: 100%;
            right: auto;
        }

.bd-menu-4 .bd-menuitem-14:last-child > a:not(.active):not(:hover) {
    border-bottom-width: 0;
}

.bd-menu-4 .bd-menuitem-14:last-child > a:hover {
    border-bottom-width: 0;
}

.bd-menu-4 .bd-menuitem-14:last-child > a.active {
    border-bottom-width: 0;
}

.bd-menu-4 {
    /* reset default bootstrap values */
    padding: 0;
    margin: 0;
    background-color: #285ba4;
    min-width: 160px;
    position: relative;
    -webkit-box-shadow: 4px 4px 0px 0 rgba(0, 0, 0, 0.09);
    -o-box-shadow: 4px 4px 0px 0 rgba(0, 0, 0, 0.09);
    -ms-box-shadow: 4px 4px 0px 0 rgba(0, 0, 0, 0.09);
    -moz-box-shadow: 4px 4px 0px 0 rgba(0, 0, 0, 0.09);
    box-shadow: 4px 4px 0px 0 rgba(0, 0, 0, 0.09);
}

li > .bd-menu-4-popup {
    opacity: 0;
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

    li:hover > .bd-menu-4-popup,
    li > .bd-menu-4-popup.show {
        opacity: 1;
    }

.bd-menu-4 .bd-menuitem-14 {
    list-style: none;
    position: relative;
}

    .bd-menu-4 .bd-menuitem-14 > a,
    .bd-menu-4 .bd-menuitem-14 > a:link,
    .bd-menu-4 .bd-menuitem-14 > a:visited {
        text-decoration: none;
        letter-spacing: 1px;
        color: #ffffff;
        -webkit-transition: background-color 400ms ease-in-out,color 400ms ease-in-out;
        transition: background-color 400ms ease-in-out,color 400ms ease-in-out;
        text-align: left;
        text-transform: uppercase;
        padding: 10px 15px;
        display: block;
        white-space: nowrap;
    }

        .bd-menu-4 .bd-menuitem-14 > a:before,
        .bd-menu-4 .bd-menuitem-14 > a:link:before,
        .bd-menu-4 .bd-menuitem-14 > a:visited:before {
            display: inline-block;
            vertical-align: middle;
            text-decoration: none;
            font-style: normal;
            font-weight: normal;
            text-align: center;
            text-transform: none;
            width: auto;
            opacity: 1;
            font-family: 'Billion Web Font';
        }

        .bd-menu-4 .bd-menuitem-14 > a:focus {
            outline-width: 0;
        }

    .bd-menu-4 .bd-menuitem-14:not(.active) > a.hover:not(.active),
    .bd-menu-4 .bd-menuitem-14:not(.active) > a:hover:not(.active),
    .bd-menu-4 .bd-menuitem-14:not(.active) > a:focus:not(.active),
    .bd-menu-4 .bd-menuitem-14:hover:not(.active) > a:not(.active) {
        text-decoration: none;
        background-color: #3177bd;
        color: #ffffff;
        background-image: none;
    }

    .bd-menu-4 .bd-menuitem-14 > a.active,
    .bd-menu-4 .bd-menuitem-14.active > a {
        background-color: #3177bd;
        background-image: none;
    }

.bd-hmenu-3 .collapse-button {
    direction: ltr;
}

    .bd-hmenu-3 .collapse-button + .navbar-collapse {
        max-height: none;
        border: 0 none transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

@media (min-width: 768px) {
    .bd-hmenu-3 .collapse-button {
        display: none;
    }
}

@media (max-width: 767px) {
    .bd-hmenu-3 .collapse-button + .navbar-collapse {
        position: absolute;
        z-index: 1000;
        width: 100%;
    }
}

.bd-responsivemenu-3 .bd-menuitem-7,
.bd-hmenu-3 .collapse-button .bd-menuitem-7 {
    list-style: none;
    position: relative;
}

    .bd-responsivemenu-3 .bd-menuitem-7 > a,
    .bd-responsivemenu-3 .bd-menuitem-7 > a:link,
    .bd-responsivemenu-3 .bd-menuitem-7 > a:visited,
    .bd-hmenu-3 .collapse-button .bd-menuitem-7 > a,
    .bd-hmenu-3 .collapse-button .bd-menuitem-7 > a:link,
    .bd-hmenu-3 .collapse-button .bd-menuitem-7 > a:visited {
        -webkit-transition: all 500ms;
        transition: all 500ms;
        color: #333333;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 20px;
        letter-spacing: 2px;
        padding: 5px;
        line-height: 28.57142858px;
        display: block;
        white-space: nowrap;
    }

        .bd-responsivemenu-3 .bd-menuitem-7 > a:before,
        .bd-responsivemenu-3 .bd-menuitem-7 > a:link:before,
        .bd-responsivemenu-3 .bd-menuitem-7 > a:visited:before,
        .bd-hmenu-3 .collapse-button .bd-menuitem-7 > a:before,
        .bd-hmenu-3 .collapse-button .bd-menuitem-7 > a:link:before,
        .bd-hmenu-3 .collapse-button .bd-menuitem-7 > a:visited:before {
            display: inline-block;
            vertical-align: middle;
            text-decoration: none;
            font-style: normal;
            font-weight: normal;
            text-align: center;
            text-transform: none;
            width: auto;
            opacity: 1;
            font-family: 'Billion Web Font';
        }

@media (max-width: 767px) {
    .bd-responsivemenu-3 .bd-menuitem-7 > a,
    .bd-responsivemenu-3 .bd-menuitem-7 > a:link,
    .bd-responsivemenu-3 .bd-menuitem-7 > a:visited,
    .bd-hmenu-3 .collapse-button .bd-menuitem-7 > a,
    .bd-hmenu-3 .collapse-button .bd-menuitem-7 > a:link,
    .bd-hmenu-3 .collapse-button .bd-menuitem-7 > a:visited {
        text-transform: none;
    }
}

.bd-responsivemenu-3 .bd-menuitem-7 > a:before,
.bd-responsivemenu-3 .bd-menuitem-7 > a:link:before,
.bd-responsivemenu-3 .bd-menuitem-7 > a:visited:before,
.bd-hmenu-3 .collapse-button .bd-menuitem-7 > a:before,
.bd-hmenu-3 .collapse-button .bd-menuitem-7 > a:link:before,
.bd-hmenu-3 .collapse-button .bd-menuitem-7 > a:visited:before {
    content: url(images/23b64c99014df4c794ce600ec429eb6d_menublack.png);
    font-size: 0 !important;
    line-height: 0 !important;
}

.bd-responsivemenu-3 .bd-menuitem-7 > a:before,
.bd-responsivemenu-3 .bd-menuitem-7 > a:link:before,
.bd-responsivemenu-3 .bd-menuitem-7 > a:visited:before,
.bd-hmenu-3 .collapse-button .bd-menuitem-7 > a:before,
.bd-hmenu-3 .collapse-button .bd-menuitem-7 > a:link:before,
.bd-hmenu-3 .collapse-button .bd-menuitem-7 > a:visited:before {
    font-size: 18px;
    padding: 10px;
    line-height: 25.71428572px;
}

.bd-responsivemenu-3 .bd-menuitem-7 > a:focus,
.bd-hmenu-3 .collapse-button .bd-menuitem-7 > a:focus {
    outline-width: 0;
}

.bd-responsivemenu-3 .bd-menuitem-7:not(.active) > a.hover:not(.active),
.bd-responsivemenu-3 .bd-menuitem-7:not(.active) > a:hover:not(.active),
.bd-responsivemenu-3 .bd-menuitem-7:not(.active) > a:focus:not(.active),
.bd-responsivemenu-3 .bd-menuitem-7:hover:not(.active) > a:not(.active),
.bd-hmenu-3 .collapse-button .bd-menuitem-7:not(.active) > a.hover:not(.active),
.bd-hmenu-3 .collapse-button .bd-menuitem-7:not(.active) > a:hover:not(.active),
.bd-hmenu-3 .collapse-button .bd-menuitem-7:not(.active) > a:focus:not(.active),
.bd-hmenu-3 .collapse-button .bd-menuitem-7:hover:not(.active) > a:not(.active) {
    text-decoration: none;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWhtZW51Mw {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWh0bWxjb250ZW50Mw {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWh0bWxjb250ZW50Mw {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWljb25saW5rMTM {
}

.bd-iconlink-13 {
    margin-right: 1em;
    float: left;
}

@media (max-width: 767px) {
    .bd-iconlink-13 {
        float: none;
        margin-bottom: 1em;
    }
}

.bd-icon-47:before {
    content: '\129';
}

.bd-icon-47:before {
    visibility: inherit;
}

.bd-icon-47:before {
    color: #3c8fe2;
    font-size: 21px;
    line-height: 30.00000001px;
    line-height: 21px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWljb25saW5rMTM {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWljb25saW5rMTU {
}

.bd-iconlink-15 {
    margin-right: 1em;
    float: left;
}

@media (max-width: 767px) {
    .bd-iconlink-15 {
        float: none;
        margin-bottom: 1em;
    }
}

.bd-icon-49:before {
    content: '\157';
}

.bd-icon-49:before {
    visibility: inherit;
}

.bd-icon-49:before {
    color: #3c8fe2;
    font-size: 21px;
    line-height: 30.00000001px;
    line-height: 21px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWljb25saW5rMTU {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWljb25saW5rMTc {
}

.bd-iconlink-17 {
    margin-right: 1em;
    float: left;
}

@media (max-width: 767px) {
    .bd-iconlink-17 {
        float: none;
        margin-bottom: 1em;
    }
}

.bd-icon-51:before {
    content: '\288';
}

.bd-icon-51:before {
    visibility: inherit;
}

.bd-icon-51:before {
    color: #3c8fe2;
    font-size: 21px;
    line-height: 30.00000001px;
    line-height: 21px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWljb25saW5rMTc {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWljb25saW5rMg {
}

.bd-icon-32:before {
    content: url(images/918773_bd_media_id_773b05b18aa7e799cbde267bead277fa.png);
    font-size: 0 !important;
    line-height: 0 !important;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWljb25saW5rMg {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWljb25saW5rNQ {
}

.bd-icon-59:before {
    content: url(images/918614_bd_media_id_898bcbef1dc5538ccc66047e5d469bb4.png);
    font-size: 0 !important;
    line-height: 0 !important;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWljb25saW5rNQ {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWltYWdlbGluazI {
}

@media (max-width: 991px) {
    .bd-imagelink-2 {
        width: 35%;
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .bd-imagelink-2 {
        width: 50%;
        float: none;
        left: 10%;
        right: 10%;
        padding-bottom: 10px;
        height: auto;
    }
}

@media (max-width: 991px) {
    .bd-imagelink-2 {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .bd-imagelink-2 {
        left: auto;
        right: auto;
        float: none;
    }
}

@media (max-width: 991px) {
    .bd-containereffect-1 {
        border: 1px solid rgba(0, 0, 0, 0);
    }
}

@media (max-width: 767px) {
    .bd-containereffect-1 {
        background-position: center center;
        background-size: cover;
        background-color: #ffffff;
        border-top-width: 0px;
        border-left-width: 0px;
        border-bottom-width: 0px;
        border-right-width: 0px;
    }
}

@media (max-width: 991px) {
    .bd-containereffect-1 {
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .bd-containereffect-1 {
        left: 10%;
        right: 10%;
        float: none;
    }
}

.bd-imagescaling-1.bd-imagescaling-img,
.bd-imagescaling-1 .bd-imagescaling-img {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 767px) {
    .bd-imagescaling-1.bd-imagescaling-img,
    .bd-imagescaling-1 .bd-imagescaling-img {
        background-position: center center;
        background-size: contain;
    }
}

.bd-imagelink-2 img,
img.img-responsive {
    max-width: 100%;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWltYWdlbGluazI {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWxheW91dGJveDE {
}

.bd-layoutbox-1 {
    width: 100%;
    height: 97px;
    margin-bottom: 22px;
}

@media (max-width: 991px) {
    .bd-layoutbox-1 {
        background-color: rgba(221, 221, 221, 0.92);
        border: 1px solid rgba(0, 0, 0, 0);
    }
}

@media (max-width: 767px) {
    .bd-layoutbox-1 {
        margin-bottom: 0px;
        background-color: #ededed;
        -webkit-box-shadow: 0px 0px 6px 0px rgba(51, 51, 51, 0.25);
        -o-box-shadow: 0px 0px 6px 0px rgba(51, 51, 51, 0.25);
        -ms-box-shadow: 0px 0px 6px 0px rgba(51, 51, 51, 0.25);
        -moz-box-shadow: 0px 0px 6px 0px rgba(51, 51, 51, 0.25);
        box-shadow: 0px 0px 6px 0px rgba(51, 51, 51, 0.25);
        margin-top: 3px;
        height: 66px;
        border: 1px solid #ededed;
    }
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWxheW91dGJveDE {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWxheW91dGJveDEw {
}

.bd-layoutbox-10 {
    position: relative;
    overflow: hidden;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWxheW91dGJveDEw {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWxheW91dGJveDEy {
}

.bd-layoutbox-12 {
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 10px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWxheW91dGJveDEy {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWxheW91dGJveDE1 {
}

.bd-layoutbox-15 {
    float: right;
    margin: 0em 2em;
}

@media (max-width: 991px) {
    .bd-layoutbox-15 {
        margin-top: 0px;
        float: none;
    }
}

@media (max-width: 767px) {
    .bd-layoutbox-15 {
        margin: 0px;
    }
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWxheW91dGJveDE1 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWxheW91dGJveDI {
}

.bd-layoutbox-2 {
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 10px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWxheW91dGJveDI {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWxheW91dGJveDM {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWxheW91dGJveDM {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWxheW91dGJveDQ {
}

.bd-layoutbox-4 {
    position: relative;
    overflow: hidden;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWxheW91dGJveDQ {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWxheW91dGJveDY {
}

.bd-layoutbox-6 {
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWxheW91dGJveDY {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWxheW91dGJveDg {
}

.bd-layoutbox-8 {
    overflow: hidden;
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWxheW91dGJveDg {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWxheW91dGJveDk {
}

.bd-layoutbox-9 {
    float: left;
    margin: 0em 2em;
}

@media (max-width: 991px) {
    .bd-layoutbox-9 {
        float: none;
        margin-bottom: 0px;
    }
}

@media (max-width: 767px) {
    .bd-layoutbox-9 {
        height: 86px;
        margin: 0px;
    }
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWxheW91dGJveDk {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWxheW91dGNvbnRhaW5lcjIx {
}

.bd-layoutcolumn-45 {
    padding-bottom: 2em;
}

.bd-layoutcolumn-47 {
    padding-bottom: 2em;
}

.bd-layoutcolumn-49 {
    padding-bottom: 2em;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWxheW91dGNvbnRhaW5lcjIx {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWxheW91dGNvbnRhaW5lcjg {
}

.bd-layoutcontainer-8 > .bd-container-inner > .container-fluid:after {
    display: none;
}

.bd-layoutcontainer-8 > .bd-container-inner > .container-fluid > .row {
    height: calc(100% + 10px);
    margin: -5px;
}

    .bd-layoutcontainer-8 > .bd-container-inner > .container-fluid > .row > div {
        padding: 5px;
    }

.bd-layoutcolumn-17 {
    padding-bottom: 2em;
}

.bd-layoutcolumn-19 {
    text-align: center;
}

.bd-layoutcolumn-19 {
    padding: 2em;
    border: 1px solid #dddddd;
}

.bd-layoutcolumn-21 {
    text-align: center;
}

.bd-layoutcolumn-21 {
    padding: 2em;
    border: 1px solid #dddddd;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWxheW91dGNvbnRhaW5lcjg {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWxvZ280 {
}

.bd-logo-4 {
    margin-top: 18px;
    height: 25%;
    width: 45%;
    float: left;
    opacity: 1;
}

@media (max-width: 1199px) {
    .bd-logo-4 {
        width: 35%;
    }
}

.bd-logo-4 {
    display: inline-block;
}

    .bd-logo-4 img {
        display: block;
        width: 100%;
        height: 100%;
    }

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLWxvZ280 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXBhZ2V0aXRsZTI {
}

.bd-pagetitle-2 {
    overflow: hidden;
    /* outside margin fix */
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXBhZ2V0aXRsZTI {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXBvc3RpY29udGFnczM {
}

.bd-posticontags-18 {
    float: left;
    margin-right: 10px;
    position: relative;
}

.bd-posticontags-18 {
    color: #777777;
    text-transform: none;
}

.bd-posticontags-18 {
    float: left;
    margin-right: 10px;
    position: relative;
}

    .bd-posticontags-18 .bd-icon-10 {
        white-space: nowrap;
    }

        .bd-posticontags-18 .bd-icon-10 > span {
            white-space: normal;
        }

.bd-icon-10:before {
    content: '\1c8';
}

.bd-icon-10:before {
    visibility: inherit;
}

.bd-icon-10:before {
    margin-right: 10px;
    color: #cccccc;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXBvc3RpY29udGFnczM {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXBvc3RpY29udGFnczU {
}

.bd-posticontags-20 {
    float: left;
    margin-right: 10px;
    position: relative;
}

.bd-posticontags-20 {
    color: #777777;
    text-transform: none;
}

.bd-posticontags-20 {
    float: left;
    margin-right: 10px;
    position: relative;
}

    .bd-posticontags-20 .bd-icon-15 {
        white-space: nowrap;
    }

        .bd-posticontags-20 .bd-icon-15 > span {
            white-space: normal;
        }

.bd-icon-15:before {
    content: '\1c8';
}

.bd-icon-15:before {
    visibility: inherit;
}

.bd-icon-15:before {
    color: #cccccc;
    margin-right: 10px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXBvc3RpY29udGFnczU {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXBvc3RyZWFkbW9yZTQ {
}

.bd-postreadmore-4 {
    position: relative;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXBvc3RyZWFkbW9yZTQ {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXBvc3RyZWFkbW9yZTY {
}

.bd-postreadmore-6 {
    position: relative;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXBvc3RyZWFkbW9yZTY {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlY3Rpb24x {
}

.bd-aligncontent-2[data-aligncontent-size="sheet"] > .bd-section-inner > .bd-section-align-wrapper,
.bd-aligncontent-2[data-aligncontent-size="page"] > .bd-section-inner,
.bd-aligncontent-2 > .bd-container-inner,
.bd-aligncontent-2 > .bd-vertical-align-wrapper {
    width: 100%;
    margin: auto;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlY3Rpb24x {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlY3Rpb24y {
}

.bd-section-2 {
    line-height: 27.2px;
    font-size: 16px;
    letter-spacing: 1px;
    text-align: left;
    color: #ededed;
    font-weight: 300;
    font-style: normal;
}

    .bd-section-2 h5 {
        line-height: 22.8571px;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #ffffff;
    }

@media (max-width: 767px) {
    .bd-section-2 h5 {
        line-height: 20px;
        font-size: 14px;
    }
}

.bd-aligncontent-4[data-aligncontent-size="sheet"] > .bd-section-inner > .bd-section-align-wrapper,
.bd-aligncontent-4[data-aligncontent-size="page"] > .bd-section-inner,
.bd-aligncontent-4 > .bd-container-inner,
.bd-aligncontent-4 > .bd-vertical-align-wrapper {
    width: 100%;
}

.bd-imagestyles-9 {
    vertical-align: middle;
    display: inline-block;
    text-align: center;
    background-color: #dddddd;
    border-radius: 50%;
}

.bd-section-2:not(.shape-only).bd-custom-image img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
    text-align: center;
    background-color: #dddddd;
    border-radius: 50%;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlY3Rpb24y {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlY3Rpb24z {
}

.bd-section-3 {
    background-color: rgba(255, 255, 255, 0.92);
    -webkit-box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.33);
    -o-box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.33);
    -ms-box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.33);
    -moz-box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.33);
    box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.33);
}

.bd-section-3 {
    text-align: center;
}

.affix.bd-affix-2 {
    z-index: 100;
    position: fixed;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlY3Rpb24z {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlY3Rpb244 {
}

.bd-section-8 {
    font-style: italic;
}

    .bd-section-8 h2 {
        text-align: center;
    }

    .bd-section-8 h1 {
        text-align: center;
    }

.bd-aligncontent-15[data-aligncontent-size="sheet"] > .bd-section-inner > .bd-section-align-wrapper,
.bd-aligncontent-15[data-aligncontent-size="page"] > .bd-section-inner,
.bd-aligncontent-15 > .bd-container-inner,
.bd-aligncontent-15 > .bd-vertical-align-wrapper {
    padding-bottom: 3em;
    padding-top: 2em;
    width: 100%;
}

@media (max-width: 991px) {
    .bd-aligncontent-15[data-aligncontent-size="sheet"] > .bd-section-inner > .bd-section-align-wrapper,
    .bd-aligncontent-15[data-aligncontent-size="page"] > .bd-section-inner,
    .bd-aligncontent-15 > .bd-container-inner,
    .bd-aligncontent-15 > .bd-vertical-align-wrapper {
        padding-bottom: 2.5em;
        padding-top: 2.5em;
    }
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlY3Rpb244 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlY3Rpb245 {
}

.bd-section-9 {
    padding-top: 2em;
    background-color: #2b5ea0;
}

.bd-section-9 {
    line-height: 18.57142858px;
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 1px;
}

    .bd-section-9 a {
        color: #ffffff;
    }

    .bd-section-9 h3 {
        line-height: 30.00000001px;
        color: #ffffff;
        font-size: 21px;
    }

@media (max-width: 767px) {
    .bd-section-9 {
        text-align: center;
    }
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlY3Rpb245 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjEx {
}

.bd-separator-11 {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 10px;
}

    .bd-separator-11 .bd-separator-inner {
        width: 75%;
    }

        .bd-separator-11 .bd-separator-inner:before,
        .bd-separator-11 .bd-separator-inner:after {
            border-top: 1px dotted #5cb85c;
        }

.bd-separator-content-77 {
    margin-left: 30px;
    margin-right: 30px;
}

.bd-separator-content-77 {
    color: #777777;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjEx {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjEz {
}

.bd-separator-13 {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 10px;
}

    .bd-separator-13 .bd-separator-inner {
        width: 75%;
    }

        .bd-separator-13 .bd-separator-inner:before,
        .bd-separator-13 .bd-separator-inner:after {
            border-top: 1px dotted #5cb85c;
        }

.bd-separator-content-81 {
    margin-left: 30px;
    margin-right: 30px;
}

.bd-separator-content-81 {
    color: #777777;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjEz {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjE1 {
}

.bd-separator-15 {
    margin-bottom: 1em;
    padding: 10px 0px;
}

    .bd-separator-15 .bd-separator-inner {
        width: 50px;
    }

        .bd-separator-15 .bd-separator-inner:before,
        .bd-separator-15 .bd-separator-inner:after {
            border-top: 2px solid #5cb85c;
        }

.bd-separator-content-85 {
    margin-left: 30px;
    margin-right: 30px;
}

.bd-separator-content-85 {
    color: #777777;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjE1 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjE3 {
}

.bd-separator-17 {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 10px;
}

    .bd-separator-17 .bd-separator-inner {
        width: 75%;
    }

        .bd-separator-17 .bd-separator-inner:before,
        .bd-separator-17 .bd-separator-inner:after {
            border-top: 1px dotted #5cb85c;
        }

.bd-separator-content-94 {
    margin-left: 30px;
    margin-right: 30px;
}

.bd-separator-content-94 {
    color: #777777;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjE3 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjE5 {
}

.bd-separator-19 {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 10px;
}

    .bd-separator-19 .bd-separator-inner {
        width: 75%;
    }

        .bd-separator-19 .bd-separator-inner:before,
        .bd-separator-19 .bd-separator-inner:after {
            border-top: 1px dotted #5cb85c;
        }

.bd-separator-content-102 {
    margin-left: 30px;
    margin-right: 30px;
}

.bd-separator-content-102 {
    color: #777777;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjE5 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjI {
}

.bd-separator-2 {
    margin-bottom: 2em;
    margin-top: 1px;
    padding: 10px 0px;
}

    .bd-separator-2 .bd-separator-inner {
        width: 50px;
    }

        .bd-separator-2 .bd-separator-inner:before,
        .bd-separator-2 .bd-separator-inner:after {
            border-top: 2px solid #5cb85c;
        }

.bd-separator-content-23 {
    margin-left: 30px;
    margin-right: 30px;
}

.bd-separator-content-23 {
    color: #777777;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjI {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjIx {
}

.bd-separator-21 {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 10px;
}

    .bd-separator-21 .bd-separator-inner {
        width: 75%;
    }

        .bd-separator-21 .bd-separator-inner:before,
        .bd-separator-21 .bd-separator-inner:after {
            border-top: 1px dotted #5cb85c;
        }

.bd-separator-content-108 {
    margin-left: 30px;
    margin-right: 30px;
}

.bd-separator-content-108 {
    color: #777777;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjIx {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjIz {
}

.bd-separator-23 {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 10px;
}

    .bd-separator-23 .bd-separator-inner {
        width: 75%;
    }

        .bd-separator-23 .bd-separator-inner:before,
        .bd-separator-23 .bd-separator-inner:after {
            border-top: 1px dotted #5cb85c;
        }

.bd-separator-content-112 {
    margin-left: 30px;
    margin-right: 30px;
}

.bd-separator-content-112 {
    color: #777777;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjIz {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjU {
}

.bd-separator-5 {
    margin-bottom: 1em;
    padding: 10px 0px;
}

    .bd-separator-5 .bd-separator-inner {
        width: 50px;
    }

        .bd-separator-5 .bd-separator-inner:before,
        .bd-separator-5 .bd-separator-inner:after {
            border-top: 2px solid #5cb85c;
        }

.bd-separator-content-50 {
    margin-left: 30px;
    margin-right: 30px;
}

.bd-separator-content-50 {
    color: #777777;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjU {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjc {
}

.bd-separator-7 {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 10px;
}

    .bd-separator-7 .bd-separator-inner {
        width: 75%;
    }

        .bd-separator-7 .bd-separator-inner:before,
        .bd-separator-7 .bd-separator-inner:after {
            border-top: 1px dotted #5cb85c;
        }

.bd-separator-content-62 {
    margin-left: 30px;
    margin-right: 30px;
}

.bd-separator-content-62 {
    color: #777777;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjc {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjcy {
}

.bd-separator-72 {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 10px;
}

    .bd-separator-72 .bd-separator-inner {
        width: 75%;
    }

        .bd-separator-72 .bd-separator-inner:before,
        .bd-separator-72 .bd-separator-inner:after {
            border-top: 1px dotted #5cb85c;
        }

.bd-separator-content-216 {
    margin-left: 30px;
    margin-right: 30px;
}

.bd-separator-content-216 {
    color: #777777;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjcy {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjcz {
}

.bd-separator-73 {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 10px;
}

    .bd-separator-73 .bd-separator-inner {
        width: 75%;
    }

        .bd-separator-73 .bd-separator-inner:before,
        .bd-separator-73 .bd-separator-inner:after {
            border-top: 1px dotted #5cb85c;
        }

.bd-separator-content-218 {
    margin-left: 30px;
    margin-right: 30px;
}

.bd-separator-content-218 {
    color: #777777;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjcz {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjc0 {
}

.bd-separator-74 {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 10px;
}

    .bd-separator-74 .bd-separator-inner {
        width: 75%;
    }

        .bd-separator-74 .bd-separator-inner:before,
        .bd-separator-74 .bd-separator-inner:after {
            border-top: 1px dotted #5cb85c;
        }

.bd-separator-content-220 {
    margin-left: 30px;
    margin-right: 30px;
}

.bd-separator-content-220 {
    color: #777777;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjc0 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjc2 {
}

.bd-separator-76 {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 10px;
}

    .bd-separator-76 .bd-separator-inner {
        width: 75%;
    }

        .bd-separator-76 .bd-separator-inner:before,
        .bd-separator-76 .bd-separator-inner:after {
            border-top: 1px dotted #5cb85c;
        }

.bd-separator-content-224 {
    margin-left: 30px;
    margin-right: 30px;
}

.bd-separator-content-224 {
    color: #777777;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjc2 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjc4 {
}

.bd-separator-78 {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 10px;
}

    .bd-separator-78 .bd-separator-inner {
        width: 75%;
    }

        .bd-separator-78 .bd-separator-inner:before,
        .bd-separator-78 .bd-separator-inner:after {
            border-top: 1px dotted #5cb85c;
        }

.bd-separator-content-228 {
    margin-left: 30px;
    margin-right: 30px;
}

.bd-separator-content-228 {
    color: #777777;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjc4 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjc5 {
}

.bd-separator-79 {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 10px;
}

    .bd-separator-79 .bd-separator-inner {
        width: 75%;
    }

        .bd-separator-79 .bd-separator-inner:before,
        .bd-separator-79 .bd-separator-inner:after {
            border-top: 1px dotted #5cb85c;
        }

.bd-separator-content-230 {
    margin-left: 30px;
    margin-right: 30px;
}

.bd-separator-content-230 {
    color: #777777;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjc5 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjk {
}

.bd-separator-9 {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 10px;
}

    .bd-separator-9 .bd-separator-inner {
        width: 75%;
    }

        .bd-separator-9 .bd-separator-inner:before,
        .bd-separator-9 .bd-separator-inner:after {
            border-top: 1px dotted #5cb85c;
        }

.bd-separator-content-68 {
    margin-left: 30px;
    margin-right: 30px;
}

.bd-separator-content-68 {
    color: #777777;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNlcGFyYXRvcjk {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNsaWRlcjc {
}

.bd-slider-7 {
    width: 100%;
    height: 40vh;
}

.bd-sliderindicators-7 {
    text-align: center;
    vertical-align: bottom;
}

    .bd-sliderindicators-7:before {
        vertical-align: bottom;
    }

.bd-slide-20 {
    background-image: url(images/b5bf3cd2062af4c236e9c7437eaa6ea2_iStock_000002085306Large.jpg);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: 100% auto;
    position: relative;
}

.bd-textureoverlay-9:before {
    background-color: #000000;
    opacity: 0.5;
}

.bd-slide-24 {
    background-color: #f5f5f5;
    background-image: url(images/1856286_bd_media_id_4fe05b0f13b225d45d2867d46387f1b6.jpeg);
    background-repeat: repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: 100% auto;
    position: relative;
}

.bd-textureoverlay-11:before {
    background-color: #000000;
    opacity: 0.5;
}

.bd-slide-22 {
    background-color: #f5f5f5;
    background-image: url(images/012cda80c928f44b665e7c99d67b65fc_iStock_000006861431XLarge.jpg);
    background-repeat: repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: 100% auto;
    position: relative;
}

@media (max-width: 767px) {
    .bd-slide-22 {
        margin-top: 1px;
    }
}

.bd-slide-23 {
    background-color: #f5f5f5;
    background-image: url(images/28cc8215cf017f73e0b73ddc237c4bf8_000010404.jpg);
    background-repeat: repeat;
    background-attachment: scroll;
    background-position: center center;
    position: relative;
}

.bd-slide-21 {
    background-image: url(images/01c6a17020b9bed80a865a53f71878b1_iStock_000014819268Large.jpg);
    background-repeat: repeat;
    background-attachment: scroll;
    background-position: center center;
    position: relative;
}

@media (max-width: 767px) {
    .bd-slide-21 {
        background-position: left center;
    }
}

.bd-textureoverlay-12:before {
    background-color: #000000;
    opacity: 0.5;
}

.bd-slide-1 {
    background-color: #f5f5f5;
    background-image: url(images/999151_bd_media_id_957d49c7691fb9f019ec22e2faa31c26.jpeg);
    background-repeat: repeat;
    background-attachment: scroll;
    background-position: center center;
    position: relative;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNsaWRlcjc {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNwYWNlcjEy {
}

.bd-spacer-12 {
    height: 10px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNwYWNlcjEy {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNwYWNlcjE0 {
}

.bd-spacer-14 {
    height: 10px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNwYWNlcjE0 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNwYWNlcjk {
}

.bd-spacer-9 {
    height: 10px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXNwYWNlcjk {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHQ0MDQz {
}

.bd-text404-3 {
    word-wrap: break-word;
}

.bd-text404-12 {
    max-width: 600px;
    position: relative;
    margin-right: auto;
    margin-left: auto;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHQ0MDQz {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazEy {
}

.bd-textblock-12 {
    word-wrap: break-word;
    overflow: hidden;
    padding: 10px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazEy {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazE2MA {
}

.bd-textblock-160 {
    font-style: italic;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazE2MA {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazE2MQ {
}

.bd-textblock-161 {
    font-style: italic;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazE2MQ {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazE2Mg {
}

.bd-textblock-162 {
    font-style: italic;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazE2Mg {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazE2Mw {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazE2Mw {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazE2NA {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazE2NA {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazE2NQ {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazE2NQ {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazIz {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazIz {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazI0 {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazI0 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazMz {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazMz {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazM1 {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazM1 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazM2 {
}

.bd-textblock-36 {
    position: absolute;
    top: 25.357%;
    left: auto;
    right: 0.004%;
    bottom: auto;
    width: 98%;
}

@media (max-width: 767px) {
    .bd-textblock-36 {
        width: auto;
        height: auto;
    }
}

.bd-textblock-36 {
    line-height: 51.42857144px;
    text-align: center;
    font-size: 36px;
    color: #ffffff;
}

@media (max-width: 767px) {
    .bd-textblock-36 {
        line-height: 28.57142858px;
        font-size: 20px;
        font-style: italic;
    }
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazM2 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazM3 {
}

.bd-textblock-37 {
    overflow: hidden;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazM3 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazM5 {
}

@media (max-width: 767px) {
    .bd-textblock-39 {
        margin-top: 2em;
    }
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazM5 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazQ {
}

.bd-textblock-4 {
    position: absolute;
    top: 68.772%;
    left: auto;
    right: 2.060%;
    bottom: auto;
    background-color: rgba(221, 221, 221, 0.75);
    -webkit-box-shadow: 0px 3px 5px 0 rgba(0, 0, 0, 0.33), 0px 7px 5px 3px rgba(0, 0, 0, 0.11);
    -o-box-shadow: 0px 3px 5px 0 rgba(0, 0, 0, 0.33), 0px 7px 5px 3px rgba(0, 0, 0, 0.11);
    -ms-box-shadow: 0px 3px 5px 0 rgba(0, 0, 0, 0.33), 0px 7px 5px 3px rgba(0, 0, 0, 0.11);
    -moz-box-shadow: 0px 3px 5px 0 rgba(0, 0, 0, 0.33), 0px 7px 5px 3px rgba(0, 0, 0, 0.11);
    box-shadow: 0px 3px 5px 0 rgba(0, 0, 0, 0.33), 0px 7px 5px 3px rgba(0, 0, 0, 0.11);
}

@media (max-width: 767px) {
    .bd-textblock-4 {
        position: absolute;
        top: 32.041%;
        left: auto;
        right: -0.687%;
        bottom: auto;
        height: 205px;
        width: 289px;
    }
}

.bd-textblock-4 {
    line-height: 68.57142859px;
    font-size: 48px;
    color: #d9534f;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazQ {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazQw {
}

.bd-textblock-40 {
    position: absolute;
    top: 16.780%;
    left: 2.620%;
    right: auto;
    bottom: auto;
    width: auto;
    height: auto;
}

@media (max-width: 1199px) {
    .bd-textblock-40 {
        width: auto;
        height: auto;
    }
}

@media (max-width: 991px) {
    .bd-textblock-40 {
        width: auto;
        height: auto;
    }
}

@media (max-width: 767px) {
    .bd-textblock-40 {
        width: 281px;
        position: absolute;
        top: 26.766%;
        left: 1.375%;
        right: 2.062%;
        bottom: 50.558%;
    }
}

.bd-textblock-40 {
    line-height: 68.57142859px;
    color: #ffffff;
    font-size: 48px;
    font-weight: bold;
}

@media (max-width: 767px) {
    .bd-textblock-40 {
        line-height: 51.42857144px;
        font-size: 36px;
    }
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazQw {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazQx {
}

.bd-textblock-41 {
    overflow: hidden;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazQx {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazQz {
}

@media (max-width: 767px) {
    .bd-textblock-43 {
        margin-top: 2em;
    }
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazQz {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazQ0 {
}

.bd-textblock-44 {
    position: absolute;
    top: 41.846%;
    left: 2.902%;
    right: auto;
    bottom: auto;
    width: auto;
    height: auto;
}

@media (max-width: 1199px) {
    .bd-textblock-44 {
        width: auto;
        height: auto;
    }
}

@media (max-width: 991px) {
    .bd-textblock-44 {
        position: absolute;
        top: 43.650%;
        left: 2.500%;
        right: auto;
        bottom: auto;
        width: auto;
        height: auto;
    }
}

@media (max-width: 767px) {
    .bd-textblock-44 {
        position: absolute;
        top: 36.775%;
        left: auto;
        right: -261.163%;
        bottom: auto;
    }
}

.bd-textblock-44 {
    line-height: 51.42857144px;
    font-size: 36px;
    color: #ffffff;
}

@media (max-width: 767px) {
    .bd-textblock-44 {
        line-height: 25.71428572px;
        font-size: 18px;
    }
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazQ0 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazQ1 {
}

.bd-textblock-45 {
    overflow: hidden;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazQ1 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazQ3 {
}

.bd-textblock-47 {
    position: absolute;
    top: 10.000%;
    left: -3.81%;
    right: auto;
    bottom: auto;
    background-color: rgba(0, 0, 0, 0.5);
    width: 75%;
    border: 1px solid #555555;
}

@media (max-width: 1199px) {
    .bd-textblock-47 {
        left: -3.80944%;
        right: auto;
        top: 9.98125%;
        bottom: auto;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .bd-textblock-47 {
        width: auto;
        position: absolute;
        top: 11.200%;
        left: 4.011%;
        right: auto;
        bottom: auto;
        height: auto;
    }
}

.bd-textblock-47 {
    line-height: 51.42857144px;
    font-size: 36px;
    color: #ffffff;
}

@media (max-width: 767px) {
    .bd-textblock-47 {
        line-height: 42.85714287px;
        font-size: 30px;
    }
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazQ3 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazQ5 {
}

.bd-textblock-49 {
    position: absolute;
    top: 71.601%;
    left: 0.706%;
    right: auto;
    bottom: auto;
}

@media (max-width: 1199px) {
    .bd-textblock-49 {
        position: absolute;
        top: 7.201%;
        left: auto;
        right: -0.291%;
        bottom: auto;
        width: 100%;
    }
}

@media (max-width: 991px) {
    .bd-textblock-49 {
        position: absolute;
        top: 10.401%;
        left: auto;
        right: -2.046%;
        bottom: auto;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .bd-textblock-49 {
        position: absolute;
        top: 14.000%;
        left: 8.935%;
        right: auto;
        bottom: auto;
        width: auto;
        height: auto;
    }
}

.bd-textblock-49 {
    line-height: 68.57142859px;
    font-size: 48px;
    color: #ffffff;
}

@media (max-width: 767px) {
    .bd-textblock-49 {
        line-height: 42.85714287px;
        font-size: 30px;
    }
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazQ5 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazUx {
}

.bd-textblock-51 {
    position: absolute;
    top: 8.922%;
    left: 4.834%;
    right: auto;
    bottom: auto;
    width: 75%;
}

@media (max-width: 767px) {
    .bd-textblock-51 {
        position: absolute;
        top: 11.322%;
        left: 1.741%;
        right: auto;
        bottom: auto;
        width: auto;
        height: auto;
    }
}

.bd-textblock-51 {
    line-height: 102.85714289px;
    font-size: 72px;
    color: #ffffff;
    font-weight: bold;
}

@media (max-width: 991px) {
    .bd-textblock-51 {
        line-height: 68.57142859px;
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .bd-textblock-51 {
        line-height: 42.85714287px;
        font-size: 30px;
    }
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazUx {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazUz {
}

.bd-textblock-53 {
    position: absolute;
    top: 49.600%;
    left: 4.777%;
    right: auto;
    bottom: auto;
    width: 75%;
}

@media (max-width: 1199px) {
    .bd-textblock-53 {
        left: 4.77582%;
        right: auto;
        top: 49.5187%;
        bottom: auto;
        width: 866px;
    }
}

@media (max-width: 991px) {
    .bd-textblock-53 {
        position: absolute;
        top: 37.519%;
        left: auto;
        right: -28.5%;
        bottom: auto;
    }
}

@media (max-width: 767px) {
    .bd-textblock-53 {
        width: auto;
        position: absolute;
        top: 37.544%;
        left: 0.005%;
        right: auto;
        bottom: auto;
        height: auto;
    }
}

.bd-textblock-53 {
    line-height: 34.2857143px;
    font-size: 24px;
    color: #ffffff;
}

@media (max-width: 991px) {
    .bd-textblock-53 {
        line-height: 28.57142858px;
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .bd-textblock-53 {
        line-height: 22.85714286px;
        font-size: 16px;
    }
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazUz {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazY3 {
}

h2.bd-textblock-67 {
    font-style: normal;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazY3 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazcx {
}

h3.bd-textblock-71 {
    font-style: normal;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazcx {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazc1 {
}

.bd-textblock-75 {
    font-style: italic;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazc1 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazc3 {
}

.bd-textblock-77 {
    font-style: italic;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazc3 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazc5 {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazc5 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazgx {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazgx {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazgz {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazgz {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazg1 {
}

h3.bd-textblock-85 {
    font-style: normal;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazg1 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazg5 {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazg5 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazkx {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazkx {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazkz {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazkz {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazk1 {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazk1 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazk4 {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2JkLXRleHRibG9jazk4 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2cxQ29tbWVudEF2YXRhcg {
}

.bd-commentavatar-1 {
    display: inline-block;
}

.bd-commentavatar-1 {
    display: inline-block;
}

    .bd-commentavatar-1 img {
        display: block;
        width: 100%;
        height: 100%;
    }

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2cxQ29tbWVudEF2YXRhcg {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2cxQ29tbWVudENvbnRhaW5lcg {
}

.bd-layoutcolumn-32 {
    position: relative;
}

.bd-layoutcolumn-33 {
    position: relative;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2cxQ29tbWVudENvbnRhaW5lcg {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2cxQ29tbWVudE1ldGFkYXRh {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2cxQ29tbWVudE1ldGFkYXRh {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2cxQ29tbWVudFJlcGx5 {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2cxQ29tbWVudFJlcGx5 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2cxQ29tbWVudFRleHQ {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2cxQ29tbWVudFRleHQ {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2cyQ29tbWVudEF2YXRhcg {
}

.bd-commentavatar-2 {
    display: inline-block;
}

.bd-commentavatar-2 {
    display: inline-block;
}

    .bd-commentavatar-2 img {
        display: block;
        width: 100%;
        height: 100%;
    }

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2cyQ29tbWVudEF2YXRhcg {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2cyQ29tbWVudENvbnRhaW5lcg {
}

.bd-layoutcolumn-40 {
    position: relative;
}

.bd-layoutcolumn-41 {
    position: relative;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2cyQ29tbWVudENvbnRhaW5lcg {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2cyQ29tbWVudE1ldGFkYXRh {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2cyQ29tbWVudE1ldGFkYXRh {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2cyQ29tbWVudFJlcGx5 {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2cyQ29tbWVudFJlcGx5 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2cyQ29tbWVudFRleHQ {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2cyQ29tbWVudFRleHQ {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2cz {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2cz {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2czQ29tbWVudEF2YXRhcg {
}

.bd-commentavatar-3 {
    display: inline-block;
}

.bd-commentavatar-3 {
    display: inline-block;
}

    .bd-commentavatar-3 img {
        display: block;
        width: 100%;
        height: 100%;
    }

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2czQ29tbWVudEF2YXRhcg {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2czQ29tbWVudENvbnRhaW5lcg {
}

.bd-layoutcolumn-42 {
    position: relative;
}

.bd-layoutcolumn-43 {
    position: relative;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2czQ29tbWVudENvbnRhaW5lcg {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2czQ29tbWVudE1ldGFkYXRh {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2czQ29tbWVudE1ldGFkYXRh {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2czQ29tbWVudFJlcGx5 {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2czQ29tbWVudFJlcGx5 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2czQ29tbWVudFRleHQ {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2czQ29tbWVudFRleHQ {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2dCbG9nVGVtcGxhdGU {
}

.bd-blog-1 {
    position: relative;
}

.bd-pager-2 ul {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.bd-pager-2 ul {
    display: inline-block;
    width: 100%;
    margin: 0;
}

    .bd-pager-2 ul li {
        display: inline-block;
    }

    .bd-pager-2 ul > li:first-child {
        float: left;
    }

    .bd-pager-2 ul > li:last-child {
        float: right;
    }

.bd-pager-2 > .bd-pagination-11 > li.bd-paginationitem-11 > a,
.bd-pager-2 > .bd-pagination-11 > li.bd-paginationitem-11 > span,
.bd-pager-2 > .bd-pagination-11 > li.bd-paginationitem-11 > a:link,
.bd-pager-2 > .bd-pagination-11 > li.bd-paginationitem-11 > a:visited {
    border-radius: 0px;
}

.bd-pagination-11.right {
    text-align: right;
}

.bd-pagination-11.center {
    text-align: center;
}

.bd-pagination-11 > *:last-child {
    margin-right: 0;
}

.bd-pagination-11 span {
    cursor: default;
}

.pagination > ul.bd-pagination-11 > .active > a,
.pagination > ul.bd-pagination-11 > .active > span {
    color: inherit;
    line-height: inherit;
}

.bd-pagination-11 > li.bd-paginationitem-11 > a,
.bd-pagination-11 > li.bd-paginationitem-11 > span,
.bd-pagination-11 > li.bd-paginationitem-11 > a:link,
.bd-pagination-11 > li.bd-paginationitem-11 > a:visited {
    color: #555555;
    border: 1px solid #ffffff;
    border-radius: 0px;
}

    .bd-pagination-11 > li.bd-paginationitem-11 > a:hover {
        background-color: #dddddd;
        background-image: none;
    }

.bd-pagination-11 > li.active.bd-paginationitem-11 > a,
.bd-pagination-11 > li.active.bd-paginationitem-11 > span {
    color: inherit;
    background-color: #f5f5f5;
    font-weight: bold;
    background-image: none;
}

.bd-comments-1 ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bd-comments-1 li {
    display: block;
}

    .bd-comments-1 li > ul {
        margin-left: 20px;
    }

.bd-comment-1 {
    padding: 5px;
}

.bd-griditem-18 {
    margin-bottom: 20px;
}

.separated-item-18 {
    position: relative;
    z-index: 0;
}

    .separated-item-18:before,
    .separated-item-18:after {
        content: "";
        position: absolute;
        z-index: 10;
    }

    .separated-item-18:before {
        top: 0;
        bottom: 0;
        left: 0;
    }

    .separated-item-18:after {
        left: 0;
        right: 0;
        bottom: 10px;
    }

.first-col.separated-item-18:after {
    left: 5px;
}

.last-col.separated-item-18:after {
    right: 5px;
}

.separated-item-18.first-col:before,
.separated-item-18.last-row:after {
    content: none;
}

.bd-pagination-12.right {
    text-align: right;
}

.bd-pagination-12.center {
    text-align: center;
}

.bd-pagination-12 > *:last-child {
    margin-right: 0;
}

.bd-pagination-12 span {
    cursor: default;
}

.pagination > ul.bd-pagination-12 > .active > a,
.pagination > ul.bd-pagination-12 > .active > span {
    color: inherit;
    line-height: inherit;
}

.bd-pagination-12 > li.bd-paginationitem-12 > a,
.bd-pagination-12 > li.bd-paginationitem-12 > span,
.bd-pagination-12 > li.bd-paginationitem-12 > a:link,
.bd-pagination-12 > li.bd-paginationitem-12 > a:visited {
    color: #555555;
    border: 1px solid #ffffff;
    border-radius: 0px;
}

    .bd-pagination-12 > li.bd-paginationitem-12 > a:hover {
        background-color: #dddddd;
        background-image: none;
    }

.bd-pagination-12 > li.active.bd-paginationitem-12 > a,
.bd-pagination-12 > li.active.bd-paginationitem-12 > span {
    color: inherit;
    background-color: #f5f5f5;
    font-weight: bold;
    background-image: none;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2dCbG9nVGVtcGxhdGU {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2dEZWZhdWx0Q29tbWVudEF2YXRhcg {
}

.bd-commentavatar-5 {
    display: inline-block;
}

.bd-commentavatar-5 {
    display: inline-block;
}

    .bd-commentavatar-5 img {
        display: block;
        width: 100%;
        height: 100%;
    }

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2dEZWZhdWx0Q29tbWVudEF2YXRhcg {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2dEZWZhdWx0Q29tbWVudENvbnRhaW5lcg {
}

.bd-layoutcolumn-55 {
    position: relative;
}

.bd-layoutcolumn-56 {
    position: relative;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2dEZWZhdWx0Q29tbWVudENvbnRhaW5lcg {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2dEZWZhdWx0Q29tbWVudE1ldGFkYXRh {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2dEZWZhdWx0Q29tbWVudE1ldGFkYXRh {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2dEZWZhdWx0Q29tbWVudFJlcGx5 {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2dEZWZhdWx0Q29tbWVudFJlcGx5 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2dEZWZhdWx0Q29tbWVudFRleHQ {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2dEZWZhdWx0Q29tbWVudFRleHQ {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2dTaW5nbGVQb3N0VGVtcGxhdGU {
}

.bd-blog-2 {
    position: relative;
}

.bd-pager-3 ul {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.bd-pager-3 ul {
    display: inline-block;
    width: 100%;
    margin: 0;
}

    .bd-pager-3 ul li {
        display: inline-block;
    }

    .bd-pager-3 ul > li:first-child {
        float: left;
    }

    .bd-pager-3 ul > li:last-child {
        float: right;
    }

.bd-pager-3 > .bd-pagination-3 > li.bd-paginationitem-3 > a,
.bd-pager-3 > .bd-pagination-3 > li.bd-paginationitem-3 > span,
.bd-pager-3 > .bd-pagination-3 > li.bd-paginationitem-3 > a:link,
.bd-pager-3 > .bd-pagination-3 > li.bd-paginationitem-3 > a:visited {
    border-radius: 0px;
}

.bd-pagination-3.right {
    text-align: right;
}

.bd-pagination-3.center {
    text-align: center;
}

.bd-pagination-3 > *:last-child {
    margin-right: 0;
}

.bd-pagination-3 span {
    cursor: default;
}

.pagination > ul.bd-pagination-3 > .active > a,
.pagination > ul.bd-pagination-3 > .active > span {
    color: inherit;
    line-height: inherit;
}

.bd-pagination-3 > li.bd-paginationitem-3 > a,
.bd-pagination-3 > li.bd-paginationitem-3 > span,
.bd-pagination-3 > li.bd-paginationitem-3 > a:link,
.bd-pagination-3 > li.bd-paginationitem-3 > a:visited {
    color: #555555;
    border: 1px solid #ffffff;
    border-radius: 0px;
}

    .bd-pagination-3 > li.bd-paginationitem-3 > a:hover {
        background-color: #dddddd;
        background-image: none;
    }

.bd-pagination-3 > li.active.bd-paginationitem-3 > a,
.bd-pagination-3 > li.active.bd-paginationitem-3 > span {
    color: inherit;
    background-color: #f5f5f5;
    font-weight: bold;
    background-image: none;
}

.bd-comments-2 ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bd-comments-2 li {
    display: block;
}

    .bd-comments-2 li > ul {
        margin-left: 20px;
    }

.bd-comment-2 {
    padding: 5px;
}

.bd-container-19 {
    line-height: 25.71428572px;
    font-size: 18px;
}

    .bd-container-19 h2 {
        line-height: 35.71428573px;
        font-size: 25px;
        font-weight: normal;
        text-transform: none;
    }

.bd-container-18 h2 {
    line-height: 35.71428573px;
    font-size: 25px;
    text-transform: none;
    font-weight: normal;
}

.separated-item-34 {
    position: relative;
    z-index: 0;
}

    .separated-item-34:before,
    .separated-item-34:after {
        content: "";
        position: absolute;
        z-index: 10;
    }

    .separated-item-34:before {
        top: 0;
        bottom: 0;
        left: 0;
    }

    .separated-item-34:after {
        left: 0;
        right: 0;
        bottom: 0;
    }

.first-col.separated-item-34:after {
    left: 5px;
}

.last-col.separated-item-34:after {
    right: 5px;
}

.separated-item-34.first-col:before,
.separated-item-34.last-row:after {
    content: none;
}

.bd-pagination-15.right {
    text-align: right;
}

.bd-pagination-15.center {
    text-align: center;
}

.bd-pagination-15 > *:last-child {
    margin-right: 0;
}

.bd-pagination-15 span {
    cursor: default;
}

.pagination > ul.bd-pagination-15 > .active > a,
.pagination > ul.bd-pagination-15 > .active > span {
    color: inherit;
    line-height: inherit;
}

.bd-pagination-15 > li.bd-paginationitem-15 > a,
.bd-pagination-15 > li.bd-paginationitem-15 > span,
.bd-pagination-15 > li.bd-paginationitem-15 > a:link,
.bd-pagination-15 > li.bd-paginationitem-15 > a:visited {
    color: #555555;
    border: 1px solid #dddddd;
    border-radius: 0px;
}

.bd-pagination-15 > li.active.bd-paginationitem-15 > a,
.bd-pagination-15 > li.active.bd-paginationitem-15 > span {
    color: inherit;
    background-color: #ededed;
    font-weight: bold;
    background-image: none;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2Jsb2dTaW5nbGVQb3N0VGVtcGxhdGU {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NhcnRCdXR0b25zQ29udGFpbmVyMg {
}

.bd-layoutcolumn-4 {
    position: relative;
}

.bd-layoutcolumn-5 {
    position: relative;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NhcnRCdXR0b25zQ29udGFpbmVyMg {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NhcnRDaGVja291dDI {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NhcnRDaGVja291dDI {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NhcnRFZGl0SXRlbUxpbmsy {
}

a.bd-itemeditlink-1:hover {
    text-decoration: none;
}

.bd-itemeditlink-1 {
    display: inline-block;
}

.bd-icon-9:before {
    content: '\13f';
}

.bd-icon-9:before {
    visibility: inherit;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NhcnRFZGl0SXRlbUxpbmsy {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NhcnRJbWFnZTI {
}

.bd-productimage-1 {
    width: 100%;
    text-align: center;
}

@media (max-width: 767px) {
    .bd-productimage-1 {
        width: 46%;
    }
}

.bd-productimage-1 {
    display: inline-block;
}

    .bd-productimage-1 img {
        display: block;
        width: 100%;
        height: 100%;
    }

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NhcnRJbWFnZTI {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NhcnRJdGVtQ29udGFpbmVyMQ {
}

.bd-layoutcolumn-1 {
    position: relative;
}

.bd-layoutcolumn-2 {
    position: relative;
}

.bd-layoutcolumn-3 {
    position: relative;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NhcnRJdGVtQ29udGFpbmVyMQ {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NhcnRQcmljZTI {
}

.bd-pricetext-3 {
    display: inline-block;
}

    .bd-pricetext-3 .bd-label-3,
    .bd-pricetext-3 .bd-container-5 {
        display: inline-block;
    }

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NhcnRQcmljZTI {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NhcnRSZW1vdmVJdGVtTGluazI {
}

a.bd-itemremovelink-1:hover {
    text-decoration: none;
}

.bd-itemremovelink-1 {
    display: inline-block;
}

.bd-icon-11:before {
    content: '\234';
}

.bd-icon-11:before {
    visibility: inherit;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NhcnRSZW1vdmVJdGVtTGluazI {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NhcnRUaXRsZTI {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NhcnRUaXRsZTI {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NhcnRUb3RhbDI {
}

.bd-pricetext-4 {
    display: inline-block;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NhcnRUb3RhbDI {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NhcnRWaWV3Mg {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NhcnRWaWV3Mg {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NvbnRlbnRBcmVhUHJvZHVjdE92ZXJ2aWV3 {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NvbnRlbnRBcmVhUHJvZHVjdE92ZXJ2aWV3 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NvbnRlbnRBcmVhUHJvZHVjdHM {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NvbnRlbnRBcmVhUHJvZHVjdHM {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NvbnRlbnRBcmVhU2hvcHBpbmdDYXJ0 {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NvbnRlbnRBcmVhU2hvcHBpbmdDYXJ0 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NvbnRlbnRCbG9nVGVtcGxhdGU {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NvbnRlbnRCbG9nVGVtcGxhdGU {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NvbnRlbnREZWZhdWx0 {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NvbnRlbnREZWZhdWx0 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NvbnRlbnRMYXlvdXRCbG9nVGVtcGxhdGU {
}

.bd-contentlayout-5 {
    clear: both;
    /* DR-15613 */
}

.bd-contentlayout-5 {
    position: relative;
}

.bd-stretchtobottom-3 .bd-contentlayout-5 {
    height: 100%;
}

.bd-stretchtobottom-3 {
    position: relative;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NvbnRlbnRMYXlvdXRCbG9nVGVtcGxhdGU {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NvbnRlbnRMYXlvdXREZWZhdWx0 {
}

.bd-contentlayout-2 {
    clear: both;
    /* DR-15613 */
}

    .bd-contentlayout-2 .bd-flex-horizontal {
        margin-left: -5px;
        margin-right: -5px;
    }

@media (max-width: 767px) {
    .bd-contentlayout-2 .bd-flex-horizontal {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        .bd-contentlayout-2 .bd-flex-horizontal > * {
            width: 100%;
        }
}

.bd-contentlayout-2 .bd-flex-horizontal > * {
    padding-left: 5px;
    padding-right: 5px;
}

.bd-layoutitemsbox-16 {
    position: relative;
}

.bd-stretchtobottom-6 .bd-contentlayout-2 {
    height: 100%;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NvbnRlbnRMYXlvdXREZWZhdWx0 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NvbnRlbnRMYXlvdXRQYWdlVGVtcGxhdGU {
}

.bd-contentlayout-7 {
    clear: both;
    /* DR-15613 */
}

@media (max-width: 991px) {
    .bd-contentlayout-7 {
        margin-top: 0;
    }
}

.bd-stretchtobottom-2 .bd-contentlayout-7 {
    height: 100%;
}

@media (max-width: 991px) {
    .bd-stretchtobottom-2 {
        margin-top: 65px;
    }
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NvbnRlbnRMYXlvdXRQYWdlVGVtcGxhdGU {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NvbnRlbnRMYXlvdXRQcm9kdWN0T3ZlcnZpZXc {
}

.bd-contentlayout-4 {
    clear: both;
    /* DR-15613 */
}

    .bd-contentlayout-4 .bd-flex-horizontal {
        margin-left: -5px;
        margin-right: -5px;
    }

@media (max-width: 767px) {
    .bd-contentlayout-4 .bd-flex-horizontal {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        .bd-contentlayout-4 .bd-flex-horizontal > * {
            width: 100%;
        }
}

.bd-contentlayout-4 .bd-flex-horizontal > * {
    padding-left: 5px;
    padding-right: 5px;
}

.bd-layoutitemsbox-19 {
    position: relative;
    padding: 10px;
}

@media (max-width: 1199px) {
    .bd-layoutitemsbox-19 {
        padding-left: 20px;
        padding-right: 20px;
    }
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NvbnRlbnRMYXlvdXRQcm9kdWN0T3ZlcnZpZXc {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NvbnRlbnRMYXlvdXRQcm9kdWN0cw {
}

.bd-contentlayout-3 {
    clear: both;
    /* DR-15613 */
}

    .bd-contentlayout-3 .bd-flex-horizontal {
        margin-left: -5px;
        margin-right: -5px;
    }

@media (max-width: 767px) {
    .bd-contentlayout-3 .bd-flex-horizontal {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        .bd-contentlayout-3 .bd-flex-horizontal > * {
            width: 100%;
        }
}

.bd-contentlayout-3 .bd-flex-horizontal > * {
    padding-left: 5px;
    padding-right: 5px;
}

.bd-layoutitemsbox-17 {
    position: relative;
    padding: 10px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NvbnRlbnRMYXlvdXRQcm9kdWN0cw {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NvbnRlbnRMYXlvdXRTaG9wcGluZ0NhcnQ {
}

.bd-contentlayout-8 {
    clear: both;
    /* DR-15613 */
}

    .bd-contentlayout-8 .bd-flex-horizontal {
        margin-left: -5px;
        margin-right: -5px;
    }

@media (max-width: 767px) {
    .bd-contentlayout-8 .bd-flex-horizontal {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        .bd-contentlayout-8 .bd-flex-horizontal > * {
            width: 100%;
        }
}

.bd-contentlayout-8 .bd-flex-horizontal > * {
    padding-left: 5px;
    padding-right: 5px;
}

.bd-layoutitemsbox-23 {
    padding: 10px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NvbnRlbnRMYXlvdXRTaG9wcGluZ0NhcnQ {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NvbnRlbnRMYXlvdXRTaW5nbGVQb3N0VGVtcGxhdGU {
}

.bd-contentlayout-6 {
    clear: both;
    /* DR-15613 */
}

.bd-stretchtobottom-4 .bd-contentlayout-6 {
    height: 100%;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NvbnRlbnRMYXlvdXRTaW5nbGVQb3N0VGVtcGxhdGU {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NvbnRlbnRMYXlvdXRUZW1wbGF0ZTQwNA {
}

.bd-contentlayout-9 {
    clear: both;
    /* DR-15613 */
}

    .bd-contentlayout-9 .bd-flex-horizontal {
        margin-left: -5px;
        margin-right: -5px;
    }

@media (max-width: 767px) {
    .bd-contentlayout-9 .bd-flex-horizontal {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        .bd-contentlayout-9 .bd-flex-horizontal > * {
            width: 100%;
        }
}

.bd-contentlayout-9 .bd-flex-horizontal > * {
    padding-left: 5px;
    padding-right: 5px;
}

.bd-contentlayout-9 {
    position: relative;
}

.bd-stretchtobottom-5 .bd-contentlayout-9 {
    height: 100%;
}

.bd-stretchtobottom-5 {
    position: relative;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NvbnRlbnRMYXlvdXRUZW1wbGF0ZTQwNA {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NvbnRlbnRTaW5nbGVQb3N0VGVtcGxhdGU {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2NvbnRlbnRTaW5nbGVQb3N0VGVtcGxhdGU {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2ltYWdlVGh1bWJuYWlscw {
}

.bd-imagethumbnails-1 {
    position: relative;
    border: 1px solid #dddddd;
    text-align: center;
}

    .bd-imagethumbnails-1 .bd-productimage-7 img {
        height: 100% !important;
    }

.bd-productimage-7 {
    display: block;
    float: left;
    width: 20%;
}

.bd-productimage-7 {
    text-align: center;
    left: 0.000%;
    right: auto;
    top: NaN%;
    bottom: auto;
}

.bd-productimage-7 {
    display: inline-block;
}

    .bd-productimage-7 img {
        display: block;
        width: 100%;
        height: 100%;
    }

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2ltYWdlVGh1bWJuYWlscw {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2xheW91dGJveEFydGljbGVEZWZhdWx0MQ {
}

.bd-layoutbox-14 {
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 10px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2xheW91dGJveEFydGljbGVEZWZhdWx0MQ {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2xheW91dGJveEFydGljbGVEZWZhdWx0Mg {
}

.bd-layoutbox-16 {
    position: relative;
    overflow: hidden;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2xheW91dGJveEFydGljbGVEZWZhdWx0Mg {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2xheW91dGJveEFydGljbGVEZWZhdWx0Mw {
}

.bd-layoutbox-18 {
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 10px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL2xheW91dGJveEFydGljbGVEZWZhdWx0Mw {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL292ZXJ2aWV3Q29udGFpbmVy {
}

.bd-layoutcontainer-29 {
    margin-bottom: 29px;
}

.bd-layoutcolumn-66 {
    text-align: left;
}

.bd-layoutcolumn-66 {
    position: relative;
}

.bd-layoutcolumn-67 {
    position: relative;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL292ZXJ2aWV3Q29udGFpbmVy {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL292ZXJ2aWV3SW1hZ2U {
}

.bd-productoverviewimage-1 {
    padding: 10px 0px;
}

.bd-productimage-6 {
    text-align: center;
    left: 0.000%;
    right: auto;
    top: 0.000%;
    bottom: auto;
    width: 100%;
    display: inline-block;
}

@media (max-width: 767px) {
    .bd-productimage-6 {
        left: 0.000%;
        right: auto;
        top: 0.000%;
        bottom: auto;
    }
}

.bd-productimage-6 {
    display: inline-block;
}

    .bd-productimage-6 img {
        display: block;
        width: 100%;
        height: 100%;
    }

    .bd-productimage-6 #wrap {
        width: 100%;
        height: 100%;
    }

    .bd-productimage-6 img {
        width: 100%;
        height: auto;
    }

.cloud-zoom-lens,
.cloud-zoom-big {
    border: 4px solid;
}

.cloud-zoom-lens {
    border-color: #777777;
    margin: -4px;
}

.cloud-zoom-big {
    border-color: #f5f5f5;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL292ZXJ2aWV3SW1hZ2U {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Bvc3RBdXRob3JJY29uMg {
}

.bd-posticonauthor-2 {
    line-height: 17.14285715px;
    font-size: 12px;
}

.bd-posticonauthor-5 {
    float: left;
    margin-right: 10px;
    position: relative;
}

.bd-posticonauthor-5 {
    text-transform: none;
    color: #777777;
}

.bd-posticonauthor-5 {
    float: left;
    margin-right: 10px;
    position: relative;
}

    .bd-posticonauthor-5 .bd-icon-41 {
        white-space: nowrap;
    }

        .bd-posticonauthor-5 .bd-icon-41 > span {
            white-space: normal;
        }

.bd-icon-41:before {
    content: '\280';
}

.bd-icon-41:before {
    visibility: inherit;
}

.bd-icon-41:before {
    color: #cccccc;
    margin-right: 10px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Bvc3RBdXRob3JJY29uMg {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Bvc3RBdXRob3JJY29uMjI {
}

.bd-posticonauthor-3 {
    float: left;
    margin-right: 10px;
    position: relative;
}

.bd-posticonauthor-3 {
    color: #777777;
    text-transform: none;
}

.bd-posticonauthor-3 {
    float: left;
    margin-right: 10px;
    position: relative;
}

    .bd-posticonauthor-3 .bd-icon-36 {
        white-space: nowrap;
    }

        .bd-posticonauthor-3 .bd-icon-36 > span {
            white-space: normal;
        }

.bd-icon-36:before {
    content: '\280';
}

.bd-icon-36:before {
    visibility: inherit;
}

.bd-icon-36:before {
    color: #cccccc;
    margin-right: 10px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Bvc3RBdXRob3JJY29uMjI {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Bvc3RBdXRob3JJY29uNjI {
}

.bd-posticonauthor-6 {
    line-height: 17.14285715px;
    font-size: 12px;
}

.bd-posticonauthor-13 {
    float: left;
    margin-right: 10px;
    position: relative;
}

.bd-posticonauthor-13 {
    color: #777777;
    text-transform: none;
}

.bd-posticonauthor-13 {
    float: left;
    margin-right: 10px;
    position: relative;
}

    .bd-posticonauthor-13 .bd-icon-58 {
        white-space: nowrap;
    }

        .bd-posticonauthor-13 .bd-icon-58 > span {
            white-space: normal;
        }

.bd-icon-58:before {
    content: '\280';
}

.bd-icon-58:before {
    visibility: inherit;
}

.bd-icon-58:before {
    color: #cccccc;
    margin-right: 10px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Bvc3RBdXRob3JJY29uNjI {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Bvc3RDYXRlZ29yeUljb24y {
}

.bd-posticoncategory-1 {
    line-height: 17.14285715px;
    font-size: 12px;
}

.bd-posticoncategory-7 {
    float: left;
    margin-right: 10px;
    position: relative;
}

.bd-posticoncategory-7 {
    color: #777777;
    text-transform: none;
}

.bd-posticoncategory-7 {
    float: left;
    margin-right: 10px;
    position: relative;
}

    .bd-posticoncategory-7 .bd-icon-44 {
        white-space: nowrap;
    }

        .bd-posticoncategory-7 .bd-icon-44 > span {
            white-space: normal;
        }

.bd-icon-44:before {
    content: '\22f';
}

.bd-icon-44:before {
    visibility: inherit;
}

.bd-icon-44:before {
    color: #cccccc;
    margin-right: 10px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Bvc3RDYXRlZ29yeUljb24y {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Bvc3RDYXRlZ29yeUljb24z {
}

.bd-posticoncategory-2 {
    line-height: 17.14285715px;
    font-size: 12px;
}

.bd-posticoncategory-15 {
    float: left;
    margin-right: 10px;
    position: relative;
}

.bd-posticoncategory-15 {
    color: #777777;
    text-transform: none;
}

@media (max-width: 991px) {
    .bd-posticoncategory-15 {
        text-align: right;
    }
}

.bd-posticoncategory-15 {
    float: left;
    margin-right: 10px;
    position: relative;
}

    .bd-posticoncategory-15 .bd-icon-61 {
        white-space: nowrap;
    }

        .bd-posticoncategory-15 .bd-icon-61 > span {
            white-space: normal;
        }

.bd-icon-61:before {
    content: '\22f';
}

.bd-icon-61:before {
    visibility: inherit;
}

.bd-icon-61:before {
    color: #cccccc;
    margin-right: 10px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Bvc3RDYXRlZ29yeUljb24z {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Bvc3RDb21tZW50SWNvbjM {
}

.bd-posticoncomments-1 {
    line-height: 17.14285715px;
    font-size: 12px;
}

.bd-posticoncomments-17 {
    float: left;
    margin-right: 10px;
    position: relative;
}

.bd-posticoncomments-17 {
    color: #777777;
    text-transform: none;
}

.bd-posticoncomments-17 {
    float: left;
    margin-right: 10px;
    position: relative;
}

    .bd-posticoncomments-17 .bd-icon-63 {
        white-space: nowrap;
    }

        .bd-posticoncomments-17 .bd-icon-63 > span {
            white-space: normal;
        }

.bd-icon-63:before {
    content: '\1bf';
}

.bd-icon-63:before {
    visibility: inherit;
}

.bd-icon-63:before {
    color: #cccccc;
    margin-right: 10px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Bvc3RDb21tZW50SWNvbjM {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Bvc3REYXRlSWNvbjI {
}

.bd-posticondate-3 {
    line-height: 17.14285715px;
    font-size: 12px;
}

.bd-posticondate-4 {
    float: left;
    margin-right: 10px;
    position: relative;
}

.bd-posticondate-4 {
    color: #777777;
    text-transform: none;
}

.bd-posticondate-4 {
    float: left;
    margin-right: 10px;
    position: relative;
}

    .bd-posticondate-4 .bd-icon-39 {
        white-space: nowrap;
    }

        .bd-posticondate-4 .bd-icon-39 > span {
            white-space: normal;
        }

.bd-icon-39:before {
    content: '\23d';
}

.bd-icon-39:before {
    visibility: inherit;
}

.bd-icon-39:before {
    color: #cccccc;
    margin-right: 10px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Bvc3REYXRlSWNvbjI {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Bvc3REYXRlSWNvbjIy {
}

.bd-posticondate-2 {
    float: left;
    margin-right: 10px;
    position: relative;
}

.bd-posticondate-2 {
    color: #777777;
    text-transform: none;
}

.bd-posticondate-2 {
    float: left;
    margin-right: 10px;
    position: relative;
}

    .bd-posticondate-2 .bd-icon-34 {
        white-space: nowrap;
    }

        .bd-posticondate-2 .bd-icon-34 > span {
            white-space: normal;
        }

.bd-icon-34:before {
    content: '\23d';
}

.bd-icon-34:before {
    visibility: inherit;
}

.bd-icon-34:before {
    color: #cccccc;
    margin-right: 10px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Bvc3REYXRlSWNvbjIy {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Bvc3REYXRlSWNvbjYy {
}

.bd-posticondate-6 {
    line-height: 17.14285715px;
    font-size: 12px;
}

.bd-posticondate-12 {
    float: left;
    margin-right: 10px;
    position: relative;
}

.bd-posticondate-12 {
    text-transform: none;
    color: #777777;
}

.bd-posticondate-12 {
    float: left;
    margin-right: 10px;
    position: relative;
}

    .bd-posticondate-12 .bd-icon-56 {
        white-space: nowrap;
    }

        .bd-posticondate-12 .bd-icon-56 > span {
            white-space: normal;
        }

.bd-icon-56:before {
    content: '\23d';
}

.bd-icon-56:before {
    visibility: inherit;
}

.bd-icon-56:before {
    color: #cccccc;
    margin-right: 10px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Bvc3REYXRlSWNvbjYy {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Bvc3RFZGl0SWNvbjI {
}

.bd-posticonedit-1 {
    line-height: 17.14285715px;
    font-size: 12px;
}

.bd-posticonedit-6 {
    float: left;
    margin-right: 10px;
    position: relative;
}

.bd-posticonedit-6 {
    text-transform: none;
    color: #777777;
}

.bd-posticonedit-6 {
    float: left;
    margin-right: 10px;
    position: relative;
}

    .bd-posticonedit-6 .bd-icon-43 {
        white-space: nowrap;
    }

        .bd-posticonedit-6 .bd-icon-43 > span {
            white-space: normal;
        }

.bd-icon-43:before {
    content: '\13f';
}

.bd-icon-43:before {
    visibility: inherit;
}

.bd-icon-43:before {
    color: #cccccc;
    margin-right: 10px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Bvc3RFZGl0SWNvbjI {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Bvc3RFZGl0SWNvbjM {
}

.bd-posticonedit-3 {
    line-height: 17.14285715px;
    font-size: 12px;
}

.bd-posticonedit-14 {
    float: left;
    margin-right: 10px;
    position: relative;
}

.bd-posticonedit-14 {
    color: #777777;
    text-transform: none;
}

.bd-posticonedit-14 {
    float: left;
    margin-right: 10px;
    position: relative;
}

    .bd-posticonedit-14 .bd-icon-60 {
        white-space: nowrap;
    }

        .bd-posticonedit-14 .bd-icon-60 > span {
            white-space: normal;
        }

.bd-icon-60:before {
    content: '\13f';
}

.bd-icon-60:before {
    visibility: inherit;
}

.bd-icon-60:before {
    color: #cccccc;
    margin-right: 10px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Bvc3RFZGl0SWNvbjM {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Bvc3RUYWdzSWNvbjI {
}

.bd-posticontags-8 {
    float: left;
    margin-right: 10px;
    position: relative;
}

.bd-posticontags-8 {
    color: #777777;
    text-transform: none;
}

.bd-posticontags-8 {
    float: left;
    margin-right: 10px;
    position: relative;
}

    .bd-posticontags-8 .bd-icon-45 {
        white-space: nowrap;
    }

        .bd-posticontags-8 .bd-icon-45 > span {
            white-space: normal;
        }

.bd-icon-45:before {
    content: '\1c8';
}

.bd-icon-45:before {
    visibility: inherit;
}

.bd-icon-45:before {
    color: #cccccc;
    margin-right: 10px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Bvc3RUYWdzSWNvbjI {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RCdXky {
}

.bd-productbuy-2 {
    margin: 0px auto;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RCdXky {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RCdXkz {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RCdXkz {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3REZXNjMQ {
}

.bd-productdesc-1 {
    position: relative;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3REZXNjMQ {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3REZXNjMg {
}

.bd-productdesc-11 {
    margin-top: 10px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3REZXNjMg {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RJbWFnZTE {
}

.bd-productimage-4 {
    text-align: center;
    display: inline-block;
}

.bd-productimage-4 {
    display: inline-block;
}

    .bd-productimage-4 img {
        display: block;
        width: 100%;
        height: 100%;
    }

.bd-imagestyles-16 {
    vertical-align: middle;
    display: inline-block;
    text-align: center;
    border: 0 solid #777777;
}

.bd-productimage-4 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
    text-align: center;
    border: 0 solid #777777;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RJbWFnZTE {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RJbWFnZTI {
}

.bd-productimage-5 {
    width: 100%;
    text-align: center;
}

.bd-productimage-5 {
    display: inline-block;
}

    .bd-productimage-5 img {
        display: block;
        width: 100%;
        height: 100%;
    }

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RJbWFnZTI {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RMaXN0Q29udGFpbmVy {
}

.bd-layoutcolumn-57 {
    position: relative;
}

.bd-layoutcolumn-58 {
    position: relative;
}

.bd-layoutcolumn-59 {
    position: relative;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RMaXN0Q29udGFpbmVy {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3ROZXcx {
}

.bd-productnew-2 {
    position: absolute;
    top: 0;
    right: 0;
}

.bd-productnewicon-3 {
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    background-color: rgba(92, 183, 92, 0.5);
    padding: 16px 10px;
    border-radius: 50%;
}

.bd-productnewicon-3 {
    line-height: 17.14285715px;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    color: #ffffff;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3ROZXcx {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3ROZXcy {
}

.bd-productnew-3 {
    position: absolute;
    top: 0;
    right: 0;
}

.bd-productnewicon-2 {
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    background-color: rgba(92, 183, 92, 0.5);
    padding: 16px 10px;
    border-radius: 50%;
}

.bd-productnewicon-2 {
    line-height: 17.14285715px;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    color: #ffffff;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3ROZXcy {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RPdXRPZlN0b2NrMQ {
}

.bd-productoutofstock-2 {
    position: absolute;
    top: 0.122282608695599%;
    right: auto;
    left: -0.85330974%;
    bottom: auto;
    width: 98px;
}

@media (max-width: 991px) {
    .bd-productoutofstock-2 {
        position: absolute;
        top: 0.122282608695599%;
        left: 0.0812696992238273%;
        right: auto;
        bottom: auto;
    }
}

.bd-productoutofstockicon-3 {
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    background-color: rgba(119, 119, 119, 0.5);
    padding: 5px;
}

.bd-productoutofstockicon-3 {
    line-height: 17.14285715px;
    text-align: center;
    font-size: 12px;
    color: #ffffff;
    text-transform: uppercase;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RPdXRPZlN0b2NrMQ {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RPdXRPZlN0b2NrMg {
}

.bd-productoutofstock-3 {
    position: absolute;
    top: -10.323%;
    right: auto;
    left: -10.309%;
    bottom: auto;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RPdXRPZlN0b2NrMg {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RPdmVydmlld0J1eQ {
}

.bd-productbuy-4 {
    margin: 12px auto 0px;
}

.bd-button-9 a {
    line-height: 20.00000001px;
    font-size: 14px;
}

.bd-button-9 {
    /* default transparent bg otherwise you get gray default bg */
    background-color: transparent;
}

    .bd-button-9,
    .bd-button-9:link,
    .bd-button-9:visited {
        /* reset browser styles */
        border-width: 0;
        padding: 0;
        color: #ffffff;
        background-color: #3177bd;
        vertical-align: middle;
        display: inline-block;
        text-align: center;
        margin-top: -20px;
        padding: 5px 15px;
        border: 0px solid #ffffff;
        background-image: none;
    }

        .bd-button-9:hover,
        .bd-button-9:focus {
            background-color: #3c8fe2;
            text-decoration: none;
            color: #ffffff;
            background-image: none;
        }

        .bd-button-9:active {
            background-color: #2b5ea0;
            background-image: none;
        }

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RPdmVydmlld0J1eQ {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RPdmVydmlld0Rlc2M {
}

.bd-productdesc-13 {
    margin-top: 10px;
    margin-bottom: 10px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RPdmVydmlld0Rlc2M {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RPdmVydmlld1ByaWNl {
}

.bd-productprice-5 {
    font-weight: normal;
}

.bd-productprice-5 {
    display: block;
    position: relative;
}

.bd-pricetext-15 {
    display: block;
    padding: 0px;
}

.bd-pricetext-15 {
    color: #777777;
}

    .bd-pricetext-15 .bd-label-17,
    .bd-pricetext-15 .bd-container-36 {
        display: inline-block;
    }

.bd-container-36:not(.shape-only).bd-custom-blockquotes blockquote,
.bd-blockquotes-5 {
    border-top-width: 0;
    border-right-width: 0;
    border-bottom-width: 0;
    border-left: 5px solid #f5f5f5;
    border-radius: 0px;
}

.bd-button-5 a {
    line-height: 20.00000001px;
    font-size: 14px;
}

.bd-container-36:not(.shape-only).bd-custom-button button,
.bd-container-36:not(.shape-only).bd-custom-button input[type="submit"],
.bd-container-36:not(.shape-only).bd-custom-button input[type="button"],
.bd-container-36:not(.shape-only).bd-custom-button a.bd-button-5[href],
.bd-container-36:not(.shape-only).bd-custom-button .bd-button-5,
button.bd-button-5,
input.bd-button-5,
a.bd-button-5[href],
.bd-button-5 {
    /* default transparent bg otherwise you get gray default bg */
    background-color: transparent;
}

    .bd-container-36:not(.shape-only).bd-custom-button button,
    .bd-container-36:not(.shape-only).bd-custom-button input[type="submit"],
    .bd-container-36:not(.shape-only).bd-custom-button input[type="button"],
    .bd-container-36:not(.shape-only).bd-custom-button a.bd-button-5[href],
    .bd-container-36:not(.shape-only).bd-custom-button .bd-button-5,
    button.bd-button-5,
    input.bd-button-5,
    a.bd-button-5[href],
    .bd-button-5,
    .bd-container-36:not(.shape-only).bd-custom-button button:link,
    .bd-container-36:not(.shape-only).bd-custom-button input[type="submit"]:link,
    .bd-container-36:not(.shape-only).bd-custom-button input[type="button"]:link,
    .bd-container-36:not(.shape-only).bd-custom-button a.bd-button-5[href]:link,
    .bd-container-36:not(.shape-only).bd-custom-button .bd-button-5:link,
    button.bd-button-5:link,
    input.bd-button-5:link,
    a.bd-button-5[href]:link,
    .bd-button-5:link,
    .bd-container-36:not(.shape-only).bd-custom-button button:visited,
    .bd-container-36:not(.shape-only).bd-custom-button input[type="submit"]:visited,
    .bd-container-36:not(.shape-only).bd-custom-button input[type="button"]:visited,
    .bd-container-36:not(.shape-only).bd-custom-button a.bd-button-5[href]:visited,
    .bd-container-36:not(.shape-only).bd-custom-button .bd-button-5:visited,
    button.bd-button-5:visited,
    input.bd-button-5:visited,
    a.bd-button-5[href]:visited,
    .bd-button-5:visited {
        /* reset browser styles */
        border-width: 0;
        padding: 0;
        color: #ffffff;
        background-color: #3177bd;
        vertical-align: middle;
        display: inline-block;
        text-align: center;
        padding: 5px;
        border: 0px solid #ffffff;
        border-radius: 4px;
        background-image: none;
    }

        .bd-container-36:not(.shape-only).bd-custom-button button:hover,
        .bd-container-36:not(.shape-only).bd-custom-button input[type="submit"]:hover,
        .bd-container-36:not(.shape-only).bd-custom-button input[type="button"]:hover,
        .bd-container-36:not(.shape-only).bd-custom-button a.bd-button-5[href]:hover,
        .bd-container-36:not(.shape-only).bd-custom-button .bd-button-5:hover,
        button.bd-button-5:hover,
        input.bd-button-5:hover,
        a.bd-button-5[href]:hover,
        .bd-button-5:hover,
        .bd-container-36:not(.shape-only).bd-custom-button button:focus,
        .bd-container-36:not(.shape-only).bd-custom-button input[type="submit"]:focus,
        .bd-container-36:not(.shape-only).bd-custom-button input[type="button"]:focus,
        .bd-container-36:not(.shape-only).bd-custom-button a.bd-button-5[href]:focus,
        .bd-container-36:not(.shape-only).bd-custom-button .bd-button-5:focus,
        button.bd-button-5:focus,
        input.bd-button-5:focus,
        a.bd-button-5[href]:focus,
        .bd-button-5:focus {
            background-color: #2b5ea0;
            text-decoration: none;
            color: #ffffff;
            background-image: none;
        }

.bd-imagestyles-5 {
    vertical-align: middle;
    display: inline-block;
    text-align: center;
    border: 0 solid #777777;
    border-radius: 0;
}

.bd-container-36:not(.shape-only).bd-custom-image img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
    text-align: center;
    border: 0 solid #777777;
    border-radius: 0;
}

.bd-container-36:not(.shape-only).bd-custom-table table,
.bd-table-6 {
    border-collapse: collapse;
    width: 100%;
}

    .bd-container-36:not(.shape-only).bd-custom-table table thead td,
    .bd-table-6 thead td,
    .bd-container-36:not(.shape-only).bd-custom-table table thead th,
    .bd-table-6 thead th {
        border-bottom: 1px solid #777777;
    }

.bd-pricetext-14 {
    display: block;
    padding: 0px;
}

.bd-pricetext-14 {
    line-height: 35.71428573px;
    font-size: 25px;
    color: #d9534f;
}

    .bd-pricetext-14 .bd-label-16,
    .bd-pricetext-14 .bd-container-35 {
        display: inline-block;
    }

.bd-container-35 {
    line-height: 44.2857143px;
    font-size: 31px;
}

    .bd-container-35:not(.shape-only).bd-custom-blockquotes blockquote,
    .bd-blockquotes-4 {
        border-top-width: 0;
        border-right-width: 0;
        border-bottom-width: 0;
        border-left: 5px solid #f5f5f5;
        border-radius: 0px;
    }

.bd-button-4 a {
    line-height: 20.00000001px;
    font-size: 14px;
}

.bd-container-35:not(.shape-only).bd-custom-button button,
.bd-container-35:not(.shape-only).bd-custom-button input[type="submit"],
.bd-container-35:not(.shape-only).bd-custom-button input[type="button"],
.bd-container-35:not(.shape-only).bd-custom-button a.bd-button-4[href],
.bd-container-35:not(.shape-only).bd-custom-button .bd-button-4,
button.bd-button-4,
input.bd-button-4,
a.bd-button-4[href],
.bd-button-4 {
    /* default transparent bg otherwise you get gray default bg */
    background-color: transparent;
}

    .bd-container-35:not(.shape-only).bd-custom-button button,
    .bd-container-35:not(.shape-only).bd-custom-button input[type="submit"],
    .bd-container-35:not(.shape-only).bd-custom-button input[type="button"],
    .bd-container-35:not(.shape-only).bd-custom-button a.bd-button-4[href],
    .bd-container-35:not(.shape-only).bd-custom-button .bd-button-4,
    button.bd-button-4,
    input.bd-button-4,
    a.bd-button-4[href],
    .bd-button-4,
    .bd-container-35:not(.shape-only).bd-custom-button button:link,
    .bd-container-35:not(.shape-only).bd-custom-button input[type="submit"]:link,
    .bd-container-35:not(.shape-only).bd-custom-button input[type="button"]:link,
    .bd-container-35:not(.shape-only).bd-custom-button a.bd-button-4[href]:link,
    .bd-container-35:not(.shape-only).bd-custom-button .bd-button-4:link,
    button.bd-button-4:link,
    input.bd-button-4:link,
    a.bd-button-4[href]:link,
    .bd-button-4:link,
    .bd-container-35:not(.shape-only).bd-custom-button button:visited,
    .bd-container-35:not(.shape-only).bd-custom-button input[type="submit"]:visited,
    .bd-container-35:not(.shape-only).bd-custom-button input[type="button"]:visited,
    .bd-container-35:not(.shape-only).bd-custom-button a.bd-button-4[href]:visited,
    .bd-container-35:not(.shape-only).bd-custom-button .bd-button-4:visited,
    button.bd-button-4:visited,
    input.bd-button-4:visited,
    a.bd-button-4[href]:visited,
    .bd-button-4:visited {
        /* reset browser styles */
        border-width: 0;
        padding: 0;
        color: #ffffff;
        background-color: #3177bd;
        vertical-align: middle;
        display: inline-block;
        text-align: center;
        padding: 5px;
        border: 0px solid #ffffff;
        border-radius: 4px;
        background-image: none;
    }

        .bd-container-35:not(.shape-only).bd-custom-button button:hover,
        .bd-container-35:not(.shape-only).bd-custom-button input[type="submit"]:hover,
        .bd-container-35:not(.shape-only).bd-custom-button input[type="button"]:hover,
        .bd-container-35:not(.shape-only).bd-custom-button a.bd-button-4[href]:hover,
        .bd-container-35:not(.shape-only).bd-custom-button .bd-button-4:hover,
        button.bd-button-4:hover,
        input.bd-button-4:hover,
        a.bd-button-4[href]:hover,
        .bd-button-4:hover,
        .bd-container-35:not(.shape-only).bd-custom-button button:focus,
        .bd-container-35:not(.shape-only).bd-custom-button input[type="submit"]:focus,
        .bd-container-35:not(.shape-only).bd-custom-button input[type="button"]:focus,
        .bd-container-35:not(.shape-only).bd-custom-button a.bd-button-4[href]:focus,
        .bd-container-35:not(.shape-only).bd-custom-button .bd-button-4:focus,
        button.bd-button-4:focus,
        input.bd-button-4:focus,
        a.bd-button-4[href]:focus,
        .bd-button-4:focus {
            background-color: #2b5ea0;
            text-decoration: none;
            color: #ffffff;
            background-image: none;
        }

.bd-imagestyles-4 {
    vertical-align: middle;
    display: inline-block;
    text-align: center;
    border: 0 solid #777777;
    border-radius: 0;
}

.bd-container-35:not(.shape-only).bd-custom-image img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
    text-align: center;
    border: 0 solid #777777;
    border-radius: 0;
}

.bd-container-35:not(.shape-only).bd-custom-table table,
.bd-table-5 {
    border-collapse: collapse;
    width: 100%;
}

    .bd-container-35:not(.shape-only).bd-custom-table table thead td,
    .bd-table-5 thead td,
    .bd-container-35:not(.shape-only).bd-custom-table table thead th,
    .bd-table-5 thead th {
        border-bottom: 1px solid #777777;
    }

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RPdmVydmlld1ByaWNl {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RPdmVydmlld1RpdGxl {
}

.bd-productoverviewtitle-1 {
    position: relative;
    margin: 0px;
}

.bd-productoverviewtitle-1 {
    line-height: 48px;
    font-size: 48px;
    text-transform: none;
    color: #3177bd;
}

    .bd-productoverviewtitle-1 p {
        margin-top: 0;
        margin-bottom: 0;
    }

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RPdmVydmlld1RpdGxl {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RQcmljZTE {
}

.bd-productprice-3 {
    line-height: 25.71428572px;
    font-weight: normal;
    font-size: 18px;
    color: #d9534f;
}

.bd-productprice-3 {
    display: block;
    position: relative;
}

.bd-pricetext-11 {
    display: inline-block;
    float: left;
    padding: 0px;
}

.bd-pricetext-11 {
    line-height: 20.00000001px;
    font-size: 14px;
    color: #777777;
}

    .bd-pricetext-11 .bd-label-11,
    .bd-pricetext-11 .bd-container-30 {
        display: inline-block;
    }

.bd-container-30 {
    line-height: 17.14285715px;
    font-size: 12px;
    text-decoration: line-through;
    color: #cccccc;
}

.bd-pricetext-10 {
    display: inline-block;
    padding: 0px;
}

    .bd-pricetext-10 .bd-label-10,
    .bd-pricetext-10 .bd-container-29 {
        display: inline-block;
    }

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RQcmljZTE {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RQcmljZTI {
}

.bd-productprice-4 {
    display: block;
    margin: 5px 10px;
}

.bd-pricetext-13 {
    display: block;
    padding: 0px;
}

.bd-pricetext-13 {
    color: #777777;
}

    .bd-pricetext-13 .bd-label-13,
    .bd-pricetext-13 .bd-container-32 {
        display: inline-block;
    }

.bd-pricetext-12 {
    display: block;
    padding: 0px;
}

.bd-pricetext-12 {
    color: #2b5ea0;
}

    .bd-pricetext-12 .bd-label-12,
    .bd-pricetext-12 .bd-container-31 {
        display: inline-block;
    }

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RQcmljZTI {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RSYXRpbmcx {
}

.bd-productrating-1 {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    position: relative;
}

.bd-rating-2 {
    display: table;
}

    .bd-rating-2 span {
        display: table-cell;
    }

.bd-icon-2:before {
    content: '\25f';
}

.bd-icon-2:before {
    visibility: inherit;
}

.bd-icon-2:before {
    color: #f0ad4e;
    font-size: 18px;
    line-height: 25.71428572px;
    line-height: 18px;
}

.bd-icon-2:hover.active:before,
.bd-icon-2.active:before {
    color: #2a72ba;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RSYXRpbmcx {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RSZXZpZXdBdmF0YXI {
}

.bd-reviewavatar-1 {
    display: inline-block;
}

.bd-reviewavatar-1 {
    display: inline-block;
}

    .bd-reviewavatar-1 img {
        display: block;
        width: 100%;
        height: 100%;
    }

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RSZXZpZXdBdmF0YXI {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RSZXZpZXdDb250YWluZXI {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RSZXZpZXdDb250YWluZXI {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RSZXZpZXdNZXRhZGF0YQ {
}

.bd-reviewmetadata-1 {
    line-height: 17.14285715px;
    font-size: 12px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RSZXZpZXdNZXRhZGF0YQ {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RSZXZpZXdSYXRpbmc {
}

.bd-reviewrating-2 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.bd-reviewrating-2 {
    line-height: 17.14285715px;
    font-size: 12px;
    text-align: left;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RSZXZpZXdSYXRpbmc {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RSZXZpZXdUZXh0 {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RSZXZpZXdUZXh0 {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RTYWxlMQ {
}

.bd-productsale-2 {
    left: auto;
    bottom: auto;
    right: 8.04151101968031%;
    top: 4.43291965486329%;
    position: absolute;
}

@media (max-width: 991px) {
    .bd-productsale-2 {
        position: absolute;
        top: 8.00434822629186%;
        left: auto;
        right: 34.2097353187457%;
        bottom: auto;
    }
}

@media (max-width: 767px) {
    .bd-productsale-2 {
        position: absolute;
        top: 8.33768155962519%;
        left: auto;
        right: 26.1452191897134%;
        bottom: auto;
    }
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RTYWxlMQ {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RTYWxlMg {
}

.bd-productsale-3 {
    position: absolute;
    top: 0.000%;
    left: auto;
    right: 5.670%;
    bottom: auto;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RTYWxlMg {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RTbGlkZXJCdXk {
}

.bd-productbuy-1 {
    margin: 15px auto 16px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RTbGlkZXJCdXk {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RTbGlkZXJJbWFnZQ {
}

.bd-productimage-2 {
    text-align: center;
    width: 50%;
    display: inline-block;
}

.bd-productimage-2 {
    display: inline-block;
}

    .bd-productimage-2 img {
        display: block;
        width: 100%;
        height: 100%;
    }

.bd-imagestyles-15 {
    vertical-align: middle;
    display: inline-block;
    text-align: center;
}

.bd-productimage-2 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
    text-align: center;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RTbGlkZXJJbWFnZQ {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RTbGlkZXJOZXcx {
}

.bd-productnew-1 {
    position: absolute;
    top: 0;
    right: 0;
}

.bd-productnewicon-4 {
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    background-color: rgba(92, 183, 92, 0.5);
    padding: 16px 10px;
    border-radius: 50%;
}

.bd-productnewicon-4 {
    line-height: 17.14285715px;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    color: #ffffff;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RTbGlkZXJOZXcx {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RTbGlkZXJPdXRPZlN0b2NrMQ {
}

.bd-productoutofstock-1 {
    position: absolute;
    top: 60px;
    right: 0;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RTbGlkZXJPdXRPZlN0b2NrMQ {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RTbGlkZXJTYWxlMQ {
}

.bd-productsale-1 {
    position: absolute;
    top: 4.528%;
    left: 5.785%;
    right: auto;
    bottom: auto;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RTbGlkZXJTYWxlMQ {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RTbGlkZXJUaXRsZQ {
}

.bd-producttitle-4 {
    margin-top: 0px;
    margin-bottom: 0px;
}

.bd-producttitle-4 {
    line-height: 25.71428572px;
    text-transform: none;
    font-size: 18px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RTbGlkZXJUaXRsZQ {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RzTmF2aWdhdGlvbkZvb3Rlcg {
}

.bd-productsgridpagination-1 {
    margin-top: -10px;
}

.bd-pagination-4.right {
    text-align: right;
}

.bd-pagination-4.center {
    text-align: center;
}

.bd-pagination-4 > *:last-child {
    margin-right: 0;
}

.bd-pagination-4 span {
    cursor: default;
}

.pagination > ul.bd-pagination-4 > .active > a,
.pagination > ul.bd-pagination-4 > .active > span {
    color: inherit;
    line-height: inherit;
}

.bd-pagination-4 > li.bd-paginationitem-4 > a,
.bd-pagination-4 > li.bd-paginationitem-4 > span,
.bd-pagination-4 > li.bd-paginationitem-4 > a:link,
.bd-pagination-4 > li.bd-paginationitem-4 > a:visited {
    color: #555555;
    border: 1px solid #ffffff;
    border-radius: 0px;
}

    .bd-pagination-4 > li.bd-paginationitem-4 > a:hover {
        background-color: #dddddd;
        background-image: none;
    }

.bd-pagination-4 > li.active.bd-paginationitem-4 > a,
.bd-pagination-4 > li.active.bd-paginationitem-4 > span {
    color: inherit;
    background-color: #f5f5f5;
    font-weight: bold;
    background-image: none;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RzTmF2aWdhdGlvbkZvb3Rlcg {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RzU2xpZGVyUHJpY2U {
}

.bd-productprice-2 {
    display: block;
    margin-bottom: 10px;
}

.bd-pricetext-6 {
    display: block;
    padding: 0px;
}

.bd-pricetext-6 {
    color: #777777;
}

    .bd-pricetext-6 .bd-label-6,
    .bd-pricetext-6 .bd-container-8 {
        display: inline-block;
    }

.bd-container-8 {
    line-height: 17.14285715px;
    font-size: 12px;
    text-decoration: line-through;
    color: #cccccc;
}

    .bd-container-8:not(.shape-only).bd-custom-blockquotes blockquote,
    .bd-blockquotes-3 {
        border-top-width: 0;
        border-right-width: 0;
        border-bottom-width: 0;
        border-left: 5px solid #f5f5f5;
        border-radius: 0px;
    }

.bd-button-3 a {
    line-height: 20.00000001px;
    font-size: 14px;
}

.bd-container-8:not(.shape-only).bd-custom-button button,
.bd-container-8:not(.shape-only).bd-custom-button input[type="submit"],
.bd-container-8:not(.shape-only).bd-custom-button input[type="button"],
.bd-container-8:not(.shape-only).bd-custom-button a.bd-button-3[href],
.bd-container-8:not(.shape-only).bd-custom-button .bd-button-3,
button.bd-button-3,
input.bd-button-3,
a.bd-button-3[href],
.bd-button-3 {
    /* default transparent bg otherwise you get gray default bg */
    background-color: transparent;
}

    .bd-container-8:not(.shape-only).bd-custom-button button,
    .bd-container-8:not(.shape-only).bd-custom-button input[type="submit"],
    .bd-container-8:not(.shape-only).bd-custom-button input[type="button"],
    .bd-container-8:not(.shape-only).bd-custom-button a.bd-button-3[href],
    .bd-container-8:not(.shape-only).bd-custom-button .bd-button-3,
    button.bd-button-3,
    input.bd-button-3,
    a.bd-button-3[href],
    .bd-button-3,
    .bd-container-8:not(.shape-only).bd-custom-button button:link,
    .bd-container-8:not(.shape-only).bd-custom-button input[type="submit"]:link,
    .bd-container-8:not(.shape-only).bd-custom-button input[type="button"]:link,
    .bd-container-8:not(.shape-only).bd-custom-button a.bd-button-3[href]:link,
    .bd-container-8:not(.shape-only).bd-custom-button .bd-button-3:link,
    button.bd-button-3:link,
    input.bd-button-3:link,
    a.bd-button-3[href]:link,
    .bd-button-3:link,
    .bd-container-8:not(.shape-only).bd-custom-button button:visited,
    .bd-container-8:not(.shape-only).bd-custom-button input[type="submit"]:visited,
    .bd-container-8:not(.shape-only).bd-custom-button input[type="button"]:visited,
    .bd-container-8:not(.shape-only).bd-custom-button a.bd-button-3[href]:visited,
    .bd-container-8:not(.shape-only).bd-custom-button .bd-button-3:visited,
    button.bd-button-3:visited,
    input.bd-button-3:visited,
    a.bd-button-3[href]:visited,
    .bd-button-3:visited {
        /* reset browser styles */
        border-width: 0;
        padding: 0;
        color: #ffffff;
        background-color: #3177bd;
        vertical-align: middle;
        display: inline-block;
        text-align: center;
        padding: 5px;
        border: 0px solid #ffffff;
        border-radius: 4px;
        background-image: none;
    }

        .bd-container-8:not(.shape-only).bd-custom-button button:hover,
        .bd-container-8:not(.shape-only).bd-custom-button input[type="submit"]:hover,
        .bd-container-8:not(.shape-only).bd-custom-button input[type="button"]:hover,
        .bd-container-8:not(.shape-only).bd-custom-button a.bd-button-3[href]:hover,
        .bd-container-8:not(.shape-only).bd-custom-button .bd-button-3:hover,
        button.bd-button-3:hover,
        input.bd-button-3:hover,
        a.bd-button-3[href]:hover,
        .bd-button-3:hover,
        .bd-container-8:not(.shape-only).bd-custom-button button:focus,
        .bd-container-8:not(.shape-only).bd-custom-button input[type="submit"]:focus,
        .bd-container-8:not(.shape-only).bd-custom-button input[type="button"]:focus,
        .bd-container-8:not(.shape-only).bd-custom-button a.bd-button-3[href]:focus,
        .bd-container-8:not(.shape-only).bd-custom-button .bd-button-3:focus,
        button.bd-button-3:focus,
        input.bd-button-3:focus,
        a.bd-button-3[href]:focus,
        .bd-button-3:focus {
            background-color: #2b5ea0;
            text-decoration: none;
            color: #ffffff;
            background-image: none;
        }

.bd-imagestyles-3 {
    vertical-align: middle;
    display: inline-block;
    text-align: center;
    border: 0 solid #777777;
    border-radius: 0;
}

.bd-container-8:not(.shape-only).bd-custom-image img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
    text-align: center;
    border: 0 solid #777777;
    border-radius: 0;
}

.bd-container-8:not(.shape-only).bd-custom-table table,
.bd-table-3 {
    border-collapse: collapse;
    width: 100%;
}

    .bd-container-8:not(.shape-only).bd-custom-table table thead td,
    .bd-table-3 thead td,
    .bd-container-8:not(.shape-only).bd-custom-table table thead th,
    .bd-table-3 thead th {
        border-bottom: 1px solid #777777;
    }

.bd-pricetext-5 {
    display: block;
    padding: 0px;
}

.bd-pricetext-5 {
    color: #2b5ea0;
}

    .bd-pricetext-5 .bd-label-5,
    .bd-pricetext-5 .bd-container-13 {
        display: inline-block;
    }

.bd-container-13 {
    line-height: 25.71428572px;
    font-size: 18px;
    color: #d9534f;
}

    .bd-container-13 h4 {
        color: #d9534f;
    }

        .bd-container-13 h4 a {
            color: #d9534f;
        }

            .bd-container-13 h4 a:hover {
                color: #d9534f;
            }

            .bd-container-13 h4 a:active {
                color: #d9534f;
            }

    .bd-container-13 h2 {
        color: #d9534f;
    }

        .bd-container-13 h2 a {
            color: #d9534f;
        }

            .bd-container-13 h2 a:hover {
                color: #d9534f;
            }

            .bd-container-13 h2 a:active {
                color: #d9534f;
            }

    .bd-container-13:not(.shape-only).bd-custom-blockquotes blockquote,
    .bd-blockquotes-2 {
        border-top-width: 0;
        border-right-width: 0;
        border-bottom-width: 0;
        border-left: 5px solid #f5f5f5;
        border-radius: 0px;
    }

.bd-button-2 a {
    line-height: 20.00000001px;
    font-size: 14px;
}

.bd-container-13:not(.shape-only).bd-custom-button button,
.bd-container-13:not(.shape-only).bd-custom-button input[type="submit"],
.bd-container-13:not(.shape-only).bd-custom-button input[type="button"],
.bd-container-13:not(.shape-only).bd-custom-button a.bd-button-2[href],
.bd-container-13:not(.shape-only).bd-custom-button .bd-button-2,
button.bd-button-2,
input.bd-button-2,
a.bd-button-2[href],
.bd-button-2 {
    /* default transparent bg otherwise you get gray default bg */
    background-color: transparent;
}

    .bd-container-13:not(.shape-only).bd-custom-button button,
    .bd-container-13:not(.shape-only).bd-custom-button input[type="submit"],
    .bd-container-13:not(.shape-only).bd-custom-button input[type="button"],
    .bd-container-13:not(.shape-only).bd-custom-button a.bd-button-2[href],
    .bd-container-13:not(.shape-only).bd-custom-button .bd-button-2,
    button.bd-button-2,
    input.bd-button-2,
    a.bd-button-2[href],
    .bd-button-2,
    .bd-container-13:not(.shape-only).bd-custom-button button:link,
    .bd-container-13:not(.shape-only).bd-custom-button input[type="submit"]:link,
    .bd-container-13:not(.shape-only).bd-custom-button input[type="button"]:link,
    .bd-container-13:not(.shape-only).bd-custom-button a.bd-button-2[href]:link,
    .bd-container-13:not(.shape-only).bd-custom-button .bd-button-2:link,
    button.bd-button-2:link,
    input.bd-button-2:link,
    a.bd-button-2[href]:link,
    .bd-button-2:link,
    .bd-container-13:not(.shape-only).bd-custom-button button:visited,
    .bd-container-13:not(.shape-only).bd-custom-button input[type="submit"]:visited,
    .bd-container-13:not(.shape-only).bd-custom-button input[type="button"]:visited,
    .bd-container-13:not(.shape-only).bd-custom-button a.bd-button-2[href]:visited,
    .bd-container-13:not(.shape-only).bd-custom-button .bd-button-2:visited,
    button.bd-button-2:visited,
    input.bd-button-2:visited,
    a.bd-button-2[href]:visited,
    .bd-button-2:visited {
        /* reset browser styles */
        border-width: 0;
        padding: 0;
        color: #ffffff;
        background-color: #3177bd;
        vertical-align: middle;
        display: inline-block;
        text-align: center;
        padding: 5px;
        border: 0px solid #ffffff;
        border-radius: 4px;
        background-image: none;
    }

        .bd-container-13:not(.shape-only).bd-custom-button button:hover,
        .bd-container-13:not(.shape-only).bd-custom-button input[type="submit"]:hover,
        .bd-container-13:not(.shape-only).bd-custom-button input[type="button"]:hover,
        .bd-container-13:not(.shape-only).bd-custom-button a.bd-button-2[href]:hover,
        .bd-container-13:not(.shape-only).bd-custom-button .bd-button-2:hover,
        button.bd-button-2:hover,
        input.bd-button-2:hover,
        a.bd-button-2[href]:hover,
        .bd-button-2:hover,
        .bd-container-13:not(.shape-only).bd-custom-button button:focus,
        .bd-container-13:not(.shape-only).bd-custom-button input[type="submit"]:focus,
        .bd-container-13:not(.shape-only).bd-custom-button input[type="button"]:focus,
        .bd-container-13:not(.shape-only).bd-custom-button a.bd-button-2[href]:focus,
        .bd-container-13:not(.shape-only).bd-custom-button .bd-button-2:focus,
        button.bd-button-2:focus,
        input.bd-button-2:focus,
        a.bd-button-2[href]:focus,
        .bd-button-2:focus {
            background-color: #2b5ea0;
            text-decoration: none;
            color: #ffffff;
            background-image: none;
        }

.bd-imagestyles-2 {
    vertical-align: middle;
    display: inline-block;
    text-align: center;
    border: 0 solid #777777;
    border-radius: 0;
}

.bd-container-13:not(.shape-only).bd-custom-image img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
    text-align: center;
    border: 0 solid #777777;
    border-radius: 0;
}

.bd-container-13:not(.shape-only).bd-custom-table table,
.bd-table-2 {
    border-collapse: collapse;
    width: 100%;
}

    .bd-container-13:not(.shape-only).bd-custom-table table thead td,
    .bd-table-2 thead td,
    .bd-container-13:not(.shape-only).bd-custom-table table thead th,
    .bd-table-2 thead th {
        border-bottom: 1px solid #777777;
    }

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RzU2xpZGVyUHJpY2U {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RzU29ydGVy {
}

.bd-productssorter-1 {
    line-height: 20.00000001px;
    font-size: 14px;
}

    .bd-productssorter-1 select {
        display: inline;
        width: auto;
    }

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RzU29ydGVy {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RUaXRsZTE {
}

.bd-producttitle-7 {
    position: relative;
}

.bd-producttitle-8 {
    line-height: 25.71428572px;
    font-size: 18px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RUaXRsZTE {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RUaXRsZTI {
}

.bd-producttitle-10 {
    margin-top: 10px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RUaXRsZTI {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RWYXJpYXRpb25z {
}

.bd-productvariations-1 {
    display: inline-block;
}

.bd-bootstrapinput-5.form-control.input-sm {
    border-radius: 0px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Byb2R1Y3RWYXJpYXRpb25z {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Nob3BwaW5nQ2FydEdyaWQ {
}

.bd-griditem-1 {
    margin-bottom: 6px;
    position: relative;
    background-color: #fafafa;
    border: 1px style #e6e6e6;
    background-image: none;
}

.separated-item-1 {
    position: relative;
    z-index: 0;
}

    .separated-item-1:before,
    .separated-item-1:after {
        content: "";
        position: absolute;
        z-index: 10;
    }

    .separated-item-1:before {
        top: 0;
        bottom: 0;
        left: 0;
    }

    .separated-item-1:after {
        left: 0;
        right: 0;
        bottom: 3px;
    }

.first-col.separated-item-1:after {
    left: 5px;
}

.last-col.separated-item-1:after {
    right: 5px;
}

.separated-item-1.first-col:before,
.separated-item-1.last-row:after {
    content: none;
}

.bd-icon-7 {
    padding: 0px 3px;
}

    .bd-icon-7:before {
        color: #3177bd;
        font-size: 30px;
        line-height: 42.85714287px;
    }

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3Nob3BwaW5nQ2FydEdyaWQ {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3NpZGViYXJBcmVhbGVmdA {
}

@media (max-width: 767px) {
    .bd-sidebararea-5 {
        text-align: left;
    }
}

.bd-sidebararea-5-column {
    width: 25%;
}

@media (max-width: 991px) {
    .bd-sidebararea-5-column {
        width: 33.333333333333336%;
    }
}

@media (max-width: 767px) {
    .bd-sidebararea-5-column {
        width: 100%;
    }
}

.bd-sidebararea-5 {
    position: relative;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3NpZGViYXJBcmVhbGVmdA {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3NpZGViYXJBcmVhdG9wV2lkZQ {
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3NpZGViYXJBcmVhdG9wV2lkZQ {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3NvcnRDb250YWluZXI {
}

.bd-layoutcontainer-27 {
    margin-bottom: 20px;
    margin-top: 20px;
}

.bd-layoutcolumn-60 {
    position: relative;
}

.bd-layoutcolumn-61 {
    text-align: right;
}

.bd-layoutcolumn-61 {
    position: relative;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3NvcnRDb250YWluZXI {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3RhYkNvbnRyb2w {
}

.bd-bootstrapinput.form-control {
    -webkit-box-shadow: none;
    -o-box-shadow: none;
    -ms-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background-color: #ffffff;
    border-radius: 0px;
}

.bd-reviewrating-1 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.bd-reviewrating-1 {
    line-height: 17.14285715px;
    font-size: 12px;
    text-align: left;
}

.bd-productreview-1 {
    margin-bottom: 20px;
}

.bd-tabinformationcontrol-2 {
    margin-bottom: 30px;
    margin-top: 29px;
}

@media (max-width: 767px) {
    .bd-tabinformationcontrol-2 .bd-menu-12 {
        display: none;
    }
}

@media (min-width: 768px) {
    .bd-tabinformationcontrol-2 .bd-menuitem-8 {
        display: none;
    }

    .bd-tabinformationcontrol-2 .bd-menu-12.nav.nav-tabs > li.active > a {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .bd-tabinformationcontrol-2 .bd-menu-12.nav.nav-tabs > li:first-child > a:link,
    .bd-tabinformationcontrol-2 .bd-menu-12.nav.nav-tabs > li:first-child > a:visited,
    .bd-tabinformationcontrol-2 .bd-menu-12.nav.nav-tabs > li:first-child.active > a {
        margin-left: 0px;
    }

    .bd-tabinformationcontrol-2 .bd-menu-12.nav.nav-tabs > li.active > a,
    .bd-tabinformationcontrol-2 .bd-menu-12.nav.nav-tabs > li > a:hover {
        position: relative;
        z-index: 1;
    }

    .bd-tabinformationcontrol-2 .bd-container-37.tab-content {
        clear: both;
        border-top-left-radius: 0;
        position: relative;
        z-index: 0;
        top: -1px;
    }
}

.bd-menu-12.nav.nav-tabs > li + li {
    margin: 0;
}

.bd-menu-12 {
    /* reset default bootstrap values */
    padding: 0;
    margin: 0;
    border-top-width: 0px;
    border-left-width: 0px;
    border-right-width: 0px;
    margin-top: 20px;
    margin-bottom: -1px;
    border-bottom: 0px solid #f5f5f5;
}

.bd-menuitem-12 > a {
    cursor: pointer;
    /* Safari click events fix */
}

.bd-menu-12.nav-tabs .bd-menuitem-12 {
    list-style: none;
    position: relative;
}

    .bd-menu-12.nav-tabs .bd-menuitem-12 > a,
    .bd-menu-12.nav-tabs .bd-menuitem-12 > a:link,
    .bd-menu-12.nav-tabs .bd-menuitem-12 > a:visited {
        border-radius: 0px;
        display: block;
        white-space: nowrap;
    }

        .bd-menu-12.nav-tabs .bd-menuitem-12 > a:before,
        .bd-menu-12.nav-tabs .bd-menuitem-12 > a:link:before,
        .bd-menu-12.nav-tabs .bd-menuitem-12 > a:visited:before {
            display: inline-block;
            vertical-align: middle;
            text-decoration: none;
            font-style: normal;
            font-weight: normal;
            text-align: center;
            text-transform: none;
            width: auto;
            opacity: 1;
            font-family: 'Billion Web Font';
        }

        .bd-menu-12.nav-tabs .bd-menuitem-12 > a:focus {
            outline-width: 0;
        }

    .bd-menu-12.nav-tabs .bd-menuitem-12:not(.active) > a.hover:not(.active),
    .bd-menu-12.nav-tabs .bd-menuitem-12:not(.active) > a:hover:not(.active),
    .bd-menu-12.nav-tabs .bd-menuitem-12:not(.active) > a:focus:not(.active),
    .bd-menu-12.nav-tabs .bd-menuitem-12:hover:not(.active) > a:not(.active) {
        background-color: #ffffff;
        border-top: 1px solid #dddddd;
        border-right: 1px solid #dddddd;
        border-bottom: 1px solid #ffffff;
        border-left: 1px solid #dddddd;
        background-image: none;
    }

    .bd-menu-12.nav-tabs .bd-menuitem-12 > a.active,
    .bd-menu-12.nav-tabs .bd-menuitem-12.active > a {
        border-top: 1px solid #dddddd;
        border-right: 1px solid #dddddd;
        border-bottom: 1px solid #ffffff;
        border-left: 1px solid #dddddd;
    }

.bd-container-37 {
    word-wrap: break-word;
    overflow: hidden;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
    background-color: #ffffff;
    border: 1px solid #dddddd;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3RhYkNvbnRyb2w {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3RleHQ0MDQ {
}

.bd-text404-1 {
    word-wrap: break-word;
}

.bd-text404-40 {
    position: relative;
    max-width: 600px;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3RleHQ0MDQ {
}

#marker-start-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3R5cGVTZWxlY3Rvcg {
}

.bd-typeselector-1 {
    display: block;
}

#marker-end-L3N0eWxlLmNzcw.L2NvbnRyb2xzL3R5cGVTZWxlY3Rvcg {
}

#marker-start-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQWRkaXRpb25hbENzcw {
}

#marker-end-L3N0eWxlLmNzcw.L3Byb3RvdHlwZXMvQWRkaXRpb25hbENzcw {
}




.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1a345f; /*#f1f1f1*/
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content-a {
    color: #2cb54c;
}

.dropdown-content a {
    color: #fff;
    text-align: left;
    /*-webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;*/
    text-transform: uppercase;
    margin: 0px 10px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
    padding: 10px 0px 10px 5px;
    border-bottom: 4px solid rgba(0, 0, 0, 0);
    border-radius: 0px;
    line-height: 20px;
    display: block;
    white-space: nowrap;
}

    .dropdown-content-a:hover, .dropdown-content a:hover {
        text-decoration: none;
        background-color: #3177bd;
    }

.required:before {
    content: "* ";
    color: red;
}

#marker-start-L3N0eWxlLmFkbWluLmNzcw.Lw {}
.RadAjaxPanel ul li:before,
.RadTreeView ul li:before,
.ui-tabs ul li:before,
.dnnActions li:before,
.searchSkinObjectPreview li:before {
  content: none!important;
}
.ui-tabs .selected-item a {
  box-sizing: content-box;
}
.RadAjaxPanel input[type="button"] {
  padding: 6px!important;
}
#marker-end-L3N0eWxlLmFkbWluLmNzcw.Lw {}

