﻿
@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;
    word-wrap: break-word;
}

/* 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: 100%;
}

    .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%;
    min-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 {
    cursor: not-allowed;
}

.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;
    word-break: break-word;
}

    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, .dnnFormPopup > * {
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
    }

    .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;
}
.dnnPanelLoading {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -ms-opacity: 0.7;
    opacity: 0.7;
}

/*-------------------------------------*/
/* 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 */
body:not(.dnnEditState) .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("/Resources/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 > span#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*/

/* Overflow for dnnMenu dropdown */
#dnnMenu .dropdown-menu {
    word-wrap: break-word;
}

/* End Overflow for dnnMenu dropdown */


.searchInputContainer {
    display: inline-block;
    margin: 0 -3px 0 0;
    position: relative;
}

    .searchInputContainer > input[type="text"]::-ms-clear {
        display: none;
    }

    .searchInputContainer a.dnnSearchBoxClearText {
        display: block;
        position: absolute;
        right: 10px;
        width: 16px;
        height: 16px;
        background: none;
        cursor: pointer;
        margin: 7px 0 7px 0;
        z-index: 20;
    }

        .searchInputContainer a.dnnSearchBoxClearText.dnnShow {
            background: url("/images/search/clearText.png") center center no-repeat;
        }

ul.searchSkinObjectPreview {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    margin: 0;
    list-style: none;
    border: 1px solid #c9c9c9;
    width: 350px;
    z-index: 200;
    padding: 0;
}

ul.searchSkinObjectPreview li {
    list-style: none;
}

    ul.searchSkinObjectPreview > li {
        padding: 6px 12px 6px 22px;
        border-top: 1px solid #c9c9c9;
        color: #666;
        cursor: pointer;
        position: relative;
        margin: 0;
        text-transform: none;
        word-wrap: break-word;
    }

        ul.searchSkinObjectPreview > li:hover {
            background-color: #e8f1fa;
            color: #333;
        }

        ul.searchSkinObjectPreview > li > span {
        }

        ul.searchSkinObjectPreview > li > span img.userpic {
            width: 32px;
            height: 32px;
            display: block;
            float: left;
            margin-right: 4px;
        }

            ul.searchSkinObjectPreview > li > span > b {
                font-weight: bold;
                color: #000;
            }

        ul.searchSkinObjectPreview > li p {
            margin: 0;
            font-size: 10px;
            line-height: 1.2em;
            color: #999;
            font-style: italic;
            white-space: normal;
        }

            ul.searchSkinObjectPreview > li p b {
                color: #000;
            }

        ul.searchSkinObjectPreview > li.searchSkinObjectPreview_group {
            padding: 6px 12px 6px 12px;
            font-weight: bold;
            color: #000;
            border-bottom: 2px solid #000;
            cursor: inherit;
        }

            ul.searchSkinObjectPreview > li.searchSkinObjectPreview_group:hover {
                background-color: #fff;
                color: #000;
            }

        ul.searchSkinObjectPreview > li > a.searchSkinObjectPreview_more {
            display: inline;
            position: static;
            background: none;
            z-index: inherit;
            width: auto;
            height: auto;
            text-indent: inherit;
            float: none;
        }



/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0");src:url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format('embedded-opentype'),url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0") format('woff2'),url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0") format('woff'),url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0") format('truetype'),url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}

@import url("/DesktopModules/EasyDNNnews/static/font-awesome/css/font-awesome.min.css");
.eds_news_NewsOne * {
  box-sizing: content-box;
}
.eds_news_NewsOne .mejs__container {
  width: 100%;
  height: 40px;
}
@media (max-width: 576px) {
  .eds_news_NewsOne .mejs__container .mejs__time {
    display: none;
  }
}
.eds_news_NewsOne .mejs__container * {
  box-sizing: border-box;
}
.eds_news_NewsOne .mejs__container .mejs__button > button,
.eds_news_NewsOne .mejs__container .mejs__time {
  color: #fff;
}
.eds_news_NewsOne .mejs__container .mejs__time {
  height: 1.6rem;
}
.eds_news_NewsOne .edn_module_box, .eds_news_NewsOne.eds_subCollection_tagCloud, .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container, .eds_news_NewsOne.eds_subCollection_calendar .archive_list {
  margin-bottom: 10px;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  vertical-align: baseline;
  line-height: 1.25em;
  border: 1px solid #cdcdcd;
  border-radius: 4px;
  background: #f6f6f6;
  padding: 1px;
}
.eds_news_NewsOne .edn_module_box > h1.edn_module_title, .eds_news_NewsOne.eds_subCollection_tagCloud > h1.edn_module_title, .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container > h1.edn_module_title, .eds_news_NewsOne.eds_subCollection_calendar .archive_list > h1.edn_module_title {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/module_title_background.png") repeat-x 0 0 #dbdbdb;
  border-radius: 3px 3px 0 0;
  margin: 0;
}
.eds_news_NewsOne .edn_module_box > h1.edn_module_title span, .eds_news_NewsOne.eds_subCollection_tagCloud > h1.edn_module_title span, .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container > h1.edn_module_title span, .eds_news_NewsOne.eds_subCollection_calendar .archive_list > h1.edn_module_title span {
  line-height: 1.25em;
  display: block;
  color: #4e4e4e;
  text-shadow: 1px 1px 2px #fff;
  font-size: 20px;
  padding: 5px 8px 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
}
.eds_news_NewsOne .eds_openModal {
  cursor: pointer;
}
.eds_news_NewsOne .clear_content {
  clear: both;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu {
  margin: 0 0 10px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > h1.edn_module_title {
  background-color: #343434;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > h1.edn_module_title span {
  color: #f6f6f6;
  text-shadow: none;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper {
  padding: 0;
  margin: 0;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper ul {
  padding: 0;
  margin: 0;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li {
  list-style: none;
  font-size: 0;
  line-height: 0;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div {
  border: 0;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #dedede;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/category_menu/item_bg.png") repeat-x 0 0 #f0f0f0;
  overflow: hidden;
  padding: 5px 4px 4px 100px;
  position: relative;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div a {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div .icon {
  display: block;
  float: right;
  text-indent: -10000px;
  margin: 0 0 0 4px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div .icon.rss {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/category_menu/rss.png") no-repeat 0 0;
  height: 12px;
  width: 12px;
  margin: 2px 2px 0 4px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div .icon.rss:hover {
  background-position: -12px 0;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div .icon.expand_collapse {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/category_menu/expand_collapse.png") no-repeat 4px 4px;
  height: 13px;
  width: 21px;
  margin: 2px 2px 0 4px;
  cursor: pointer;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div .icon.expand_collapse:hover {
  background-position: -13px 4px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div .icon.expand_collapse.collapse {
  background-position: 4px -8px;
  visibility: visible;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div .icon.expand_collapse.collapse:hover {
  background-position: -13px -8px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > span {
  font-size: 12px;
  color: #333;
  display: inline;
  line-height: 15px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > a.category {
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  display: inline;
  line-height: 15px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > a.category span {
  color: #898989;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > a.category:hover {
  color: #B50909;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > img, .eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > a.image > img {
  border-radius: 4px;
  float: left;
  margin: 0 7px 5px 0;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > a.image {
  float: left;
  display: block;
  margin: 0 7px 5px 0;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > a.image > img {
  margin: 0;
  float: none;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li.active > div > a.category {
  font-weight: bold;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li > div {
  padding-left: 10px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li ul li > div {
  background-color: #d7d7d7;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li ul li > div .bullet {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/category_menu/item_bullets.png") no-repeat 0 0;
  float: none;
  height: 9px;
  width: 9px;
  margin: 4px 3px 0 0;
  display: block;
  float: left;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li li.level_1 > div {
  padding-left: 20px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li li.level_2 > div {
  padding-left: 30px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li li.level_3 > div {
  padding-left: 40px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li li.level_4 > div {
  padding-left: 50px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li li.level_5 > div {
  padding-left: 60px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li li.level_6 > div {
  padding-left: 70px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li li.level_7 > div {
  padding-left: 80px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li li.level_8 > div {
  padding-left: 90px;
}
.eds_news_NewsOne.eds_subCollection_search {
  margin: 0 0 10px;
  float: none;
  height: auto;
  min-width: 0;
  width: auto;
  overflow: visible;
  transition: none;
}
.eds_news_NewsOne.eds_subCollection_search .acInput.acLoading {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/indicator.gif") !important;
  background-position: 85% center !important;
  background-repeat: no-repeat !important;
}
.eds_news_NewsOne.eds_subCollection_search .search_message {
  font: 14px Arial, Helvetica, sans-serif;
  color: #000;
  display: block;
}
.eds_news_NewsOne.eds_subCollection_search .search_input {
  overflow: hidden;
  border: 1px solid #bdbdbd;
  width: 229px;
}
.eds_news_NewsOne.eds_subCollection_search .search_input .input {
  float: left;
  overflow: hidden;
  height: 30px;
  padding: 0;
  margin: 0;
  background: #e6e6e6;
  box-shadow: inset 1px 1px 2px 0 rgba(0, 0, 0, 0.2);
}
.eds_news_NewsOne.eds_subCollection_search .search_input .input input {
  background: transparent;
  width: 183px;
  padding: 7px 5px 6px;
  border: 0;
  margin: 0;
  font-size: 12px;
  font-weight: normal;
  color: #4d4d4d;
  line-height: 17px;
  box-sizing: content-box;
}
.eds_news_NewsOne.eds_subCollection_search .search_input .do_search {
  display: block;
  width: 34px;
  height: 30px;
  text-indent: -10000px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/search/inside_button_bg.png") no-repeat 0 0 #fff;
  padding: 0;
  margin: 0;
  border: 0;
  border-left: 1px solid #BABABA;
  float: right;
  cursor: pointer;
  text-decoration: none;
  box-shadow: -1px 0 1px 0 rgba(0, 0, 0, 0.12);
}
.eds_news_NewsOne.eds_subCollection_search .search_input .do_search span {
  font-size: 0;
  line-height: 0;
}
.eds_news_NewsOne.eds_subCollection_search .search_input .do_search:hover {
  background-color: #E0E0E0;
}
.eds_news_NewsOne.eds_subCollection_search .search_input.button_outside {
  border: 0;
}
.eds_news_NewsOne.eds_subCollection_search .search_input.button_outside .input {
  border: 1px solid #bdbdbd;
  float: none;
  width: auto;
}
.eds_news_NewsOne.eds_subCollection_search .search_input.button_outside .input input {
  width: 100%;
}
.eds_news_NewsOne.eds_subCollection_search .search_input.button_outside .do_search {
  text-indent: 0;
  float: none;
  margin: 5px 2px 2px 0px;
  box-shadow: 0 0 1px 0 #888;
  border: 1px solid #bdbdbd;
  width: auto;
  float: left;
  padding: 0 40px 0 10px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/search/outside_button_bg.png") no-repeat top right #fff;
}
.eds_news_NewsOne.eds_subCollection_search .search_input.button_outside .do_search span {
  font-size: 14px;
  line-height: 30px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  color: #7E7E7E;
}
.eds_news_NewsOne.eds_subCollection_search .search_input.button_outside .do_search:hover {
  background-color: #E0E0E0;
}
.eds_news_NewsOne.eds_subCollection_search .search_input.button_outside .do_search:hover span {
  color: #7E7E7E;
}
.eds_news_NewsOne.eds_subCollection_search .search_input.button_outside .do_search.right {
  float: right;
  margin-right: 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch {
  background-color: #F6F6F6;
  border: 1px solid #CDCDCD;
  border-radius: 4px 4px 4px 4px;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edn_module_title {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/module_title_background.png") repeat-x scroll 0 0 #DBDBDB;
  border-radius: 3px 3px 0 0;
  margin: 1px;
  padding: 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edn_module_title span {
  color: #4E4E4E;
  display: block;
  font-family: Arial, Helvetica, sans-serif, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.25em;
  padding: 5px 8px 6px;
  text-shadow: 1px 1px 2px #FFFFFF;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container {
  padding: 10px;
  position: relative;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container > span {
  display: block;
  margin: 0;
  padding: 0 0 10px;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container > div + span {
  padding-top: 10px;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container label > span,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_MultiselectGroup .ms-parent > label {
  color: #404040;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span {
  display: block;
  border: solid 1px #BDBDBD;
  background: #fff url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/advancedSearchForm/select/selectArrow/predefined/select-pointer.png") no-repeat top right;
  overflow: hidden;
  position: relative;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 30px;
  right: 34px;
  top: 0;
  bottom: 0;
  border-left: solid 1px #BDBDBD;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select {
  background: none transparent;
  background-color: rgba(255, 255, 255, 0);
  padding: 6px 0 6px 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1;
  color: #404040;
  border: none;
  border-radius: 0;
  outline: none;
  height: 16px;
  width: 116%;
  margin: 0;
  box-shadow: none;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select option {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1;
  padding: 2px;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select option:first-child {
  color: #000;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select:disabled {
  color: #b5b5b5;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 100% !important;
  display: block;
  position: relative;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  display: block;
  width: 100%;
  border: solid 1px #bdbdbd;
  border-radius: 0;
  display: block;
  position: relative;
  overflow: hidden;
  background: #ffffff url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/advancedSearchForm/select/selectArrow/predefined/select-pointer.png") no-repeat scroll right top;
  line-height: 28px;
  height: 30px;
  text-align: left;
  padding: 0 45px 0 10px;
  box-shadow: none;
  outline: none;
  box-sizing: border-box;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  line-height: 28px;
  color: #404040;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  opacity: 1;
  cursor: unset;
  background: none;
  vertical-align: unset;
  display: inline;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div {
  border-left: 1px solid #bdbdbd;
  bottom: 0;
  content: "";
  display: block;
  height: 30px;
  position: absolute;
  right: 34px;
  top: 0;
  width: 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice.disabled {
  cursor: default;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop {
  display: none;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 1000;
  border: solid 1px #bdbdbd;
  margin-top: 1px;
  background-color: #fff;
  box-sizing: border-box;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul {
  margin: 0;
  padding: 10px;
  overflow: auto;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li {
  background-image: none;
  display: list-item;
  list-style: outside none none;
  position: static;
  padding: 0;
  margin: 0 0 3px;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label {
  display: block;
  white-space: nowrap;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > input {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span {
  color: #404040;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: normal;
  position: relative;
  line-height: 1.7;
  padding-left: 17px;
  display: inline-block;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span::before {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/advancedSearchForm/checkBoxes/predefined/cf-checkbox.png") no-repeat scroll 0 -17px;
  content: "";
  display: inline-block;
  height: 17px;
  left: 0;
  margin: 2px 10px 0 0;
  position: absolute;
  width: 17px;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li.selected label > span::before {
  background-position: 0 0;
  content: "";
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop.bottom {
  top: 100%;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop.top {
  bottom: 100%;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label {
  display: inline-block;
  position: relative;
  padding-left: 17px;
  margin: 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label > span {
  line-height: 1.7;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  position: absolute;
  left: 0;
  margin: 2px 10px 0 0;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/advancedSearchForm/checkBoxes/predefined/cf-checkbox.png") no-repeat 0 -17px transparent;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonListName {
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #404040;
  line-height: 1.5;
  display: block;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton {
  display: inline-block;
  padding: 1px 10px 1px 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton input[type=radio] {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton label {
  display: inline-block;
  position: relative;
  padding-left: 17px;
  margin: 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton label > span {
  line-height: 1.6;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton label::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  position: absolute;
  left: 0;
  margin: 2px 10px 0 0;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/advancedSearchForm/radioButtons/predefined/cf-radiobutton.png") no-repeat 0 -18px transparent;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton input[type=radio]:checked + label:before {
  content: "";
  background-position: 0 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_CheckBox {
  padding: 1px 10px 1px 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListName {
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #404040;
  line-height: 1.5;
  display: block;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox {
  display: inline-block;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type=checkbox] {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type=checkbox]:checked + label:before {
  content: "";
  background-position: 0 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE input[type=checkbox],
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox input[type=checkbox] {
  display: inline;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label {
  padding-left: 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label::before,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label::before {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton input[type=radio] {
  display: inline;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label {
  padding-left: 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label::before {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text .edncf_TextInput input[type=text] {
  border: solid 1px #BDBDBD;
  background: #fff none;
  color: #404040;
  font-family: "$defaultFont";
  font-size: 12px;
  line-height: 1.2;
  padding: 6px 2%;
  width: 95.9%;
  margin: 0;
  box-shadow: none;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput label > span {
  display: block;
  font-weight: bold;
  color: #404040;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs {
  height: 37px;
  position: relative;
  display: block;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line {
  height: 7px;
  top: 5px;
  border-style: solid;
  border-width: 1px;
  border-color: #727272;
  background-color: #fff;
  border-radius: 4px;
  position: relative;
  display: block;
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-left,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-mid,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-right {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-diapason {
  border: solid 1px #636363;
  background: none #bcbcbc;
  height: 7px;
  top: 5px;
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider {
  border: 1px solid #727272;
  border-radius: 50%;
  background: #fff none;
  width: 17px;
  height: 17px;
  cursor: default;
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3), inset -3px -3px 5px rgba(0, 0, 0, 0.3);
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-from,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-to,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-single {
  color: #CD1919;
  background: none transparent;
  cursor: default;
  display: block;
  position: absolute;
  white-space: nowrap;
  font: 12px/1 Arial, Helvetica, sans-serif;
  top: 24px;
  padding: 0;
  left: 0;
  white-space: nowrap;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  background: none transparent;
  padding: 0;
  text-shadow: none;
  top: 16px;
  font: 10px/1 Arial, Helvetica, sans-serif;
  color: #777;
  position: absolute;
  display: block;
  cursor: default;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min {
  left: 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  right: 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField * {
  box-sizing: border-box;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group {
  margin: 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group + .input-group {
  margin-top: 5px;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .form-control {
  border: solid 1px #BDBDBD;
  border-radius: 0;
  background: #fff none;
  color: #404040;
  font-family: "$defaultFont";
  font-size: 12px;
  line-height: 1.2;
  padding: 7px 2%;
  width: 100%;
  margin: 0;
  box-shadow: none;
  height: auto;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group-addon {
  color: #605F5F;
  background-color: #EFEEEE;
  border-style: solid;
  border-width: 1px;
  border-color: #BDBDBD;
  border-left: none;
  border-radius: 0;
  height: auto;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer {
  text-align: center;
  margin: 15px 0 5px;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset {
  display: inline-block;
  padding: 4px 20px;
  background: #b1b1b1 url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/advanced-search-submit-bg.png") left bottom repeat-x;
  border-radius: 3px;
  margin: 0 5px;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit span,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset span {
  display: inline-block;
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/advanced-search-icon.png") 100% 0 no-repeat;
  color: #f1f1f1;
  font: bold 14px/1 Arial, Helvetica, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  padding: 4px 28px 4px 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit:hover,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset:hover {
  background-color: #CDCDCD;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset {
  background-image: none;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset span {
  padding: 4px 0;
  background-image: none;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_searchInProgressOverlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: O;
  right: 0;
  background: #F6F6F6 url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/searchInProgress.GIF") center center no-repeat;
  opacity: 0.8;
  width: 100%;
  z-index: 999;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container > span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 30px 15px 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList > span {
  min-width: 145px;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList > span select {
  width: 160%;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 180px !important;
  display: inline-block;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  min-width: 145px;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RangeSliderInput {
  display: block;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList > span,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList > span {
  display: inline-block;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList {
  display: inline-block;
  margin-right: 15px;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_CheckBox,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_RadioButton,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_CheckBox,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_RadioButton {
  display: inline-block;
  margin: 4px 10px;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField {
  display: block;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > span label {
  display: block;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group {
  float: left;
  width: 49%;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group + .input-group {
  float: right;
  margin: 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField::after {
  content: "";
  display: table;
  width: 100%;
  height: 0;
  overflow: hidden;
  clear: both;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span {
  display: inline-block;
  vertical-align: middle;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span + span {
  margin-left: 15px;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer {
  display: inline-block;
  vertical-align: top;
  margin: 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer .edncf_submit {
  margin-left: 0;
}
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search *,
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search *::before,
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search *::after {
  box-sizing: border-box;
}
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search .ednSbl_list {
  margin: 0 -3px;
  padding: 25px 0 0;
  font-size: 0;
  line-height: 0;
}
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper {
  list-style-type: none;
  display: inline-block;
  vertical-align: middle;
  margin: 3px;
  transition: all 300ms;
}
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper.ednSbl_selected .ednSbl_item .ednSbl_letter {
  background-color: #e4e4e4;
  color: #565555;
}
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item {
  position: relative;
  z-index: 2;
}
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item .ednSbl_letter {
  background-color: #e4e4e4;
  color: #565555;
}
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item .ednSbl_count {
  opacity: 1;
  bottom: calc(100% + 5px);
}
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search span.ednSbl_item {
  color: #cecece;
  border-color: #eee;
}
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search span.ednSbl_item .ednSbl_letter + .ednSbl_count {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search .ednSbl_item {
  font: 12px/1.2 Arial, Helvetica, sans-serif;
  display: inline-block;
  border: solid 1px #e4e4e4;
  text-decoration: none;
  color: #878787;
  transition: all 300ms;
  position: relative;
}
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search .ednSbl_item > span {
  padding: 7px 9px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  text-align: center;
  border-radius: inherit;
}
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search .ednSbl_item .ednSbl_letter {
  min-width: 30px;
  background-color: #fff;
  z-index: 2;
  transition: all 300ms;
}
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search .ednSbl_item .ednSbl_count {
  overflow: hidden;
  position: absolute;
  color: #333;
  padding: 3px 6px;
  transition: all 300ms;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  z-index: 1;
  background-color: #fff;
  border: solid 1px #eee;
  color: #363636;
}
.eds_news_NewsOne .edn_searchInfoResults {
  margin: 30px 0 !important;
  padding: 10px 15px !important;
  background-color: #efefef;
  border: solid 1px #e8e8e8;
  color: #4A4A4A !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
}
.eds_news_NewsOne .edn_searchInfoResults > span {
  font-weight: bold;
  color: #333;
  font-size: 14px !important;
  line-height: 1.3 !important;
}
.eds_news_NewsOne.eds_subCollection_tagCloud {
  margin: 0 0 10px;
}
.eds_news_NewsOne.eds_subCollection_tagCloud .tags {
  padding: 0 0 10px 10px;
}
.eds_news_NewsOne.eds_subCollection_tagCloud .tags a {
  font-size: 11px;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  color: #676767;
  line-height: 12px;
  display: inline-block;
  margin: 10px 10px 0 0;
}
.eds_news_NewsOne.eds_subCollection_tagCloud .tags a:hover {
  color: #222;
}
.eds_news_NewsOne.eds_subCollection_tagCloud .tags a.TagStyle1 {
  font-size: 12px;
}
.eds_news_NewsOne.eds_subCollection_tagCloud .tags a.TagStyle2 {
  font-size: 14px;
}
.eds_news_NewsOne.eds_subCollection_tagCloud .tags a.TagStyle3 {
  font-size: 16px;
}
.eds_news_NewsOne.eds_subCollection_tagCloud .tags a.TagStyle4 {
  font-size: 18px;
}
.eds_news_NewsOne.eds_subCollection_tagCloud .tags a.TagStyle5 {
  font-size: 20px;
}
.eds_news_NewsOne.eds_subCollection_tagCloud .tags a.TagStyle6 {
  font-size: 22px;
}
.eds_news_NewsOne.eds_subCollection_tagCloud .tags a .tag-count {
  color: #898989;
  font-size: 12px;
  margin: 0 2px;
}
.eds_news_NewsOne.eds_subCollection_calendar .edn_styledSelect {
  text-align: center;
  margin: 5px 0;
}
.eds_news_NewsOne.eds_subCollection_calendar .edn_styledSelect > span {
  display: inline-block;
  border: solid 1px #BDBDBD;
  background: #fff url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/calendar/monthQuickSelection/selectArrow/predefined/select-pointer.png") no-repeat top right;
  overflow: hidden;
  position: relative;
  width: 50%;
}
.eds_news_NewsOne.eds_subCollection_calendar .edn_styledSelect > span::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 30px;
  right: 34px;
  top: 0;
  bottom: 0;
  border-left: solid 1px #BDBDBD;
}
.eds_news_NewsOne.eds_subCollection_calendar .edn_styledSelect > span select {
  background: none transparent;
  background-color: rgba(255, 255, 255, 0);
  padding: 6px 0 6px 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1;
  color: #404040;
  border: none;
  border-radius: 0;
  outline: none;
  height: 16px;
  width: 116%;
  margin: 0 35px 0 0;
  box-shadow: none;
}
.eds_news_NewsOne.eds_subCollection_calendar .edn_styledSelect > span select option {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1;
  padding: 2px;
}
.eds_news_NewsOne.eds_subCollection_calendar .edn_styledSelect > span select option:first-child {
  color: #000;
}
.eds_news_NewsOne.eds_subCollection_calendar .top_calendar_actions {
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0 2px 3px;
  line-height: 0;
  border: 0;
  text-align: right;
}
.eds_news_NewsOne.eds_subCollection_calendar .top_calendar_actions > a {
  margin: 0 0 0 5px;
  display: inline-block;
  padding: 0;
  border: 0;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/calendar/calendar_action_buttons.png");
}
.eds_news_NewsOne.eds_subCollection_calendar .top_calendar_actions > a > span {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_calendar .top_calendar_actions > a.articles_by_month {
  width: 12px;
  height: 12px;
  background-position: 0 -5px;
}
.eds_news_NewsOne.eds_subCollection_calendar .top_calendar_actions > a.icalendar_export {
  width: 12px;
  height: 15px;
  background-position: -13px -1px;
}
.eds_news_NewsOne.eds_subCollection_calendar .top_calendar_actions > a.articles_rss {
  width: 12px;
  height: 12px;
  background-position: -26px -4px;
}
.eds_news_NewsOne.eds_subCollection_calendar .top_calendar_actions > a.events_rss {
  width: 18px;
  height: 16px;
  background-position: -39px 0;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container {
  margin: 0 0 10px;
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table {
  width: 100%;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table td {
  background-color: transparent;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/module_title_background.png") repeat-x 0 0 #dbdbdb;
  border-radius: 1px 1px 0 0;
  width: 100%;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td {
  color: #4e4e4e;
  text-shadow: 1px 1px 2px #fff;
  font-size: 20px;
  line-height: 25px;
  padding: 5px 8px 6px;
  font-family: Arial, Helvetica, sans-serif;
  border-bottom: 1px solid #F6F6F6;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months a {
  color: #737373 !important;
  text-shadow: 1px 1px 0 #fff;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months a:hover {
  color: #222 !important;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .week_days {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/calendar/week_days_bg.png") repeat-x #CDCDCD;
  color: #fff;
  text-shadow: 1px 1px 1px #6D6D6D;
  font-size: 9px;
  padding: 7px 0 5px;
  border-bottom: 1px solid #F6F6F6;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day {
  border: 1px solid #F6F6F6;
  text-align: center;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day > a,
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day > span {
  color: #6F6F6F;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.25;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/calendar/day_bg.png") repeat-x bottom left #F6F6F6;
  padding: 8px 3px 7px;
  margin: 0;
  display: block;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day > a:hover {
  text-decoration: none;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.has_posts > a {
  color: #fff;
  background-color: #cfcfcf;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.has_events > a {
  background-color: #FE852A;
  color: #fff;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.other_month > a,
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.other_month > span {
  color: #c8cccf;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.today > a,
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.today > span {
  background-color: #dc0000 !important;
  color: #fff !important;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.selected > a {
  background-color: #575958 !important;
  color: #fff !important;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-red > a {
  color: #fff;
  background-color: #ff0000;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-blue > a {
  color: #fff;
  background-color: #0000ff;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-black > a {
  color: #fff;
  background-color: #000;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-green > a {
  color: #fff;
  background-color: #008000;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-yellow > a {
  color: #6F6F6F;
  background-color: #ffff00;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-pink > a {
  color: #fff;
  background-color: #ffc0cb;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-gray > a {
  color: #fff;
  background-color: #808080;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-orange > a {
  color: #fff;
  background-color: #ffa500;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-brown > a {
  color: #fff;
  background-color: #a52a2a;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table td.week_days {
    display: none;
  }
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day {
  vertical-align: top;
  background-color: transparent !important;
  padding: 0;
  overflow: hidden;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day {
    display: none;
  }
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > a,
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > span {
  padding: 2px 7px;
  text-align: left;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.has_posts, .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.has_events {
    display: block;
    height: auto !important;
    width: 100% !important;
    text-align: left;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.other_month {
    display: none;
  }
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul {
  margin: 0;
  padding: 0 4px 3px;
  border: 0;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li {
  border: 0;
  margin: 0;
  padding: 3px 0 0;
  list-style: none;
  display: block;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a {
  border: 1px solid #adadad;
  border-radius: 5px;
  margin: 0;
  padding: 2px 5px;
  background: #fff;
  display: block;
  text-align: left;
  color: #707070 !important;
  text-decoration: none;
  font: 10px Arial, Helvetica, sans-serif;
  line-height: 12px;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a {
  border: 1px solid #f77601;
  background: #fff3e9;
  color: #ef5a00 !important;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-red, .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-red {
  border-color: #ff0000;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-blue, .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-blue {
  border-color: #0000ff;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-black, .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-black {
  border-color: #000;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-green, .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-green {
  border-color: #008000;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-yellow, .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-yellow {
  border-color: #ffff00;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-pink, .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-pink {
  border-color: #ffc0cb;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-gray, .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-gray {
  border-color: #808080;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-orange, .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-orange {
  border-color: #ffa500;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-brown, .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-brown {
  border-color: #a52a2a;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list {
  margin: 0 0 10px;
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list ul {
  margin: 0;
  padding: 0;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list ul li {
  list-style: none;
  padding: 6px 10px 4px 25px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/calendar/article_icon.png") no-repeat 7px center;
  border-top: 1px solid #dedede;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list ul li a {
  color: #333;
  font: 12px Arial, Helvetica, sans-serif;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list ul li a:hover {
  color: #000;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list ul li:first-child {
  border: 0;
  padding-top: 7px;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list.events .edn_module_title {
  position: relative;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list.events .edn_module_title > a {
  display: block;
  position: absolute;
  left: auto;
  bottom: auto;
  margin: 0;
  padding: 0;
  border: 0;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list.events .edn_module_title > a.export {
  top: 10px;
  right: 7px;
  height: 14px;
  width: 12px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/calendar/calendar_action_buttons.png") -13px -2px;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list.events .edn_module_title > a.rss {
  top: 12px;
  right: 7px;
  height: 12px;
  width: 12px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/category_menu/rss.png") -12px 0;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list.events .edn_module_title > a.rss ~ a.export {
  right: 22px;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list.events .edn_module_title > a > span {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list.events ul li {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/calendar/event_clock.png") no-repeat 6px 9px;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list .edn_module_box {
  border: none;
  padding: 0;
  background: none;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li {
  background-position: 7px 10px;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li div .icon.expand_collapse {
  display: block;
  float: right;
  text-indent: -10000px;
  margin: 0 0 0 4px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/category_menu/expand_collapse.png") no-repeat 4px 4px;
  height: 13px;
  width: 21px;
  margin: 2px 2px 0 4px;
  cursor: pointer;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li div .icon.expand_collapse:hover {
  background-position: -13px 4px;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li div .icon.expand_collapse.collapse {
  background-position: 4px -8px;
  visibility: visible;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li div .icon.expand_collapse.collapse:hover {
  background-position: -13px -8px;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li.active > div > .edn_archive-year,
.eds_news_NewsOne.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li.active > div > .edn_archive-month {
  font-weight: bold;
}
.eds_news_NewsOne.eds_subCollection_news .article_image {
  position: relative;
}
.eds_news_NewsOne.eds_subCollection_news .article_image .edn_galleryLink {
  position: absolute;
  display: inline-block;
  bottom: 15px;
  right: 15px;
  left: auto;
  top: auto;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 100px 0 10px 0;
  text-decoration: none;
  text-align: center;
  line-height: 0;
  font-size: 0;
  text-indent: 0;
  width: 100px;
  height: 100px;
}
.eds_news_NewsOne.eds_subCollection_news .article_image .edn_galleryLink::before {
  margin-bottom: 10px;
  width: 32px;
  height: 32px;
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  margin: -15px 0 0 -7px;
  opacity: 0.3;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/photo-24-32.png") no-repeat 0 0;
  transition: all 300ms linear;
  content: "";
}
.eds_news_NewsOne.eds_subCollection_news .article_image .edn_galleryLink > span {
  display: inline-block;
  color: #fff;
  line-height: 1;
  font-size: 12px;
  position: absolute;
  bottom: 10px;
  left: 7px;
  right: 5px;
}
.eds_news_NewsOne.eds_subCollection_news .article_image .edn_galleryLink:hover::before {
  opacity: 0.8;
}
.eds_news_NewsOne.eds_subCollection_news .article_gallery {
  margin-top: 0;
  margin-bottom: 15px;
}
.eds_news_NewsOne.eds_subCollection_news .article_rss_wrapper {
  overflow: hidden;
  clear: both;
}
.eds_news_NewsOne.eds_subCollection_news .article_rss_wrapper > a {
  float: right;
  font: 11px Arial, Helvetica, sans-serif;
  line-height: 13px;
  color: #444;
}
.eds_news_NewsOne.eds_subCollection_news .article_rss_wrapper > a > span {
  position: relative;
  top: 1px;
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/category_menu/rss.png") 0 0;
  padding: 0;
  margin: 0 2px 0 0;
  border: 0;
}
.eds_news_NewsOne.eds_subCollection_news .article_rss_wrapper > a:hover {
  color: #000;
  text-decoration: none;
}
.eds_news_NewsOne.eds_subCollection_news .article_rss_wrapper > a:hover > span {
  background-position: 12px 0;
}
.eds_news_NewsOne.eds_subCollection_news .article_rss_wrapper ~ .article_pager {
  margin-top: 0;
}
.eds_news_NewsOne.eds_subCollection_news div.EDN_article_rateit {
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.eds_news_NewsOne.eds_subCollection_news div.EDN_article_rateit.rateit div.rateit-selected {
  position: absolute;
}
.eds_news_NewsOne.eds_subCollection_news div.EDN_article_rateit div.rateit-range {
  position: relative;
  display: inline-block;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/rate_stars.png");
  height: 16px;
}
.eds_news_NewsOne.eds_subCollection_news div.EDN_article_rateit div.rateit-hover {
  position: absolute;
}
.eds_news_NewsOne.eds_subCollection_news div.EDN_article_rateit div.rateit-hover {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/rate_stars.png") left -32px;
}
.eds_news_NewsOne.eds_subCollection_news div.EDN_article_rateit div.rateit-hover-rtl {
  background-position: right -32px;
}
.eds_news_NewsOne.eds_subCollection_news div.EDN_article_rateit div.rateit-selected {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/rate_stars.png") left -16px;
}
.eds_news_NewsOne.eds_subCollection_news div.EDN_article_rateit div.rateit-selected-rtl {
  background-position: right -16px;
}
.eds_news_NewsOne.eds_subCollection_news .bread_crumbs {
  text-align: left;
  margin: 0 0 10px;
  color: #363636;
  font: 11px Verdana;
  text-transform: uppercase;
}
.eds_news_NewsOne.eds_subCollection_news .bread_crumbs a {
  color: #363636;
  font: 11px Verdana;
  text-transform: uppercase;
}
.eds_news_NewsOne.eds_subCollection_news .bread_crumbs a:hover {
  text-decoration: underline;
}
.eds_news_NewsOne.eds_subCollection_news .category_info h1 {
  font-size: 22px;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
  line-height: 26px;
  margin: 0 0 10px;
  padding: 0;
}
.eds_news_NewsOne.eds_subCollection_news .category_info .description {
  font-size: 14px;
  margin: 3px 0 10px;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 18px;
  font-weight: normal;
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_news .category_info .description p {
  font-size: 14px;
  line-height: 18px;
  margin: 0 0 10px;
}
.eds_news_NewsOne.eds_subCollection_news .child_categories {
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_news .category.in_list {
  margin: 10px;
  padding: 0;
  border: 0;
  border-radius: 5px;
  overflow: hidden;
  background: #e1e1e1;
}
.eds_news_NewsOne.eds_subCollection_news .category.in_list.catalog-item {
  width: 30%;
  float: left;
  margin: 1.6%;
}
.eds_news_NewsOne.eds_subCollection_news .category.in_list.catalog-item img {
  max-width: 100%;
  height: auto;
}
.eds_news_NewsOne.eds_subCollection_news .category.in_list .image {
  overflow: hidden;
  border-radius: 5px;
  font-size: 0;
  line-height: 0;
  display: block;
}
.eds_news_NewsOne.eds_subCollection_news .category.in_list .title {
  font-size: 17px;
  line-height: 21px;
  color: #333;
  padding: 4px 10px 5px;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
}
.eds_news_NewsOne.eds_subCollection_news .article .link_to_original_RSS_article {
  margin: 15px 0 0;
  padding: 0;
  border: 0;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 15px;
  clear: both;
}
.eds_news_NewsOne.eds_subCollection_news .article .link_to_original_RSS_article a {
  font: 12px Arial, Helvetica, sans-serif;
  font-weight: bold;
}
.eds_news_NewsOne.eds_subCollection_news .article h1 {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Arial, Helvetica, sans-serif;
  vertical-align: baseline;
  line-height: 1.25em;
  font-size: 20px;
  color: #333;
  margin: 0 0 8px;
  font-weight: bold;
  letter-spacing: normal;
}
.eds_news_NewsOne.eds_subCollection_news .article h2.edn_subTitle {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Arial, Helvetica, sans-serif;
  vertical-align: baseline;
  line-height: 1.25em;
  font-size: 13px;
  color: #333;
  margin: 0 0 10px;
  line-height: 18px;
  font-weight: bold;
  letter-spacing: normal;
}
.eds_news_NewsOne.eds_subCollection_news .article a {
  color: #CD1919;
  text-decoration: none;
}
.eds_news_NewsOne.eds_subCollection_news .article a:hover {
  text-decoration: underline;
}
.eds_news_NewsOne.eds_subCollection_news .article .box_list_container {
  border: 0;
  border-top: 1px solid #cdcdcd;
  border-bottom: 1px solid #cdcdcd;
  padding: 4px 0 0;
  margin: 0 0 15px;
  color: #7c7c7c;
  font-size: 11px;
  font-family: Arial, Helvetica, sans-serif;
}
.eds_news_NewsOne.eds_subCollection_news .article .box_list_container.clear_bottom {
  margin: 0;
  border-bottom: 0;
}
.eds_news_NewsOne.eds_subCollection_news .article .box_list_container a {
  color: #fff;
  padding: 1px 5px;
  border-radius: 2px;
  background: #b8b8b8;
  font-size: 11px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 17px;
  margin: 0 4px 4px 0;
  display: inline-block;
  text-decoration: none;
}
.eds_news_NewsOne.eds_subCollection_news .article .box_list_container a:hover {
  background: #787878;
}
.eds_news_NewsOne.eds_subCollection_news .article .meta_text {
  display: block;
  color: #7c7c7c;
  font-size: 12px;
  margin: 0 0 8px;
  font-family: Arial, Helvetica, sans-serif;
}
.eds_news_NewsOne.eds_subCollection_news .article .meta_text.no_margin {
  margin: 0;
}
.eds_news_NewsOne.eds_subCollection_news .article .meta_text > .edn_separator {
  margin: 0 5px;
  color: #b8b8b8;
}
.eds_news_NewsOne.eds_subCollection_news .article .meta_text a {
  font-weight: bold;
}
.eds_news_NewsOne.eds_subCollection_news .article .meta_text a:hover {
  text-decoration: underline;
}
.eds_news_NewsOne.eds_subCollection_news .article .edn_eventDetails {
  font-family: Arial, Helvetica, sans-serif;
}
.eds_news_NewsOne.eds_subCollection_news .article .edn_eventDetails .edn_eventPrice {
  float: right;
  margin: 7px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
}
.eds_news_NewsOne.eds_subCollection_news .article .event_date, .eds_news_NewsOne.eds_subCollection_news .article .event_location {
  margin: 10px 0;
  padding: 1px 0 0 21px;
  display: block;
  min-height: 15px;
  color: #3f3f3f;
  line-height: 15px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/event_clock.png") no-repeat 0 0;
}
.eds_news_NewsOne.eds_subCollection_news .article .event_date .export, .eds_news_NewsOne.eds_subCollection_news .article .event_location .export {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/export_icalendar.png") no-repeat 0 0;
  margin: 0 0 0 8px;
  font: 11px Arial, Helvetica, sans-serif;
  line-height: 17px;
  text-decoration: none;
  color: #e9020b;
  padding: 0 0 0 20px;
  height: 17px;
  display: inline-block;
  position: relative;
  top: -1px;
}
.eds_news_NewsOne.eds_subCollection_news .article .event_date .export:hover, .eds_news_NewsOne.eds_subCollection_news .article .event_location .export:hover {
  text-decoration: underline;
}
.eds_news_NewsOne.eds_subCollection_news .article .event_location {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/location_marker.png") no-repeat 5px 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list {
  margin: 0 0 20px;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list h1 {
  margin: 0 0 5px;
  line-height: 22px;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list h1 a {
  color: #333;
  font-size: 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: normal;
  line-height: 1.25em;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list h1 a:hover {
  color: #CD0000;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list h2.edn_subTitle {
  margin: 0 0 5px;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.span {
  float: none;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.span > .content {
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.span > .content > .article_image {
  float: left;
  margin: 0 10px 10px 0;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
  max-width: 100%;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.span > .content > .article_image img {
  display: block;
  border: 0;
  padding: 0;
  margin: 4px 0 0;
  max-width: 100%;
  border-radius: 5px;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.span > .content > .summary, .eds_news_NewsOne.eds_subCollection_news .article.in_list.span > .content > .summary p {
  color: #333;
  font: 13px Arial, Helvetica, sans-serif;
  margin: 0 0 10px;
  line-height: 22px;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.span > .content > .date {
  font: 12px Arial, Helvetica, sans-serif;
  color: #555;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.span .meta_text {
  font-size: 11px;
  margin: 0 0 4px;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.box {
  float: left;
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.box .article_image {
  overflow: hidden;
  position: relative;
  line-height: 0;
  border-radius: 4px;
  margin: 0 0 5px;
  max-width: 100%;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.box .article_image a img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.box .article_image > span {
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/on_image_text_bg.png");
  border-radius: 0 0 0 4px;
  padding: 0 10px;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.box .article_image > span .date {
  font: 10px Arial, Helvetica, sans-serif;
  line-height: 13px;
  color: #fff;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.box .article_image > span .comment_count {
  display: inline-block;
  height: 19px;
  width: 30px;
  text-align: center;
  font: 11px Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-style: italic;
  color: #1a1a1a;
  margin: 3px 0 1px 10px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/transparent_bubble.png") no-repeat;
  padding: 2px 0 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.box h1 a {
  font-size: 18px;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.box > .date {
  font: 12px Arial, Helvetica, sans-serif;
  color: #555;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.box.big {
  max-width: 49%;
  margin: 0 0 2% 2%;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.box.big .summary {
  font-size: 13px;
  color: #333;
  line-height: 18px;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.box.big img {
  max-width: 100%;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.box.big.edn_articleWrapper {
  max-width: 100%;
  margin: 0 10px 10px !important;
  float: none;
  display: inline-block;
  vertical-align: top;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.box.normal {
  max-width: 32%;
  margin: 0 0 15px 2%;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.box.normal .summary {
  font-size: 13px;
  color: #333;
  line-height: 18px;
}
.eds_news_NewsOne.eds_subCollection_news .article .article_documents,
.eds_news_NewsOne.eds_subCollection_news .article .related_articles,
.eds_news_NewsOne.eds_subCollection_news .article .edn_article_links {
  padding: 15px;
  border: 2px dashed #dfdede;
  background-color: #f3f3f3;
  margin: 0 0 15px;
  clear: both;
  border-radius: 4px;
}
.eds_news_NewsOne.eds_subCollection_news .article .article_documents > h2,
.eds_news_NewsOne.eds_subCollection_news .article .related_articles > h2,
.eds_news_NewsOne.eds_subCollection_news .article .edn_article_links > h2 {
  font: 20px Arial, Helvetica, sans-serif;
  color: #333;
  margin-bottom: 10px;
}
.eds_news_NewsOne.eds_subCollection_news .article .article_documents ul,
.eds_news_NewsOne.eds_subCollection_news .article .related_articles ul,
.eds_news_NewsOne.eds_subCollection_news .article .edn_article_links ul {
  padding: 0 0 0 25px;
}
.eds_news_NewsOne.eds_subCollection_news .article .article_documents ul li,
.eds_news_NewsOne.eds_subCollection_news .article .related_articles ul li,
.eds_news_NewsOne.eds_subCollection_news .article .edn_article_links ul li {
  list-style: circle;
  margin: 3px 0 0;
}
.eds_news_NewsOne.eds_subCollection_news .article .article_documents ul li a,
.eds_news_NewsOne.eds_subCollection_news .article .related_articles ul li a,
.eds_news_NewsOne.eds_subCollection_news .article .edn_article_links ul li a {
  font: 12px Arial, Helvetica, sans-serif;
  color: #676767;
  text-decoration: none;
}
.eds_news_NewsOne.eds_subCollection_news .article .article_documents ul li a:hover,
.eds_news_NewsOne.eds_subCollection_news .article .related_articles ul li a:hover,
.eds_news_NewsOne.eds_subCollection_news .article .edn_article_links ul li a:hover {
  color: #000;
}
.eds_news_NewsOne.eds_subCollection_news .article .article_documents ul li span,
.eds_news_NewsOne.eds_subCollection_news .article .related_articles ul li span,
.eds_news_NewsOne.eds_subCollection_news .article .edn_article_links ul li span {
  display: block;
  font-size: 11px;
  font-style: italic;
}
.eds_news_NewsOne.eds_subCollection_news .article .article_documents ul li {
  list-style: none;
}
.eds_news_NewsOne.eds_subCollection_news .article .article_documents ul li .document_icon {
  max-height: 12px;
  max-width: 12px;
  margin: 0 4px 0 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_gallery {
  margin-top: 15px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_image {
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  height: auto;
  line-height: 0;
  max-width: 100%;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_image > img {
  border-radius: 10px;
  height: auto;
  max-width: 100%;
  height: auto;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_image.left_image {
  float: left;
  padding: 0 15px 15px 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_image .eds_mediaWrapper {
  max-width: 100%;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .rate_article {
  font-size: 12px;
  color: #7c7c7c;
  font-family: Arial, Helvetica, sans-serif;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .rate_article .article_rating {
  display: inline;
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .rate_article .article_rating .current_rating {
  margin: 0 5px 0 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .rate_article .article_rating .EDN_article_rateit {
  position: relative;
  top: 2px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .main_content, .eds_news_NewsOne.eds_subCollection_news .article.details .main_content p {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Arial, Helvetica, sans-serif;
  vertical-align: baseline;
  font: 13px Arial, Helvetica, sans-serif;
  color: #333;
  line-height: 22px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .main_content {
  margin: 15px 0 10px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .main_content .article_pagination a,
.eds_news_NewsOne.eds_subCollection_news .article.details .main_content .article_pagination span {
  display: inline-block;
  background: #e7e7e7;
  color: #696969;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 15px;
  box-shadow: 0 0 2px 0 #CDCDCD, inset 1px 1px 3px 0 white;
  border: 1px solid #cdcdcd;
  margin: 0 2px 5px 0;
  padding: 3px 7px 2px;
  border-radius: 4px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .main_content .article_pagination a.active,
.eds_news_NewsOne.eds_subCollection_news .article.details .main_content .article_pagination span.active {
  box-shadow: inset 1px 1px 3px 0 #ADADAD;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .main_content .article_pagination a:hover {
  box-shadow: 0 0 2px #737373, inset 1px 1px 3px 0 white;
  text-decoration: none;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .main_content .article_pagination span {
  box-shadow: inset 1px 1px 3px 0 #ADADAD;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .main_content a {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Arial, Helvetica, sans-serif;
  vertical-align: baseline;
  line-height: 1.25em;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .main_content p {
  padding: 0;
  border: 0;
  font-family: Arial, Helvetica, sans-serif;
  vertical-align: baseline;
  margin: 0 0 10px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .edn_socialPrintWrapper {
  display: flex;
  align-items: center;
  margin: 10px 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .social_buttons {
  flex-grow: 1;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .edn_printButton {
  background: #F5F4F4 url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/print.png") 4px 1px no-repeat;
  cursor: pointer;
  padding: 4px 5px 4px 25px;
  border-style: solid;
  border-width: 1px;
  border-color: #e2e2e2 #bfbfbf #bfbfbf #e2e2e2;
  border-radius: 3px;
  line-height: 0;
  font-size: 0;
  margin: 10px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .edn_printButton > span {
  color: #333;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: bold;
  text-shadow: 0 0 1px #fff;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .edn_printButton:hover {
  background-color: #eee;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .edn_article_gallery {
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .edn_article_gallery ul {
  margin: 0;
  padding: 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .edn_article_gallery ul li {
  list-style: none;
  float: left;
  font-size: 0;
  line-height: 0;
  padding: 0;
  border: 0;
  margin: 0 10px 10px 0;
  border-radius: 4px;
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .edn_article_map {
  border: 1px solid #ccc;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .edn_article_map img {
  max-width: none;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments {
  margin: 20px 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .submit {
  display: inline-block;
  border: 0;
  text-decoration: none;
  padding: 6px 10px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/comments/add_button_bg.png") repeat-x bottom #929292;
  border-radius: 4px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .submit span {
  text-decoration: none;
  font: 14px Arial, Helvetica, sans-serif;
  line-height: 18px;
  font-weight: bold;
  color: #efefef;
  text-shadow: 0 -1px 1px #4B4B4B;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .submit:hover {
  background-color: #D71313;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .add_comment h3 {
  padding: 0;
  border: 0;
  font-family: Arial, Helvetica, sans-serif;
  vertical-align: baseline;
  line-height: 1.25em;
  font: 16px Arial, Helvetica, sans-serif;
  color: #6b6b6b;
  margin: 15px 0 0;
  font-weight: bold;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .add_comment .add_article_box {
  background-color: #f3f3f3;
  border: 1px solid #d3d3d3;
  margin: 2px 0 0;
  padding: 25px;
  border-radius: 4px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .add_comment .add_article_box .comment_info {
  margin: 0 0 20px;
  text-align: center;
  padding: 0 30px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .add_comment .add_article_box .comment_info span {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.25em;
  font: 12px Arial, Helvetica, sans-serif;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .add_comment .add_article_box table {
  margin: 0;
  padding: 0;
  width: 100%;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .add_comment .add_article_box table td.left {
  font: 14px Arial, Helvetica, sans-serif;
  width: 20%;
  padding: 7px 0 0;
  color: #6b6b6b;
  text-align: right;
  font-weight: bold;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .add_comment .add_article_box table td.left span {
  margin: 0 5px 0 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .add_comment .add_article_box table td.right {
  padding: 0 0 20px;
  width: 80%;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .add_comment .add_article_box table td.right.bottom {
  padding: 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .add_comment .add_article_box table td.right input.text {
  font: 16px Arial, Helvetica, sans-serif;
  border: 1px solid #bbbaba;
  padding: 5px 5px 4px;
  background: #fff;
  width: 70%;
  border-radius: 4px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .add_comment .add_article_box table td.right textarea {
  font: 12px Arial, Helvetica, sans-serif;
  border: 1px solid #bfbfbf;
  padding: 5px;
  background: #fff;
  width: 90%;
  height: 100px;
  border-radius: 4px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .num_of_comment {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Arial, Helvetica, sans-serif;
  vertical-align: baseline;
  line-height: 1.25em;
  background: #f3f3f3;
  border: 1px solid #e1e1e1;
  padding: 3px 11px;
  font: 14px Arial, Helvetica, sans-serif;
  color: #5c5c5c;
  border-radius: 4px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .num_of_comment a {
  font: 14px Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #5c5c5c;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list {
  margin: 15px 0 0;
  display: block;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment {
  overflow: hidden;
  margin-left: 80px;
  padding: 0;
  clear: both;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .votes {
  margin: 10px 0 0 2%;
  width: 8%;
  float: left;
  font: 12px Arial, Helvetica, sans-serif;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .votes > div {
  position: relative;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .votes > div input {
  position: relative;
  top: 5px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .votes > div span {
  font-size: 12px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side {
  width: 90%;
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side .comment_details {
  width: 15%;
  text-align: center;
  float: left;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side .comment_details .user_avatar {
  max-height: 60px;
  max-width: 60px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side .comment_details .author {
  font-size: 12px;
  margin: 1px 0 0;
  font-family: Arial, Helvetica, sans-serif;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side .comment_details .date_time {
  font-size: 10px;
  color: #9A9A9A;
  font-family: Arial, Helvetica, sans-serif;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side .comment_details .votes {
  margin: 1px 0 0;
  font-size: 12px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side .comment_details .votes span {
  margin: 0 8px 0 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side .comment_details .votes span a {
  position: relative;
  top: 5px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side .content_container {
  float: left;
  width: 85%;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side .content_container .arrow {
  float: left;
  width: 16px;
  height: 29px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/comments/details_pointer.png") no-repeat transparent;
  position: relative;
  left: 1px;
  top: 48px;
  z-index: 1;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side .content_container .content {
  margin: 0 0 0 16px;
  background: #f3f3f3;
  border: 1px solid #e1e1e1;
  min-height: 100px;
  padding: 10px 20px;
  font: 12px Verdana;
  color: #363636;
  border-radius: 4px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side .content_container .content p {
  margin: 0 0 5px;
  padding: 0;
  background: none;
  border: none;
  font: 12px Verdana;
  color: #363636;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side .actions {
  font-size: 10px;
  margin: 2px 0 3px;
  float: right;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side .actions a {
  color: #9A9A9A;
  margin: 0 5px 0 0;
  font: 12px Arial, Helvetica, sans-serif;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side .actions a:hover {
  text-decoration: underline;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .edit_comment {
  margin: 15px 0 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .edit_comment textarea {
  font: 12px Arial, Helvetica, sans-serif;
  border: 1px solid #bfbfbf;
  padding: 5px;
  background: #fff;
  width: 80%;
  height: 100px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .edit_comment .actions {
  float: right;
  width: 15%;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .edit_comment .actions a {
  display: inline-block;
  height: 33px;
  border: 0;
  text-decoration: none;
  padding: 0 8px 0 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .edit_comment .actions a span {
  display: inline-block;
  text-decoration: none;
  font: 14px Arial, Helvetica, sans-serif;
  font-weight: bold;
  padding: 7px 6px 0 14px;
  color: #444;
  height: 26px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .edit_comment .actions a:hover {
  background-position: right -33px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .edit_comment .actions a:hover span {
  background-position: 0 -33px;
  color: #000;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment.level1 {
  margin-left: 40px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment.level0, .eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment.level {
  margin-left: 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile {
  font-family: Arial, Helvetica, sans-serif;
  vertical-align: baseline;
  line-height: 1.25em;
  margin: 0 0 15px;
  padding: 15px;
  border: 3px solid #e3e3e3;
  background: #eee;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .author_rss {
  display: block;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/rss_18-18.png") no-repeat;
  font-size: 0;
  line-height: 0;
  position: absolute;
  left: auto;
  right: 5px;
  top: 5px;
  height: 18px;
  width: 18px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .author_rss span {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .author_rss:hover {
  background-position: -18px 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_picture_container {
  float: left;
  font-size: 0;
  line-height: 0;
  margin: 0 15px 0 0;
  padding: 0;
  border: 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_picture_container img {
  padding: 0;
  margin: 0;
  border: 2px solid #ccc;
  box-shadow: 1px 1px 2px 0 #DEDEDE;
  border-radius: 5px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .details_container h2 {
  padding: 0;
  border: 0;
  vertical-align: baseline;
  color: #555;
  font-weight: bold;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 1.25;
  margin: 0 0 4px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .details_container .short_info {
  margin: 0;
  padding: 0;
  border: 0;
  color: #888;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 1.25;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .details_container .short_info a {
  color: #676767;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .details_container .short_info a:hover {
  color: #000;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons {
  clear: both;
  padding: 5px 0 0 82px;
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button {
  margin: 0 5px 0 0;
  float: left;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.contact, .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.full_bio {
  display: inline-block;
  background: no-repeat #e5e5e5;
  border: 2px solid #d4d4d4;
  padding: 2px 5px 2px 20px;
  border-radius: 4px;
  text-decoration: none;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.contact span, .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.full_bio span {
  color: #636363;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 15px;
  text-decoration: none;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.contact:hover span, .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.full_bio:hover span {
  color: #000;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.contact {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/contact_letter.png");
  background-position: 3px 4px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.full_bio {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/profile.png");
  background-position: 3px 3px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.social {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: no-repeat;
  position: relative;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.social span {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.social:hover {
  background-position: -22px 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.social.facebook {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/facebook_button.png");
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.social.linked_in {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/linked_in_button.png");
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.social.twitter {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/twitter_button.png");
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.social.google_plus {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/google_plus_button.png");
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.social.youtube {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/yt_button.png");
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.social.instagram {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/inst_button.png");
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.social.website {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/link_button.png");
}
.eds_news_NewsOne.eds_subCollection_news .article.sidebar_box {
  border: 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #dedede;
  overflow: hidden;
  margin: 0;
  padding: 10px 10px 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.sidebar_box > a.image {
  font-size: 0;
  line-height: 0;
  text-decoration: none;
  float: left;
  margin: 0 10px 10px 0;
  padding: 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.sidebar_box > a.image img {
  border-radius: 4px;
}
.eds_news_NewsOne.eds_subCollection_news .article.sidebar_box > a.title {
  color: #333;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 15px;
  margin: 0 0 10px;
}
.eds_news_NewsOne.eds_subCollection_news .article.sidebar_box > a.title:hover {
  color: #000;
}
.eds_news_NewsOne.eds_subCollection_news .articles_row {
  overflow: hidden;
  max-width: 100%;
}
.eds_news_NewsOne.eds_subCollection_news .articles_row .article.in_list.box.big:first-child {
  margin-left: 0;
}
.eds_news_NewsOne.eds_subCollection_news .articles_row .article.in_list.box.normal:first-child {
  margin-left: 0;
  max-width: 32%;
}
.eds_news_NewsOne.eds_subCollection_news .articles_row.edn_isotopeLayout {
  max-width: 100%;
}
.eds_news_NewsOne.eds_subCollection_news .admin_action, .eds_news_NewsOne.eds_subCollection_news .edn_article_action {
  margin: 0 10px 0 0;
  padding: 0;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  color: #ED2323;
  background: no-repeat;
}
.eds_news_NewsOne.eds_subCollection_news .admin_action:hover, .eds_news_NewsOne.eds_subCollection_news .edn_article_action:hover {
  color: #CD0000;
}
.eds_news_NewsOne.eds_subCollection_news .admin_action.edit, .eds_news_NewsOne.eds_subCollection_news .edn_article_action.edit {
  padding-left: 16px;
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/pencil_small.png");
}
.eds_news_NewsOne.eds_subCollection_news .admin_action.publish_article, .eds_news_NewsOne.eds_subCollection_news .edn_article_action.publish_article {
  padding-left: 17px;
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/check_small.png");
}
.eds_news_NewsOne.eds_subCollection_news .article_pager {
  margin: 10px 0;
  text-align: center;
}
.eds_news_NewsOne.eds_subCollection_news .article_pager a {
  display: inline-block;
  background: #e7e7e7;
  color: #696969;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 15px;
  box-shadow: 0 0 2px 0 #CDCDCD, inset 1px 1px 3px 0 white;
  border: 1px solid #cdcdcd;
  margin: 0 2px 5px 0;
  padding: 3px 7px 2px;
  border-radius: 4px;
}
.eds_news_NewsOne.eds_subCollection_news .article_pager a:hover {
  box-shadow: 0 0 2px #737373, inset 1px 1px 3px 0 white;
}
.eds_news_NewsOne.eds_subCollection_news .article_pager a.active {
  box-shadow: inset 1px 1px 3px 0 #ADADAD;
}
.eds_news_NewsOne.eds_subCollection_news .in_article_image {
  overflow: hidden;
  max-width: 100%;
}
.eds_news_NewsOne.eds_subCollection_news .in_article_image .image_wrapper {
  border-radius: 5px;
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_news .in_article_image .image_wrapper.no_text {
  font-size: 0;
  line-height: 0;
}
.eds_news_NewsOne.eds_subCollection_news .in_article_image img {
  max-width: 100%;
  height: auto;
}
.eds_news_NewsOne.eds_subCollection_news .in_article_image p.image_title,
.eds_news_NewsOne.eds_subCollection_news .in_article_image .image_description {
  clear: both;
  font: 11px Arial, Helvetica, sans-serif;
  color: #333;
}
.eds_news_NewsOne.eds_subCollection_news .in_article_image p.image_title {
  margin: 5px 0 2px !important;
  font-size: 12px;
  line-height: 14px !important;
  font-weight: bold !important;
}
.eds_news_NewsOne.eds_subCollection_news .in_article_image.left {
  float: left;
  margin: 0 10px 10px 0;
}
.eds_news_NewsOne.eds_subCollection_news .in_article_image.right {
  float: right;
  margin: 0 0 10px 10px;
}
.eds_news_NewsOne.eds_subCollection_news .in_article_image.clear {
  clear: both;
  margin: 0 0 10px;
}
.eds_news_NewsOne.eds_subCollection_news .edn_isotopeLayout > div {
  margin: 0 auto;
  max-width: 100%;
}
.eds_news_NewsOne.eds_subCollection_news .edNews_loadMoreTriggerWrapper {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 0;
  line-height: 0;
  width: 100%;
  text-align: center;
  display: block;
}
.eds_news_NewsOne.eds_subCollection_news .edNews_loadMoreTriggerWrapper * {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 0;
  line-height: 0;
}
.eds_news_NewsOne.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger {
  display: inline-block;
  margin: 0 auto;
  padding: 5px 20px;
  border-radius: 4px;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.25), inset 0 3px 6px -4px #fff;
  background: #ddd;
  cursor: pointer;
  transition: box-shadow 200ms ease;
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
}
.eds_news_NewsOne.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger .actionTextContainer span {
  font: bold 13px/1.3 Arial, Helvetica, sans-serif;
  color: #7A7A7A;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
  transition: color 200ms ease;
}
.eds_news_NewsOne.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger .loadingOverlay {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
  display: block;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/loadingArticles.gif") center center no-repeat #ddd;
  box-shadow: inset 0 3px 6px -4px #fff;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 500ms ease;
}
.eds_news_NewsOne.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger .loadingOverlay > span {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger:hover {
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.44), 0 3px 6px -4px #FFFFFF inset;
}
.eds_news_NewsOne.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger:hover .actionTextContainer span {
  color: #595959;
}
.eds_news_NewsOne.eds_subCollection_news .edNews_loadMoreTriggerWrapper.loading .trigger .loadingOverlay {
  top: 0;
  opacity: 1;
}
.eds_news_NewsOne.eds_subCollection_news .edNews_loadMoreTriggerWrapper.hide {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_news .EDN_cf_all_fields_container > table {
  margin: 15px 0;
}
.eds_news_NewsOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr {
  border-style: solid;
  border-width: 2px 0;
  border-color: #fff;
}
.eds_news_NewsOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr:nth-child(even) td {
  background-color: #ebebeb;
}
.eds_news_NewsOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td {
  padding: 2px 10px;
  color: #404040;
  background-color: #e0dede;
  vertical-align: top;
}
.eds_news_NewsOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td span,
.eds_news_NewsOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td ul li {
  line-height: 1.1;
}
.eds_news_NewsOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_cf_all_fields_table_label {
  text-align: right;
  border-radius: 4px 0 0 4px;
}
.eds_news_NewsOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_cf_all_fields_table_label > span {
  font-weight: bold;
  white-space: nowrap;
}
.eds_news_NewsOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value {
  border-radius: 0 4px 4px 0;
}
.eds_news_NewsOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkboxList {
  margin: 0;
  padding: 0;
}
.eds_news_NewsOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkboxList > li {
  list-style-type: none;
  padding: 0 0 4px 0;
}
.eds_news_NewsOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkboxList > li .EDN_cf_checkbox_icon {
  margin-top: 0;
}
.eds_news_NewsOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_label {
  line-height: 15px;
}
.eds_news_NewsOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_icon {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/articleDetailsCustomFields/checkbox/predefined/cf-checkbox.png") no-repeat 0 -18px;
  float: left;
  width: 16px;
  height: 17px;
  margin: 3px 4px 0 0;
}
.eds_news_NewsOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_checked .EDN_cf_checkbox_icon {
  background-position: 0 0;
}
.eds_news_NewsOne.eds_subCollection_news .edn_registerEventDetails {
  margin: 0;
  padding: 0 0 0 18px;
  float: left;
  clear: both;
}
.eds_news_NewsOne.eds_subCollection_news .edn_registerEventDetails li {
  list-style-type: circle;
}
.eds_news_NewsOne.eds_subCollection_news .edn_eventInfoMessage {
  padding: 5px;
  font-style: italic;
  color: #3b3b3b;
  background-color: #c0dcfe;
  border: solid 1px #95c1f1;
  margin: 5px;
  display: block;
}
.eds_news_NewsOne.eds_subCollection_news .edn_eventInfoMessage p {
  margin: 0;
  padding: 0;
}
.eds_news_NewsOne.eds_subCollection_news .edn_eventInfoMessage hr {
  margin: 6px 0;
  border-bottom: dashed 1px #95c1f1;
}
.eds_news_NewsOne.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo {
  font-style: normal;
  padding: 5px;
}
.eds_news_NewsOne.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo p {
  margin: 0;
  padding: 0;
}
.eds_news_NewsOne.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo hr {
  margin: 7px 0;
  padding: 0;
  height: 1px;
  border: none;
  border-bottom: dashed 1px #79a8cd;
}
.eds_news_NewsOne.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor1 {
  color: #0076b5;
}
.eds_news_NewsOne.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor2 {
  color: #db0000;
}
.eds_news_NewsOne.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo .edn_eventPayPalPayment {
  display: inline-block;
  border: solid 1px #659ad9;
  border-radius: 4px;
  color: #0093de;
  padding: 5px;
  line-height: 1;
  margin-top: 10px;
}
.eds_news_NewsOne.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo .edn_eventPayPalPayment:hover {
  text-decoration: none;
  color: #0b65ac;
}
.eds_news_NewsOne.eds_subCollection_news .edn_eventRegistrationModalTrigger {
  float: right;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  padding: 6px 10px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/comments/add_button_bg.png") repeat-x bottom #929292;
  border-radius: 4px;
  text-decoration: none;
  font: 14px Arial, Helvetica, sans-serif;
  line-height: 18px;
  font-weight: bold;
  color: #efefef;
  text-shadow: 0 -1px 1px #4B4B4B;
}
.eds_news_NewsOne.eds_subCollection_news .edn_eventRegistrationModalTrigger:hover {
  background-color: #D71313;
}
.eds_news_NewsOne.eds_subCollection_news .edn_eventSeparator {
  border: none;
  border-bottom: 1px solid #dadada;
  outline: none;
  height: 0;
  margin: 10px 0;
}
.eds_news_NewsOne.eds_subCollection_news .edn_listOfAttendants {
  margin: 20px 0;
  border: solid 1px #dadada;
  border-radius: 5px;
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_news .edn_listOfAttendants > table {
  border: none;
  outline: none;
  width: 100%;
}
.eds_news_NewsOne.eds_subCollection_news .edn_listOfAttendants > table tr:first-child.edn_listOfAttendantsHeader {
  background-color: #EBEBEB;
}
.eds_news_NewsOne.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(even) {
  background-color: #fff;
}
.eds_news_NewsOne.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(odd) {
  background-color: #F1F1F1;
}
.eds_news_NewsOne.eds_subCollection_news .edn_listOfAttendants > table tr th {
  text-align: left;
  font-weight: bold;
  padding: 7px 10px;
  border: none;
  border-bottom: solid 1px #dadada;
}
.eds_news_NewsOne.eds_subCollection_news .edn_listOfAttendants > table tr th.edn_eventUserName {
  width: 80%;
}
.eds_news_NewsOne.eds_subCollection_news .edn_listOfAttendants > table tr th.edn_eventNumberOfTickets {
  text-align: center;
  width: 20%;
}
.eds_news_NewsOne.eds_subCollection_news .edn_listOfAttendants > table tr td {
  padding: 2px 10px;
  color: #838383;
  font-size: 12px;
  border: none;
}
.eds_news_NewsOne.eds_subCollection_news .edn_listOfAttendants > table tr td.edn_eventUserName {
  padding-right: 20px;
}
.eds_news_NewsOne.eds_subCollection_news .edn_listOfAttendants > table tr td.edn_eventNumberOfTickets {
  text-align: center;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBarWrapper {
  margin: 5px 0 15px;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBarWrapper > span {
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar {
  display: inline-block;
  vertical-align: middle;
  margin-left: 30px;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar input[type=radio] {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar input[type=radio]:checked + label {
  color: #fff;
  cursor: default;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5) inset;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar input[type=radio]:checked + label::after {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar label {
  display: inline-block;
  margin: 5px 10px 5px 0;
  background-color: #d5d5d5;
  border: 1px solid #878787;
  min-width: 60px;
  border-radius: 3px;
  color: #555;
  font: normal 15px/1 Arial, Helvetica, sans-serif;
  padding: 6px 9px;
  text-decoration: none;
  white-space: nowrap;
  z-index: 0;
  position: relative;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
  box-sizing: border-box;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar label::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  content: "";
  display: inline-block;
  z-index: -1;
  transition: opacity 200ms linear;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar label:hover {
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar label:hover::after {
  opacity: 1;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar .eds_optionValue1 label:hover {
  border-color: #438243;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar .eds_optionValue1 label::after {
  background-color: #5cb85c;
  border-color: #438243;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar .eds_optionValue1 input[type=radio]:checked + label {
  background-color: #5cb85c;
  border-color: #438243;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar .eds_optionValue2 label:hover {
  border-color: #8a3431;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar .eds_optionValue2 label::after {
  background-color: #d9534f;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar .eds_optionValue2 input[type=radio]:checked + label {
  background-color: #d9534f;
  border-color: #8a3431;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar .eds_optionValue3 label:hover {
  border-color: #a2773a;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar .eds_optionValue3 label::after {
  background-color: #f0ad4e;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar .eds_optionValue3 input[type=radio]:checked + label {
  background-color: #f0ad4e;
  border-color: #a2773a;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation {
    margin: 25px 0;
    overflow: hidden;
  }
}
.eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a {
  font-size: 0;
  line-height: 0;
  position: fixed;
  display: inline-block;
  width: 250px;
  top: 50%;
  margin-top: -70px;
  z-index: 9999;
  transition: all 500ms ease;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a {
    position: relative;
    top: auto;
    width: 130px;
    margin-top: 0;
    z-index: auto;
  }
}
.eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage {
  display: inline-block;
  position: relative;
  width: 100%;
  z-index: 2;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage {
    height: 70px !important;
  }
}
.eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage > img {
  position: relative;
  z-index: 2;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage > img {
    height: 70px !important;
  }
}
.eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage::after {
  background-color: rgba(0, 0, 0, 0.4);
  font-family: "FontAwesome";
  line-height: 140px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 25px;
  color: #fff;
  z-index: 1;
  position: absolute;
  border-radius: 4px;
  transition: padding 600ms ease;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage::after {
    line-height: 70px !important;
  }
}
.eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage .edn_fixedNavTitle {
  top: 0 !important;
  bottom: 0 !important;
  overflow: hidden;
  border-style: none;
  z-index: 2;
  text-align: left;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage .edn_fixedNavTitle {
    border-style: solid;
    width: 220px !important;
  }
}
.eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle {
  font-size: 14px;
  line-height: 1.1;
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
  position: absolute;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-top-style: none;
  width: 220px;
  padding: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle {
    top: 0;
    bottom: 0;
    border-top-style: solid;
    z-index: 2;
    overflow: hidden;
  }
}
.eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavTitle {
  opacity: 1;
  visibility: visible;
}
.eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavImage::after {
  background-color: rgba(0, 0, 0, 0.8);
}
.eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle {
  left: -190px;
  border-left: none !important;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle {
    left: auto !important;
    float: left;
  }
}
.eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle .edn_fixedNavImage::after {
  content: "\f060";
  text-align: right;
  padding-right: 20px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle .edn_fixedNavTitle {
  left: -100%;
  border-left: none !important;
  border-top-left-radius: 0 !important;
  transition: left 500ms ease, opacity 800ms;
}
.eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover {
  left: 0;
}
.eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavTitle {
  left: 0;
}
.eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavImage::after {
  padding-right: 45px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavImage::after {
    padding-right: 25px;
  }
}
.eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle {
  right: -190px;
  border-right: none !important;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle {
    right: auto !important;
    float: right;
  }
}
.eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavImage {
  text-align: right;
}
.eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavImage::after {
  content: "\f061";
  text-align: left;
  padding-left: 20px;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavTitle {
  right: -100%;
  border-right: none !important;
  border-top-right-radius: 0 !important;
  transition: right 500ms ease, opacity 800ms;
}
.eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover {
  right: 0;
}
.eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavTitle {
  right: 0;
}
.eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavImage::after {
  padding-left: 45px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavImage::after {
    padding-left: 25px;
  }
}
.eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting {
  float: right;
}
.eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting > span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
  position: relative;
  font: 13px/1 Arial, Helvetica, sans-serif;
  cursor: pointer;
}
.eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting > span > i {
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  line-height: 1;
  color: #bababa;
  padding-right: 7px;
}
.eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting > span .edn_voteTooltip {
  display: inline-block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  letter-spacing: normal;
  background-color: #4c4c4c;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 2px;
  transition: all 400ms;
}
.eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting > span .edn_voteTooltip::before {
  content: "";
  bottom: calc(100% - 4px);
  left: calc(50% - 4px);
  width: 8px;
  height: 8px;
  background-color: #4c4c4c;
  position: absolute;
  transform: rotate(45deg);
}
.eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting > span:hover .edn_voteTooltip {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  top: 130%;
}
.eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting > span.edn__voted {
  cursor: default;
}
.eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting > span.edn__voted > i {
  color: #bababa;
}
.eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting > span.edn__voted .edn_voteTooltip {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting > span.edn__voted:hover > i {
  color: #bababa;
}
.eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting > span.edn__votedUp > i, .eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting > span.edn__votedDown > i, .eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting > span.edn__votedUp:hover > i, .eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting > span.edn__votedDown:hover > i, .eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting > span:hover > i {
  color: #37b1ab;
}
.eds_news_NewsOne.eds_subCollection_news.eds_print .admin_action,
.eds_news_NewsOne.eds_subCollection_news.eds_print .edn_eventRegistrationModalTrigger,
.eds_news_NewsOne.eds_subCollection_news.eds_print .edn_fixedPrevNextArticleNavigation {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_news.eds_print .article a {
  color: #000;
}
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .event_date,
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .event_location {
  padding-left: 0;
  background: none transparent;
}
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .event_date .export,
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .event_location .export {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .event_date a,
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .meta_text a {
  color: #000;
}
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .event_date.eds_viewsComments,
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .meta_text.eds_viewsComments {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .box_list_container,
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .author_group_profile,
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .article_documents,
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .related_articles,
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .edn_article_links,
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .fb-comments,
.eds_news_NewsOne.eds_subCollection_news.eds_print .article #disqus_thread,
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .eds_signUpActionBarWrapper {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_news.eds_print .article.details .rate_article,
.eds_news_NewsOne.eds_subCollection_news.eds_print .article.details .article_gallery,
.eds_news_NewsOne.eds_subCollection_news.eds_print .article.details .article_comments,
.eds_news_NewsOne.eds_subCollection_news.eds_print .article.details .edn_socialPrintWrapper {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_search .article.in_list {
  margin: 20px 0 0;
}
.eds_news_NewsOne .fb-comments, .eds_news_NewsOne .fb-comments iframe[style], .eds_news_NewsOne .fb-comments > span {
  width: 100% !important;
}
.eds_news_NewsOne .fb_comments_count {
  margin: 0 !important;
  display: inline !important;
}
.eds_news_NewsOne .edNews_latestCommentsOnForum .num_of_comment {
  overflow: hidden;
}
.eds_news_NewsOne .edNews_latestCommentsOnForum .num_of_comment .submit {
  float: right;
}
.eds_news_NewsOne .edNews_latestCommentsOnForum .num_of_comment > p {
  margin: 2px 0 0;
  padding: 0;
}

.EDN_search.theme_NewsOne {
  padding: 0px;
  border: 1px solid #cdcdcd;
  background-color: #f6f6f6;
  overflow: hidden;
  z-index: 9999999;
  padding: 3px;
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.27);
  margin: 0 20px;
}
.EDN_search.theme_NewsOne ul {
  margin: 0px;
  padding: 0px;
  list-style-position: outside;
  list-style: none;
}
.EDN_search.theme_NewsOne ul li {
  margin: 0px;
  padding: 2px 5px;
  display: block;
  font: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #333;
  border: solid 1px transparent;
}
.EDN_search.theme_NewsOne ul li span a {
  color: #333;
  text-decoration: none;
}
.EDN_search.theme_NewsOne ul li span a:hover {
  text-decoration: none;
  color: #000;
  text-decoration: none;
}
.EDN_search.theme_NewsOne .acSelect {
  background-color: #e4e4e4;
  color: #333;
}
.EDN_search.theme_NewsOne .acSelect a {
  color: #333;
}

/* IE 7 only */
*:first-child + html .eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side {
  width: 88%;
}
*:first-child + html .eds_news_NewsOne.eds_subCollection_news .article.in_list.box .article_image > span .date {
  position: relative;
  top: -6px;
}

.qtip.edn_calendarbox_NewsOne {
  position: absolute;
  left: -28000px;
  top: -28000px;
  display: none;
  min-width: 50px;
  font-size: 10px;
  line-height: 12px;
  direction: ltr;
  padding: 0;
  margin: 0;
  background: #f6f6f6;
  border: 1px solid #cdcdcd;
  border-radius: 2px;
  box-shadow: 1px 1px 1px #1A1A1A;
  width: 500px;
  max-width: 95%;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content {
  position: relative;
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
  text-align: left;
  word-wrap: break-word;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .title {
  border: 0;
  border-bottom: 1px solid #cdcdcd;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/calendar/tooltip/title_gradient.png") repeat-x 0 bottom #fff;
  margin: 0;
  padding: 6px 15px 0;
  display: block;
  height: 19px;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .title span {
  font: 12px Arial, Helvetica, sans-serif;
  color: #111;
  line-height: 14px;
  font-weight: bold;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .title span a {
  text-decoration: none;
  color: #111;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .title span a:hover {
  color: #000;
  text-decoration: underline;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper {
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
  display: block;
  max-width: none;
  max-height: none;
  width: auto;
  height: auto;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article {
  display: block;
  margin: 0;
  border: 0;
  padding: 15px;
  overflow: hidden;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article > img {
  float: left;
  margin: 0 10px 10px 0;
  padding: 0;
  border: 0;
  border-radius: 5px;
  max-width: 100px;
  max-height: 100px;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article p {
  color: #333;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 14px;
  margin: 0;
  padding: 0;
  display: block;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article > p.title {
  font: 14px Arial, Helvetica, sans-serif;
  line-height: 16px;
  color: #333;
  font-weight: bold;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article > p.title a {
  font: 14px Arial, Helvetica, sans-serif;
  line-height: 16px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article > p.title a:hover {
  text-decoration: underline;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article > p.location {
  font-size: 12px;
  line-height: 14px;
  font-weight: bold;
  color: #111;
  margin-top: 5px;
  padding: 0 0 0 15px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/calendar/tooltip/red_map_location.png") no-repeat 0 0;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article > .content p {
  margin: 10px 0 0;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article > a {
  float: right;
  clear: both;
  text-decoration: none;
  font: 12px Arial, Helvetica, sans-serif;
  color: #333;
  line-height: 14px;
  font-weight: bold;
  margin: 3px 0 0;
  padding: 0 0 0 9px;
  border: 0;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/calendar/tooltip/red_arrow.png") no-repeat 0 2px;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article > a:hover {
  text-decoration: underline;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article_list {
  display: block;
  margin: 0;
  border: 0;
  padding: 15px 15px 15px 30px;
  overflow: hidden;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article_list > li {
  list-style: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/calendar/tooltip/red_arrow.png") outside;
  margin: 5px 0 0px;
  padding: 0;
  border: 0;
  color: #333;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 14px;
  font-weight: bold;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article_list > li > a {
  color: #333;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 14px;
  font-weight: bold;
  text-decoration: none;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article_list > li > a:hover {
  text-decoration: underline;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article_list > li > p {
  color: #111;
  margin: 0;
  padding: 0;
  border: 0;
  font: 10px Arial, Helvetica, sans-serif;
  line-height: 12px;
  font-weight: normal;
}

@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_NewsTwo .eds_news_NewsOne.eds_subCollection_news .category.in_list.catalog-item, .EasyDNNSkin_NewsOne .eds_news_NewsOne.eds_subCollection_news .category.in_list.catalog-item, .EasyDNNSkin_BlogTwo .eds_news_NewsOne.eds_subCollection_news .category.in_list.catalog-item, .EasyDNNSkin_BlogOne .eds_news_NewsOne.eds_subCollection_news .category.in_list.catalog-item {
    width: 48%;
    margin: 0 1% 15px 1%;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsOne.eds_subCollection_news .category.in_list.catalog-item img, .EasyDNNSkin_NewsOne .eds_news_NewsOne.eds_subCollection_news .category.in_list.catalog-item img, .EasyDNNSkin_BlogTwo .eds_news_NewsOne.eds_subCollection_news .category.in_list.catalog-item img, .EasyDNNSkin_BlogOne .eds_news_NewsOne.eds_subCollection_news .category.in_list.catalog-item img {
    width: 100%;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsOne.eds_subCollection_news .article.span > .content > .article_image, .EasyDNNSkin_NewsOne .eds_news_NewsOne.eds_subCollection_news .article.span > .content > .article_image, .EasyDNNSkin_BlogTwo .eds_news_NewsOne.eds_subCollection_news .article.span > .content > .article_image, .EasyDNNSkin_BlogOne .eds_news_NewsOne.eds_subCollection_news .article.span > .content > .article_image {
    float: none;
    margin: 0 0 10px 0;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsOne.eds_subCollection_news .article.span > .content > .article_image img, .EasyDNNSkin_NewsOne .eds_news_NewsOne.eds_subCollection_news .article.span > .content > .article_image img, .EasyDNNSkin_BlogTwo .eds_news_NewsOne.eds_subCollection_news .article.span > .content > .article_image img, .EasyDNNSkin_BlogOne .eds_news_NewsOne.eds_subCollection_news .article.span > .content > .article_image img {
    width: 100%;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.big, .EasyDNNSkin_NewsOne .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.big, .EasyDNNSkin_BlogTwo .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.big, .EasyDNNSkin_BlogOne .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.big {
    float: none;
    max-width: 98%;
    margin: 0 1% 2% 1%;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.big img, .EasyDNNSkin_NewsOne .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.big img, .EasyDNNSkin_BlogTwo .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.big img, .EasyDNNSkin_BlogOne .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.big img {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.normal, .EasyDNNSkin_NewsOne .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.normal, .EasyDNNSkin_BlogTwo .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.normal, .EasyDNNSkin_BlogOne .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.normal {
    max-width: 98%;
    margin: 0 0 15px 1%;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.normal img, .EasyDNNSkin_NewsOne .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.normal img, .EasyDNNSkin_BlogTwo .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.normal img, .EasyDNNSkin_BlogOne .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.normal img {
    width: 100%;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons, .EasyDNNSkin_NewsOne .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons, .EasyDNNSkin_BlogTwo .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons, .EasyDNNSkin_BlogOne .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons {
    padding: 5px 0 0 0;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .social-networks, .EasyDNNSkin_NewsOne .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .social-networks, .EasyDNNSkin_BlogTwo .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .social-networks, .EasyDNNSkin_BlogOne .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .social-networks {
    margin-top: 10px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button, .EasyDNNSkin_NewsOne .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button, .EasyDNNSkin_BlogTwo .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button, .EasyDNNSkin_BlogOne .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button {
    float: none;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsOne.eds_subCollection_news .articles_row .article.in_list.box.normal:first-child, .EasyDNNSkin_NewsOne .eds_news_NewsOne.eds_subCollection_news .articles_row .article.in_list.box.normal:first-child, .EasyDNNSkin_BlogTwo .eds_news_NewsOne.eds_subCollection_news .articles_row .article.in_list.box.normal:first-child, .EasyDNNSkin_BlogOne .eds_news_NewsOne.eds_subCollection_news .articles_row .article.in_list.box.normal:first-child {
    max-width: 98%;
    margin: 0 0 15px 1%;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsOne.eds_subCollection_news .articles_row .article.in_list.box.normal:first-child img, .EasyDNNSkin_NewsOne .eds_news_NewsOne.eds_subCollection_news .articles_row .article.in_list.box.normal:first-child img, .EasyDNNSkin_BlogTwo .eds_news_NewsOne.eds_subCollection_news .articles_row .article.in_list.box.normal:first-child img, .EasyDNNSkin_BlogOne .eds_news_NewsOne.eds_subCollection_news .articles_row .article.in_list.box.normal:first-child img {
    width: 100%;
  }
  .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.big, .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.normal {
    max-width: 100%;
    float: none;
    margin: 20px 0 0;
  }
  .eds_news_NewsOne.eds_subCollection_news .articles_row .article.in_list.box.normal:first-child {
    max-width: 100%;
  }
}


/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0");src:url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format('embedded-opentype'),url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0") format('woff2'),url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0") format('woff'),url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0") format('truetype'),url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}

@import url("/DesktopModules/EasyDNNNews/static/font-awesome/css/font-awesome.min.css");
.eds_news_BlogOne * {
  box-sizing: content-box;
}
.eds_news_BlogOne .mejs__container {
  width: 100%;
  height: 40px;
}
@media (max-width: 576px) {
  .eds_news_BlogOne .mejs__container .mejs__time {
    display: none;
  }
}
.eds_news_BlogOne .mejs__container * {
  box-sizing: border-box;
}
.eds_news_BlogOne .mejs__container .mejs__button > button,
.eds_news_BlogOne .mejs__container .mejs__time {
  color: #fff;
}
.eds_news_BlogOne .mejs__container .mejs__time {
  height: 1.6rem;
}
.eds_news_BlogOne h1.edn_module_title {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/gradient_title_bg.png") repeat-x #797979;
  margin: 0 0 5px;
  padding: 0;
  border: 0;
  border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
}
.eds_news_BlogOne h1.edn_module_title.no_margin {
  margin: 0;
}
.eds_news_BlogOne h1.edn_module_title span {
  display: block;
  font: 14px Arial;
  line-height: 18px;
  font-weight: bold;
  color: #fff;
  margin: 0;
  padding: 2px 10px 3px;
  min-height: 18px;
  text-shadow: 0 -1px 0 #6C6C6C;
}
.eds_news_BlogOne .publish_date {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  text-align: right;
  font-family: "Arial";
}
.eds_news_BlogOne .publish_date.text_left {
  text-align: left;
}
.eds_news_BlogOne .bread_crumbs {
  text-align: left;
  margin: 0 0 10px;
  color: #363636;
  font: 11px Verdana, Geneva, sans-serif;
  text-transform: uppercase;
}
.eds_news_BlogOne .bread_crumbs a {
  color: #363636;
  font: 11px Verdana, Geneva, sans-serif;
  text-transform: uppercase;
}
.eds_news_BlogOne .bread_crumbs a:hover {
  text-decoration: underline;
}
.eds_news_BlogOne a.open_article_btn {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  padding: 4px 13px 5px 20px;
  font-size: 12px;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/icons/more.png") no-repeat 5px 5px #4d4d4d;
  font-family: Verdana, Geneva, sans-serif;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
.eds_news_BlogOne a.open_article_btn:hover {
  text-decoration: underline;
  color: #fff;
}
.eds_news_BlogOne a.open_article_btn.align_left {
  left: 0;
  right: auto;
}
.eds_news_BlogOne .eds_openModal {
  cursor: pointer;
}
.eds_news_BlogOne .date_box {
  border: 0;
  background: #545252;
  width: 39px;
  margin: 0;
  position: absolute;
  left: -55px;
  top: 5px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  box-shadow: 1px 1px 4px rgba(50, 50, 50, 0.75);
}
.eds_news_BlogOne .date_box p {
  color: #fff;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  padding: 0;
  line-height: 1;
}
.eds_news_BlogOne .date_box p.day {
  font-size: 13px;
  font-weight: bold;
  margin: 4px 0 0;
}
.eds_news_BlogOne .date_box p.month {
  font-size: 9px;
  text-transform: uppercase;
  margin: 4px 0 0;
}
.eds_news_BlogOne .date_box p.year {
  font-size: 10px;
  background: #dbdbdb;
  color: #111;
  padding: 2px 0;
  margin: 3px 0 0;
  border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
}
.eds_news_BlogOne div.EDN_article_rateit {
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.eds_news_BlogOne div.EDN_article_rateit.rateit div.rateit-selected {
  position: absolute;
}
.eds_news_BlogOne div.EDN_article_rateit div.rateit-range {
  position: relative;
  display: inline-block;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/icons/star.gif");
  height: 16px;
}
.eds_news_BlogOne div.EDN_article_rateit div.rateit-hover {
  position: absolute;
}
.eds_news_BlogOne div.EDN_article_rateit div.rateit-hover {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/icons/star.gif") left -32px;
}
.eds_news_BlogOne div.EDN_article_rateit div.rateit-hover-rtl {
  background-position: right -32px;
}
.eds_news_BlogOne div.EDN_article_rateit div.rateit-selected {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/icons/star.gif") left -16px;
}
.eds_news_BlogOne div.EDN_article_rateit div.rateit-selected-rtl {
  background-position: right -16px;
}
.eds_news_BlogOne .easydnngallery {
  margin: 20px 0 0;
}
.eds_news_BlogOne .easydnngallery .gallery_pagination {
  margin-left: auto;
  margin-right: auto;
}
.eds_news_BlogOne .easydnngallery .lightbox_gallery,
.eds_news_BlogOne .easydnngallery .video_gallery,
.eds_news_BlogOne .easydnngallery .audio_gallery {
  margin-left: auto;
  margin-right: auto;
}
.eds_news_BlogOne .admin_action, .eds_news_BlogOne .edn_article_action {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-family: Verdana, Geneva, sans-serif;
  color: #ED2323;
  background: no-repeat 0 2px;
}
.eds_news_BlogOne .admin_action.edit, .eds_news_BlogOne .edn_article_action.edit {
  padding-left: 16px;
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/icons/pencil_small.png");
}
.eds_news_BlogOne .admin_action:hover, .eds_news_BlogOne .edn_article_action:hover {
  color: #CD0000;
}
.eds_news_BlogOne .clear_content {
  clear: both;
  margin: 0;
  padding: 0;
  border: 0;
}
.eds_news_BlogOne .article {
  padding: 0 0 35px;
  position: relative;
}
.eds_news_BlogOne .article .search_highlight {
  background: #FFFDB7;
}
.eds_news_BlogOne .article .link_to_original_RSS_article {
  margin: 15px 0 0;
  padding: 0;
  border: 0;
  font: 12px Verdana, Geneva, sans-serif;
  line-height: 15px;
  clear: both;
}
.eds_news_BlogOne .article .link_to_original_RSS_article a {
  font: 12px Verdana, Geneva, sans-serif;
  font-weight: bold;
}
.eds_news_BlogOne .article h1 {
  font-size: 22px;
  font-family: Verdana, Geneva, sans-serif;
  color: #000;
  line-height: 26px;
  margin: 0;
  padding: 0;
}
.eds_news_BlogOne .article h1 a {
  font-size: 22px;
  font-family: Verdana, Geneva, sans-serif;
  color: #000;
  font-weight: normal;
  margin: 0;
  padding: 0;
}
.eds_news_BlogOne .article h2 {
  font-size: 16px;
  margin: 3px 0 0;
  color: #000;
  font-family: Verdana, Geneva, sans-serif;
  line-height: 22px;
  font-weight: normal;
}
.eds_news_BlogOne .article h2 a {
  font-size: 14px;
  line-height: 18px;
  font-family: Verdana, Geneva, sans-serif;
  color: #000;
  font-weight: normal;
  margin: 0;
  padding: 0;
}
.eds_news_BlogOne .article .article_documents,
.eds_news_BlogOne .article .related_articles,
.eds_news_BlogOne .article .edn_article_links {
  clear: both;
  padding: 7px 20px 12px;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/grey_linear_gradient.png") repeat-x #f5f5f5;
  margin: 10px 0 0;
  border: 1px solid #fff;
}
.eds_news_BlogOne .article .article_documents > h2,
.eds_news_BlogOne .article .related_articles > h2,
.eds_news_BlogOne .article .edn_article_links > h2 {
  margin: 0 0 3px;
  font-size: 15px;
  font-weight: bold;
  color: #363636;
  font-family: Arial, Helvetica, sans-serif;
}
.eds_news_BlogOne .article .article_documents ul,
.eds_news_BlogOne .article .related_articles ul,
.eds_news_BlogOne .article .edn_article_links ul {
  margin: 5px 0 0 17px;
  padding: 0;
}
.eds_news_BlogOne .article .article_documents ul li,
.eds_news_BlogOne .article .related_articles ul li,
.eds_news_BlogOne .article .edn_article_links ul li {
  list-style: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/icons/grey_arrows_right.png") outside;
  padding: 3px 0 0;
}
.eds_news_BlogOne .article .article_documents ul li a,
.eds_news_BlogOne .article .related_articles ul li a,
.eds_news_BlogOne .article .edn_article_links ul li a {
  color: #000;
  font-size: 12px;
  line-height: 16px;
  font-family: Arial;
}
.eds_news_BlogOne .article .article_documents ul li span,
.eds_news_BlogOne .article .related_articles ul li span,
.eds_news_BlogOne .article .edn_article_links ul li span {
  display: block;
  font-size: 11px;
  font-style: italic;
  color: #666666;
  font-family: Arial;
  line-height: 19px;
}
.eds_news_BlogOne .article .article_documents ul li {
  list-style: none;
}
.eds_news_BlogOne .article .article_documents ul li .document_icon {
  max-height: 12px;
  max-width: 12px;
  margin: 0 4px 0 0;
}
.eds_news_BlogOne .article.standalone .in_article_image.left {
  margin-right: 5px;
}
.eds_news_BlogOne .article.sidebar_box {
  margin: 1px 0 0;
  background: #dcdcdc;
  padding: 4px;
  overflow: hidden;
}
.eds_news_BlogOne .article.sidebar_box.odd {
  background: #ccc;
}
.eds_news_BlogOne .article.sidebar_box .in_article_image {
  margin-top: 1px;
  margin-left: 1px;
  margin-right: 3px;
  margin-bottom: 2px;
}
.eds_news_BlogOne .article.sidebar_box h1,
.eds_news_BlogOne .article.sidebar_box h1 a {
  font-size: 11px;
  line-height: 16px;
}
.eds_news_BlogOne .article .author_box {
  margin: 0 0 7px;
}
.eds_news_BlogOne .article .author_box.top_margin {
  margin-top: 5px;
}
.eds_news_BlogOne .article .author_box span {
  text-transform: uppercase;
  padding: 1px 6px 2px 20px;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/icons/person.png") no-repeat 4px 3px #878787;
  color: #fff;
  position: relative;
  top: 1px;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 11px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
.eds_news_BlogOne .article .author_box a {
  color: #fff;
  font-size: 11px;
}
.eds_news_BlogOne .article .content {
  font-size: 14px;
  line-height: 19px;
  margin: 8px 0 0;
  font-family: Verdana, Geneva, sans-serif;
  color: #363636;
}
.eds_news_BlogOne .article .content p {
  margin: 0 0 7px;
  font-size: 14px;
  line-height: 20px;
  font-family: Verdana, Geneva, sans-serif;
  color: #363636;
}
.eds_news_BlogOne .article .stats {
  margin: 11px 0 0;
  clear: both;
}
.eds_news_BlogOne .article .stats > span {
  display: inline-block;
  vertical-align: baseline;
  margin: 0 15px 0 0;
  color: #363636;
  font-size: 11px;
  font-family: Verdana, Geneva, sans-serif;
}
.eds_news_BlogOne .article .stats > span.comments {
  padding: 0 0 2px 19px;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/icons/comment.png") no-repeat 0 1px;
}
.eds_news_BlogOne .article .details {
  margin: 11px 0 0;
  font-size: 12px;
  overflow: hidden;
  position: relative;
  min-height: 21px;
}
.eds_news_BlogOne .article .details p {
  margin: 6px 0 0;
  width: 70%;
  overflow: hidden;
  padding: 0;
}
.eds_news_BlogOne .article .details p a {
  color: #fff;
}
.eds_news_BlogOne .article .details p span {
  text-transform: uppercase;
  font-size: 11px;
  padding: 3px 6px 4px 23px;
  color: #fff;
  font-family: Verdana, Geneva, sans-serif;
  display: inline-block;
  line-height: 1;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
.eds_news_BlogOne .article .details p.categories span {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/icons/category.png") no-repeat 3px 3px #878787;
}
.eds_news_BlogOne .article .details p.tags span {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/icons/tag.png") no-repeat 3px 3px #878787;
}
.eds_news_BlogOne .article .details p.author span {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/icons/person.png") no-repeat 4px 3px #878787;
}
.eds_news_BlogOne .article.standalone > h1 {
  font-size: 25px;
  line-height: 33px;
  font-weight: normal;
}
.eds_news_BlogOne .article.standalone > h2 {
  font-size: 16px;
  line-height: 21px;
}
.eds_news_BlogOne .article.standalone .content {
  margin: 12px 0 10px;
}
.eds_news_BlogOne .article.standalone .rate_article {
  margin: 0;
  color: #363636;
  font-size: 11px;
  font-family: Verdana, Geneva, sans-serif;
}
.eds_news_BlogOne .article.standalone .rate_article .article_rating {
  display: inline-block;
}
.eds_news_BlogOne .article.standalone .rate_article .article_rating .current_rating {
  margin: 0 5px 0 0;
}
.eds_news_BlogOne .article.standalone .article_pagination table td a,
.eds_news_BlogOne .article.standalone .article_pagination table td span {
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  display: inline-block;
  color: #000;
  padding: 1px 6px;
  margin: 0 3px 0 0;
  line-height: 16px;
  border: 1px solid #e4e4e4;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/pagination/page_bg.png") repeat-x #fff;
}
.eds_news_BlogOne .article.standalone .article_pagination table td span {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/pagination_active_page_bg.png") repeat-x #646363;
  border: 1px solid #626262;
  color: #fff;
}
.eds_news_BlogOne .article.standalone .event_date, .eds_news_BlogOne .article.standalone .event_location {
  margin: 10px 0;
  padding: 1px 0 2px 23px;
  display: block;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/icons/event_clock.png") no-repeat 0 0;
  overflow: hidden;
}
.eds_news_BlogOne .article.standalone .event_date .bold, .eds_news_BlogOne .article.standalone .event_location .bold {
  font-weight: bold;
}
.eds_news_BlogOne .article.standalone .event_date .export, .eds_news_BlogOne .article.standalone .event_location .export {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/icons/export_icalendar.png") no-repeat 0 0;
  margin: 0 0 0 8px;
  font: 11px Arial;
  line-height: 17px;
  text-decoration: none;
  color: #e9020b;
  padding: 0 0 0 20px;
  height: 17px;
  display: inline-block;
  position: relative;
  top: -1px;
}
.eds_news_BlogOne .article.standalone .event_date .export:hover, .eds_news_BlogOne .article.standalone .event_location .export:hover {
  text-decoration: underline;
}
.eds_news_BlogOne .article.standalone .event_location {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/icons/location_marker.png") no-repeat 7px 0;
}
.eds_news_BlogOne .article.standalone .edn_socialPrintWrapper {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 10px 0;
}
.eds_news_BlogOne .article.standalone .social_buttons {
  padding: 0;
  flex-grow: 1;
}
.eds_news_BlogOne .article.standalone .edn_printButton {
  background: #F5F4F4 url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/print.png") 4px 1px no-repeat;
  cursor: pointer;
  padding: 5px 5px 3px 25px;
  border-style: solid;
  border-width: 1px;
  border-color: #e2e2e2 #bfbfbf #bfbfbf #e2e2e2;
  border-radius: 3px;
  line-height: 0;
  font-size: 0;
  margin: 10px;
}
.eds_news_BlogOne .article.standalone .edn_printButton > span {
  color: #333;
  line-height: 1;
  font-family: Arial;
  font-size: 10px;
  font-weight: bold;
  text-shadow: 0 0 1px #fff;
}
.eds_news_BlogOne .article.standalone .edn_printButton:hover {
  background-color: #eee;
}
.eds_news_BlogOne .article.standalone .edn_article_map {
  border: 1px solid #ccc;
  margin-top: 20px;
  margin-bottom: 20px;
}
.eds_news_BlogOne .article.standalone .edn_article_map img {
  max-width: none;
}
.eds_news_BlogOne .article.standalone .article_comments {
  margin: 25px 0 20px;
}
.eds_news_BlogOne .article.standalone .article_comments .submit {
  display: inline-block;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/grey_gradient_button_right.png") no-repeat right 0;
  height: 33px;
  border: 0;
  text-decoration: none;
  padding: 0 8px 0 0;
}
.eds_news_BlogOne .article.standalone .article_comments .submit span {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/grey_gradient_button_left.png") no-repeat;
  display: inline-block;
  text-decoration: none;
  font: 14px Arial;
  font-weight: bold;
  padding: 7px 6px 0 14px;
  color: #444;
  height: 26px;
}
.eds_news_BlogOne .article.standalone .article_comments .submit:hover {
  background-position: right -33px;
}
.eds_news_BlogOne .article.standalone .article_comments .submit:hover span {
  background-position: 0 -33px;
  color: #000;
}
.eds_news_BlogOne .article.standalone .article_comments .add_comment h3 {
  font: 18px Arial;
  color: #363636;
  margin: 15px 0 0;
}
.eds_news_BlogOne .article.standalone .article_comments .add_comment .add_article_box {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/large_grey_to_white_gradient.png") repeat-x #f5f5f5;
  border: 1px solid #fff;
  margin: 2px 0 0;
  padding: 25px;
}
.eds_news_BlogOne .article.standalone .article_comments .add_comment .add_article_box .comment_info {
  margin: 0 0 20px;
  text-align: center;
  padding: 0 30px;
}
.eds_news_BlogOne .article.standalone .article_comments .add_comment .add_article_box .comment_info span {
  font: 12px Arial;
}
.eds_news_BlogOne .article.standalone .article_comments .add_comment .add_article_box table {
  margin: 0;
  padding: 0;
  width: 100%;
}
.eds_news_BlogOne .article.standalone .article_comments .add_comment .add_article_box table td.left {
  font: 14px Arial;
  text-transform: uppercase;
  width: 20%;
  padding: 7px 0 0;
  color: #363636;
}
.eds_news_BlogOne .article.standalone .article_comments .add_comment .add_article_box table td.right {
  padding: 0 0 20px;
  width: 80%;
}
.eds_news_BlogOne .article.standalone .article_comments .add_comment .add_article_box table td.right.bottom {
  padding: 0;
}
.eds_news_BlogOne .article.standalone .article_comments .add_comment .add_article_box table td.right input.text {
  font: 16px Arial;
  border: 1px solid #bbbaba;
  padding: 5px 5px 4px;
  background: #fff;
  width: 70%;
}
.eds_news_BlogOne .article.standalone .article_comments .add_comment .add_article_box table td.right textarea {
  font: 12px Arial;
  border: 1px solid #bfbfbf;
  padding: 5px;
  background: #fff;
  width: 90%;
  height: 100px;
}
.eds_news_BlogOne .article.standalone .article_comments .num_of_comment {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/comment_count_bg.png") repeat-x #f5f5f5;
  border: 1px solid #fff;
  padding: 3px 20px 5px;
  font: 15px Arial;
}
.eds_news_BlogOne .article.standalone .article_comments .num_of_comment a {
  font: 15px Arial;
  font-weight: bold;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list {
  margin: 15px 0 0;
  display: block;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list .comment {
  overflow: hidden;
  margin-left: 80px;
  padding: 0;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list .comment .votes {
  margin-top: 10px;
  width: 7%;
  float: left;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list .comment .votes input {
  position: relative;
  top: 5px;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list .comment .votes span {
  font-size: 12px;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list .comment .right_side {
  width: 93%;
  overflow: hidden;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list .comment .right_side .comment_details {
  width: 15%;
  text-align: center;
  float: left;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list .comment .right_side .comment_details .user_avatar {
  max-height: 60px;
  max-width: 60px;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list .comment .right_side .comment_details .author {
  font-size: 12px;
  margin: 1px 0 0;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list .comment .right_side .comment_details .date_time {
  font-size: 10px;
  color: #9A9A9A;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list .comment .right_side .comment_details .votes {
  margin: 1px 0 0;
  font-size: 12px;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list .comment .right_side .comment_details .votes span {
  margin: 0 8px 0 0;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list .comment .right_side .comment_details .votes span a {
  position: relative;
  top: 5px;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list .comment .right_side .content_container {
  float: left;
  width: 85%;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list .comment .right_side .content_container .arrow {
  float: left;
  width: 26px;
  height: 31px;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/comment_pointer.png") no-repeat transparent;
  position: relative;
  left: 1px;
  top: 48px;
  z-index: 1;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list .comment .right_side .content_container .content {
  margin: 0 0 0 25px;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/comment_gradient_bg.png") repeat-x #f5f5f5;
  border: 1px solid #fff;
  min-height: 100px;
  padding: 10px 20px;
  font: 12px Verdana, Geneva, sans-serif;
  color: #363636;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list .comment .right_side .content_container .content p {
  margin: 0 0 5px;
  padding: 0;
  background: none;
  border: none;
  font: 12px Verdana, Geneva, sans-serif;
  color: #363636;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list .comment .right_side .actions {
  font-size: 10px;
  margin: 2px 0 3px;
  float: right;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list .comment .right_side .actions a {
  color: #9A9A9A;
  margin: 0 5px 0 0;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list .comment .right_side .actions a:hover {
  text-decoration: underline;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list .comment .edit_comment {
  margin: 15px 0 0;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list .comment .edit_comment textarea {
  font: 12px Arial;
  border: 1px solid #bfbfbf;
  padding: 5px;
  background: #fff;
  width: 80%;
  height: 100px;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list .comment .edit_comment .actions {
  float: right;
  width: 15%;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list .comment .edit_comment .actions a {
  display: inline-block;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/grey_gradient_button_right.png") no-repeat right 0;
  height: 33px;
  border: 0;
  text-decoration: none;
  padding: 0 8px 0 0;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list .comment .edit_comment .actions a span {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/grey_gradient_button_left.png") no-repeat;
  display: inline-block;
  text-decoration: none;
  font: 14px Arial;
  font-weight: bold;
  padding: 7px 6px 0 14px;
  color: #444;
  height: 26px;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list .comment .edit_comment .actions a:hover {
  background-position: right -33px;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list .comment .edit_comment .actions a:hover span {
  background-position: 0 -33px;
  color: #000;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list .comment.level1 {
  margin-left: 40px;
}
.eds_news_BlogOne .article.standalone .article_comments .comment_list .comment.level0, .eds_news_BlogOne .article.standalone .article_comments .comment_list .comment.level {
  margin-left: 0;
}
.eds_news_BlogOne .article.standalone .author_group_profile {
  font-family: Arial;
  vertical-align: baseline;
  line-height: 1.25em;
  margin: 10px 0 0;
  padding: 15px;
  border: 1px solid #fff;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/grey_linear_gradient.png") repeat-x #f5f5f5;
  overflow: hidden;
  position: relative;
}
.eds_news_BlogOne .article.standalone .author_group_profile .author_rss {
  display: block;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/rss_18-18.png") no-repeat;
  font-size: 0;
  line-height: 0;
  position: absolute;
  left: auto;
  right: 5px;
  top: 5px;
  height: 18px;
  width: 18px;
}
.eds_news_BlogOne .article.standalone .author_group_profile .author_rss span {
  display: none;
}
.eds_news_BlogOne .article.standalone .author_group_profile .author_rss:hover {
  background-position: -18px 0;
}
.eds_news_BlogOne .article.standalone .author_group_profile .profile_picture_container {
  float: left;
  font-size: 0;
  line-height: 0;
  margin: 0 15px 0 0;
  padding: 0;
  border: 0;
}
.eds_news_BlogOne .article.standalone .author_group_profile .profile_picture_container img {
  padding: 0;
  margin: 0;
  border: 1px solid #ccc;
  box-shadow: 1px 1px 2px 0 #DEDEDE;
}
.eds_news_BlogOne .article.standalone .author_group_profile .details_container h2 {
  padding: 0;
  border: 0;
  vertical-align: baseline;
  color: #555;
  font: 12px Arial;
  font-weight: bold;
  line-height: 15px;
  margin: 0 0 4px;
}
.eds_news_BlogOne .article.standalone .author_group_profile .details_container .short_info {
  margin: 0;
  padding: 0;
  border: 0;
  color: #6A6A6A;
  font: 12px Arial;
  line-height: 15px;
  text-shadow: 1px 1px #f1f1f1;
}
.eds_news_BlogOne .article.standalone .author_group_profile .profile_buttons {
  clear: both;
  padding: 5px 0 0 82px;
  overflow: hidden;
}
.eds_news_BlogOne .article.standalone .author_group_profile .profile_buttons a {
  text-decoration: none;
}
.eds_news_BlogOne .article.standalone .author_group_profile .profile_buttons .button {
  margin: 0 5px 0 0;
  float: left;
}
.eds_news_BlogOne .article.standalone .author_group_profile .profile_buttons .button.contact, .eds_news_BlogOne .article.standalone .author_group_profile .profile_buttons .button.full_bio {
  display: inline-block;
  background: no-repeat #ecebeb;
  border: 1px solid #fff;
  padding: 2px 5px 2px 20px;
  border-radius: 4px;
}
.eds_news_BlogOne .article.standalone .author_group_profile .profile_buttons .button.contact span, .eds_news_BlogOne .article.standalone .author_group_profile .profile_buttons .button.full_bio span {
  color: #636363;
  font: 12px Arial;
  line-height: 15px;
}
.eds_news_BlogOne .article.standalone .author_group_profile .profile_buttons .button.contact:hover span, .eds_news_BlogOne .article.standalone .author_group_profile .profile_buttons .button.full_bio:hover span {
  color: #000;
  text-decoration: none;
}
.eds_news_BlogOne .article.standalone .author_group_profile .profile_buttons .button.contact {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/contact_letter.png");
  background-position: 3px 4px;
}
.eds_news_BlogOne .article.standalone .author_group_profile .profile_buttons .button.full_bio {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/profile.png");
  background-position: 3px 3px;
}
.eds_news_BlogOne .article.standalone .author_group_profile .profile_buttons .button.social {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: no-repeat;
  position: relative;
}
.eds_news_BlogOne .article.standalone .author_group_profile .profile_buttons .button.social span {
  display: none;
}
.eds_news_BlogOne .article.standalone .author_group_profile .profile_buttons .button.social:hover {
  background-position: -22px 0;
}
.eds_news_BlogOne .article.standalone .author_group_profile .profile_buttons .button.social.facebook {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/facebook_button.png");
}
.eds_news_BlogOne .article.standalone .author_group_profile .profile_buttons .button.social.linked_in {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/linked_in_button.png");
}
.eds_news_BlogOne .article.standalone .author_group_profile .profile_buttons .button.social.twitter {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/twitter_button.png");
}
.eds_news_BlogOne .article.standalone .author_group_profile .profile_buttons .button.social.google_plus {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/google_plus_button.png");
}
.eds_news_BlogOne .article.standalone .author_group_profile .profile_buttons .button.social.youtube {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/yt_button.png");
}
.eds_news_BlogOne .article.standalone .author_group_profile .profile_buttons .button.social.instagram {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/inst_button.png");
}
.eds_news_BlogOne .article.standalone .author_group_profile .profile_buttons .button.social.website {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/link_button.png");
}
.eds_news_BlogOne.eds_subCollection_news .article_rss_wrapper {
  overflow: hidden;
  clear: both;
  margin: 0 0 10px;
}
.eds_news_BlogOne.eds_subCollection_news .article_rss_wrapper > a {
  float: right;
  font: 11px Arial;
  line-height: 13px;
  color: #444;
}
.eds_news_BlogOne.eds_subCollection_news .article_rss_wrapper > a > span {
  position: relative;
  top: 2px;
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/icons/rss_orange.png") 0 0;
  padding: 0;
  margin: 0 2px 0 0;
  border: 0;
}
.eds_news_BlogOne.eds_subCollection_news .article_rss_wrapper > a:hover {
  color: #000;
  text-decoration: none;
}
.eds_news_BlogOne.eds_subCollection_news .article_rss_wrapper > a:hover > span {
  background-position: 0 14px;
}
.eds_news_BlogOne.eds_subCollection_news .admin_action {
  font: 14px Arial;
  color: #ff0101;
  text-decoration: underline;
  padding: 0;
  margin: 0 10px 0 0;
  background: no-repeat 0 2px;
}
.eds_news_BlogOne.eds_subCollection_news .admin_action:hover {
  text-decoration: underline;
  color: #cd0000;
}
.eds_news_BlogOne.eds_subCollection_news .admin_action.publish_article {
  padding-left: 17px;
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/icons/check_small.png");
}
.eds_news_BlogOne.eds_subCollection_news .admin_action.edit {
  padding-left: 16px;
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/icons/pencil_small.png");
}
.eds_news_BlogOne.eds_subCollection_news p {
  line-height: 1;
  padding: 0;
  margin-top: 0px;
}
.eds_news_BlogOne.eds_subCollection_news .in_article_image {
  overflow: hidden;
  max-width: 100%;
}
.eds_news_BlogOne.eds_subCollection_news .in_article_image img {
  max-width: 100%;
  height: auto;
}
.eds_news_BlogOne.eds_subCollection_news .in_article_image .image_wrapper {
  float: left;
  max-width: 100%;
}
.eds_news_BlogOne.eds_subCollection_news .in_article_image .image_wrapper.no_text {
  margin: 0 5px 5px 0;
  position: relative;
  display: block;
  position: relative;
  font-size: 0;
  line-height: 0;
  box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.18);
}
.eds_news_BlogOne.eds_subCollection_news .in_article_image .image_wrapper img {
  border: 1px solid #cccccc !important;
  padding: 5px;
  background-color: #ffffff;
  float: left;
  visibility: visible;
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}
.eds_news_BlogOne.eds_subCollection_news .in_article_image p.image_title,
.eds_news_BlogOne.eds_subCollection_news .in_article_image .image_description {
  clear: both;
  font: 11px Verdana, Geneva, sans-serif;
  color: #252525;
}
.eds_news_BlogOne.eds_subCollection_news .in_article_image p.image_title {
  font-weight: bold;
  margin: 0 0 2px 5px;
}
.eds_news_BlogOne.eds_subCollection_news .in_article_image .image_description {
  font-style: italic;
  font-size: 10px;
  margin: 0 0 0 5px;
}
.eds_news_BlogOne.eds_subCollection_news .in_article_image.left {
  float: left;
  margin-right: 20px;
}
.eds_news_BlogOne.eds_subCollection_news .in_article_image.right {
  float: right;
  margin-left: 20px;
}
.eds_news_BlogOne.eds_subCollection_news .in_article_image.clear {
  clear: both;
  width: auto;
  height: auto;
}
.eds_news_BlogOne.eds_subCollection_news .in_article_image.no_left_margin {
  margin-left: 0;
}
.eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article {
  margin: 0 0 20px;
}
.eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article .image_wrapper {
  position: relative;
}
.eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article .image_wrapper .article_container {
  float: left;
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 6px;
  padding: 17px 20px 20px;
  width: 44%;
  height: auto;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/light_transparent_black.png") repeat;
  overflow: hidden;
}
.eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article .image_wrapper .article_container .overflow_hider {
  overflow: hidden;
  height: 100%;
}
.eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article .image_wrapper .article_container h1,
.eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article .image_wrapper .article_container h1 a,
.eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article .image_wrapper .article_container .content {
  font: Verdana, Geneva, sans-serif;
  color: #fff;
  margin: 0;
  padding: 0;
  border: 0;
}
.eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article .image_wrapper .article_container h1,
.eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article .image_wrapper .article_container h1 a {
  font-size: 24px;
  line-height: 29px;
  font-family: Verdana, Geneva, sans-serif;
}
.eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article .image_wrapper .article_container h1 {
  margin: 0 0 5px 0;
  font-weight: bold;
}
.eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article .image_wrapper .article_container .content {
  font-size: 14px;
  line-height: 18px;
  font-family: Verdana, Geneva, sans-serif;
}
.eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article .image_wrapper .open_article_btn {
  position: absolute;
  top: 89%;
  right: 22px;
  left: auto;
  height: 14px;
}
.eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article .image_wrapper .date_box {
  position: static;
  float: left;
  margin: 6px 5px 5px 0;
}
.eds_news_BlogOne.eds_subCollection_news .in_article_image .eds_mediaWrapper {
  max-width: 100%;
  position: relative;
}
.eds_news_BlogOne.eds_subCollection_news .in_article_image .eds_mediaWrapper .edn_galleryLink {
  right: 0;
  bottom: 0;
}
.eds_news_BlogOne.eds_subCollection_news .in_article_image .edn_galleryLink {
  position: absolute;
  display: inline-block;
  bottom: 12px;
  right: 9px;
  left: auto;
  top: auto;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 100px 0 0 0;
  text-decoration: none;
  text-align: center;
  line-height: 0;
  font-size: 0;
  text-indent: 0;
  width: 100px;
  height: 100px;
}
.eds_news_BlogOne.eds_subCollection_news .in_article_image .edn_galleryLink::before {
  margin-bottom: 10px;
  width: 32px;
  height: 32px;
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  margin: -15px 0 0 -7px;
  opacity: 0.3;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/photo-24-32.png") no-repeat 0 0;
  transition: all 300ms linear;
  content: "";
}
.eds_news_BlogOne.eds_subCollection_news .in_article_image .edn_galleryLink > span {
  display: inline-block;
  color: #fff;
  line-height: 1;
  font-size: 12px;
  position: absolute;
  bottom: 10px;
  left: 7px;
  right: 5px;
}
.eds_news_BlogOne.eds_subCollection_news .in_article_image .edn_galleryLink:hover::before {
  opacity: 0.8;
}
.eds_news_BlogOne.eds_subCollection_news .category_info h1 {
  font-size: 22px;
  font-family: Verdana, Geneva, sans-serif;
  color: #000;
  line-height: 26px;
  margin: 0 0 10px;
  padding: 0;
}
.eds_news_BlogOne.eds_subCollection_news .category_info .description {
  font-size: 14px;
  margin: 3px 0 10px;
  color: #000;
  font-family: Verdana, Geneva, sans-serif;
  line-height: 18px;
  font-weight: normal;
  overflow: hidden;
}
.eds_news_BlogOne.eds_subCollection_news .category_info .description p {
  font-size: 14px;
  line-height: 18px;
  margin: 0 0 10px;
}
.eds_news_BlogOne.eds_subCollection_news .child_categories {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.eds_news_BlogOne.eds_subCollection_news .child_categories .in_article_image {
  margin: 0 20px 20px 0;
}
.eds_news_BlogOne.eds_subCollection_news .child_categories .in_article_image .image_title {
  text-align: center;
  margin-right: 9px;
}
.eds_news_BlogOne.eds_subCollection_news .child_categories .in_article_image .image_title a {
  color: #000;
}
.eds_news_BlogOne.eds_subCollection_news .child_categories .in_article_image .image_title a:hover {
  text-decoration: underline;
}
.eds_news_BlogOne.eds_subCollection_news .article_pager {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/pagination/bg.png") repeat-x #ebebeb;
  border: 1px solid #e4e4e4;
  padding: 4px;
  margin: 0 0 20px;
  text-align: center;
}
.eds_news_BlogOne.eds_subCollection_news .article_pager a {
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  display: inline-block;
}
.eds_news_BlogOne.eds_subCollection_news .article_pager a.page {
  color: #000;
  padding: 1px 6px;
  margin: 0 3px 0 0;
  line-height: 16px;
  border: 1px solid #e4e4e4;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/pagination/page_bg.png") repeat-x #fff;
}
.eds_news_BlogOne.eds_subCollection_news .article_pager a.page.active {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/pagination_active_page_bg.png") repeat-x #646363;
  border: 1px solid #626262;
  color: #fff;
}
.eds_news_BlogOne.eds_subCollection_news .article_pager a.first, .eds_news_BlogOne.eds_subCollection_news .article_pager a.prev, .eds_news_BlogOne.eds_subCollection_news .article_pager a.next, .eds_news_BlogOne.eds_subCollection_news .article_pager a.last {
  text-transform: lowercase;
  color: #3e3e3e;
  margin: 0 5px 0 0;
}
.eds_news_BlogOne.eds_subCollection_news .article_pager a.first:hover, .eds_news_BlogOne.eds_subCollection_news .article_pager a.prev:hover, .eds_news_BlogOne.eds_subCollection_news .article_pager a.next:hover, .eds_news_BlogOne.eds_subCollection_news .article_pager a.last:hover {
  color: #707070;
}
.eds_news_BlogOne.eds_subCollection_news .article_pager a .prev {
  margin: 0 2px 0 0;
}
.eds_news_BlogOne.eds_subCollection_news .article_list {
  padding: 20px 0 0;
}
.eds_news_BlogOne.eds_subCollection_news .EDN_article_pager {
  background-color: #99CCFF;
}
.eds_news_BlogOne.eds_subCollection_news .EDN_article_pager .firstButton, .eds_news_BlogOne.eds_subCollection_news .EDN_article_pager .lastButton {
  background-color: #009900;
  margin: 3px;
  padding: 3px;
}
.eds_news_BlogOne.eds_subCollection_news .EDN_article_pager .nextButton, .eds_news_BlogOne.eds_subCollection_news .EDN_article_pager .previoustButton {
  background-color: #99FF33;
  margin: 3px;
  padding: 3px;
}
.eds_news_BlogOne.eds_subCollection_news .EDN_article_pager .activepager {
  background-color: #FFFF00;
  margin: 3px;
  padding: 3px;
}
.eds_news_BlogOne.eds_subCollection_news .EDN_article_pager .pager {
  background-color: #FFFFCC;
  margin: 3px;
  padding: 3px;
}
.eds_news_BlogOne.eds_subCollection_news .edNews_loadMoreTriggerWrapper {
  text-align: center;
  margin: 0 0 20px;
}
.eds_news_BlogOne.eds_subCollection_news .edNews_loadMoreTriggerWrapper * {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 0;
  line-height: 0;
}
.eds_news_BlogOne.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger {
  display: inline-block;
  margin: 0 auto;
  padding: 10px 20px;
  background: #ededed url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/trigger-bg.png") 0 0 repeat-x;
  cursor: pointer;
  border: solid 1px #fff;
  transition: background 200ms ease;
  position: relative;
  overflow: hidden;
  line-height: 1;
  box-shadow: none;
  text-decoration: none;
}
.eds_news_BlogOne.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger .actionTextContainer span {
  font: 14px/1.3 Verdana, Geneva, sans-serif;
  color: #a19e9e;
  text-shadow: 1px 1px 0 #fff;
  transition: color 200ms ease;
}
.eds_news_BlogOne.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger .loadingOverlay {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
  display: block;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/loadingArticles.gif") center center no-repeat #dadada;
  opacity: 0;
  transition: opacity 500ms ease;
}
.eds_news_BlogOne.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger .loadingOverlay > span {
  display: none;
}
.eds_news_BlogOne.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger:hover {
  background-color: #dadada;
}
.eds_news_BlogOne.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger:hover > span.actionTextContainer span {
  color: #53555e;
}
.eds_news_BlogOne.eds_subCollection_news .edNews_loadMoreTriggerWrapper.loading .trigger .loadingOverlay {
  top: 0;
  opacity: 1;
}
.eds_news_BlogOne.eds_subCollection_news .edNews_loadMoreTriggerWrapper.hide {
  display: none;
}
.eds_news_BlogOne.eds_subCollection_news .edn_article_gallery {
  margin: 20px 0 0;
}
.eds_news_BlogOne.eds_subCollection_news .edn_article_gallery ul {
  margin: 0;
  padding: 0;
  list-style: outside none;
  overflow: hidden;
}
.eds_news_BlogOne.eds_subCollection_news .edn_article_gallery ul li {
  list-style: outside none;
  margin: 0 10px 10px 0;
  float: left;
}
.eds_news_BlogOne.eds_subCollection_news .edn_article_gallery ul li a {
  line-height: 0;
  font-size: 0;
  display: block;
  border: 1px solid #cbcbcb;
  padding: 1px;
}
.eds_news_BlogOne.eds_subCollection_news .edn_article_gallery ul li a:hover {
  border-color: #9d9c9c;
}
.eds_news_BlogOne.eds_subCollection_news .article.multi_layout {
  padding: 0;
}
.eds_news_BlogOne.eds_subCollection_news .article.multi_layout h1.title a {
  line-height: 27px;
}
.eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn {
  margin: 0;
  width: 48%;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn {
    width: 100%;
    float: none !important;
  }
}
.eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn::after {
  content: "";
  width: 100%;
  display: table;
}
.eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn.left {
  float: left;
  clear: left;
}
.eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn.right {
  float: right;
}
.eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn .in_article_image .image_wrapper {
  margin-right: 20px;
}
.eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn.big {
  margin-bottom: 20px;
}
.eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn.big .in_article_image {
  overflow: visible;
}
.eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn.big .date_box {
  float: left;
  position: static;
  margin: 7px 5px 0 0;
}
.eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn.big.edn_articleWrapper {
  margin: 0 10px 10px;
}
.eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn.small {
  margin-bottom: 10px;
}
.eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn.small .in_article_image {
  margin: 0 5px 5px 0;
}
.eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn.small h1 {
  margin: 0 0 7px;
  line-height: 15px;
  font-size: 12px;
}
.eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn.small h1 a {
  font-size: 12px;
  line-height: 15px;
  font-weight: bold;
}
.eds_news_BlogOne.eds_subCollection_news .article.multi_layout.single_collumn {
  clear: both;
  overflow: hidden;
  margin: 0 0 15px;
}
.eds_news_BlogOne.eds_subCollection_news .article.multi_layout.single_collumn .in_article_image {
  margin: 0 5px 5px 0;
}
.eds_news_BlogOne.eds_subCollection_news .article.multi_layout.single_collumn h1 {
  margin: 0 0 7px;
}
.eds_news_BlogOne.eds_subCollection_news .article.multi_layout.single_collumn h2 {
  margin: 0 0 5px;
}
.eds_news_BlogOne.eds_subCollection_news .article.multi_layout.in_boxes {
  padding: 10px;
}
.eds_news_BlogOne.eds_subCollection_news .article.multi_layout.in_boxes .in_article_image .image_wrapper {
  margin-right: 0;
}
.eds_news_BlogOne.eds_subCollection_news .EDN_cf_all_fields_container {
  margin: 15px 0;
  border-radius: 6px;
}
.eds_news_BlogOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr:nth-child(even) td {
  background-color: #ebebeb;
}
.eds_news_BlogOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td {
  padding: 4px 10px;
  background-color: #e0dede;
  vertical-align: top;
}
.eds_news_BlogOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td span,
.eds_news_BlogOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td ul li {
  line-height: 1.1;
}
.eds_news_BlogOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_cf_all_fields_table_label {
  text-align: right;
}
.eds_news_BlogOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_cf_all_fields_table_label > span {
  font-weight: bold;
  white-space: nowrap;
}
.eds_news_BlogOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkboxList {
  margin: 0;
  padding: 0;
}
.eds_news_BlogOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkboxList > li {
  list-style-type: none;
  padding: 0 0 4px 0;
}
.eds_news_BlogOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkboxList > li .EDN_cf_checkbox_icon {
  margin-top: 0;
}
.eds_news_BlogOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_label {
  line-height: 16px;
}
.eds_news_BlogOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_icon {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/images/articleDetailsCustomFields/checkboxBackground/predefined/cf-checkbox.png") no-repeat 0 0;
  float: left;
  width: 15px;
  height: 15px;
  margin: 3px 4px 0 0;
}
.eds_news_BlogOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_checked .EDN_cf_checkbox_icon {
  background-position: 0 -22px;
}
.eds_news_BlogOne.eds_subCollection_news .edn_registerEventDetails {
  margin: 0;
  padding: 0 0 0 20px;
  color: #3f3f3f;
  font: 12px Arial;
  font-weight: normal;
  line-height: 15px;
  float: left;
}
.eds_news_BlogOne.eds_subCollection_news .edn_registerEventDetails li {
  list-style-type: circle;
}
.eds_news_BlogOne.eds_subCollection_news .edn_eventInfoMessage {
  padding: 5px;
  font-style: italic;
  color: #3b3b3b;
  background-color: #c0dcfe;
  border: solid 1px #95c1f1;
  margin: 5px;
  display: block;
}
.eds_news_BlogOne.eds_subCollection_news .edn_eventInfoMessage p {
  margin: 0;
  padding: 0;
}
.eds_news_BlogOne.eds_subCollection_news .edn_eventInfoMessage hr {
  margin: 6px 0;
  border-bottom: dashed 1px #95c1f1;
}
.eds_news_BlogOne.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo {
  font-style: normal;
  padding: 5px;
}
.eds_news_BlogOne.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo p {
  margin: 0;
  padding: 0;
}
.eds_news_BlogOne.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo hr {
  margin: 7px 0;
  padding: 0;
  height: 1px;
  border: none;
  border-bottom: dashed 1px #79a8cd;
}
.eds_news_BlogOne.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor1 {
  color: #0076b5;
}
.eds_news_BlogOne.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor2 {
  color: #db0000;
}
.eds_news_BlogOne.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo .edn_eventPayPalPayment {
  display: inline-block;
  border: solid 1px #659ad9;
  border-radius: 4px;
  color: #0093de;
  padding: 5px;
  line-height: 1;
  margin-top: 10px;
}
.eds_news_BlogOne.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo .edn_eventPayPalPayment:hover {
  text-decoration: none;
  color: #0b65ac;
}
.eds_news_BlogOne.eds_subCollection_news .edn_eventPrice {
  float: right;
  clear: right;
  margin: 7px;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 22px;
}
.eds_news_BlogOne.eds_subCollection_news .edn_eventRegistrationModalTrigger {
  float: right;
  cursor: pointer;
  padding: 4px 13px 5px 20px;
  font-size: 12px;
  background: none #4d4d4d;
  font-family: Verdana, Geneva, sans-serif;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
.eds_news_BlogOne.eds_subCollection_news .edn_eventRegistrationModalTrigger:hover {
  text-decoration: underline;
  color: #fff;
}
.eds_news_BlogOne.eds_subCollection_news .edn_listOfAttendants {
  margin: 20px 0;
  border: solid 1px #fff;
  border-radius: 5px;
  overflow: hidden;
}
.eds_news_BlogOne.eds_subCollection_news .edn_listOfAttendants > table {
  border: none;
  outline: none;
  width: 100%;
}
.eds_news_BlogOne.eds_subCollection_news .edn_listOfAttendants > table tr:first-child.edn_listOfAttendantsHeader {
  background-color: #f5f5f5;
}
.eds_news_BlogOne.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(even) {
  background-color: #fff;
}
.eds_news_BlogOne.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(odd) {
  background-color: #F1F1F1;
}
.eds_news_BlogOne.eds_subCollection_news .edn_listOfAttendants > table tr th {
  text-align: left;
  font-weight: bold;
  padding: 7px 10px;
  border: none;
  border-bottom: solid 1px #fff;
}
.eds_news_BlogOne.eds_subCollection_news .edn_listOfAttendants > table tr th.edn_eventUserName {
  width: 80%;
}
.eds_news_BlogOne.eds_subCollection_news .edn_listOfAttendants > table tr th.edn_eventNumberOfTickets {
  text-align: center;
  width: 20%;
}
.eds_news_BlogOne.eds_subCollection_news .edn_listOfAttendants > table tr td {
  padding: 2px 10px;
  color: #838383;
  font-size: 12px;
  border: none;
}
.eds_news_BlogOne.eds_subCollection_news .edn_listOfAttendants > table tr td.edn_eventUserName {
  padding-right: 20px;
}
.eds_news_BlogOne.eds_subCollection_news .edn_listOfAttendants > table tr td.edn_eventNumberOfTickets {
  text-align: center;
}
.eds_news_BlogOne.eds_subCollection_news .eds_signUpActionBarWrapper {
  margin-top: 10px;
}
.eds_news_BlogOne.eds_subCollection_news .eds_signUpActionBarWrapper > span {
  font-size: 20px;
  display: inline-block;
  vertical-align: middle;
}
.eds_news_BlogOne.eds_subCollection_news .eds_signUpActionBar {
  display: inline-block;
  vertical-align: middle;
  margin-left: 30px;
}
.eds_news_BlogOne.eds_subCollection_news .eds_signUpActionBar input[type=radio] {
  display: none;
}
.eds_news_BlogOne.eds_subCollection_news .eds_signUpActionBar input[type=radio]:checked + label {
  color: #fff;
  cursor: default;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5) inset;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_BlogOne.eds_subCollection_news .eds_signUpActionBar input[type=radio]:checked + label::after {
  display: none;
}
.eds_news_BlogOne.eds_subCollection_news .eds_signUpActionBar label {
  display: inline-block;
  margin: 5px 10px 5px 0;
  background-color: #d5d5d5;
  border: 1px solid #878787;
  min-width: 60px;
  border-radius: 3px;
  color: #555;
  font: normal 15px/1 Arial;
  padding: 6px 9px;
  text-decoration: none;
  white-space: nowrap;
  z-index: 0;
  position: relative;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
  box-sizing: border-box;
}
.eds_news_BlogOne.eds_subCollection_news .eds_signUpActionBar label::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  content: "";
  display: inline-block;
  z-index: -1;
  transition: opacity 200ms linear;
}
.eds_news_BlogOne.eds_subCollection_news .eds_signUpActionBar label:hover {
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_BlogOne.eds_subCollection_news .eds_signUpActionBar label:hover::after {
  opacity: 1;
}
.eds_news_BlogOne.eds_subCollection_news .eds_signUpActionBar .eds_optionValue1 label:hover {
  border-color: #438243;
}
.eds_news_BlogOne.eds_subCollection_news .eds_signUpActionBar .eds_optionValue1 label::after {
  background-color: #5cb85c;
  border-color: #438243;
}
.eds_news_BlogOne.eds_subCollection_news .eds_signUpActionBar .eds_optionValue1 input[type=radio]:checked + label {
  background-color: #5cb85c;
  border-color: #438243;
}
.eds_news_BlogOne.eds_subCollection_news .eds_signUpActionBar .eds_optionValue2 label:hover {
  border-color: #8a3431;
}
.eds_news_BlogOne.eds_subCollection_news .eds_signUpActionBar .eds_optionValue2 label::after {
  background-color: #d9534f;
}
.eds_news_BlogOne.eds_subCollection_news .eds_signUpActionBar .eds_optionValue2 input[type=radio]:checked + label {
  background-color: #d9534f;
  border-color: #8a3431;
}
.eds_news_BlogOne.eds_subCollection_news .eds_signUpActionBar .eds_optionValue3 label:hover {
  border-color: #a2773a;
}
.eds_news_BlogOne.eds_subCollection_news .eds_signUpActionBar .eds_optionValue3 label::after {
  background-color: #f0ad4e;
}
.eds_news_BlogOne.eds_subCollection_news .eds_signUpActionBar .eds_optionValue3 input[type=radio]:checked + label {
  background-color: #f0ad4e;
  border-color: #a2773a;
}
.eds_news_BlogOne.eds_subCollection_news .edn_isotopeLayout > div {
  margin: 0 auto;
  max-width: 100%;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation {
    margin: 25px 0;
    overflow: hidden;
  }
}
.eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a {
  font-size: 0;
  line-height: 0;
  position: fixed;
  display: inline-block;
  width: 250px;
  top: 50%;
  margin-top: -70px;
  z-index: 9999;
  transition: all 500ms ease;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a {
    position: relative;
    top: auto;
    width: 130px;
    margin-top: 0;
    z-index: auto;
  }
}
.eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage {
  display: inline-block;
  position: relative;
  width: 100%;
  z-index: 2;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage {
    height: 70px !important;
  }
}
.eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage > img {
  position: relative;
  z-index: 2;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage > img {
    height: 70px !important;
  }
}
.eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage::after {
  background-color: rgba(0, 0, 0, 0.4);
  font-family: "FontAwesome";
  line-height: 140px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 25px;
  color: #fff;
  z-index: 1;
  position: absolute;
  border-radius: 4px;
  transition: padding 600ms ease;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage::after {
    line-height: 70px !important;
  }
}
.eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage .edn_fixedNavTitle {
  top: 0 !important;
  bottom: 0 !important;
  overflow: hidden;
  border-style: none;
  z-index: 2;
  text-align: left;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage .edn_fixedNavTitle {
    border-style: solid;
    width: 220px !important;
  }
}
.eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle {
  font-size: 14px;
  line-height: 1.1;
  color: #363636;
  font-family: Verdana, Geneva, sans-serif;
  position: absolute;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-top-style: none;
  width: 220px;
  padding: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle {
    top: 0;
    bottom: 0;
    border-top-style: solid;
    z-index: 2;
    overflow: hidden;
  }
}
.eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavTitle {
  opacity: 1;
  visibility: visible;
}
.eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavImage::after {
  background-color: rgba(0, 0, 0, 0.8);
}
.eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle {
  left: -190px;
  border-left: none !important;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle {
    left: auto !important;
    float: left;
  }
}
.eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle .edn_fixedNavImage::after {
  content: "\f060";
  text-align: right;
  padding-right: 20px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle .edn_fixedNavTitle {
  left: -100%;
  border-left: none !important;
  border-top-left-radius: 0 !important;
  transition: left 500ms ease, opacity 800ms;
}
.eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover {
  left: 0;
}
.eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavTitle {
  left: 0;
}
.eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavImage::after {
  padding-right: 45px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavImage::after {
    padding-right: 25px;
  }
}
.eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle {
  right: -190px;
  border-right: none !important;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle {
    right: auto !important;
    float: right;
  }
}
.eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavImage {
  text-align: right;
}
.eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavImage::after {
  content: "\f061";
  text-align: left;
  padding-left: 20px;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavTitle {
  right: -100%;
  border-right: none !important;
  border-top-right-radius: 0 !important;
  transition: right 500ms ease, opacity 800ms;
}
.eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover {
  right: 0;
}
.eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavTitle {
  right: 0;
}
.eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavImage::after {
  padding-left: 45px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavImage::after {
    padding-left: 25px;
  }
}
.eds_news_BlogOne.eds_subCollection_news .edn_ArticleVoting {
  float: right;
  margin: 10px;
}
.eds_news_BlogOne.eds_subCollection_news .edn_ArticleVoting > span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
  position: relative;
  font: 13px/1 Verdana, Geneva, sans-serif;
  cursor: pointer;
}
.eds_news_BlogOne.eds_subCollection_news .edn_ArticleVoting > span > i {
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  line-height: 1;
  color: #bababa;
  padding-right: 7px;
}
.eds_news_BlogOne.eds_subCollection_news .edn_ArticleVoting > span .edn_voteTooltip {
  display: inline-block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  letter-spacing: normal;
  background-color: #4c4c4c;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 2px;
  transition: all 400ms;
}
.eds_news_BlogOne.eds_subCollection_news .edn_ArticleVoting > span .edn_voteTooltip::before {
  content: "";
  bottom: calc(100% - 4px);
  left: calc(50% - 4px);
  width: 8px;
  height: 8px;
  background-color: #4c4c4c;
  position: absolute;
  transform: rotate(45deg);
}
.eds_news_BlogOne.eds_subCollection_news .edn_ArticleVoting > span:hover .edn_voteTooltip {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  top: 130%;
}
.eds_news_BlogOne.eds_subCollection_news .edn_ArticleVoting > span.edn__voted {
  cursor: default;
}
.eds_news_BlogOne.eds_subCollection_news .edn_ArticleVoting > span.edn__voted > i {
  color: #bababa;
}
.eds_news_BlogOne.eds_subCollection_news .edn_ArticleVoting > span.edn__voted .edn_voteTooltip {
  display: none;
}
.eds_news_BlogOne.eds_subCollection_news .edn_ArticleVoting > span.edn__voted:hover > i {
  color: #bababa;
}
.eds_news_BlogOne.eds_subCollection_news .edn_ArticleVoting > span.edn__votedUp > i, .eds_news_BlogOne.eds_subCollection_news .edn_ArticleVoting > span.edn__votedDown > i, .eds_news_BlogOne.eds_subCollection_news .edn_ArticleVoting > span.edn__votedUp:hover > i, .eds_news_BlogOne.eds_subCollection_news .edn_ArticleVoting > span.edn__votedDown:hover > i, .eds_news_BlogOne.eds_subCollection_news .edn_ArticleVoting > span:hover > i {
  color: #37b1ab;
}
.eds_news_BlogOne.eds_subCollection_news.eds_print .publish_date {
  color: #888;
}
.eds_news_BlogOne.eds_subCollection_news.eds_print .article.standalone > h1,
.eds_news_BlogOne.eds_subCollection_news.eds_print .article.standalone > h2 {
  color: #000;
}
.eds_news_BlogOne.eds_subCollection_news.eds_print .article.standalone .event_date {
  color: #000;
}
.eds_news_BlogOne.eds_subCollection_news.eds_print .article.standalone .event_date .export {
  display: none;
}
.eds_news_BlogOne.eds_subCollection_news.eds_print .article.standalone .event_location {
  color: #000;
}
.eds_news_BlogOne.eds_subCollection_news.eds_print .article.standalone .edn_socialPrintWrapper,
.eds_news_BlogOne.eds_subCollection_news.eds_print .article.standalone .article_documents,
.eds_news_BlogOne.eds_subCollection_news.eds_print .article.standalone .article_comments,
.eds_news_BlogOne.eds_subCollection_news.eds_print .article.standalone .edn_article_links,
.eds_news_BlogOne.eds_subCollection_news.eds_print .article.standalone .article_gallery,
.eds_news_BlogOne.eds_subCollection_news.eds_print .article.standalone .related_articles,
.eds_news_BlogOne.eds_subCollection_news.eds_print .article.standalone .rate_article,
.eds_news_BlogOne.eds_subCollection_news.eds_print .article.standalone .stats,
.eds_news_BlogOne.eds_subCollection_news.eds_print .article.standalone .details,
.eds_news_BlogOne.eds_subCollection_news.eds_print .article.standalone .author_group_profile,
.eds_news_BlogOne.eds_subCollection_news.eds_print .article.standalone .fb-comments,
.eds_news_BlogOne.eds_subCollection_news.eds_print .article.standalone #disqus_thread,
.eds_news_BlogOne.eds_subCollection_news.eds_print .article.standalone .eds_signUpActionBarWrapper {
  display: none;
}
.eds_news_BlogOne.eds_subCollection_news.eds_print .article.standalone .in_article_image p.image_title,
.eds_news_BlogOne.eds_subCollection_news.eds_print .article.standalone .in_article_image .image_description {
  color: #252525;
}
.eds_news_BlogOne.eds_subCollection_news.eds_print .admin_action,
.eds_news_BlogOne.eds_subCollection_news.eds_print .bread_crumbs,
.eds_news_BlogOne.eds_subCollection_news.eds_print .edn_eventRegistrationModalTrigger,
.eds_news_BlogOne.eds_subCollection_news.eds_print .edn_fixedPrevNextArticleNavigation {
  display: none;
}
.eds_news_BlogOne.eds_subCollection_search {
  margin: 0 0 15px;
  float: none;
  height: auto;
  min-width: 0;
  width: auto;
  overflow: visible;
  transition: none;
}
.eds_news_BlogOne.eds_subCollection_search .acInput.acLoading {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/indicator.gif") !important;
  background-position: 85% center !important;
  background-repeat: no-repeat !important;
}
.eds_news_BlogOne.eds_subCollection_search .search_message {
  font: 14px Arial;
  color: #000;
  display: block;
}
.eds_news_BlogOne.eds_subCollection_search .search_input {
  overflow: hidden;
}
.eds_news_BlogOne.eds_subCollection_search .search_input .input {
  width: 219px;
  float: left;
  overflow: hidden;
  height: 20px;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/search-input-bg.png") repeat-x 0 0 #eeeeee;
  padding: 6px 0 0;
  border-style: solid;
  border-color: #fff;
  border-width: 1px 0 1px 1px;
  border-radius: 4px 0 0 4px;
}
.eds_news_BlogOne.eds_subCollection_search .search_input .input input {
  background: transparent;
  width: 206px;
  height: 17px;
  padding: 0;
  border: 0;
  margin: 0 7px;
  font-size: 13px;
  color: #707070;
  line-height: 19px;
}
.eds_news_BlogOne.eds_subCollection_search .search_input .do_search {
  display: block;
  width: 30px;
  height: 26px;
  text-indent: -10000px;
  text-transform: capitalize;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/search-button-inside-bg.png") no-repeat 0 0;
  padding: 0;
  margin: 0;
  border-width: 1px 1px 1px 0;
  border-style: solid;
  border-color: #fff;
  border-radius: 0 4px 4px 0;
  float: left;
  cursor: pointer;
  text-decoration: none;
}
.eds_news_BlogOne.eds_subCollection_search .search_input .do_search:hover {
  background-position: -31px 0;
}
.eds_news_BlogOne.eds_subCollection_search .search_input .do_search span {
  font-size: 12px;
  line-height: 16px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}
.eds_news_BlogOne.eds_subCollection_search .search_input.button_outside .input {
  width: 95%;
  float: none;
  overflow: hidden;
  height: 26px;
  padding: 0 2%;
  margin: 0 0 5px;
  border-width: 1px;
  border-radius: 4px;
}
.eds_news_BlogOne.eds_subCollection_search .search_input.button_outside .input input {
  width: 100%;
  height: 26px;
  border: 0;
  margin: 0;
}
.eds_news_BlogOne.eds_subCollection_search .search_input.button_outside .do_search {
  display: inline-block;
  width: auto;
  height: 20px;
  text-indent: 0;
  text-transform: none;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/search-button-outside-bg.png") no-repeat 0 0;
  float: none;
  border-radius: 4px;
  border-width: 1px;
  padding: 0;
}
.eds_news_BlogOne.eds_subCollection_search .search_input.button_outside .do_search span {
  display: inline-block;
  padding: 0 5px 0 25px;
  margin: 0;
  height: 20px;
  line-height: 20px;
}
.eds_news_BlogOne.eds_subCollection_search .search_input.button_outside .do_search:hover {
  background-position: 0 -22px;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edn_module_title {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/gradient_title_bg.png") repeat-x #797979;
  margin: 0 0 5px;
  padding: 0;
  border: 0;
  border-radius: 5px 5px 0 0;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edn_module_title span {
  display: block;
  font: 14px Arial;
  line-height: 18px;
  font-weight: bold;
  color: #fff;
  margin: 0;
  padding: 2px 10px 3px;
  min-height: 18px;
  text-shadow: 0 -1px 0 #6C6C6C;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container {
  padding: 15px 0;
  position: relative;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container > span {
  display: block;
  margin: 0;
  padding: 0 0 10px;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container label > span {
  font-size: 12px;
  color: #404040;
  font-family: Verdana, Geneva, sans-serif;
  line-height: 1.7;
  font-weight: normal;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxSingle {
  margin-bottom: 5px;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span {
  display: block;
  border: solid 1px #d6d6d6;
  background: #fff url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/images/advancedSearchForm/select/selectArrow/predefined/select-pointer.png") no-repeat top right;
  overflow: hidden;
  position: relative;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 30px;
  right: 28px;
  top: 0;
  bottom: 0;
  border-left: solid 1px #d6d6d6;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select {
  background: none transparent;
  background-color: rgba(255, 255, 255, 0);
  padding: 6px 0 6px 6px;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 13px;
  line-height: 1;
  color: #404040;
  border: none;
  border-radius: 0;
  outline: none;
  height: 18px;
  width: 116%;
  margin: 0;
  box-shadow: none;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select option {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 13px;
  line-height: 1;
  padding: 2px;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select option:first-child {
  color: #000;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select:disabled {
  color: #b5b5b5;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 100% !important;
  display: block;
  position: relative;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  display: block;
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  line-height: 28px;
  text-align: left;
  padding: 0 45px 0 10px;
  box-shadow: none;
  outline: none;
  border: solid 1px #d6d6d6;
  box-sizing: border-box;
  background: #fff url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/images/advancedSearchForm/select/selectArrow/predefined/select-pointer.png") no-repeat top right;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  line-height: 28px;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 13px;
  color: #404040;
  opacity: 1;
  cursor: unset;
  background: none;
  vertical-align: unset;
  display: inline;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 30px;
  right: 28px;
  top: 0;
  bottom: 0;
  border-left: solid 1px #d6d6d6;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice.disabled {
  cursor: default;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop {
  display: none;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 1000;
  border: solid 1px #d6d6d6;
  margin-top: 1px;
  background-color: #fff;
  background-image: none !important;
  box-sizing: border-box;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul {
  margin: 0;
  padding: 10px;
  overflow: auto;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li {
  background-image: none;
  display: list-item;
  list-style: outside none none;
  position: static;
  padding: 0;
  margin: 0 0 3px;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label {
  display: block;
  white-space: nowrap;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > input {
  display: none;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span {
  display: inline-block;
  vertical-align: middle;
  font-weight: normal;
  padding-left: 20px;
  position: relative;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0;
  margin: 2px 10px 0 0;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/images/advancedSearchForm/checkBoxes/predefined/cf-checkbox.png") no-repeat 0 0 transparent;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li.selected label > span::before {
  content: "";
  background-position: 0 -22px;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop.bottom {
  top: 100%;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop.top {
  bottom: 100%;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label {
  display: inline-block;
  position: relative;
  padding-left: 20px;
  margin: 0;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0;
  margin: 2px 10px 0 0;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/images/advancedSearchForm/checkBoxes/predefined/cf-checkbox.png") no-repeat 0 0 transparent;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonListName {
  font-weight: bold;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 13px;
  color: #404040;
  line-height: 1.5;
  display: block;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton {
  display: inline-block;
  padding: 1px 10px 1px 0;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton input[type=radio] {
  display: none;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton label {
  display: inline-block;
  position: relative;
  padding-left: 20px;
  margin: 0;
  line-height: 1.4;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton label::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  position: absolute;
  left: 0;
  margin: 2px 10px 0 0;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/images/advancedSearchForm/radioButtons/predefined/cf-radiobutton.png") 0 0 transparent;
  background-repeat: no-repeat !important;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton input[type=radio]:checked + label:before {
  content: "";
  background-position: 0 -25px;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListName {
  font-weight: bold;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 13px;
  color: #404040;
  line-height: 1.5;
  display: block;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox {
  display: block;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type=checkbox] {
  display: none;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type=checkbox]:checked + label:before {
  content: "";
  background-position: 0 -22px;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE input[type=checkbox],
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox input[type=checkbox] {
  display: inline;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label,
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label {
  padding-left: 0;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label::before,
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label::before {
  display: none;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton input[type=radio] {
  display: inline;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label {
  padding-left: 0;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label::before {
  display: none;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text label {
  display: block;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text .edncf_TextInput input[type=text] {
  border: solid 1px #d4d4d4;
  background: #fff none;
  color: #404040;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 13px;
  line-height: 1.2;
  padding: 6px 2%;
  width: 95.9%;
  margin: 0;
  box-shadow: none;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput label > span {
  display: block;
  font-weight: bold;
  color: #404040;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.5;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs {
  height: 37px;
  position: relative;
  display: block;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line {
  height: 6px;
  top: 6px;
  border-style: solid;
  border-width: 1px;
  border-color: #727272;
  background-color: #fff;
  border-radius: 4px;
  position: relative;
  display: block;
  overflow: hidden;
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.5);
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-left,
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-mid,
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-right {
  display: none;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-diapason {
  border: solid 1px #5f5f5f;
  background: none #bcbcbc;
  height: 6px;
  top: 6px;
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.5);
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider {
  border: 1px solid #727272;
  border-radius: 50%;
  background: #fff none;
  width: 17px;
  height: 17px;
  cursor: default;
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3), inset -3px -3px 5px rgba(0, 0, 0, 0.3);
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-from,
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-to,
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-single {
  color: #000;
  background: none transparent;
  cursor: default;
  display: block;
  position: absolute;
  white-space: nowrap;
  font: 11px/1 Verdana, Geneva, sans-serif;
  top: 24px;
  padding: 0;
  left: 0;
  white-space: nowrap;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min,
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  background: none transparent;
  padding: 0;
  text-shadow: none;
  top: 16px;
  font: 9px/1 Verdana, Geneva, sans-serif;
  color: #777;
  position: absolute;
  display: block;
  cursor: default;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min {
  left: 0;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  right: 0;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField * {
  box-sizing: border-box;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group {
  margin: 0;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group + .input-group {
  margin-top: 5px;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .form-control {
  border: solid 1px #d4d4d4;
  border-radius: 0;
  background: #fff none;
  color: #bdbdbd;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 13px;
  line-height: 1.2;
  padding: 6px;
  width: 100%;
  margin: 0;
  height: auto;
  box-shadow: none;
  box-sizing: border-box;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group-addon {
  color: #848484;
  background-color: #fff;
  border: solid 1px #d4d4d4;
  border-left: none;
  border-radius: 0;
  height: auto;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer {
  text-align: center;
  margin: 15px 0 5px;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit,
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset {
  display: inline-block;
  height: 20px;
  padding: 0 18px 0 26px;
  background: #b1b1b1 url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/search-button-outside-bg.png") 0 0 no-repeat;
  border-radius: 3px;
  text-decoration: none;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit span,
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset span {
  color: #fff;
  font: normal 12px/1.7 Arial;
  text-decoration: none;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit:hover,
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset:hover {
  background-position: 0 -22px;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset {
  background: none #b1b1b1;
  padding: 0 18px;
  margin-left: 10px;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_searchInProgressOverlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  right: -1px;
  background: #F8F9F9 url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/searchInProgress.GIF") center center no-repeat;
  opacity: 0.7;
  width: 101%;
  z-index: 999;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container > span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 30px 15px 0;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList > span {
  min-width: 145px;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList > span select {
  width: 160%;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 180px !important;
  display: inline-block;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  min-width: 145px;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RangeSliderInput {
  display: block;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList > span,
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList > span {
  display: inline-block;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList,
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList {
  display: inline-block;
  margin-right: 15px;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_CheckBox,
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_RadioButton,
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_CheckBox,
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_RadioButton {
  display: inline-block;
  margin: 4px 10px;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField {
  display: block;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > span label {
  display: block;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group {
  float: left;
  width: 49%;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group + .input-group {
  float: right;
  margin: 0;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField::after {
  content: "";
  display: table;
  width: 100%;
  height: 0;
  overflow: hidden;
  clear: both;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span {
  display: inline-block;
  vertical-align: middle;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span + span {
  margin-left: 15px;
}
.eds_news_BlogOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer {
  display: inline-block;
  text-align: center;
  margin: 10px 0 0;
  vertical-align: top;
}
.eds_news_BlogOne.eds_subCollection_search .ednSbl_search *,
.eds_news_BlogOne.eds_subCollection_search .ednSbl_search *::before,
.eds_news_BlogOne.eds_subCollection_search .ednSbl_search *::after {
  box-sizing: border-box;
}
.eds_news_BlogOne.eds_subCollection_search .ednSbl_search .ednSbl_list {
  margin: 0 -3px;
  padding: 25px 0 0;
  font-size: 0;
  line-height: 0;
}
.eds_news_BlogOne.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper {
  list-style-type: none;
  display: inline-block;
  vertical-align: middle;
  margin: 3px;
  transition: all 300ms;
}
.eds_news_BlogOne.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper.ednSbl_selected .ednSbl_item .ednSbl_letter {
  background-color: #e4e4e4;
  color: #565555;
}
.eds_news_BlogOne.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item {
  position: relative;
  z-index: 2;
}
.eds_news_BlogOne.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item .ednSbl_letter {
  background-color: #e4e4e4;
  color: #565555;
}
.eds_news_BlogOne.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item .ednSbl_count {
  opacity: 1;
  bottom: calc(100% + 5px);
}
.eds_news_BlogOne.eds_subCollection_search .ednSbl_search span.ednSbl_item {
  color: #cecece;
  border-color: #eee;
}
.eds_news_BlogOne.eds_subCollection_search .ednSbl_search span.ednSbl_item .ednSbl_letter + .ednSbl_count {
  display: none;
}
.eds_news_BlogOne.eds_subCollection_search .ednSbl_search .ednSbl_item {
  font: 12px/1.2 Verdana, Geneva, sans-serif;
  display: inline-block;
  border: solid 1px #e4e4e4;
  text-decoration: none;
  color: #878787;
  transition: all 300ms;
  position: relative;
}
.eds_news_BlogOne.eds_subCollection_search .ednSbl_search .ednSbl_item > span {
  padding: 7px 9px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  text-align: center;
  border-radius: inherit;
}
.eds_news_BlogOne.eds_subCollection_search .ednSbl_search .ednSbl_item .ednSbl_letter {
  min-width: 30px;
  background-color: #fff;
  z-index: 2;
  transition: all 300ms;
}
.eds_news_BlogOne.eds_subCollection_search .ednSbl_search .ednSbl_item .ednSbl_count {
  overflow: hidden;
  position: absolute;
  color: #363636;
  padding: 3px 6px;
  transition: all 300ms;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  z-index: 1;
  background-color: #fff;
  border: solid 1px #eee;
  color: #363636;
}
.eds_news_BlogOne .edn_searchInfoResults {
  margin: 30px 0 !important;
  padding: 10px 15px !important;
  background-color: #efefef;
  border: solid 1px #e8e8e8;
  color: #4A4A4A !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
}
.eds_news_BlogOne .edn_searchInfoResults > span {
  font-weight: bold;
  color: #333;
  font-size: 14px !important;
  line-height: 1.3 !important;
}
.eds_news_BlogOne.eds_subCollection_tagCloud {
  margin: 0 0 15px;
}
.eds_news_BlogOne.eds_subCollection_tagCloud h1.edn_module_title {
  margin: 0;
}
.eds_news_BlogOne.eds_subCollection_tagCloud .tags a {
  font-size: 11px;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  color: #363636;
  line-height: 22px;
  display: inline-block;
  margin: 5px 5px 0 0;
}
.eds_news_BlogOne.eds_subCollection_tagCloud .tags a span {
  color: #787878;
  font-size: 11px;
  font-weight: bold;
}
.eds_news_BlogOne.eds_subCollection_tagCloud .tags a:hover {
  text-decoration: underline;
}
.eds_news_BlogOne.eds_subCollection_tagCloud .tags a.TagStyle1 {
  font-size: 12px;
}
.eds_news_BlogOne.eds_subCollection_tagCloud .tags a.TagStyle2 {
  font-size: 14px;
}
.eds_news_BlogOne.eds_subCollection_tagCloud .tags a.TagStyle3 {
  font-size: 16px;
}
.eds_news_BlogOne.eds_subCollection_tagCloud .tags a.TagStyle4 {
  font-size: 18px;
}
.eds_news_BlogOne.eds_subCollection_tagCloud .tags a.TagStyle5 {
  font-size: 20px;
}
.eds_news_BlogOne.eds_subCollection_tagCloud .tags a.TagStyle6 {
  font-size: 22px;
}
.eds_news_BlogOne.eds_subCollection_categoryMenu {
  margin: 0 0 15px;
}
.eds_news_BlogOne.eds_subCollection_categoryMenu ul {
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  list-style: outside none;
}
.eds_news_BlogOne.eds_subCollection_categoryMenu ul.edn_category_menu_wrapper li {
  margin: 0;
  padding: 0;
  list-style: outside none;
  cursor: pointer;
}
.eds_news_BlogOne.eds_subCollection_categoryMenu ul.edn_category_menu_wrapper li div {
  padding: 5px 4px 4px 138px;
  margin: 0 0 3px;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/icons/greater_than_grey.png") no-repeat 18px center #d6d6d5;
  overflow: hidden;
}
.eds_news_BlogOne.eds_subCollection_categoryMenu ul.edn_category_menu_wrapper li div a {
  color: #252525;
  font-size: 12px;
  font-family: Verdana, Geneva, sans-serif;
  line-height: 15px;
}
.eds_news_BlogOne.eds_subCollection_categoryMenu ul.edn_category_menu_wrapper li div a.icon {
  float: right;
  display: block;
  margin: 0 0 0 4px;
  text-indent: -10000px;
  text-decoration: none;
  line-height: 12px;
}
.eds_news_BlogOne.eds_subCollection_categoryMenu ul.edn_category_menu_wrapper li div a.icon.rss {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/icons/rss_orange.png") no-repeat;
  width: 14px;
  height: 14px;
}
.eds_news_BlogOne.eds_subCollection_categoryMenu ul.edn_category_menu_wrapper li div a.icon.rss:hover {
  background-position: 0 -14px;
}
.eds_news_BlogOne.eds_subCollection_categoryMenu ul.edn_category_menu_wrapper li div a.icon.expand_collapse {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/icons/up_down_grey.png") 3px 2px no-repeat;
  width: 15px;
  height: 13px;
}
.eds_news_BlogOne.eds_subCollection_categoryMenu ul.edn_category_menu_wrapper li div a.icon.expand_collapse.collapse {
  background-position: -10px 3px;
  visibility: visible;
}
.eds_news_BlogOne.eds_subCollection_categoryMenu ul.edn_category_menu_wrapper li div:hover a.icon.expand_collapse {
  background-position: 3px -11px;
}
.eds_news_BlogOne.eds_subCollection_categoryMenu ul.edn_category_menu_wrapper li div:hover a.icon.expand_collapse.collapse {
  background-position: -10px -10px;
}
.eds_news_BlogOne.eds_subCollection_categoryMenu ul.edn_category_menu_wrapper li.active > div a {
  font-weight: bold;
}
.eds_news_BlogOne.eds_subCollection_categoryMenu ul.edn_category_menu_wrapper li.level_0 > div {
  padding-left: 30px;
  background-color: #e3e4e2;
}
.eds_news_BlogOne.eds_subCollection_categoryMenu ul.edn_category_menu_wrapper li.level_1 > div {
  padding-left: 48px;
  background-position: 36px center;
}
.eds_news_BlogOne.eds_subCollection_categoryMenu ul.edn_category_menu_wrapper li.level_2 > div {
  padding-left: 66px;
  background-position: 54px center;
}
.eds_news_BlogOne.eds_subCollection_categoryMenu ul.edn_category_menu_wrapper li.level_3 > div {
  padding-left: 84px;
  background-position: 72px center;
}
.eds_news_BlogOne.eds_subCollection_categoryMenu ul.edn_category_menu_wrapper li.level_4 > div {
  padding-left: 102px;
  background-position: 90px center;
}
.eds_news_BlogOne.eds_subCollection_categoryMenu ul.edn_category_menu_wrapper li.level_5 > div {
  padding-left: 120px;
  background-position: 108px center;
}
.eds_news_BlogOne.eds_subCollection_categoryMenu ul.edn_category_menu_wrapper li.level_6 > div {
  padding-left: 138px;
  background-position: 126px center;
}
.eds_news_BlogOne.eds_subCollection_categoryMenu ul.edn_category_menu_wrapper.author_menu li div {
  background-image: none;
}
.eds_news_BlogOne.eds_subCollection_categoryMenu ul.edn_category_menu_wrapper.author_menu li div > img {
  border-radius: 4px;
  border: 1px solid #fff;
  float: left;
  margin: 0 7px 0 0;
}
.eds_news_BlogOne.eds_subCollection_categoryMenu ul.edn_category_menu_wrapper.author_menu li.level_0 > div {
  padding-left: 15px;
}
.eds_news_BlogOne.eds_subCollection_categoryMenu ul.edn_category_menu_wrapper.author_menu li.level_1 > div {
  padding-left: 25px;
}
.eds_news_BlogOne.eds_subCollection_calendar .edn_styledSelect {
  text-align: center;
  margin-bottom: 10px;
}
.eds_news_BlogOne.eds_subCollection_calendar .edn_styledSelect > span {
  display: inline-block;
  border: solid 1px #d6d6d6;
  background: #fff url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/images/calendar/monthQuickSelection/selectArrow/predefined/select-pointer.png") no-repeat top right;
  overflow: hidden;
  position: relative;
  width: 50%;
}
.eds_news_BlogOne.eds_subCollection_calendar .edn_styledSelect > span::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 30px;
  right: 28px;
  top: 0;
  bottom: 0;
  border-left: solid 1px #d6d6d6;
}
.eds_news_BlogOne.eds_subCollection_calendar .edn_styledSelect > span select {
  background: none transparent;
  background-color: rgba(255, 255, 255, 0);
  padding: 6px 0 6px 6px;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 13px;
  line-height: 1;
  color: #404040;
  border: none;
  border-radius: 0;
  outline: none;
  height: 18px;
  width: 116%;
  margin: 0 30px 0 0;
  box-shadow: none;
}
.eds_news_BlogOne.eds_subCollection_calendar .edn_styledSelect > span select option {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 13px;
  line-height: 1;
  padding: 2px;
}
.eds_news_BlogOne.eds_subCollection_calendar .edn_styledSelect > span select option:first-child {
  color: #000;
}
.eds_news_BlogOne.eds_subCollection_calendar .top_calendar_actions {
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0 2px 3px;
  line-height: 0;
  border: 0;
  text-align: right;
}
.eds_news_BlogOne.eds_subCollection_calendar .top_calendar_actions > a {
  margin: 0 0 0 5px;
  display: inline-block;
  padding: 0;
  border: 0;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/calendar/calendar_action_buttons.png");
}
.eds_news_BlogOne.eds_subCollection_calendar .top_calendar_actions > a > span {
  display: none;
}
.eds_news_BlogOne.eds_subCollection_calendar .top_calendar_actions > a.articles_by_month {
  width: 12px;
  height: 12px;
  background-position: 0 -5px;
}
.eds_news_BlogOne.eds_subCollection_calendar .top_calendar_actions > a.icalendar_export {
  width: 12px;
  height: 15px;
  background-position: -13px -1px;
}
.eds_news_BlogOne.eds_subCollection_calendar .top_calendar_actions > a.articles_rss {
  width: 12px;
  height: 12px;
  background-position: -26px -4px;
}
.eds_news_BlogOne.eds_subCollection_calendar .top_calendar_actions > a.events_rss {
  width: 18px;
  height: 16px;
  background-position: -39px 0;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container {
  margin: 0 0 15px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container .calendar_table {
  width: 100%;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/calendar_title_bg.png") repeat-x #686868;
  width: 100%;
  border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td {
  text-align: center;
  padding: 6px 0 7px;
  font: 15px Arial, Helvetica, sans-serif;
  color: #fff;
  text-shadow: 0 -1px 0 #6C6C6C;
  font-weight: bold;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months a {
  color: #fff !important;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container .calendar_table .week_days {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/calendar_weekdays_bg.png") repeat-x #e5e5e5;
  color: #6c7174;
  font-size: 9px;
  padding: 7px 0 5px;
  text-shadow: 1px 0 0 #fff;
  border-bottom: 1px solid #ccd2d6;
  font-family: Arial;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day {
  margin: 0;
  border: 1px solid #e7e9ea;
  text-align: center;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day > a,
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day > span {
  color: #6F6F6F;
  line-height: 1.5;
  font-family: Arial;
  text-decoration: none;
  font-size: 12px;
  display: block;
  padding: 8px 3px 7px;
  background: #f3f3f3;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day > a:hover {
  color: #6F6F6F;
  text-decoration: underline;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.has_posts > a {
  color: #6F6F6F;
  background: #E0E0E0;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.has_events > a {
  color: #fff;
  background: #ffae00;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.today > a,
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.today > span {
  color: #fff !important;
  background: #A1A1A1 !important;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.selected > a,
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.selected > span {
  color: #fff !important;
  background: #C5C5C5 !important;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.other_month > a,
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.other_month > span {
  color: #c8cccf;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-red > a {
  background-color: #ff0000;
  color: #fff;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-blue > a {
  background-color: #0000ff;
  color: #fff;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-black > a {
  background-color: #000;
  color: #fff;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-green > a {
  background-color: #008000;
  color: #fff;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-yellow > a {
  background-color: #ffff00;
  color: #000;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-pink > a {
  background-color: #ffc0cb;
  color: #fff;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-gray > a {
  background-color: #808080;
  color: #fff;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-orange > a {
  background-color: #ffa500;
  color: #fff;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-brown > a {
  background-color: #a52a2a;
  color: #fff;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table td.week_days {
    display: none;
  }
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day {
  vertical-align: top;
  padding: 0;
  background: #fff !important;
  overflow: hidden;
  text-align: left;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day {
    display: none;
  }
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > span,
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > a {
  margin: 0;
  border: 0;
  font-weight: bold;
  padding: 3px 7px 1px;
  background-color: #F3F3F3;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.has_posts, .eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.has_events {
  border: 1px solid #e7e9ea;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.has_posts, .eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.has_events {
    display: block;
    height: auto !important;
    width: 100% !important;
    text-align: left;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.other_month {
    display: none;
  }
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul {
  margin: 0;
  padding: 0 4px 3px;
  border: 0;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li {
  border: 0;
  margin: 0;
  padding: 3px 0 0;
  list-style: none;
  display: block;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a {
  border: 1px solid #adadad;
  border-radius: 5px;
  margin: 0;
  padding: 2px 5px;
  background: #fff;
  display: block;
  text-align: left;
  color: #707070 !important;
  text-decoration: none;
  font: 10px Arial;
  line-height: 12px;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a {
  border: 1px solid #f77601;
  background: #fff3e9;
  color: #ef5a00 !important;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-red, .eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-red {
  border-color: #ff0000;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-blue, .eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-blue {
  border-color: #0000ff;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-black, .eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-black {
  border-color: #000;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-green, .eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-green {
  border-color: #008000;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-yellow, .eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-yellow {
  border-color: #ffff00;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-pink, .eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-pink {
  border-color: #ffc0cb;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-gray, .eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-gray {
  border-color: #808080;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-orange, .eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-orange {
  border-color: #ffa500;
}
.eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-brown, .eds_news_BlogOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-brown {
  border-color: #a52a2a;
}
.eds_news_BlogOne.eds_subCollection_calendar .archive_list {
  margin: 0 0 15px;
}
.eds_news_BlogOne.eds_subCollection_calendar .archive_list .edn_module_title {
  margin: 0;
}
.eds_news_BlogOne.eds_subCollection_calendar .archive_list ul {
  list-style: outside none;
  margin: 0;
  padding: 0;
}
.eds_news_BlogOne.eds_subCollection_calendar .archive_list ul li {
  list-style: outside none;
  border-bottom: 1px solid #d3d2d2;
  padding: 6px 4px 3px 23px;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/icons/grey_arrows_right.png") no-repeat 9px 12px;
}
.eds_news_BlogOne.eds_subCollection_calendar .archive_list ul li a {
  color: #363636;
  font: 12px Arial, Helvetica, sans-serif;
}
.eds_news_BlogOne.eds_subCollection_calendar .archive_list .edn_module_box {
  border: none;
  padding: 0;
  background: none;
}
.eds_news_BlogOne.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li {
  cursor: pointer;
}
.eds_news_BlogOne.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li div > .edn_archive-year,
.eds_news_BlogOne.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li div > .edn_archive-month {
  text-decoration: none;
}
.eds_news_BlogOne.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li div > .edn_archive-year:hover,
.eds_news_BlogOne.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li div > .edn_archive-month:hover {
  text-decoration: underline;
}
.eds_news_BlogOne.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li div .icon.expand_collapse {
  display: block;
  float: right;
  line-height: 12px;
  margin: 0 0 0 4px;
  text-decoration: none;
  text-indent: -10000px;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/icons/up_down_grey.png") no-repeat scroll 3px 2px;
  height: 13px;
  width: 15px;
}
.eds_news_BlogOne.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li div .icon.expand_collapse.collapse {
  background-position: -10px 3px;
  visibility: visible;
}
.eds_news_BlogOne.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li div:hover .icon.expand_collapse {
  background-position: 3px -11px;
}
.eds_news_BlogOne.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li div:hover .icon.expand_collapse.collapse {
  background-position: -10px -10px;
}
.eds_news_BlogOne.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li.active > div > .edn_archive-year,
.eds_news_BlogOne.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li.active > div > .edn_archive-month {
  font-weight: bold;
}
.eds_news_BlogOne.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li ul li:last-child {
  border-bottom: none;
}
.eds_news_BlogOne.eds_subCollection_calendar .archive_list.events .edn_module_title {
  position: relative;
}
.eds_news_BlogOne.eds_subCollection_calendar .archive_list.events .edn_module_title > a {
  display: block;
  position: absolute;
  left: auto;
  bottom: auto;
  margin: 0;
  padding: 0;
  border: 0;
}
.eds_news_BlogOne.eds_subCollection_calendar .archive_list.events .edn_module_title > a.export {
  top: 4px;
  right: 6px;
  height: 14px;
  width: 12px;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/icons/export_icalendar_white_outline.png");
}
.eds_news_BlogOne.eds_subCollection_calendar .archive_list.events .edn_module_title > a.rss {
  top: 5px;
  right: 6px;
  height: 14px;
  width: 14px;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/icons/rss_orange.png");
}
.eds_news_BlogOne.eds_subCollection_calendar .archive_list.events .edn_module_title > a.rss:hover {
  background-position: 0 -14px;
}
.eds_news_BlogOne.eds_subCollection_calendar .archive_list.events .edn_module_title > a.rss ~ a.export {
  right: 26px;
}
.eds_news_BlogOne.eds_subCollection_calendar .archive_list.events .edn_module_title > a > span {
  display: none;
}
.eds_news_BlogOne.eds_subCollection_calendar .archive_list.events ul li {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/icons/archive_event_clock.png") no-repeat 6px 7px;
}
.eds_news_BlogOne .chameleon_slider {
  margin: 15px 0;
}
.eds_news_BlogOne .fb-comments, .eds_news_BlogOne .fb-comments iframe[style], .eds_news_BlogOne .fb-comments > span {
  width: 100% !important;
}
.eds_news_BlogOne .fb_comments_count {
  margin: 0 !important;
  display: inline !important;
}
.eds_news_BlogOne .edNews_latestCommentsOnForum .num_of_comment {
  overflow: hidden;
}
.eds_news_BlogOne .edNews_latestCommentsOnForum .num_of_comment .submit {
  float: right;
  margin: 0 !important;
}
.eds_news_BlogOne .edNews_latestCommentsOnForum .num_of_comment .submit i {
  font-style: normal;
}
.eds_news_BlogOne .edNews_latestCommentsOnForum .num_of_comment > p {
  margin: 10px 0 0;
  padding: 0;
}
.eds_news_BlogOne .edNews_latestCommentsOnForum .add_comment > h3 {
  margin: 0 !important;
}

.qtip.edn_calendarbox_BlogOne {
  position: absolute;
  left: -28000px;
  top: -28000px;
  display: none;
  min-width: 50px;
  font-size: 10px;
  line-height: 12px;
  direction: ltr;
  padding: 0;
  margin: 0;
  background: #f6f6f6;
  border: 1px solid #cdcdcd;
  border-radius: 2px;
  box-shadow: 2px 2px 3px -2px #1A1A1A;
  width: 500px;
  max-width: 95%;
}
.qtip.edn_calendarbox_BlogOne > .qtip-content {
  position: relative;
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
  text-align: left;
  word-wrap: break-word;
}
.qtip.edn_calendarbox_BlogOne > .qtip-content > .title {
  border: 0;
  border-bottom: 1px solid #cdcdcd;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/calendar/title_gradient.png") repeat-x 0 bottom #fff;
  margin: 0;
  padding: 6px 15px 0;
  display: block;
  height: 19px;
}
.qtip.edn_calendarbox_BlogOne > .qtip-content > .title span {
  font: 12px Arial;
  color: #111;
  line-height: 14px;
  font-weight: bold;
}
.qtip.edn_calendarbox_BlogOne > .qtip-content > .title span a {
  text-decoration: none;
  color: #111;
}
.qtip.edn_calendarbox_BlogOne > .qtip-content > .title span a:hover {
  color: #000;
  text-decoration: underline;
}
.qtip.edn_calendarbox_BlogOne > .qtip-content > .wrapper {
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
  display: block;
  max-width: none;
  max-height: none;
  width: auto;
  height: auto;
}
.qtip.edn_calendarbox_BlogOne > .qtip-content > .wrapper > .article {
  display: block;
  margin: 0;
  border: 0;
  padding: 15px;
  overflow: hidden;
}
.qtip.edn_calendarbox_BlogOne > .qtip-content > .wrapper > .article > img {
  float: left;
  margin: 0 10px 10px 0;
  padding: 0;
  border: 0;
  border-radius: 5px;
  max-width: 100px;
  max-height: 100px;
}
.qtip.edn_calendarbox_BlogOne > .qtip-content > .wrapper > .article > p.title {
  font-size: 14px;
  line-height: 16px;
  font: 14px Arial;
  color: #333;
  font-weight: bold;
}
.qtip.edn_calendarbox_BlogOne > .qtip-content > .wrapper > .article > p.title a {
  font: 14px Arial;
  line-height: 16px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}
.qtip.edn_calendarbox_BlogOne > .qtip-content > .wrapper > .article > p.title a:hover {
  text-decoration: underline;
}
.qtip.edn_calendarbox_BlogOne > .qtip-content > .wrapper > .article > p.location {
  font-size: 12px;
  line-height: 14px;
  font-weight: bold;
  color: #111;
  margin-top: 5px;
  padding: 0 0 0 15px;
  display: inline-block;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/calendar/red_map_location.png") no-repeat 0 0;
}
.qtip.edn_calendarbox_BlogOne > .qtip-content > .wrapper > .article > .content {
  color: #333;
  font: 10px Arial;
  line-height: 14px;
  margin: 0;
  padding: 0;
  display: block;
}
.qtip.edn_calendarbox_BlogOne > .qtip-content > .wrapper > .article > .content p {
  margin: 10px 0 0;
}
.qtip.edn_calendarbox_BlogOne > .qtip-content > .wrapper > .article > a {
  float: right;
  text-decoration: none;
  font: 12px Arial;
  color: #333;
  line-height: 14px;
  font-weight: bold;
  margin: 3px 0 0;
  padding: 0 0 0 9px;
  border: 0;
  clear: both;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/calendar/red_arrow.png") no-repeat 0 2px;
}
.qtip.edn_calendarbox_BlogOne > .qtip-content > .wrapper > .article > a:hover {
  text-decoration: underline;
}
.qtip.edn_calendarbox_BlogOne > .qtip-content > .wrapper > .article_list {
  display: block;
  margin: 0;
  border: 0;
  padding: 15px 15px 15px 30px;
  overflow: hidden;
}
.qtip.edn_calendarbox_BlogOne > .qtip-content > .wrapper > .article_list > li {
  list-style: url("/DesktopModules/EasyDNNNews/Templates/_default/BlogOne/img/calendar/red_arrow.png") outside;
  margin: 5px 0 0px;
  padding: 0;
  border: 0;
  color: #333;
  font: 12px Arial;
  line-height: 14px;
  font-weight: bold;
}
.qtip.edn_calendarbox_BlogOne > .qtip-content > .wrapper > .article_list > li > a {
  color: #333;
  font: 12px Arial;
  line-height: 14px;
  font-weight: bold;
  text-decoration: none;
}
.qtip.edn_calendarbox_BlogOne > .qtip-content > .wrapper > .article_list > li > a:hover {
  text-decoration: underline;
}
.qtip.edn_calendarbox_BlogOne > .qtip-content > .wrapper > .article_list > li > p {
  color: #111;
  margin: 0;
  padding: 0;
  border: 0;
  font: 10px Arial;
  line-height: 12px;
  font-weight: normal;
}

.EDN_search.theme_BlogOne {
  padding: 0px;
  border: 1px solid #cccccc;
  background-color: #fff;
  overflow: hidden;
  z-index: 9999999;
  padding: 3px;
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.27);
  margin: 0 20px;
}
.EDN_search.theme_BlogOne ul {
  margin: 0px;
  padding: 0px;
  list-style-position: outside;
  list-style: none;
}
.EDN_search.theme_BlogOne ul li {
  margin: 0px;
  padding: 2px 5px;
  display: block;
  font: Arial;
  font-size: 12px;
  color: #363636;
  border: solid 1px transparent;
}
.EDN_search.theme_BlogOne ul li span a {
  color: #363636;
  text-decoration: none;
}
.EDN_search.theme_BlogOne ul li span a:hover {
  text-decoration: none;
  color: #fff;
  text-decoration: underline !important;
}
.EDN_search.theme_BlogOne .acSelect {
  background-color: #878787;
  color: #fff;
}
.EDN_search.theme_BlogOne .acSelect a {
  color: #fff;
}

@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_NewsTwo .eds_news_BlogOne.eds_subCollection_news .article h1, .EasyDNNSkin_NewsOne .eds_news_BlogOne.eds_subCollection_news .article h1, .EasyDNNSkin_BlogTwo .eds_news_BlogOne.eds_subCollection_news .article h1, .EasyDNNSkin_BlogOne .eds_news_BlogOne.eds_subCollection_news .article h1 {
    font-size: 16px;
    line-height: 18px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogOne.eds_subCollection_news .article h1 a, .EasyDNNSkin_NewsOne .eds_news_BlogOne.eds_subCollection_news .article h1 a, .EasyDNNSkin_BlogTwo .eds_news_BlogOne.eds_subCollection_news .article h1 a, .EasyDNNSkin_BlogOne .eds_news_BlogOne.eds_subCollection_news .article h1 a {
    font-size: 16px;
    line-height: 18px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogOne.eds_subCollection_news .article h2, .EasyDNNSkin_NewsOne .eds_news_BlogOne.eds_subCollection_news .article h2, .EasyDNNSkin_BlogTwo .eds_news_BlogOne.eds_subCollection_news .article h2, .EasyDNNSkin_BlogOne .eds_news_BlogOne.eds_subCollection_news .article h2 {
    font-size: 14px;
    line-height: 14px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogOne.eds_subCollection_news .article h2 a, .EasyDNNSkin_NewsOne .eds_news_BlogOne.eds_subCollection_news .article h2 a, .EasyDNNSkin_BlogTwo .eds_news_BlogOne.eds_subCollection_news .article h2 a, .EasyDNNSkin_BlogOne .eds_news_BlogOne.eds_subCollection_news .article h2 a {
    font-size: 14px;
    line-height: 14px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogOne.eds_subCollection_news .article .content .in_article_image.no_left_margin.left .image_wrapper.no_text img, .EasyDNNSkin_NewsOne .eds_news_BlogOne.eds_subCollection_news .article .content .in_article_image.no_left_margin.left .image_wrapper.no_text img, .EasyDNNSkin_BlogTwo .eds_news_BlogOne.eds_subCollection_news .article .content .in_article_image.no_left_margin.left .image_wrapper.no_text img, .EasyDNNSkin_BlogOne .eds_news_BlogOne.eds_subCollection_news .article .content .in_article_image.no_left_margin.left .image_wrapper.no_text img {
    float: none;
    width: 100%;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogOne.eds_subCollection_news .article .content .author_box, .EasyDNNSkin_NewsOne .eds_news_BlogOne.eds_subCollection_news .article .content .author_box, .EasyDNNSkin_BlogTwo .eds_news_BlogOne.eds_subCollection_news .article .content .author_box, .EasyDNNSkin_BlogOne .eds_news_BlogOne.eds_subCollection_news .article .content .author_box {
    width: 100%;
    white-space: nowrap;
    float: right;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogOne.eds_subCollection_news .article .content .summary, .EasyDNNSkin_NewsOne .eds_news_BlogOne.eds_subCollection_news .article .content .summary, .EasyDNNSkin_BlogTwo .eds_news_BlogOne.eds_subCollection_news .article .content .summary, .EasyDNNSkin_BlogOne .eds_news_BlogOne.eds_subCollection_news .article .content .summary {
    float: left;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogOne.eds_subCollection_news .article .details .open_article_btn, .EasyDNNSkin_NewsOne .eds_news_BlogOne.eds_subCollection_news .article .details .open_article_btn, .EasyDNNSkin_BlogTwo .eds_news_BlogOne.eds_subCollection_news .article .details .open_article_btn, .EasyDNNSkin_BlogOne .eds_news_BlogOne.eds_subCollection_news .article .details .open_article_btn {
    position: relative;
    top: 3px;
    margin-bottom: 5px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogOne.eds_subCollection_news .article .details .categories, .EasyDNNSkin_NewsOne .eds_news_BlogOne.eds_subCollection_news .article .details .categories, .EasyDNNSkin_BlogTwo .eds_news_BlogOne.eds_subCollection_news .article .details .categories, .EasyDNNSkin_BlogOne .eds_news_BlogOne.eds_subCollection_news .article .details .categories {
    margin-top: 10px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogOne.eds_subCollection_news .article.multi_layout, .EasyDNNSkin_NewsOne .eds_news_BlogOne.eds_subCollection_news .article.multi_layout, .EasyDNNSkin_BlogTwo .eds_news_BlogOne.eds_subCollection_news .article.multi_layout, .EasyDNNSkin_BlogOne .eds_news_BlogOne.eds_subCollection_news .article.multi_layout {
    padding: 0;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn.left, .EasyDNNSkin_NewsOne .eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn.left, .EasyDNNSkin_BlogTwo .eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn.left, .EasyDNNSkin_BlogOne .eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn.left {
    float: none;
    margin-right: 0;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn.right, .EasyDNNSkin_NewsOne .eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn.right, .EasyDNNSkin_BlogTwo .eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn.right, .EasyDNNSkin_BlogOne .eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn.right {
    float: none;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn.big, .EasyDNNSkin_NewsOne .eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn.big, .EasyDNNSkin_BlogTwo .eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn.big, .EasyDNNSkin_BlogOne .eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn.big {
    width: auto;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn.small, .EasyDNNSkin_NewsOne .eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn.small, .EasyDNNSkin_BlogTwo .eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn.small, .EasyDNNSkin_BlogOne .eds_news_BlogOne.eds_subCollection_news .article.multi_layout.two_collumn.small {
    width: auto;
    float: none;
    clear: both;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article .image_wrapper .article_container, .EasyDNNSkin_NewsOne .eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article .image_wrapper .article_container, .EasyDNNSkin_BlogTwo .eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article .image_wrapper .article_container, .EasyDNNSkin_BlogOne .eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article .image_wrapper .article_container {
    position: relative;
    float: none;
    width: auto;
    padding-bottom: 34px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article .image_wrapper .article_container h1, .EasyDNNSkin_NewsOne .eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article .image_wrapper .article_container h1, .EasyDNNSkin_BlogTwo .eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article .image_wrapper .article_container h1, .EasyDNNSkin_BlogOne .eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article .image_wrapper .article_container h1 {
    font-size: 16px;
    line-height: 16px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article .image_wrapper .article_container h1 a, .EasyDNNSkin_NewsOne .eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article .image_wrapper .article_container h1 a, .EasyDNNSkin_BlogTwo .eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article .image_wrapper .article_container h1 a, .EasyDNNSkin_BlogOne .eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article .image_wrapper .article_container h1 a {
    font-size: 16px;
    line-height: 16px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article .image_wrapper .open_article_btn, .EasyDNNSkin_NewsOne .eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article .image_wrapper .open_article_btn, .EasyDNNSkin_BlogTwo .eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article .image_wrapper .open_article_btn, .EasyDNNSkin_BlogOne .eds_news_BlogOne.eds_subCollection_news .in_article_image.has_article .image_wrapper .open_article_btn {
    top: 94%;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_NewsTwo .eds_news_BlogOne.eds_subCollection_news .article .author_group_profile .profile_buttons, .EasyDNNSkin_NewsOne .eds_news_BlogOne.eds_subCollection_news .article .author_group_profile .profile_buttons, .EasyDNNSkin_BlogTwo .eds_news_BlogOne.eds_subCollection_news .article .author_group_profile .profile_buttons, .EasyDNNSkin_BlogOne .eds_news_BlogOne.eds_subCollection_news .article .author_group_profile .profile_buttons {
    padding-left: 0;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogOne.eds_subCollection_news .article .author_group_profile .profile_buttons .social-networks, .EasyDNNSkin_NewsOne .eds_news_BlogOne.eds_subCollection_news .article .author_group_profile .profile_buttons .social-networks, .EasyDNNSkin_BlogTwo .eds_news_BlogOne.eds_subCollection_news .article .author_group_profile .profile_buttons .social-networks, .EasyDNNSkin_BlogOne .eds_news_BlogOne.eds_subCollection_news .article .author_group_profile .profile_buttons .social-networks {
    clear: both;
    padding-top: 5px;
  }
}

/* 
 * 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{
}


/*!
 * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2022 Fonticons, Inc.
 */
.fa{font-family:var(--fa-style-family,"Font Awesome 6 Free");font-weight:var(--fa-style,900)}.fa,.fas,.fa-solid,.far,.fa-regular,.fal,.fa-light,.fat,.fa-thin,.fad,.fa-duotone,.fab,.fa-brands{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width,2em)*-1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-color:var(--fa-border-color,#eee);border-radius:var(--fa-border-radius,.1em);border-style:var(--fa-border-style,solid);border-width:var(--fa-border-width,.08em);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{-webkit-animation-name:fa-beat;animation-name:fa-beat;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{-webkit-animation-name:fa-bounce;animation-name:fa-bounce;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{-webkit-animation-name:fa-fade;animation-name:fa-fade;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade{-webkit-animation-name:fa-beat-fade;animation-name:fa-beat-fade;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{-webkit-animation-name:fa-flip;animation-name:fa-flip;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{-webkit-animation-name:fa-shake;animation-name:fa-shake;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,2s);animation-duration:var(--fa-animation-duration,2s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,steps(8));animation-timing-function:var(--fa-animation-timing,steps(8))}@media(prefers-reduced-motion:reduce){.fa-beat,.fa-bounce,.fa-fade,.fa-beat-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{-webkit-animation-delay:-1ms;animation-delay:-1ms;-webkit-animation-duration:1ms;animation-duration:1ms;-webkit-animation-iteration-count:1;animation-iteration-count:1;transition-delay:0s;transition-duration:0s}}@-webkit-keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@-webkit-keyframes fa-bounce{0%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}100%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}}@keyframes fa-bounce{0%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}100%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}}@-webkit-keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@-webkit-keyframes fa-beat-fade{0%,100%{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-beat-fade{0%,100%{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@-webkit-keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@-webkit-keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,100%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,100%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-webkit-transform:scale(1,-1);transform:scale(1,-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1,-1);transform:scale(-1,-1)}.fa-rotate-by{-webkit-transform:rotate(var(--fa-rotate-angle,none));transform:rotate(var(--fa-rotate-angle,none))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index,auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse,#fff)}.fa-0::before{content:"0"}.fa-1::before{content:"1"}.fa-2::before{content:"2"}.fa-3::before{content:"3"}.fa-4::before{content:"4"}.fa-5::before{content:"5"}.fa-6::before{content:"6"}.fa-7::before{content:"7"}.fa-8::before{content:"8"}.fa-9::before{content:"9"}.fa-a::before{content:"A"}.fa-address-book::before{content:""}.fa-contact-book::before{content:""}.fa-address-card::before{content:""}.fa-contact-card::before{content:""}.fa-vcard::before{content:""}.fa-align-center::before{content:""}.fa-align-justify::before{content:""}.fa-align-left::before{content:""}.fa-align-right::before{content:""}.fa-anchor::before{content:""}.fa-anchor-circle-check::before{content:""}.fa-anchor-circle-exclamation::before{content:""}.fa-anchor-circle-xmark::before{content:""}.fa-anchor-lock::before{content:""}.fa-angle-down::before{content:""}.fa-angle-left::before{content:""}.fa-angle-right::before{content:""}.fa-angle-up::before{content:""}.fa-angles-down::before{content:""}.fa-angle-double-down::before{content:""}.fa-angles-left::before{content:""}.fa-angle-double-left::before{content:""}.fa-angles-right::before{content:""}.fa-angle-double-right::before{content:""}.fa-angles-up::before{content:""}.fa-angle-double-up::before{content:""}.fa-ankh::before{content:""}.fa-apple-whole::before{content:""}.fa-apple-alt::before{content:""}.fa-archway::before{content:""}.fa-arrow-down::before{content:""}.fa-arrow-down-1-9::before{content:""}.fa-sort-numeric-asc::before{content:""}.fa-sort-numeric-down::before{content:""}.fa-arrow-down-9-1::before{content:""}.fa-sort-numeric-desc::before{content:""}.fa-sort-numeric-down-alt::before{content:""}.fa-arrow-down-a-z::before{content:""}.fa-sort-alpha-asc::before{content:""}.fa-sort-alpha-down::before{content:""}.fa-arrow-down-long::before{content:""}.fa-long-arrow-down::before{content:""}.fa-arrow-down-short-wide::before{content:""}.fa-sort-amount-desc::before{content:""}.fa-sort-amount-down-alt::before{content:""}.fa-arrow-down-up-across-line::before{content:""}.fa-arrow-down-up-lock::before{content:""}.fa-arrow-down-wide-short::before{content:""}.fa-sort-amount-asc::before{content:""}.fa-sort-amount-down::before{content:""}.fa-arrow-down-z-a::before{content:""}.fa-sort-alpha-desc::before{content:""}.fa-sort-alpha-down-alt::before{content:""}.fa-arrow-left::before{content:""}.fa-arrow-left-long::before{content:""}.fa-long-arrow-left::before{content:""}.fa-arrow-pointer::before{content:""}.fa-mouse-pointer::before{content:""}.fa-arrow-right::before{content:""}.fa-arrow-right-arrow-left::before{content:""}.fa-exchange::before{content:""}.fa-arrow-right-from-bracket::before{content:""}.fa-sign-out::before{content:""}.fa-arrow-right-long::before{content:""}.fa-long-arrow-right::before{content:""}.fa-arrow-right-to-bracket::before{content:""}.fa-sign-in::before{content:""}.fa-arrow-right-to-city::before{content:""}.fa-arrow-rotate-left::before{content:""}.fa-arrow-left-rotate::before{content:""}.fa-arrow-rotate-back::before{content:""}.fa-arrow-rotate-backward::before{content:""}.fa-undo::before{content:""}.fa-arrow-rotate-right::before{content:""}.fa-arrow-right-rotate::before{content:""}.fa-arrow-rotate-forward::before{content:""}.fa-redo::before{content:""}.fa-arrow-trend-down::before{content:""}.fa-arrow-trend-up::before{content:""}.fa-arrow-turn-down::before{content:""}.fa-level-down::before{content:""}.fa-arrow-turn-up::before{content:""}.fa-level-up::before{content:""}.fa-arrow-up::before{content:""}.fa-arrow-up-1-9::before{content:""}.fa-sort-numeric-up::before{content:""}.fa-arrow-up-9-1::before{content:""}.fa-sort-numeric-up-alt::before{content:""}.fa-arrow-up-a-z::before{content:""}.fa-sort-alpha-up::before{content:""}.fa-arrow-up-from-bracket::before{content:""}.fa-arrow-up-from-ground-water::before{content:""}.fa-arrow-up-from-water-pump::before{content:""}.fa-arrow-up-long::before{content:""}.fa-long-arrow-up::before{content:""}.fa-arrow-up-right-dots::before{content:""}.fa-arrow-up-right-from-square::before{content:""}.fa-external-link::before{content:""}.fa-arrow-up-short-wide::before{content:""}.fa-sort-amount-up-alt::before{content:""}.fa-arrow-up-wide-short::before{content:""}.fa-sort-amount-up::before{content:""}.fa-arrow-up-z-a::before{content:""}.fa-sort-alpha-up-alt::before{content:""}.fa-arrows-down-to-line::before{content:""}.fa-arrows-down-to-people::before{content:""}.fa-arrows-left-right::before{content:""}.fa-arrows-h::before{content:""}.fa-arrows-left-right-to-line::before{content:""}.fa-arrows-rotate::before{content:""}.fa-refresh::before{content:""}.fa-sync::before{content:""}.fa-arrows-spin::before{content:""}.fa-arrows-split-up-and-left::before{content:""}.fa-arrows-to-circle::before{content:""}.fa-arrows-to-dot::before{content:""}.fa-arrows-to-eye::before{content:""}.fa-arrows-turn-right::before{content:""}.fa-arrows-turn-to-dots::before{content:""}.fa-arrows-up-down::before{content:""}.fa-arrows-v::before{content:""}.fa-arrows-up-down-left-right::before{content:""}.fa-arrows::before{content:""}.fa-arrows-up-to-line::before{content:""}.fa-asterisk::before{content:"*"}.fa-at::before{content:"@"}.fa-atom::before{content:""}.fa-audio-description::before{content:""}.fa-austral-sign::before{content:""}.fa-award::before{content:""}.fa-b::before{content:"B"}.fa-baby::before{content:""}.fa-baby-carriage::before{content:""}.fa-carriage-baby::before{content:""}.fa-backward::before{content:""}.fa-backward-fast::before{content:""}.fa-fast-backward::before{content:""}.fa-backward-step::before{content:""}.fa-step-backward::before{content:""}.fa-bacon::before{content:""}.fa-bacteria::before{content:""}.fa-bacterium::before{content:""}.fa-bag-shopping::before{content:""}.fa-shopping-bag::before{content:""}.fa-bahai::before{content:""}.fa-baht-sign::before{content:""}.fa-ban::before{content:""}.fa-cancel::before{content:""}.fa-ban-smoking::before{content:""}.fa-smoking-ban::before{content:""}.fa-bandage::before{content:""}.fa-band-aid::before{content:""}.fa-barcode::before{content:""}.fa-bars::before{content:""}.fa-navicon::before{content:""}.fa-bars-progress::before{content:""}.fa-tasks-alt::before{content:""}.fa-bars-staggered::before{content:""}.fa-reorder::before{content:""}.fa-stream::before{content:""}.fa-baseball::before{content:""}.fa-baseball-ball::before{content:""}.fa-baseball-bat-ball::before{content:""}.fa-basket-shopping::before{content:""}.fa-shopping-basket::before{content:""}.fa-basketball::before{content:""}.fa-basketball-ball::before{content:""}.fa-bath::before{content:""}.fa-bathtub::before{content:""}.fa-battery-empty::before{content:""}.fa-battery-0::before{content:""}.fa-battery-full::before{content:""}.fa-battery::before{content:""}.fa-battery-5::before{content:""}.fa-battery-half::before{content:""}.fa-battery-3::before{content:""}.fa-battery-quarter::before{content:""}.fa-battery-2::before{content:""}.fa-battery-three-quarters::before{content:""}.fa-battery-4::before{content:""}.fa-bed::before{content:""}.fa-bed-pulse::before{content:""}.fa-procedures::before{content:""}.fa-beer-mug-empty::before{content:""}.fa-beer::before{content:""}.fa-bell::before{content:""}.fa-bell-concierge::before{content:""}.fa-concierge-bell::before{content:""}.fa-bell-slash::before{content:""}.fa-bezier-curve::before{content:""}.fa-bicycle::before{content:""}.fa-binoculars::before{content:""}.fa-biohazard::before{content:""}.fa-bitcoin-sign::before{content:""}.fa-blender::before{content:""}.fa-blender-phone::before{content:""}.fa-blog::before{content:""}.fa-bold::before{content:""}.fa-bolt::before{content:""}.fa-zap::before{content:""}.fa-bolt-lightning::before{content:""}.fa-bomb::before{content:""}.fa-bone::before{content:""}.fa-bong::before{content:""}.fa-book::before{content:""}.fa-book-atlas::before{content:""}.fa-atlas::before{content:""}.fa-book-bible::before{content:""}.fa-bible::before{content:""}.fa-book-bookmark::before{content:""}.fa-book-journal-whills::before{content:""}.fa-journal-whills::before{content:""}.fa-book-medical::before{content:""}.fa-book-open::before{content:""}.fa-book-open-reader::before{content:""}.fa-book-reader::before{content:""}.fa-book-quran::before{content:""}.fa-quran::before{content:""}.fa-book-skull::before{content:""}.fa-book-dead::before{content:""}.fa-bookmark::before{content:""}.fa-border-all::before{content:""}.fa-border-none::before{content:""}.fa-border-top-left::before{content:""}.fa-border-style::before{content:""}.fa-bore-hole::before{content:""}.fa-bottle-droplet::before{content:""}.fa-bottle-water::before{content:""}.fa-bowl-food::before{content:""}.fa-bowl-rice::before{content:""}.fa-bowling-ball::before{content:""}.fa-box::before{content:""}.fa-box-archive::before{content:""}.fa-archive::before{content:""}.fa-box-open::before{content:""}.fa-box-tissue::before{content:""}.fa-boxes-packing::before{content:""}.fa-boxes-stacked::before{content:""}.fa-boxes::before{content:""}.fa-boxes-alt::before{content:""}.fa-braille::before{content:""}.fa-brain::before{content:""}.fa-brazilian-real-sign::before{content:""}.fa-bread-slice::before{content:""}.fa-bridge::before{content:""}.fa-bridge-circle-check::before{content:""}.fa-bridge-circle-exclamation::before{content:""}.fa-bridge-circle-xmark::before{content:""}.fa-bridge-lock::before{content:""}.fa-bridge-water::before{content:""}.fa-briefcase::before{content:""}.fa-briefcase-medical::before{content:""}.fa-broom::before{content:""}.fa-broom-ball::before{content:""}.fa-quidditch::before{content:""}.fa-quidditch-broom-ball::before{content:""}.fa-brush::before{content:""}.fa-bucket::before{content:""}.fa-bug::before{content:""}.fa-bug-slash::before{content:""}.fa-bugs::before{content:""}.fa-building::before{content:""}.fa-building-circle-arrow-right::before{content:""}.fa-building-circle-check::before{content:""}.fa-building-circle-exclamation::before{content:""}.fa-building-circle-xmark::before{content:""}.fa-building-columns::before{content:""}.fa-bank::before{content:""}.fa-institution::before{content:""}.fa-museum::before{content:""}.fa-university::before{content:""}.fa-building-flag::before{content:""}.fa-building-lock::before{content:""}.fa-building-ngo::before{content:""}.fa-building-shield::before{content:""}.fa-building-un::before{content:""}.fa-building-user::before{content:""}.fa-building-wheat::before{content:""}.fa-bullhorn::before{content:""}.fa-bullseye::before{content:""}.fa-burger::before{content:""}.fa-hamburger::before{content:""}.fa-burst::before{content:""}.fa-bus::before{content:""}.fa-bus-simple::before{content:""}.fa-bus-alt::before{content:""}.fa-business-time::before{content:""}.fa-briefcase-clock::before{content:""}.fa-c::before{content:"C"}.fa-cake-candles::before{content:""}.fa-birthday-cake::before{content:""}.fa-cake::before{content:""}.fa-calculator::before{content:""}.fa-calendar::before{content:""}.fa-calendar-check::before{content:""}.fa-calendar-day::before{content:""}.fa-calendar-days::before{content:""}.fa-calendar-alt::before{content:""}.fa-calendar-minus::before{content:""}.fa-calendar-plus::before{content:""}.fa-calendar-week::before{content:""}.fa-calendar-xmark::before{content:""}.fa-calendar-times::before{content:""}.fa-camera::before{content:""}.fa-camera-alt::before{content:""}.fa-camera-retro::before{content:""}.fa-camera-rotate::before{content:""}.fa-campground::before{content:""}.fa-candy-cane::before{content:""}.fa-cannabis::before{content:""}.fa-capsules::before{content:""}.fa-car::before{content:""}.fa-automobile::before{content:""}.fa-car-battery::before{content:""}.fa-battery-car::before{content:""}.fa-car-burst::before{content:""}.fa-car-crash::before{content:""}.fa-car-on::before{content:""}.fa-car-rear::before{content:""}.fa-car-alt::before{content:""}.fa-car-side::before{content:""}.fa-car-tunnel::before{content:""}.fa-caravan::before{content:""}.fa-caret-down::before{content:""}.fa-caret-left::before{content:""}.fa-caret-right::before{content:""}.fa-caret-up::before{content:""}.fa-carrot::before{content:""}.fa-cart-arrow-down::before{content:""}.fa-cart-flatbed::before{content:""}.fa-dolly-flatbed::before{content:""}.fa-cart-flatbed-suitcase::before{content:""}.fa-luggage-cart::before{content:""}.fa-cart-plus::before{content:""}.fa-cart-shopping::before{content:""}.fa-shopping-cart::before{content:""}.fa-cash-register::before{content:""}.fa-cat::before{content:""}.fa-cedi-sign::before{content:""}.fa-cent-sign::before{content:""}.fa-certificate::before{content:""}.fa-chair::before{content:""}.fa-chalkboard::before{content:""}.fa-blackboard::before{content:""}.fa-chalkboard-user::before{content:""}.fa-chalkboard-teacher::before{content:""}.fa-champagne-glasses::before{content:""}.fa-glass-cheers::before{content:""}.fa-charging-station::before{content:""}.fa-chart-area::before{content:""}.fa-area-chart::before{content:""}.fa-chart-bar::before{content:""}.fa-bar-chart::before{content:""}.fa-chart-column::before{content:""}.fa-chart-gantt::before{content:""}.fa-chart-line::before{content:""}.fa-line-chart::before{content:""}.fa-chart-pie::before{content:""}.fa-pie-chart::before{content:""}.fa-chart-simple::before{content:""}.fa-check::before{content:""}.fa-check-double::before{content:""}.fa-check-to-slot::before{content:""}.fa-vote-yea::before{content:""}.fa-cheese::before{content:""}.fa-chess::before{content:""}.fa-chess-bishop::before{content:""}.fa-chess-board::before{content:""}.fa-chess-king::before{content:""}.fa-chess-knight::before{content:""}.fa-chess-pawn::before{content:""}.fa-chess-queen::before{content:""}.fa-chess-rook::before{content:""}.fa-chevron-down::before{content:""}.fa-chevron-left::before{content:""}.fa-chevron-right::before{content:""}.fa-chevron-up::before{content:""}.fa-child::before{content:""}.fa-child-dress::before{content:""}.fa-child-reaching::before{content:""}.fa-child-rifle::before{content:""}.fa-children::before{content:""}.fa-church::before{content:""}.fa-circle::before{content:""}.fa-circle-arrow-down::before{content:""}.fa-arrow-circle-down::before{content:""}.fa-circle-arrow-left::before{content:""}.fa-arrow-circle-left::before{content:""}.fa-circle-arrow-right::before{content:""}.fa-arrow-circle-right::before{content:""}.fa-circle-arrow-up::before{content:""}.fa-arrow-circle-up::before{content:""}.fa-circle-check::before{content:""}.fa-check-circle::before{content:""}.fa-circle-chevron-down::before{content:""}.fa-chevron-circle-down::before{content:""}.fa-circle-chevron-left::before{content:""}.fa-chevron-circle-left::before{content:""}.fa-circle-chevron-right::before{content:""}.fa-chevron-circle-right::before{content:""}.fa-circle-chevron-up::before{content:""}.fa-chevron-circle-up::before{content:""}.fa-circle-dollar-to-slot::before{content:""}.fa-donate::before{content:""}.fa-circle-dot::before{content:""}.fa-dot-circle::before{content:""}.fa-circle-down::before{content:""}.fa-arrow-alt-circle-down::before{content:""}.fa-circle-exclamation::before{content:""}.fa-exclamation-circle::before{content:""}.fa-circle-h::before{content:""}.fa-hospital-symbol::before{content:""}.fa-circle-half-stroke::before{content:""}.fa-adjust::before{content:""}.fa-circle-info::before{content:""}.fa-info-circle::before{content:""}.fa-circle-left::before{content:""}.fa-arrow-alt-circle-left::before{content:""}.fa-circle-minus::before{content:""}.fa-minus-circle::before{content:""}.fa-circle-nodes::before{content:""}.fa-circle-notch::before{content:""}.fa-circle-pause::before{content:""}.fa-pause-circle::before{content:""}.fa-circle-play::before{content:""}.fa-play-circle::before{content:""}.fa-circle-plus::before{content:""}.fa-plus-circle::before{content:""}.fa-circle-question::before{content:""}.fa-question-circle::before{content:""}.fa-circle-radiation::before{content:""}.fa-radiation-alt::before{content:""}.fa-circle-right::before{content:""}.fa-arrow-alt-circle-right::before{content:""}.fa-circle-stop::before{content:""}.fa-stop-circle::before{content:""}.fa-circle-up::before{content:""}.fa-arrow-alt-circle-up::before{content:""}.fa-circle-user::before{content:""}.fa-user-circle::before{content:""}.fa-circle-xmark::before{content:""}.fa-times-circle::before{content:""}.fa-xmark-circle::before{content:""}.fa-city::before{content:""}.fa-clapperboard::before{content:""}.fa-clipboard::before{content:""}.fa-clipboard-check::before{content:""}.fa-clipboard-list::before{content:""}.fa-clipboard-question::before{content:""}.fa-clipboard-user::before{content:""}.fa-clock::before{content:""}.fa-clock-four::before{content:""}.fa-clock-rotate-left::before{content:""}.fa-history::before{content:""}.fa-clone::before{content:""}.fa-closed-captioning::before{content:""}.fa-cloud::before{content:""}.fa-cloud-arrow-down::before{content:""}.fa-cloud-download::before{content:""}.fa-cloud-download-alt::before{content:""}.fa-cloud-arrow-up::before{content:""}.fa-cloud-upload::before{content:""}.fa-cloud-upload-alt::before{content:""}.fa-cloud-bolt::before{content:""}.fa-thunderstorm::before{content:""}.fa-cloud-meatball::before{content:""}.fa-cloud-moon::before{content:""}.fa-cloud-moon-rain::before{content:""}.fa-cloud-rain::before{content:""}.fa-cloud-showers-heavy::before{content:""}.fa-cloud-showers-water::before{content:""}.fa-cloud-sun::before{content:""}.fa-cloud-sun-rain::before{content:""}.fa-clover::before{content:""}.fa-code::before{content:""}.fa-code-branch::before{content:""}.fa-code-commit::before{content:""}.fa-code-compare::before{content:""}.fa-code-fork::before{content:""}.fa-code-merge::before{content:""}.fa-code-pull-request::before{content:""}.fa-coins::before{content:""}.fa-colon-sign::before{content:""}.fa-comment::before{content:""}.fa-comment-dollar::before{content:""}.fa-comment-dots::before{content:""}.fa-commenting::before{content:""}.fa-comment-medical::before{content:""}.fa-comment-slash::before{content:""}.fa-comment-sms::before{content:""}.fa-sms::before{content:""}.fa-comments::before{content:""}.fa-comments-dollar::before{content:""}.fa-compact-disc::before{content:""}.fa-compass::before{content:""}.fa-compass-drafting::before{content:""}.fa-drafting-compass::before{content:""}.fa-compress::before{content:""}.fa-computer::before{content:""}.fa-computer-mouse::before{content:""}.fa-mouse::before{content:""}.fa-cookie::before{content:""}.fa-cookie-bite::before{content:""}.fa-copy::before{content:""}.fa-copyright::before{content:""}.fa-couch::before{content:""}.fa-cow::before{content:""}.fa-credit-card::before{content:""}.fa-credit-card-alt::before{content:""}.fa-crop::before{content:""}.fa-crop-simple::before{content:""}.fa-crop-alt::before{content:""}.fa-cross::before{content:""}.fa-crosshairs::before{content:""}.fa-crow::before{content:""}.fa-crown::before{content:""}.fa-crutch::before{content:""}.fa-cruzeiro-sign::before{content:""}.fa-cube::before{content:""}.fa-cubes::before{content:""}.fa-cubes-stacked::before{content:""}.fa-d::before{content:"D"}.fa-database::before{content:""}.fa-delete-left::before{content:""}.fa-backspace::before{content:""}.fa-democrat::before{content:""}.fa-desktop::before{content:""}.fa-desktop-alt::before{content:""}.fa-dharmachakra::before{content:""}.fa-diagram-next::before{content:""}.fa-diagram-predecessor::before{content:""}.fa-diagram-project::before{content:""}.fa-project-diagram::before{content:""}.fa-diagram-successor::before{content:""}.fa-diamond::before{content:""}.fa-diamond-turn-right::before{content:""}.fa-directions::before{content:""}.fa-dice::before{content:""}.fa-dice-d20::before{content:""}.fa-dice-d6::before{content:""}.fa-dice-five::before{content:""}.fa-dice-four::before{content:""}.fa-dice-one::before{content:""}.fa-dice-six::before{content:""}.fa-dice-three::before{content:""}.fa-dice-two::before{content:""}.fa-disease::before{content:""}.fa-display::before{content:""}.fa-divide::before{content:""}.fa-dna::before{content:""}.fa-dog::before{content:""}.fa-dollar-sign::before{content:"$"}.fa-dollar::before{content:"$"}.fa-usd::before{content:"$"}.fa-dolly::before{content:""}.fa-dolly-box::before{content:""}.fa-dong-sign::before{content:""}.fa-door-closed::before{content:""}.fa-door-open::before{content:""}.fa-dove::before{content:""}.fa-down-left-and-up-right-to-center::before{content:""}.fa-compress-alt::before{content:""}.fa-down-long::before{content:""}.fa-long-arrow-alt-down::before{content:""}.fa-download::before{content:""}.fa-dragon::before{content:""}.fa-draw-polygon::before{content:""}.fa-droplet::before{content:""}.fa-tint::before{content:""}.fa-droplet-slash::before{content:""}.fa-tint-slash::before{content:""}.fa-drum::before{content:""}.fa-drum-steelpan::before{content:""}.fa-drumstick-bite::before{content:""}.fa-dumbbell::before{content:""}.fa-dumpster::before{content:""}.fa-dumpster-fire::before{content:""}.fa-dungeon::before{content:""}.fa-e::before{content:"E"}.fa-ear-deaf::before{content:""}.fa-deaf::before{content:""}.fa-deafness::before{content:""}.fa-hard-of-hearing::before{content:""}.fa-ear-listen::before{content:""}.fa-assistive-listening-systems::before{content:""}.fa-earth-africa::before{content:""}.fa-globe-africa::before{content:""}.fa-earth-americas::before{content:""}.fa-earth::before{content:""}.fa-earth-america::before{content:""}.fa-globe-americas::before{content:""}.fa-earth-asia::before{content:""}.fa-globe-asia::before{content:""}.fa-earth-europe::before{content:""}.fa-globe-europe::before{content:""}.fa-earth-oceania::before{content:""}.fa-globe-oceania::before{content:""}.fa-egg::before{content:""}.fa-eject::before{content:""}.fa-elevator::before{content:""}.fa-ellipsis::before{content:""}.fa-ellipsis-h::before{content:""}.fa-ellipsis-vertical::before{content:""}.fa-ellipsis-v::before{content:""}.fa-envelope::before{content:""}.fa-envelope-circle-check::before{content:""}.fa-envelope-open::before{content:""}.fa-envelope-open-text::before{content:""}.fa-envelopes-bulk::before{content:""}.fa-mail-bulk::before{content:""}.fa-equals::before{content:"="}.fa-eraser::before{content:""}.fa-ethernet::before{content:""}.fa-euro-sign::before{content:""}.fa-eur::before{content:""}.fa-euro::before{content:""}.fa-exclamation::before{content:"!"}.fa-expand::before{content:""}.fa-explosion::before{content:""}.fa-eye::before{content:""}.fa-eye-dropper::before{content:""}.fa-eye-dropper-empty::before{content:""}.fa-eyedropper::before{content:""}.fa-eye-low-vision::before{content:""}.fa-low-vision::before{content:""}.fa-eye-slash::before{content:""}.fa-f::before{content:"F"}.fa-face-angry::before{content:""}.fa-angry::before{content:""}.fa-face-dizzy::before{content:""}.fa-dizzy::before{content:""}.fa-face-flushed::before{content:""}.fa-flushed::before{content:""}.fa-face-frown::before{content:""}.fa-frown::before{content:""}.fa-face-frown-open::before{content:""}.fa-frown-open::before{content:""}.fa-face-grimace::before{content:""}.fa-grimace::before{content:""}.fa-face-grin::before{content:""}.fa-grin::before{content:""}.fa-face-grin-beam::before{content:""}.fa-grin-beam::before{content:""}.fa-face-grin-beam-sweat::before{content:""}.fa-grin-beam-sweat::before{content:""}.fa-face-grin-hearts::before{content:""}.fa-grin-hearts::before{content:""}.fa-face-grin-squint::before{content:""}.fa-grin-squint::before{content:""}.fa-face-grin-squint-tears::before{content:""}.fa-grin-squint-tears::before{content:""}.fa-face-grin-stars::before{content:""}.fa-grin-stars::before{content:""}.fa-face-grin-tears::before{content:""}.fa-grin-tears::before{content:""}.fa-face-grin-tongue::before{content:""}.fa-grin-tongue::before{content:""}.fa-face-grin-tongue-squint::before{content:""}.fa-grin-tongue-squint::before{content:""}.fa-face-grin-tongue-wink::before{content:""}.fa-grin-tongue-wink::before{content:""}.fa-face-grin-wide::before{content:""}.fa-grin-alt::before{content:""}.fa-face-grin-wink::before{content:""}.fa-grin-wink::before{content:""}.fa-face-kiss::before{content:""}.fa-kiss::before{content:""}.fa-face-kiss-beam::before{content:""}.fa-kiss-beam::before{content:""}.fa-face-kiss-wink-heart::before{content:""}.fa-kiss-wink-heart::before{content:""}.fa-face-laugh::before{content:""}.fa-laugh::before{content:""}.fa-face-laugh-beam::before{content:""}.fa-laugh-beam::before{content:""}.fa-face-laugh-squint::before{content:""}.fa-laugh-squint::before{content:""}.fa-face-laugh-wink::before{content:""}.fa-laugh-wink::before{content:""}.fa-face-meh::before{content:""}.fa-meh::before{content:""}.fa-face-meh-blank::before{content:""}.fa-meh-blank::before{content:""}.fa-face-rolling-eyes::before{content:""}.fa-meh-rolling-eyes::before{content:""}.fa-face-sad-cry::before{content:""}.fa-sad-cry::before{content:""}.fa-face-sad-tear::before{content:""}.fa-sad-tear::before{content:""}.fa-face-smile::before{content:""}.fa-smile::before{content:""}.fa-face-smile-beam::before{content:""}.fa-smile-beam::before{content:""}.fa-face-smile-wink::before{content:""}.fa-smile-wink::before{content:""}.fa-face-surprise::before{content:""}.fa-surprise::before{content:""}.fa-face-tired::before{content:""}.fa-tired::before{content:""}.fa-fan::before{content:""}.fa-faucet::before{content:""}.fa-faucet-drip::before{content:""}.fa-fax::before{content:""}.fa-feather::before{content:""}.fa-feather-pointed::before{content:""}.fa-feather-alt::before{content:""}.fa-ferry::before{content:""}.fa-file::before{content:""}.fa-file-arrow-down::before{content:""}.fa-file-download::before{content:""}.fa-file-arrow-up::before{content:""}.fa-file-upload::before{content:""}.fa-file-audio::before{content:""}.fa-file-circle-check::before{content:""}.fa-file-circle-exclamation::before{content:""}.fa-file-circle-minus::before{content:""}.fa-file-circle-plus::before{content:""}.fa-file-circle-question::before{content:""}.fa-file-circle-xmark::before{content:""}.fa-file-code::before{content:""}.fa-file-contract::before{content:""}.fa-file-csv::before{content:""}.fa-file-excel::before{content:""}.fa-file-export::before{content:""}.fa-arrow-right-from-file::before{content:""}.fa-file-image::before{content:""}.fa-file-import::before{content:""}.fa-arrow-right-to-file::before{content:""}.fa-file-invoice::before{content:""}.fa-file-invoice-dollar::before{content:""}.fa-file-lines::before{content:""}.fa-file-alt::before{content:""}.fa-file-text::before{content:""}.fa-file-medical::before{content:""}.fa-file-pdf::before{content:""}.fa-file-pen::before{content:""}.fa-file-edit::before{content:""}.fa-file-powerpoint::before{content:""}.fa-file-prescription::before{content:""}.fa-file-shield::before{content:""}.fa-file-signature::before{content:""}.fa-file-video::before{content:""}.fa-file-waveform::before{content:""}.fa-file-medical-alt::before{content:""}.fa-file-word::before{content:""}.fa-file-zipper::before{content:""}.fa-file-archive::before{content:""}.fa-fill::before{content:""}.fa-fill-drip::before{content:""}.fa-film::before{content:""}.fa-filter::before{content:""}.fa-filter-circle-dollar::before{content:""}.fa-funnel-dollar::before{content:""}.fa-filter-circle-xmark::before{content:""}.fa-fingerprint::before{content:""}.fa-fire::before{content:""}.fa-fire-burner::before{content:""}.fa-fire-extinguisher::before{content:""}.fa-fire-flame-curved::before{content:""}.fa-fire-alt::before{content:""}.fa-fire-flame-simple::before{content:""}.fa-burn::before{content:""}.fa-fish::before{content:""}.fa-fish-fins::before{content:""}.fa-flag::before{content:""}.fa-flag-checkered::before{content:""}.fa-flag-usa::before{content:""}.fa-flask::before{content:""}.fa-flask-vial::before{content:""}.fa-floppy-disk::before{content:""}.fa-save::before{content:""}.fa-florin-sign::before{content:""}.fa-folder::before{content:""}.fa-folder-blank::before{content:""}.fa-folder-closed::before{content:""}.fa-folder-minus::before{content:""}.fa-folder-open::before{content:""}.fa-folder-plus::before{content:""}.fa-folder-tree::before{content:""}.fa-font::before{content:""}.fa-football::before{content:""}.fa-football-ball::before{content:""}.fa-forward::before{content:""}.fa-forward-fast::before{content:""}.fa-fast-forward::before{content:""}.fa-forward-step::before{content:""}.fa-step-forward::before{content:""}.fa-franc-sign::before{content:""}.fa-frog::before{content:""}.fa-futbol::before{content:""}.fa-futbol-ball::before{content:""}.fa-soccer-ball::before{content:""}.fa-g::before{content:"G"}.fa-gamepad::before{content:""}.fa-gas-pump::before{content:""}.fa-gauge::before{content:""}.fa-dashboard::before{content:""}.fa-gauge-med::before{content:""}.fa-tachometer-alt-average::before{content:""}.fa-gauge-high::before{content:""}.fa-tachometer-alt::before{content:""}.fa-tachometer-alt-fast::before{content:""}.fa-gauge-simple::before{content:""}.fa-gauge-simple-med::before{content:""}.fa-tachometer-average::before{content:""}.fa-gauge-simple-high::before{content:""}.fa-tachometer::before{content:""}.fa-tachometer-fast::before{content:""}.fa-gavel::before{content:""}.fa-legal::before{content:""}.fa-gear::before{content:""}.fa-cog::before{content:""}.fa-gears::before{content:""}.fa-cogs::before{content:""}.fa-gem::before{content:""}.fa-genderless::before{content:""}.fa-ghost::before{content:""}.fa-gift::before{content:""}.fa-gifts::before{content:""}.fa-glass-water::before{content:""}.fa-glass-water-droplet::before{content:""}.fa-glasses::before{content:""}.fa-globe::before{content:""}.fa-golf-ball-tee::before{content:""}.fa-golf-ball::before{content:""}.fa-gopuram::before{content:""}.fa-graduation-cap::before{content:""}.fa-mortar-board::before{content:""}.fa-greater-than::before{content:">"}.fa-greater-than-equal::before{content:""}.fa-grip::before{content:""}.fa-grip-horizontal::before{content:""}.fa-grip-lines::before{content:""}.fa-grip-lines-vertical::before{content:""}.fa-grip-vertical::before{content:""}.fa-group-arrows-rotate::before{content:""}.fa-guarani-sign::before{content:""}.fa-guitar::before{content:""}.fa-gun::before{content:""}.fa-h::before{content:"H"}.fa-hammer::before{content:""}.fa-hamsa::before{content:""}.fa-hand::before{content:""}.fa-hand-paper::before{content:""}.fa-hand-back-fist::before{content:""}.fa-hand-rock::before{content:""}.fa-hand-dots::before{content:""}.fa-allergies::before{content:""}.fa-hand-fist::before{content:""}.fa-fist-raised::before{content:""}.fa-hand-holding::before{content:""}.fa-hand-holding-dollar::before{content:""}.fa-hand-holding-usd::before{content:""}.fa-hand-holding-droplet::before{content:""}.fa-hand-holding-water::before{content:""}.fa-hand-holding-hand::before{content:""}.fa-hand-holding-heart::before{content:""}.fa-hand-holding-medical::before{content:""}.fa-hand-lizard::before{content:""}.fa-hand-middle-finger::before{content:""}.fa-hand-peace::before{content:""}.fa-hand-point-down::before{content:""}.fa-hand-point-left::before{content:""}.fa-hand-point-right::before{content:""}.fa-hand-point-up::before{content:""}.fa-hand-pointer::before{content:""}.fa-hand-scissors::before{content:""}.fa-hand-sparkles::before{content:""}.fa-hand-spock::before{content:""}.fa-handcuffs::before{content:""}.fa-hands::before{content:""}.fa-sign-language::before{content:""}.fa-signing::before{content:""}.fa-hands-asl-interpreting::before{content:""}.fa-american-sign-language-interpreting::before{content:""}.fa-asl-interpreting::before{content:""}.fa-hands-american-sign-language-interpreting::before{content:""}.fa-hands-bound::before{content:""}.fa-hands-bubbles::before{content:""}.fa-hands-wash::before{content:""}.fa-hands-clapping::before{content:""}.fa-hands-holding::before{content:""}.fa-hands-holding-child::before{content:""}.fa-hands-holding-circle::before{content:""}.fa-hands-praying::before{content:""}.fa-praying-hands::before{content:""}.fa-handshake::before{content:""}.fa-handshake-angle::before{content:""}.fa-hands-helping::before{content:""}.fa-handshake-simple::before{content:""}.fa-handshake-alt::before{content:""}.fa-handshake-simple-slash::before{content:""}.fa-handshake-alt-slash::before{content:""}.fa-handshake-slash::before{content:""}.fa-hanukiah::before{content:""}.fa-hard-drive::before{content:""}.fa-hdd::before{content:""}.fa-hashtag::before{content:"#"}.fa-hat-cowboy::before{content:""}.fa-hat-cowboy-side::before{content:""}.fa-hat-wizard::before{content:""}.fa-head-side-cough::before{content:""}.fa-head-side-cough-slash::before{content:""}.fa-head-side-mask::before{content:""}.fa-head-side-virus::before{content:""}.fa-heading::before{content:""}.fa-header::before{content:""}.fa-headphones::before{content:""}.fa-headphones-simple::before{content:""}.fa-headphones-alt::before{content:""}.fa-headset::before{content:""}.fa-heart::before{content:""}.fa-heart-circle-bolt::before{content:""}.fa-heart-circle-check::before{content:""}.fa-heart-circle-exclamation::before{content:""}.fa-heart-circle-minus::before{content:""}.fa-heart-circle-plus::before{content:""}.fa-heart-circle-xmark::before{content:""}.fa-heart-crack::before{content:""}.fa-heart-broken::before{content:""}.fa-heart-pulse::before{content:""}.fa-heartbeat::before{content:""}.fa-helicopter::before{content:""}.fa-helicopter-symbol::before{content:""}.fa-helmet-safety::before{content:""}.fa-hard-hat::before{content:""}.fa-hat-hard::before{content:""}.fa-helmet-un::before{content:""}.fa-highlighter::before{content:""}.fa-hill-avalanche::before{content:""}.fa-hill-rockslide::before{content:""}.fa-hippo::before{content:""}.fa-hockey-puck::before{content:""}.fa-holly-berry::before{content:""}.fa-horse::before{content:""}.fa-horse-head::before{content:""}.fa-hospital::before{content:""}.fa-hospital-alt::before{content:""}.fa-hospital-wide::before{content:""}.fa-hospital-user::before{content:""}.fa-hot-tub-person::before{content:""}.fa-hot-tub::before{content:""}.fa-hotdog::before{content:""}.fa-hotel::before{content:""}.fa-hourglass::before{content:""}.fa-hourglass-2::before{content:""}.fa-hourglass-half::before{content:""}.fa-hourglass-empty::before{content:""}.fa-hourglass-end::before{content:""}.fa-hourglass-3::before{content:""}.fa-hourglass-start::before{content:""}.fa-hourglass-1::before{content:""}.fa-house::before{content:""}.fa-home::before{content:""}.fa-home-alt::before{content:""}.fa-home-lg-alt::before{content:""}.fa-house-chimney::before{content:""}.fa-home-lg::before{content:""}.fa-house-chimney-crack::before{content:""}.fa-house-damage::before{content:""}.fa-house-chimney-medical::before{content:""}.fa-clinic-medical::before{content:""}.fa-house-chimney-user::before{content:""}.fa-house-chimney-window::before{content:""}.fa-house-circle-check::before{content:""}.fa-house-circle-exclamation::before{content:""}.fa-house-circle-xmark::before{content:""}.fa-house-crack::before{content:""}.fa-house-fire::before{content:""}.fa-house-flag::before{content:""}.fa-house-flood-water::before{content:""}.fa-house-flood-water-circle-arrow-right::before{content:""}.fa-house-laptop::before{content:""}.fa-laptop-house::before{content:""}.fa-house-lock::before{content:""}.fa-house-medical::before{content:""}.fa-house-medical-circle-check::before{content:""}.fa-house-medical-circle-exclamation::before{content:""}.fa-house-medical-circle-xmark::before{content:""}.fa-house-medical-flag::before{content:""}.fa-house-signal::before{content:""}.fa-house-tsunami::before{content:""}.fa-house-user::before{content:""}.fa-home-user::before{content:""}.fa-hryvnia-sign::before{content:""}.fa-hryvnia::before{content:""}.fa-hurricane::before{content:""}.fa-i::before{content:"I"}.fa-i-cursor::before{content:""}.fa-ice-cream::before{content:""}.fa-icicles::before{content:""}.fa-icons::before{content:""}.fa-heart-music-camera-bolt::before{content:""}.fa-id-badge::before{content:""}.fa-id-card::before{content:""}.fa-drivers-license::before{content:""}.fa-id-card-clip::before{content:""}.fa-id-card-alt::before{content:""}.fa-igloo::before{content:""}.fa-image::before{content:""}.fa-image-portrait::before{content:""}.fa-portrait::before{content:""}.fa-images::before{content:""}.fa-inbox::before{content:""}.fa-indent::before{content:""}.fa-indian-rupee-sign::before{content:""}.fa-indian-rupee::before{content:""}.fa-inr::before{content:""}.fa-industry::before{content:""}.fa-infinity::before{content:""}.fa-info::before{content:""}.fa-italic::before{content:""}.fa-j::before{content:"J"}.fa-jar::before{content:""}.fa-jar-wheat::before{content:""}.fa-jedi::before{content:""}.fa-jet-fighter::before{content:""}.fa-fighter-jet::before{content:""}.fa-jet-fighter-up::before{content:""}.fa-joint::before{content:""}.fa-jug-detergent::before{content:""}.fa-k::before{content:"K"}.fa-kaaba::before{content:""}.fa-key::before{content:""}.fa-keyboard::before{content:""}.fa-khanda::before{content:""}.fa-kip-sign::before{content:""}.fa-kit-medical::before{content:""}.fa-first-aid::before{content:""}.fa-kitchen-set::before{content:""}.fa-kiwi-bird::before{content:""}.fa-l::before{content:"L"}.fa-land-mine-on::before{content:""}.fa-landmark::before{content:""}.fa-landmark-dome::before{content:""}.fa-landmark-alt::before{content:""}.fa-landmark-flag::before{content:""}.fa-language::before{content:""}.fa-laptop::before{content:""}.fa-laptop-code::before{content:""}.fa-laptop-file::before{content:""}.fa-laptop-medical::before{content:""}.fa-lari-sign::before{content:""}.fa-layer-group::before{content:""}.fa-leaf::before{content:""}.fa-left-long::before{content:""}.fa-long-arrow-alt-left::before{content:""}.fa-left-right::before{content:""}.fa-arrows-alt-h::before{content:""}.fa-lemon::before{content:""}.fa-less-than::before{content:"<"}.fa-less-than-equal::before{content:""}.fa-life-ring::before{content:""}.fa-lightbulb::before{content:""}.fa-lines-leaning::before{content:""}.fa-link::before{content:""}.fa-chain::before{content:""}.fa-link-slash::before{content:""}.fa-chain-broken::before{content:""}.fa-chain-slash::before{content:""}.fa-unlink::before{content:""}.fa-lira-sign::before{content:""}.fa-list::before{content:""}.fa-list-squares::before{content:""}.fa-list-check::before{content:""}.fa-tasks::before{content:""}.fa-list-ol::before{content:""}.fa-list-1-2::before{content:""}.fa-list-numeric::before{content:""}.fa-list-ul::before{content:""}.fa-list-dots::before{content:""}.fa-litecoin-sign::before{content:""}.fa-location-arrow::before{content:""}.fa-location-crosshairs::before{content:""}.fa-location::before{content:""}.fa-location-dot::before{content:""}.fa-map-marker-alt::before{content:""}.fa-location-pin::before{content:""}.fa-map-marker::before{content:""}.fa-location-pin-lock::before{content:""}.fa-lock::before{content:""}.fa-lock-open::before{content:""}.fa-locust::before{content:""}.fa-lungs::before{content:""}.fa-lungs-virus::before{content:""}.fa-m::before{content:"M"}.fa-magnet::before{content:""}.fa-magnifying-glass::before{content:""}.fa-search::before{content:""}.fa-magnifying-glass-arrow-right::before{content:""}.fa-magnifying-glass-chart::before{content:""}.fa-magnifying-glass-dollar::before{content:""}.fa-search-dollar::before{content:""}.fa-magnifying-glass-location::before{content:""}.fa-search-location::before{content:""}.fa-magnifying-glass-minus::before{content:""}.fa-search-minus::before{content:""}.fa-magnifying-glass-plus::before{content:""}.fa-search-plus::before{content:""}.fa-manat-sign::before{content:""}.fa-map::before{content:""}.fa-map-location::before{content:""}.fa-map-marked::before{content:""}.fa-map-location-dot::before{content:""}.fa-map-marked-alt::before{content:""}.fa-map-pin::before{content:""}.fa-marker::before{content:""}.fa-mars::before{content:""}.fa-mars-and-venus::before{content:""}.fa-mars-and-venus-burst::before{content:""}.fa-mars-double::before{content:""}.fa-mars-stroke::before{content:""}.fa-mars-stroke-right::before{content:""}.fa-mars-stroke-h::before{content:""}.fa-mars-stroke-up::before{content:""}.fa-mars-stroke-v::before{content:""}.fa-martini-glass::before{content:""}.fa-glass-martini-alt::before{content:""}.fa-martini-glass-citrus::before{content:""}.fa-cocktail::before{content:""}.fa-martini-glass-empty::before{content:""}.fa-glass-martini::before{content:""}.fa-mask::before{content:""}.fa-mask-face::before{content:""}.fa-mask-ventilator::before{content:""}.fa-masks-theater::before{content:""}.fa-theater-masks::before{content:""}.fa-mattress-pillow::before{content:""}.fa-maximize::before{content:""}.fa-expand-arrows-alt::before{content:""}.fa-medal::before{content:""}.fa-memory::before{content:""}.fa-menorah::before{content:""}.fa-mercury::before{content:""}.fa-message::before{content:""}.fa-comment-alt::before{content:""}.fa-meteor::before{content:""}.fa-microchip::before{content:""}.fa-microphone::before{content:""}.fa-microphone-lines::before{content:""}.fa-microphone-alt::before{content:""}.fa-microphone-lines-slash::before{content:""}.fa-microphone-alt-slash::before{content:""}.fa-microphone-slash::before{content:""}.fa-microscope::before{content:""}.fa-mill-sign::before{content:""}.fa-minimize::before{content:""}.fa-compress-arrows-alt::before{content:""}.fa-minus::before{content:""}.fa-subtract::before{content:""}.fa-mitten::before{content:""}.fa-mobile::before{content:""}.fa-mobile-android::before{content:""}.fa-mobile-phone::before{content:""}.fa-mobile-button::before{content:""}.fa-mobile-retro::before{content:""}.fa-mobile-screen::before{content:""}.fa-mobile-android-alt::before{content:""}.fa-mobile-screen-button::before{content:""}.fa-mobile-alt::before{content:""}.fa-money-bill::before{content:""}.fa-money-bill-1::before{content:""}.fa-money-bill-alt::before{content:""}.fa-money-bill-1-wave::before{content:""}.fa-money-bill-wave-alt::before{content:""}.fa-money-bill-transfer::before{content:""}.fa-money-bill-trend-up::before{content:""}.fa-money-bill-wave::before{content:""}.fa-money-bill-wheat::before{content:""}.fa-money-bills::before{content:""}.fa-money-check::before{content:""}.fa-money-check-dollar::before{content:""}.fa-money-check-alt::before{content:""}.fa-monument::before{content:""}.fa-moon::before{content:""}.fa-mortar-pestle::before{content:""}.fa-mosque::before{content:""}.fa-mosquito::before{content:""}.fa-mosquito-net::before{content:""}.fa-motorcycle::before{content:""}.fa-mound::before{content:""}.fa-mountain::before{content:""}.fa-mountain-city::before{content:""}.fa-mountain-sun::before{content:""}.fa-mug-hot::before{content:""}.fa-mug-saucer::before{content:""}.fa-coffee::before{content:""}.fa-music::before{content:""}.fa-n::before{content:"N"}.fa-naira-sign::before{content:""}.fa-network-wired::before{content:""}.fa-neuter::before{content:""}.fa-newspaper::before{content:""}.fa-not-equal::before{content:""}.fa-note-sticky::before{content:""}.fa-sticky-note::before{content:""}.fa-notes-medical::before{content:""}.fa-o::before{content:"O"}.fa-object-group::before{content:""}.fa-object-ungroup::before{content:""}.fa-oil-can::before{content:""}.fa-oil-well::before{content:""}.fa-om::before{content:""}.fa-otter::before{content:""}.fa-outdent::before{content:""}.fa-dedent::before{content:""}.fa-p::before{content:"P"}.fa-pager::before{content:""}.fa-paint-roller::before{content:""}.fa-paintbrush::before{content:""}.fa-paint-brush::before{content:""}.fa-palette::before{content:""}.fa-pallet::before{content:""}.fa-panorama::before{content:""}.fa-paper-plane::before{content:""}.fa-paperclip::before{content:""}.fa-parachute-box::before{content:""}.fa-paragraph::before{content:""}.fa-passport::before{content:""}.fa-paste::before{content:""}.fa-file-clipboard::before{content:""}.fa-pause::before{content:""}.fa-paw::before{content:""}.fa-peace::before{content:""}.fa-pen::before{content:""}.fa-pen-clip::before{content:""}.fa-pen-alt::before{content:""}.fa-pen-fancy::before{content:""}.fa-pen-nib::before{content:""}.fa-pen-ruler::before{content:""}.fa-pencil-ruler::before{content:""}.fa-pen-to-square::before{content:""}.fa-edit::before{content:""}.fa-pencil::before{content:""}.fa-pencil-alt::before{content:""}.fa-people-arrows-left-right::before{content:""}.fa-people-arrows::before{content:""}.fa-people-carry-box::before{content:""}.fa-people-carry::before{content:""}.fa-people-group::before{content:""}.fa-people-line::before{content:""}.fa-people-pulling::before{content:""}.fa-people-robbery::before{content:""}.fa-people-roof::before{content:""}.fa-pepper-hot::before{content:""}.fa-percent::before{content:"%"}.fa-percentage::before{content:"%"}.fa-person::before{content:""}.fa-male::before{content:""}.fa-person-arrow-down-to-line::before{content:""}.fa-person-arrow-up-from-line::before{content:""}.fa-person-biking::before{content:""}.fa-biking::before{content:""}.fa-person-booth::before{content:""}.fa-person-breastfeeding::before{content:""}.fa-person-burst::before{content:""}.fa-person-cane::before{content:""}.fa-person-chalkboard::before{content:""}.fa-person-circle-check::before{content:""}.fa-person-circle-exclamation::before{content:""}.fa-person-circle-minus::before{content:""}.fa-person-circle-plus::before{content:""}.fa-person-circle-question::before{content:""}.fa-person-circle-xmark::before{content:""}.fa-person-digging::before{content:""}.fa-digging::before{content:""}.fa-person-dots-from-line::before{content:""}.fa-diagnoses::before{content:""}.fa-person-dress::before{content:""}.fa-female::before{content:""}.fa-person-dress-burst::before{content:""}.fa-person-drowning::before{content:""}.fa-person-falling::before{content:""}.fa-person-falling-burst::before{content:""}.fa-person-half-dress::before{content:""}.fa-person-harassing::before{content:""}.fa-person-hiking::before{content:""}.fa-hiking::before{content:""}.fa-person-military-pointing::before{content:""}.fa-person-military-rifle::before{content:""}.fa-person-military-to-person::before{content:""}.fa-person-praying::before{content:""}.fa-pray::before{content:""}.fa-person-pregnant::before{content:""}.fa-person-rays::before{content:""}.fa-person-rifle::before{content:""}.fa-person-running::before{content:""}.fa-running::before{content:""}.fa-person-shelter::before{content:""}.fa-person-skating::before{content:""}.fa-skating::before{content:""}.fa-person-skiing::before{content:""}.fa-skiing::before{content:""}.fa-person-skiing-nordic::before{content:""}.fa-skiing-nordic::before{content:""}.fa-person-snowboarding::before{content:""}.fa-snowboarding::before{content:""}.fa-person-swimming::before{content:""}.fa-swimmer::before{content:""}.fa-person-through-window::before{content:""}.fa-person-walking::before{content:""}.fa-walking::before{content:""}.fa-person-walking-arrow-loop-left::before{content:""}.fa-person-walking-arrow-right::before{content:""}.fa-person-walking-dashed-line-arrow-right::before{content:""}.fa-person-walking-luggage::before{content:""}.fa-person-walking-with-cane::before{content:""}.fa-blind::before{content:""}.fa-peseta-sign::before{content:""}.fa-peso-sign::before{content:""}.fa-phone::before{content:""}.fa-phone-flip::before{content:""}.fa-phone-alt::before{content:""}.fa-phone-slash::before{content:""}.fa-phone-volume::before{content:""}.fa-volume-control-phone::before{content:""}.fa-photo-film::before{content:""}.fa-photo-video::before{content:""}.fa-piggy-bank::before{content:""}.fa-pills::before{content:""}.fa-pizza-slice::before{content:""}.fa-place-of-worship::before{content:""}.fa-plane::before{content:""}.fa-plane-arrival::before{content:""}.fa-plane-circle-check::before{content:""}.fa-plane-circle-exclamation::before{content:""}.fa-plane-circle-xmark::before{content:""}.fa-plane-departure::before{content:""}.fa-plane-lock::before{content:""}.fa-plane-slash::before{content:""}.fa-plane-up::before{content:""}.fa-plant-wilt::before{content:""}.fa-plate-wheat::before{content:""}.fa-play::before{content:""}.fa-plug::before{content:""}.fa-plug-circle-bolt::before{content:""}.fa-plug-circle-check::before{content:""}.fa-plug-circle-exclamation::before{content:""}.fa-plug-circle-minus::before{content:""}.fa-plug-circle-plus::before{content:""}.fa-plug-circle-xmark::before{content:""}.fa-plus::before{content:"+"}.fa-add::before{content:"+"}.fa-plus-minus::before{content:""}.fa-podcast::before{content:""}.fa-poo::before{content:""}.fa-poo-storm::before{content:""}.fa-poo-bolt::before{content:""}.fa-poop::before{content:""}.fa-power-off::before{content:""}.fa-prescription::before{content:""}.fa-prescription-bottle::before{content:""}.fa-prescription-bottle-medical::before{content:""}.fa-prescription-bottle-alt::before{content:""}.fa-print::before{content:""}.fa-pump-medical::before{content:""}.fa-pump-soap::before{content:""}.fa-puzzle-piece::before{content:""}.fa-q::before{content:"Q"}.fa-qrcode::before{content:""}.fa-question::before{content:"?"}.fa-quote-left::before{content:""}.fa-quote-left-alt::before{content:""}.fa-quote-right::before{content:""}.fa-quote-right-alt::before{content:""}.fa-r::before{content:"R"}.fa-radiation::before{content:""}.fa-radio::before{content:""}.fa-rainbow::before{content:""}.fa-ranking-star::before{content:""}.fa-receipt::before{content:""}.fa-record-vinyl::before{content:""}.fa-rectangle-ad::before{content:""}.fa-ad::before{content:""}.fa-rectangle-list::before{content:""}.fa-list-alt::before{content:""}.fa-rectangle-xmark::before{content:""}.fa-rectangle-times::before{content:""}.fa-times-rectangle::before{content:""}.fa-window-close::before{content:""}.fa-recycle::before{content:""}.fa-registered::before{content:""}.fa-repeat::before{content:""}.fa-reply::before{content:""}.fa-mail-reply::before{content:""}.fa-reply-all::before{content:""}.fa-mail-reply-all::before{content:""}.fa-republican::before{content:""}.fa-restroom::before{content:""}.fa-retweet::before{content:""}.fa-ribbon::before{content:""}.fa-right-from-bracket::before{content:""}.fa-sign-out-alt::before{content:""}.fa-right-left::before{content:""}.fa-exchange-alt::before{content:""}.fa-right-long::before{content:""}.fa-long-arrow-alt-right::before{content:""}.fa-right-to-bracket::before{content:""}.fa-sign-in-alt::before{content:""}.fa-ring::before{content:""}.fa-road::before{content:""}.fa-road-barrier::before{content:""}.fa-road-bridge::before{content:""}.fa-road-circle-check::before{content:""}.fa-road-circle-exclamation::before{content:""}.fa-road-circle-xmark::before{content:""}.fa-road-lock::before{content:""}.fa-road-spikes::before{content:""}.fa-robot::before{content:""}.fa-rocket::before{content:""}.fa-rotate::before{content:""}.fa-sync-alt::before{content:""}.fa-rotate-left::before{content:""}.fa-rotate-back::before{content:""}.fa-rotate-backward::before{content:""}.fa-undo-alt::before{content:""}.fa-rotate-right::before{content:""}.fa-redo-alt::before{content:""}.fa-rotate-forward::before{content:""}.fa-route::before{content:""}.fa-rss::before{content:""}.fa-feed::before{content:""}.fa-ruble-sign::before{content:""}.fa-rouble::before{content:""}.fa-rub::before{content:""}.fa-ruble::before{content:""}.fa-rug::before{content:""}.fa-ruler::before{content:""}.fa-ruler-combined::before{content:""}.fa-ruler-horizontal::before{content:""}.fa-ruler-vertical::before{content:""}.fa-rupee-sign::before{content:""}.fa-rupee::before{content:""}.fa-rupiah-sign::before{content:""}.fa-s::before{content:"S"}.fa-sack-dollar::before{content:""}.fa-sack-xmark::before{content:""}.fa-sailboat::before{content:""}.fa-satellite::before{content:""}.fa-satellite-dish::before{content:""}.fa-scale-balanced::before{content:""}.fa-balance-scale::before{content:""}.fa-scale-unbalanced::before{content:""}.fa-balance-scale-left::before{content:""}.fa-scale-unbalanced-flip::before{content:""}.fa-balance-scale-right::before{content:""}.fa-school::before{content:""}.fa-school-circle-check::before{content:""}.fa-school-circle-exclamation::before{content:""}.fa-school-circle-xmark::before{content:""}.fa-school-flag::before{content:""}.fa-school-lock::before{content:""}.fa-scissors::before{content:""}.fa-cut::before{content:""}.fa-screwdriver::before{content:""}.fa-screwdriver-wrench::before{content:""}.fa-tools::before{content:""}.fa-scroll::before{content:""}.fa-scroll-torah::before{content:""}.fa-torah::before{content:""}.fa-sd-card::before{content:""}.fa-section::before{content:""}.fa-seedling::before{content:""}.fa-sprout::before{content:""}.fa-server::before{content:""}.fa-shapes::before{content:""}.fa-triangle-circle-square::before{content:""}.fa-share::before{content:""}.fa-arrow-turn-right::before{content:""}.fa-mail-forward::before{content:""}.fa-share-from-square::before{content:""}.fa-share-square::before{content:""}.fa-share-nodes::before{content:""}.fa-share-alt::before{content:""}.fa-sheet-plastic::before{content:""}.fa-shekel-sign::before{content:""}.fa-ils::before{content:""}.fa-shekel::before{content:""}.fa-sheqel::before{content:""}.fa-sheqel-sign::before{content:""}.fa-shield::before{content:""}.fa-shield-blank::before{content:""}.fa-shield-cat::before{content:""}.fa-shield-dog::before{content:""}.fa-shield-halved::before{content:""}.fa-shield-alt::before{content:""}.fa-shield-heart::before{content:""}.fa-shield-virus::before{content:""}.fa-ship::before{content:""}.fa-shirt::before{content:""}.fa-t-shirt::before{content:""}.fa-tshirt::before{content:""}.fa-shoe-prints::before{content:""}.fa-shop::before{content:""}.fa-store-alt::before{content:""}.fa-shop-lock::before{content:""}.fa-shop-slash::before{content:""}.fa-store-alt-slash::before{content:""}.fa-shower::before{content:""}.fa-shrimp::before{content:""}.fa-shuffle::before{content:""}.fa-random::before{content:""}.fa-shuttle-space::before{content:""}.fa-space-shuttle::before{content:""}.fa-sign-hanging::before{content:""}.fa-sign::before{content:""}.fa-signal::before{content:""}.fa-signal-5::before{content:""}.fa-signal-perfect::before{content:""}.fa-signature::before{content:""}.fa-signs-post::before{content:""}.fa-map-signs::before{content:""}.fa-sim-card::before{content:""}.fa-sink::before{content:""}.fa-sitemap::before{content:""}.fa-skull::before{content:""}.fa-skull-crossbones::before{content:""}.fa-slash::before{content:""}.fa-sleigh::before{content:""}.fa-sliders::before{content:""}.fa-sliders-h::before{content:""}.fa-smog::before{content:""}.fa-smoking::before{content:""}.fa-snowflake::before{content:""}.fa-snowman::before{content:""}.fa-snowplow::before{content:""}.fa-soap::before{content:""}.fa-socks::before{content:""}.fa-solar-panel::before{content:""}.fa-sort::before{content:""}.fa-unsorted::before{content:""}.fa-sort-down::before{content:""}.fa-sort-desc::before{content:""}.fa-sort-up::before{content:""}.fa-sort-asc::before{content:""}.fa-spa::before{content:""}.fa-spaghetti-monster-flying::before{content:""}.fa-pastafarianism::before{content:""}.fa-spell-check::before{content:""}.fa-spider::before{content:""}.fa-spinner::before{content:""}.fa-splotch::before{content:""}.fa-spoon::before{content:""}.fa-utensil-spoon::before{content:""}.fa-spray-can::before{content:""}.fa-spray-can-sparkles::before{content:""}.fa-air-freshener::before{content:""}.fa-square::before{content:""}.fa-square-arrow-up-right::before{content:""}.fa-external-link-square::before{content:""}.fa-square-caret-down::before{content:""}.fa-caret-square-down::before{content:""}.fa-square-caret-left::before{content:""}.fa-caret-square-left::before{content:""}.fa-square-caret-right::before{content:""}.fa-caret-square-right::before{content:""}.fa-square-caret-up::before{content:""}.fa-caret-square-up::before{content:""}.fa-square-check::before{content:""}.fa-check-square::before{content:""}.fa-square-envelope::before{content:""}.fa-envelope-square::before{content:""}.fa-square-full::before{content:""}.fa-square-h::before{content:""}.fa-h-square::before{content:""}.fa-square-minus::before{content:""}.fa-minus-square::before{content:""}.fa-square-nfi::before{content:""}.fa-square-parking::before{content:""}.fa-parking::before{content:""}.fa-square-pen::before{content:""}.fa-pen-square::before{content:""}.fa-pencil-square::before{content:""}.fa-square-person-confined::before{content:""}.fa-square-phone::before{content:""}.fa-phone-square::before{content:""}.fa-square-phone-flip::before{content:""}.fa-phone-square-alt::before{content:""}.fa-square-plus::before{content:""}.fa-plus-square::before{content:""}.fa-square-poll-horizontal::before{content:""}.fa-poll-h::before{content:""}.fa-square-poll-vertical::before{content:""}.fa-poll::before{content:""}.fa-square-root-variable::before{content:""}.fa-square-root-alt::before{content:""}.fa-square-rss::before{content:""}.fa-rss-square::before{content:""}.fa-square-share-nodes::before{content:""}.fa-share-alt-square::before{content:""}.fa-square-up-right::before{content:""}.fa-external-link-square-alt::before{content:""}.fa-square-virus::before{content:""}.fa-square-xmark::before{content:""}.fa-times-square::before{content:""}.fa-xmark-square::before{content:""}.fa-staff-aesculapius::before{content:""}.fa-rod-asclepius::before{content:""}.fa-rod-snake::before{content:""}.fa-staff-snake::before{content:""}.fa-stairs::before{content:""}.fa-stamp::before{content:""}.fa-star::before{content:""}.fa-star-and-crescent::before{content:""}.fa-star-half::before{content:""}.fa-star-half-stroke::before{content:""}.fa-star-half-alt::before{content:""}.fa-star-of-david::before{content:""}.fa-star-of-life::before{content:""}.fa-sterling-sign::before{content:""}.fa-gbp::before{content:""}.fa-pound-sign::before{content:""}.fa-stethoscope::before{content:""}.fa-stop::before{content:""}.fa-stopwatch::before{content:""}.fa-stopwatch-20::before{content:""}.fa-store::before{content:""}.fa-store-slash::before{content:""}.fa-street-view::before{content:""}.fa-strikethrough::before{content:""}.fa-stroopwafel::before{content:""}.fa-subscript::before{content:""}.fa-suitcase::before{content:""}.fa-suitcase-medical::before{content:""}.fa-medkit::before{content:""}.fa-suitcase-rolling::before{content:""}.fa-sun::before{content:""}.fa-sun-plant-wilt::before{content:""}.fa-superscript::before{content:""}.fa-swatchbook::before{content:""}.fa-synagogue::before{content:""}.fa-syringe::before{content:""}.fa-t::before{content:"T"}.fa-table::before{content:""}.fa-table-cells::before{content:""}.fa-th::before{content:""}.fa-table-cells-large::before{content:""}.fa-th-large::before{content:""}.fa-table-columns::before{content:""}.fa-columns::before{content:""}.fa-table-list::before{content:""}.fa-th-list::before{content:""}.fa-table-tennis-paddle-ball::before{content:""}.fa-ping-pong-paddle-ball::before{content:""}.fa-table-tennis::before{content:""}.fa-tablet::before{content:""}.fa-tablet-android::before{content:""}.fa-tablet-button::before{content:""}.fa-tablet-screen-button::before{content:""}.fa-tablet-alt::before{content:""}.fa-tablets::before{content:""}.fa-tachograph-digital::before{content:""}.fa-digital-tachograph::before{content:""}.fa-tag::before{content:""}.fa-tags::before{content:""}.fa-tape::before{content:""}.fa-tarp::before{content:""}.fa-tarp-droplet::before{content:""}.fa-taxi::before{content:""}.fa-cab::before{content:""}.fa-teeth::before{content:""}.fa-teeth-open::before{content:""}.fa-temperature-arrow-down::before{content:""}.fa-temperature-down::before{content:""}.fa-temperature-arrow-up::before{content:""}.fa-temperature-up::before{content:""}.fa-temperature-empty::before{content:""}.fa-temperature-0::before{content:""}.fa-thermometer-0::before{content:""}.fa-thermometer-empty::before{content:""}.fa-temperature-full::before{content:""}.fa-temperature-4::before{content:""}.fa-thermometer-4::before{content:""}.fa-thermometer-full::before{content:""}.fa-temperature-half::before{content:""}.fa-temperature-2::before{content:""}.fa-thermometer-2::before{content:""}.fa-thermometer-half::before{content:""}.fa-temperature-high::before{content:""}.fa-temperature-low::before{content:""}.fa-temperature-quarter::before{content:""}.fa-temperature-1::before{content:""}.fa-thermometer-1::before{content:""}.fa-thermometer-quarter::before{content:""}.fa-temperature-three-quarters::before{content:""}.fa-temperature-3::before{content:""}.fa-thermometer-3::before{content:""}.fa-thermometer-three-quarters::before{content:""}.fa-tenge-sign::before{content:""}.fa-tenge::before{content:""}.fa-tent::before{content:""}.fa-tent-arrow-down-to-line::before{content:""}.fa-tent-arrow-left-right::before{content:""}.fa-tent-arrow-turn-left::before{content:""}.fa-tent-arrows-down::before{content:""}.fa-tents::before{content:""}.fa-terminal::before{content:""}.fa-text-height::before{content:""}.fa-text-slash::before{content:""}.fa-remove-format::before{content:""}.fa-text-width::before{content:""}.fa-thermometer::before{content:""}.fa-thumbs-down::before{content:""}.fa-thumbs-up::before{content:""}.fa-thumbtack::before{content:""}.fa-thumb-tack::before{content:""}.fa-ticket::before{content:""}.fa-ticket-simple::before{content:""}.fa-ticket-alt::before{content:""}.fa-timeline::before{content:""}.fa-toggle-off::before{content:""}.fa-toggle-on::before{content:""}.fa-toilet::before{content:""}.fa-toilet-paper::before{content:""}.fa-toilet-paper-slash::before{content:""}.fa-toilet-portable::before{content:""}.fa-toilets-portable::before{content:""}.fa-toolbox::before{content:""}.fa-tooth::before{content:""}.fa-torii-gate::before{content:""}.fa-tornado::before{content:""}.fa-tower-broadcast::before{content:""}.fa-broadcast-tower::before{content:""}.fa-tower-cell::before{content:""}.fa-tower-observation::before{content:""}.fa-tractor::before{content:""}.fa-trademark::before{content:""}.fa-traffic-light::before{content:""}.fa-trailer::before{content:""}.fa-train::before{content:""}.fa-train-subway::before{content:""}.fa-subway::before{content:""}.fa-train-tram::before{content:""}.fa-tram::before{content:""}.fa-transgender::before{content:""}.fa-transgender-alt::before{content:""}.fa-trash::before{content:""}.fa-trash-arrow-up::before{content:""}.fa-trash-restore::before{content:""}.fa-trash-can::before{content:""}.fa-trash-alt::before{content:""}.fa-trash-can-arrow-up::before{content:""}.fa-trash-restore-alt::before{content:""}.fa-tree::before{content:""}.fa-tree-city::before{content:""}.fa-triangle-exclamation::before{content:""}.fa-exclamation-triangle::before{content:""}.fa-warning::before{content:""}.fa-trophy::before{content:""}.fa-trowel::before{content:""}.fa-trowel-bricks::before{content:""}.fa-truck::before{content:""}.fa-truck-arrow-right::before{content:""}.fa-truck-droplet::before{content:""}.fa-truck-fast::before{content:""}.fa-shipping-fast::before{content:""}.fa-truck-field::before{content:""}.fa-truck-field-un::before{content:""}.fa-truck-front::before{content:""}.fa-truck-medical::before{content:""}.fa-ambulance::before{content:""}.fa-truck-monster::before{content:""}.fa-truck-moving::before{content:""}.fa-truck-pickup::before{content:""}.fa-truck-plane::before{content:""}.fa-truck-ramp-box::before{content:""}.fa-truck-loading::before{content:""}.fa-tty::before{content:""}.fa-teletype::before{content:""}.fa-turkish-lira-sign::before{content:""}.fa-try::before{content:""}.fa-turkish-lira::before{content:""}.fa-turn-down::before{content:""}.fa-level-down-alt::before{content:""}.fa-turn-up::before{content:""}.fa-level-up-alt::before{content:""}.fa-tv::before{content:""}.fa-television::before{content:""}.fa-tv-alt::before{content:""}.fa-u::before{content:"U"}.fa-umbrella::before{content:""}.fa-umbrella-beach::before{content:""}.fa-underline::before{content:""}.fa-universal-access::before{content:""}.fa-unlock::before{content:""}.fa-unlock-keyhole::before{content:""}.fa-unlock-alt::before{content:""}.fa-up-down::before{content:""}.fa-arrows-alt-v::before{content:""}.fa-up-down-left-right::before{content:""}.fa-arrows-alt::before{content:""}.fa-up-long::before{content:""}.fa-long-arrow-alt-up::before{content:""}.fa-up-right-and-down-left-from-center::before{content:""}.fa-expand-alt::before{content:""}.fa-up-right-from-square::before{content:""}.fa-external-link-alt::before{content:""}.fa-upload::before{content:""}.fa-user::before{content:""}.fa-user-astronaut::before{content:""}.fa-user-check::before{content:""}.fa-user-clock::before{content:""}.fa-user-doctor::before{content:""}.fa-user-md::before{content:""}.fa-user-gear::before{content:""}.fa-user-cog::before{content:""}.fa-user-graduate::before{content:""}.fa-user-group::before{content:""}.fa-user-friends::before{content:""}.fa-user-injured::before{content:""}.fa-user-large::before{content:""}.fa-user-alt::before{content:""}.fa-user-large-slash::before{content:""}.fa-user-alt-slash::before{content:""}.fa-user-lock::before{content:""}.fa-user-minus::before{content:""}.fa-user-ninja::before{content:""}.fa-user-nurse::before{content:""}.fa-user-pen::before{content:""}.fa-user-edit::before{content:""}.fa-user-plus::before{content:""}.fa-user-secret::before{content:""}.fa-user-shield::before{content:""}.fa-user-slash::before{content:""}.fa-user-tag::before{content:""}.fa-user-tie::before{content:""}.fa-user-xmark::before{content:""}.fa-user-times::before{content:""}.fa-users::before{content:""}.fa-users-between-lines::before{content:""}.fa-users-gear::before{content:""}.fa-users-cog::before{content:""}.fa-users-line::before{content:""}.fa-users-rays::before{content:""}.fa-users-rectangle::before{content:""}.fa-users-slash::before{content:""}.fa-users-viewfinder::before{content:""}.fa-utensils::before{content:""}.fa-cutlery::before{content:""}.fa-v::before{content:"V"}.fa-van-shuttle::before{content:""}.fa-shuttle-van::before{content:""}.fa-vault::before{content:""}.fa-vector-square::before{content:""}.fa-venus::before{content:""}.fa-venus-double::before{content:""}.fa-venus-mars::before{content:""}.fa-vest::before{content:""}.fa-vest-patches::before{content:""}.fa-vial::before{content:""}.fa-vial-circle-check::before{content:""}.fa-vial-virus::before{content:""}.fa-vials::before{content:""}.fa-video::before{content:""}.fa-video-camera::before{content:""}.fa-video-slash::before{content:""}.fa-vihara::before{content:""}.fa-virus::before{content:""}.fa-virus-covid::before{content:""}.fa-virus-covid-slash::before{content:""}.fa-virus-slash::before{content:""}.fa-viruses::before{content:""}.fa-voicemail::before{content:""}.fa-volcano::before{content:""}.fa-volleyball::before{content:""}.fa-volleyball-ball::before{content:""}.fa-volume-high::before{content:""}.fa-volume-up::before{content:""}.fa-volume-low::before{content:""}.fa-volume-down::before{content:""}.fa-volume-off::before{content:""}.fa-volume-xmark::before{content:""}.fa-volume-mute::before{content:""}.fa-volume-times::before{content:""}.fa-vr-cardboard::before{content:""}.fa-w::before{content:"W"}.fa-walkie-talkie::before{content:""}.fa-wallet::before{content:""}.fa-wand-magic::before{content:""}.fa-magic::before{content:""}.fa-wand-magic-sparkles::before{content:""}.fa-magic-wand-sparkles::before{content:""}.fa-wand-sparkles::before{content:""}.fa-warehouse::before{content:""}.fa-water::before{content:""}.fa-water-ladder::before{content:""}.fa-ladder-water::before{content:""}.fa-swimming-pool::before{content:""}.fa-wave-square::before{content:""}.fa-weight-hanging::before{content:""}.fa-weight-scale::before{content:""}.fa-weight::before{content:""}.fa-wheat-awn::before{content:""}.fa-wheat-alt::before{content:""}.fa-wheat-awn-circle-exclamation::before{content:""}.fa-wheelchair::before{content:""}.fa-wheelchair-move::before{content:""}.fa-wheelchair-alt::before{content:""}.fa-whiskey-glass::before{content:""}.fa-glass-whiskey::before{content:""}.fa-wifi::before{content:""}.fa-wifi-3::before{content:""}.fa-wifi-strong::before{content:""}.fa-wind::before{content:""}.fa-window-maximize::before{content:""}.fa-window-minimize::before{content:""}.fa-window-restore::before{content:""}.fa-wine-bottle::before{content:""}.fa-wine-glass::before{content:""}.fa-wine-glass-empty::before{content:""}.fa-wine-glass-alt::before{content:""}.fa-won-sign::before{content:""}.fa-krw::before{content:""}.fa-won::before{content:""}.fa-worm::before{content:""}.fa-wrench::before{content:""}.fa-x::before{content:"X"}.fa-x-ray::before{content:""}.fa-xmark::before{content:""}.fa-close::before{content:""}.fa-multiply::before{content:""}.fa-remove::before{content:""}.fa-times::before{content:""}.fa-xmarks-lines::before{content:""}.fa-y::before{content:"Y"}.fa-yen-sign::before{content:""}.fa-cny::before{content:""}.fa-jpy::before{content:""}.fa-rmb::before{content:""}.fa-yen::before{content:""}.fa-yin-yang::before{content:""}.fa-z::before{content:"Z"}.sr-only,.fa-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.sr-only-focusable:not(:focus),.fa-sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}:root,:host{--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:'Font Awesome 6 Brands';font-style:normal;font-weight:400;font-display:block;src:url("/Portals/_default/skins/porto/Resources/fonts/fa-brands-400.woff2") format("woff2"),url("/Portals/_default/skins/porto/Resources/fonts/fa-brands-400.ttf") format("truetype")}.fab,.fa-brands{font-family:'Font Awesome 6 Brands';font-weight:400}.fa-42-group:before{content:""}.fa-innosoft:before{content:""}.fa-500px:before{content:""}.fa-accessible-icon:before{content:""}.fa-accusoft:before{content:""}.fa-adn:before{content:""}.fa-adversal:before{content:""}.fa-affiliatetheme:before{content:""}.fa-airbnb:before{content:""}.fa-algolia:before{content:""}.fa-alipay:before{content:""}.fa-amazon:before{content:""}.fa-amazon-pay:before{content:""}.fa-amilia:before{content:""}.fa-android:before{content:""}.fa-angellist:before{content:""}.fa-angrycreative:before{content:""}.fa-angular:before{content:""}.fa-app-store:before{content:""}.fa-app-store-ios:before{content:""}.fa-apper:before{content:""}.fa-apple:before{content:""}.fa-apple-pay:before{content:""}.fa-artstation:before{content:""}.fa-asymmetrik:before{content:""}.fa-atlassian:before{content:""}.fa-audible:before{content:""}.fa-autoprefixer:before{content:""}.fa-avianex:before{content:""}.fa-aviato:before{content:""}.fa-aws:before{content:""}.fa-bandcamp:before{content:""}.fa-battle-net:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-bilibili:before{content:""}.fa-bimobject:before{content:""}.fa-bitbucket:before{content:""}.fa-bitcoin:before{content:""}.fa-bity:before{content:""}.fa-black-tie:before{content:""}.fa-blackberry:before{content:""}.fa-blogger:before{content:""}.fa-blogger-b:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-bootstrap:before{content:""}.fa-bots:before{content:""}.fa-btc:before{content:""}.fa-buffer:before{content:""}.fa-buromobelexperte:before{content:""}.fa-buy-n-large:before{content:""}.fa-buysellads:before{content:""}.fa-canadian-maple-leaf:before{content:""}.fa-cc-amazon-pay:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-apple-pay:before{content:""}.fa-cc-diners-club:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-cc-visa:before{content:""}.fa-centercode:before{content:""}.fa-centos:before{content:""}.fa-chrome:before{content:""}.fa-chromecast:before{content:""}.fa-cloudflare:before{content:""}.fa-cloudscale:before{content:""}.fa-cloudsmith:before{content:""}.fa-cloudversify:before{content:""}.fa-cmplid:before{content:""}.fa-codepen:before{content:""}.fa-codiepie:before{content:""}.fa-confluence:before{content:""}.fa-connectdevelop:before{content:""}.fa-contao:before{content:""}.fa-cotton-bureau:before{content:""}.fa-cpanel:before{content:""}.fa-creative-commons:before{content:""}.fa-creative-commons-by:before{content:""}.fa-creative-commons-nc:before{content:""}.fa-creative-commons-nc-eu:before{content:""}.fa-creative-commons-nc-jp:before{content:""}.fa-creative-commons-nd:before{content:""}.fa-creative-commons-pd:before{content:""}.fa-creative-commons-pd-alt:before{content:""}.fa-creative-commons-remix:before{content:""}.fa-creative-commons-sa:before{content:""}.fa-creative-commons-sampling:before{content:""}.fa-creative-commons-sampling-plus:before{content:""}.fa-creative-commons-share:before{content:""}.fa-creative-commons-zero:before{content:""}.fa-critical-role:before{content:""}.fa-css3:before{content:""}.fa-css3-alt:before{content:""}.fa-cuttlefish:before{content:""}.fa-d-and-d:before{content:""}.fa-d-and-d-beyond:before{content:""}.fa-dailymotion:before{content:""}.fa-dashcube:before{content:""}.fa-deezer:before{content:""}.fa-delicious:before{content:""}.fa-deploydog:before{content:""}.fa-deskpro:before{content:""}.fa-dev:before{content:""}.fa-deviantart:before{content:""}.fa-dhl:before{content:""}.fa-diaspora:before{content:""}.fa-digg:before{content:""}.fa-digital-ocean:before{content:""}.fa-discord:before{content:""}.fa-discourse:before{content:""}.fa-dochub:before{content:""}.fa-docker:before{content:""}.fa-draft2digital:before{content:""}.fa-dribbble:before{content:""}.fa-dribbble-square:before{content:""}.fa-dropbox:before{content:""}.fa-drupal:before{content:""}.fa-dyalog:before{content:""}.fa-earlybirds:before{content:""}.fa-ebay:before{content:""}.fa-edge:before{content:""}.fa-edge-legacy:before{content:""}.fa-elementor:before{content:""}.fa-ello:before{content:""}.fa-ember:before{content:""}.fa-empire:before{content:""}.fa-envira:before{content:""}.fa-erlang:before{content:""}.fa-ethereum:before{content:""}.fa-etsy:before{content:""}.fa-evernote:before{content:""}.fa-expeditedssl:before{content:""}.fa-facebook:before{content:""}.fa-facebook-f:before{content:""}.fa-facebook-messenger:before{content:""}.fa-facebook-square:before{content:""}.fa-fantasy-flight-games:before{content:""}.fa-fedex:before{content:""}.fa-fedora:before{content:""}.fa-figma:before{content:""}.fa-firefox:before{content:""}.fa-firefox-browser:before{content:""}.fa-first-order:before{content:""}.fa-first-order-alt:before{content:""}.fa-firstdraft:before{content:""}.fa-flickr:before{content:""}.fa-flipboard:before{content:""}.fa-fly:before{content:""}.fa-font-awesome:before{content:""}.fa-font-awesome-flag:before{content:""}.fa-font-awesome-logo-full:before{content:""}.fa-fonticons:before{content:""}.fa-fonticons-fi:before{content:""}.fa-fort-awesome:before{content:""}.fa-fort-awesome-alt:before{content:""}.fa-forumbee:before{content:""}.fa-foursquare:before{content:""}.fa-free-code-camp:before{content:""}.fa-freebsd:before{content:""}.fa-fulcrum:before{content:""}.fa-galactic-republic:before{content:""}.fa-galactic-senate:before{content:""}.fa-get-pocket:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-git:before{content:""}.fa-git-alt:before{content:""}.fa-git-square:before{content:""}.fa-github:before{content:""}.fa-github-alt:before{content:""}.fa-github-square:before{content:""}.fa-gitkraken:before{content:""}.fa-gitlab:before{content:""}.fa-gitter:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-gofore:before{content:""}.fa-golang:before{content:""}.fa-goodreads:before{content:""}.fa-goodreads-g:before{content:""}.fa-google:before{content:""}.fa-google-drive:before{content:""}.fa-google-pay:before{content:""}.fa-google-play:before{content:""}.fa-google-plus:before{content:""}.fa-google-plus-g:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-wallet:before{content:""}.fa-gratipay:before{content:""}.fa-grav:before{content:""}.fa-gripfire:before{content:""}.fa-grunt:before{content:""}.fa-guilded:before{content:""}.fa-gulp:before{content:""}.fa-hacker-news:before{content:""}.fa-hacker-news-square:before{content:""}.fa-hackerrank:before{content:""}.fa-hashnode:before{content:""}.fa-hips:before{content:""}.fa-hire-a-helper:before{content:""}.fa-hive:before{content:""}.fa-hooli:before{content:""}.fa-hornbill:before{content:""}.fa-hotjar:before{content:""}.fa-houzz:before{content:""}.fa-html5:before{content:""}.fa-hubspot:before{content:""}.fa-ideal:before{content:""}.fa-imdb:before{content:""}.fa-instagram:before{content:""}.fa-instagram-square:before{content:""}.fa-instalod:before{content:""}.fa-intercom:before{content:""}.fa-internet-explorer:before{content:""}.fa-invision:before{content:""}.fa-ioxhost:before{content:""}.fa-itch-io:before{content:""}.fa-itunes:before{content:""}.fa-itunes-note:before{content:""}.fa-java:before{content:""}.fa-jedi-order:before{content:""}.fa-jenkins:before{content:""}.fa-jira:before{content:""}.fa-joget:before{content:""}.fa-joomla:before{content:""}.fa-js:before{content:""}.fa-js-square:before{content:""}.fa-jsfiddle:before{content:""}.fa-kaggle:before{content:""}.fa-keybase:before{content:""}.fa-keycdn:before{content:""}.fa-kickstarter:before{content:""}.fa-kickstarter-k:before{content:""}.fa-korvue:before{content:""}.fa-laravel:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-leanpub:before{content:""}.fa-less:before{content:""}.fa-line:before{content:""}.fa-linkedin:before{content:""}.fa-linkedin-in:before{content:""}.fa-linode:before{content:""}.fa-linux:before{content:""}.fa-lyft:before{content:""}.fa-magento:before{content:""}.fa-mailchimp:before{content:""}.fa-mandalorian:before{content:""}.fa-markdown:before{content:""}.fa-mastodon:before{content:""}.fa-maxcdn:before{content:""}.fa-mdb:before{content:""}.fa-medapps:before{content:""}.fa-medium:before{content:""}.fa-medium-m:before{content:""}.fa-medrt:before{content:""}.fa-meetup:before{content:""}.fa-megaport:before{content:""}.fa-mendeley:before{content:""}.fa-microblog:before{content:""}.fa-microsoft:before{content:""}.fa-mix:before{content:""}.fa-mixcloud:before{content:""}.fa-mixer:before{content:""}.fa-mizuni:before{content:""}.fa-modx:before{content:""}.fa-monero:before{content:""}.fa-napster:before{content:""}.fa-neos:before{content:""}.fa-nfc-directional:before{content:""}.fa-nfc-symbol:before{content:""}.fa-nimblr:before{content:""}.fa-node:before{content:""}.fa-node-js:before{content:""}.fa-npm:before{content:""}.fa-ns8:before{content:""}.fa-nutritionix:before{content:""}.fa-octopus-deploy:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-old-republic:before{content:""}.fa-opencart:before{content:""}.fa-openid:before{content:""}.fa-opera:before{content:""}.fa-optin-monster:before{content:""}.fa-orcid:before{content:""}.fa-osi:before{content:""}.fa-padlet:before{content:""}.fa-page4:before{content:""}.fa-pagelines:before{content:""}.fa-palfed:before{content:""}.fa-patreon:before{content:""}.fa-paypal:before{content:""}.fa-perbyte:before{content:""}.fa-periscope:before{content:""}.fa-phabricator:before{content:""}.fa-phoenix-framework:before{content:""}.fa-phoenix-squadron:before{content:""}.fa-php:before{content:""}.fa-pied-piper:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-pied-piper-hat:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-square:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-p:before{content:""}.fa-pinterest-square:before{content:""}.fa-pix:before{content:""}.fa-playstation:before{content:""}.fa-product-hunt:before{content:""}.fa-pushed:before{content:""}.fa-python:before{content:""}.fa-qq:before{content:""}.fa-quinscape:before{content:""}.fa-quora:before{content:""}.fa-r-project:before{content:""}.fa-raspberry-pi:before{content:""}.fa-ravelry:before{content:""}.fa-react:before{content:""}.fa-reacteurope:before{content:""}.fa-readme:before{content:""}.fa-rebel:before{content:""}.fa-red-river:before{content:""}.fa-reddit:before{content:""}.fa-reddit-alien:before{content:""}.fa-reddit-square:before{content:""}.fa-redhat:before{content:""}.fa-renren:before{content:""}.fa-replyd:before{content:""}.fa-researchgate:before{content:""}.fa-resolving:before{content:""}.fa-rev:before{content:""}.fa-rocketchat:before{content:""}.fa-rockrms:before{content:""}.fa-rust:before{content:""}.fa-safari:before{content:""}.fa-salesforce:before{content:""}.fa-sass:before{content:""}.fa-schlix:before{content:""}.fa-screenpal:before{content:""}.fa-scribd:before{content:""}.fa-searchengin:before{content:""}.fa-sellcast:before{content:""}.fa-sellsy:before{content:""}.fa-servicestack:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-shopify:before{content:""}.fa-shopware:before{content:""}.fa-simplybuilt:before{content:""}.fa-sistrix:before{content:""}.fa-sith:before{content:""}.fa-sitrox:before{content:""}.fa-sketch:before{content:""}.fa-skyatlas:before{content:""}.fa-skype:before{content:""}.fa-slack:before{content:""}.fa-slack-hash:before{content:""}.fa-slideshare:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-soundcloud:before{content:""}.fa-sourcetree:before{content:""}.fa-speakap:before{content:""}.fa-speaker-deck:before{content:""}.fa-spotify:before{content:""}.fa-square-font-awesome:before{content:""}.fa-square-font-awesome-stroke:before{content:""}.fa-font-awesome-alt:before{content:""}.fa-squarespace:before{content:""}.fa-stack-exchange:before{content:""}.fa-stack-overflow:before{content:""}.fa-stackpath:before{content:""}.fa-staylinked:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-steam-symbol:before{content:""}.fa-sticker-mule:before{content:""}.fa-strava:before{content:""}.fa-stripe:before{content:""}.fa-stripe-s:before{content:""}.fa-studiovinari:before{content:""}.fa-stumbleupon:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-superpowers:before{content:""}.fa-supple:before{content:""}.fa-suse:before{content:""}.fa-swift:before{content:""}.fa-symfony:before{content:""}.fa-teamspeak:before{content:""}.fa-telegram:before{content:""}.fa-telegram-plane:before{content:""}.fa-tencent-weibo:before{content:""}.fa-the-red-yeti:before{content:""}.fa-themeco:before{content:""}.fa-themeisle:before{content:""}.fa-think-peaks:before{content:""}.fa-tiktok:before{content:""}.fa-trade-federation:before{content:""}.fa-trello:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-twitch:before{content:""}.fa-twitter:before{content:""}.fa-twitter-square:before{content:""}.fa-typo3:before{content:""}.fa-uber:before{content:""}.fa-ubuntu:before{content:""}.fa-uikit:before{content:""}.fa-umbraco:before{content:""}.fa-uncharted:before{content:""}.fa-uniregistry:before{content:""}.fa-unity:before{content:""}.fa-unsplash:before{content:""}.fa-untappd:before{content:""}.fa-ups:before{content:""}.fa-usb:before{content:""}.fa-usps:before{content:""}.fa-ussunnah:before{content:""}.fa-vaadin:before{content:""}.fa-viacoin:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-viber:before{content:""}.fa-vimeo:before{content:""}.fa-vimeo-square:before{content:""}.fa-vimeo-v:before{content:""}.fa-vine:before{content:""}.fa-vk:before{content:""}.fa-vnv:before{content:""}.fa-vuejs:before{content:""}.fa-watchman-monitoring:before{content:""}.fa-waze:before{content:""}.fa-weebly:before{content:""}.fa-weibo:before{content:""}.fa-weixin:before{content:""}.fa-whatsapp:before{content:""}.fa-whatsapp-square:before{content:""}.fa-whmcs:before{content:""}.fa-wikipedia-w:before{content:""}.fa-windows:before{content:""}.fa-wirsindhandwerk:before{content:""}.fa-wsh:before{content:""}.fa-wix:before{content:""}.fa-wizards-of-the-coast:before{content:""}.fa-wodu:before{content:""}.fa-wolf-pack-battalion:before{content:""}.fa-wordpress:before{content:""}.fa-wordpress-simple:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpexplorer:before{content:""}.fa-wpforms:before{content:""}.fa-wpressr:before{content:""}.fa-xbox:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-y-combinator:before{content:""}.fa-yahoo:before{content:""}.fa-yammer:before{content:""}.fa-yandex:before{content:""}.fa-yandex-international:before{content:""}.fa-yarn:before{content:""}.fa-yelp:before{content:""}.fa-yoast:before{content:""}.fa-youtube:before{content:""}.fa-youtube-square:before{content:""}.fa-zhihu:before{content:""}:root,:host{--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:'Font Awesome 6 Free';font-style:normal;font-weight:400;font-display:block;src:url("/Portals/_default/skins/porto/Resources/fonts/fa-regular-400.woff2") format("woff2"),url("/Portals/_default/skins/porto/Resources/fonts/fa-regular-400.ttf") format("truetype")}.far,.fa-regular{font-family:'Font Awesome 6 Free';font-weight:400}:root,:host{--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:'Font Awesome 6 Free';font-style:normal;font-weight:900;font-display:block;src:url("/Portals/_default/skins/porto/Resources/fonts/fa-solid-900.woff2") format("woff2"),url("/Portals/_default/skins/porto/Resources/fonts/fa-solid-900.ttf") format("truetype")}.fas,.fa-solid{font-family:'Font Awesome 6 Free';font-weight:900}@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url("/Portals/_default/skins/porto/Resources/fonts/fa-brands-400.woff2") format("woff2"),url("/Portals/_default/skins/porto/Resources/fonts/fa-brands-400.ttf") format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url("/Portals/_default/skins/porto/Resources/fonts/fa-solid-900.woff2") format("woff2"),url("/Portals/_default/skins/porto/Resources/fonts/fa-solid-900.ttf") format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url("/Portals/_default/skins/porto/Resources/fonts/fa-regular-400.woff2") format("woff2"),url("/Portals/_default/skins/porto/Resources/fonts/fa-regular-400.ttf") format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url("/Portals/_default/skins/porto/Resources/fonts/fa-solid-900.woff2") format("woff2"),url("/Portals/_default/skins/porto/Resources/fonts/fa-solid-900.ttf") format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url("/Portals/_default/skins/porto/Resources/fonts/fa-brands-400.woff2") format("woff2"),url("/Portals/_default/skins/porto/Resources/fonts/fa-brands-400.ttf") format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url("/Portals/_default/skins/porto/Resources/fonts/fa-regular-400.woff2") format("woff2"),url("/Portals/_default/skins/porto/Resources/fonts/fa-regular-400.ttf") format("truetype");unicode-range:U+F003,U+F006,U+F014,U+F016-F017,U+F01A-F01B,U+F01D,U+F022,U+F03E,U+F044,U+F046,U+F05C-F05D,U+F06E,U+F070,U+F087-F088,U+F08A,U+F094,U+F096-F097,U+F09D,U+F0A0,U+F0A2,U+F0A4-F0A7,U+F0C5,U+F0C7,U+F0E5-F0E6,U+F0EB,U+F0F6-F0F8,U+F10C,U+F114-F115,U+F118-F11A,U+F11C-F11D,U+F133,U+F147,U+F14E,U+F150-F152,U+F185-F186,U+F18E,U+F190-F192,U+F196,U+F1C1-F1C9,U+F1D9,U+F1DB,U+F1E3,U+F1EA,U+F1F7,U+F1F9,U+F20A,U+F247-F248,U+F24A,U+F24D,U+F255-F25B,U+F25D,U+F271-F274,U+F278,U+F27B,U+F28C,U+F28E,U+F29C,U+F2B5,U+F2B7,U+F2BA,U+F2BC,U+F2BE,U+F2C0-F2C1,U+F2C3,U+F2D0,U+F2D2,U+F2D4,U+F2DC}@font-face{font-family:"FontAwesome";font-display:block;src:url("/Portals/_default/skins/porto/Resources/fonts/fa-v4compatibility.woff2") format("woff2"),url("/Portals/_default/skins/porto/Resources/fonts/fa-v4compatibility.ttf") format("truetype");unicode-range:U+F041,U+F047,U+F065-F066,U+F07D-F07E,U+F080,U+F08B,U+F08E,U+F090,U+F09A,U+F0AC,U+F0AE,U+F0B2,U+F0D0,U+F0D6,U+F0E4,U+F0EC,U+F10A-F10B,U+F123,U+F13E,U+F148-F149,U+F14C,U+F156,U+F15E,U+F160-F161,U+F163,U+F175-F178,U+F195,U+F1F8,U+F219,U+F250,U+F252,U+F27A}.fa.fa-glass:before{content:""}.fa.fa-meetup{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-star-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-o:before{content:""}.fa.fa-close:before,.fa.fa-remove:before{content:""}.fa.fa-gear:before{content:""}.fa.fa-trash-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-trash-o:before{content:""}.fa.fa-file-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-o:before{content:""}.fa.fa-clock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-clock-o:before{content:""}.fa.fa-arrow-circle-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-down:before{content:""}.fa.fa-arrow-circle-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-up:before{content:""}.fa.fa-play-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-play-circle-o:before{content:""}.fa.fa-repeat:before,.fa.fa-rotate-right:before{content:""}.fa.fa-refresh:before{content:""}.fa.fa-list-alt{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-dedent:before{content:""}.fa.fa-video-camera:before{content:""}.fa.fa-picture-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-picture-o:before{content:""}.fa.fa-photo{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-photo:before{content:""}.fa.fa-image{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-image:before{content:""}.fa.fa-pencil:before{content:""}.fa.fa-map-marker:before{content:""}.fa.fa-pencil-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-pencil-square-o:before{content:""}.fa.fa-share-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-share-square-o:before{content:""}.fa.fa-check-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-check-square-o:before{content:""}.fa.fa-arrows:before{content:""}.fa.fa-times-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-circle-o:before{content:""}.fa.fa-check-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-check-circle-o:before{content:""}.fa.fa-mail-forward:before{content:""}.fa.fa-eye,.fa.fa-eye-slash{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-warning:before{content:""}.fa.fa-calendar:before{content:""}.fa.fa-arrows-v:before{content:""}.fa.fa-arrows-h:before{content:""}.fa.fa-bar-chart{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bar-chart:before{content:""}.fa.fa-bar-chart-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bar-chart-o:before{content:""}.fa.fa-facebook-square,.fa.fa-twitter-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-gears:before{content:""}.fa.fa-thumbs-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-thumbs-o-up:before{content:""}.fa.fa-thumbs-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-thumbs-o-down:before{content:""}.fa.fa-heart-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-heart-o:before{content:""}.fa.fa-sign-out:before{content:""}.fa.fa-linkedin-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-linkedin-square:before{content:""}.fa.fa-thumb-tack:before{content:""}.fa.fa-external-link:before{content:""}.fa.fa-sign-in:before{content:""}.fa.fa-github-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-lemon-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-lemon-o:before{content:""}.fa.fa-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-square-o:before{content:""}.fa.fa-bookmark-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bookmark-o:before{content:""}.fa.fa-facebook,.fa.fa-twitter{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook:before{content:""}.fa.fa-facebook-f{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook-f:before{content:""}.fa.fa-github{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-credit-card{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-feed:before{content:""}.fa.fa-hdd-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hdd-o:before{content:""}.fa.fa-hand-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-right:before{content:""}.fa.fa-hand-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-left:before{content:""}.fa.fa-hand-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-up:before{content:""}.fa.fa-hand-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-down:before{content:""}.fa.fa-arrows-alt:before{content:""}.fa.fa-group:before{content:""}.fa.fa-chain:before{content:""}.fa.fa-scissors:before{content:""}.fa.fa-files-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-files-o:before{content:""}.fa.fa-floppy-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-floppy-o:before{content:""}.fa.fa-navicon:before,.fa.fa-reorder:before{content:""}.fa.fa-google-plus,.fa.fa-google-plus-square,.fa.fa-pinterest,.fa.fa-pinterest-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus:before{content:""}.fa.fa-money{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-money:before{content:""}.fa.fa-unsorted:before{content:""}.fa.fa-sort-desc:before{content:""}.fa.fa-sort-asc:before{content:""}.fa.fa-linkedin{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-linkedin:before{content:""}.fa.fa-rotate-left:before{content:""}.fa.fa-legal:before{content:""}.fa.fa-dashboard:before,.fa.fa-tachometer:before{content:""}.fa.fa-comment-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-comment-o:before{content:""}.fa.fa-comments-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-comments-o:before{content:""}.fa.fa-flash:before{content:""}.fa.fa-clipboard,.fa.fa-paste{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-paste:before{content:""}.fa.fa-lightbulb-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-lightbulb-o:before{content:""}.fa.fa-exchange:before{content:""}.fa.fa-cloud-download:before{content:""}.fa.fa-cloud-upload:before{content:""}.fa.fa-bell-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bell-o:before{content:""}.fa.fa-cutlery:before{content:""}.fa.fa-file-text-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-text-o:before{content:""}.fa.fa-building-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-building-o:before{content:""}.fa.fa-hospital-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hospital-o:before{content:""}.fa.fa-tablet:before{content:""}.fa.fa-mobile-phone:before,.fa.fa-mobile:before{content:""}.fa.fa-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-circle-o:before{content:""}.fa.fa-mail-reply:before{content:""}.fa.fa-github-alt{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-folder-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-folder-o:before{content:""}.fa.fa-folder-open-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-folder-open-o:before{content:""}.fa.fa-smile-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-smile-o:before{content:""}.fa.fa-frown-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-frown-o:before{content:""}.fa.fa-meh-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-meh-o:before{content:""}.fa.fa-keyboard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-keyboard-o:before{content:""}.fa.fa-flag-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-flag-o:before{content:""}.fa.fa-mail-reply-all:before{content:""}.fa.fa-star-half-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-o:before{content:""}.fa.fa-star-half-empty{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-empty:before{content:""}.fa.fa-star-half-full{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-full:before{content:""}.fa.fa-code-fork:before{content:""}.fa.fa-chain-broken:before{content:""}.fa.fa-shield:before{content:""}.fa.fa-calendar-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-o:before{content:""}.fa.fa-css3,.fa.fa-html5,.fa.fa-maxcdn{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ticket:before{content:""}.fa.fa-minus-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-minus-square-o:before{content:""}.fa.fa-level-up:before{content:""}.fa.fa-level-down:before{content:""}.fa.fa-pencil-square:before{content:""}.fa.fa-external-link-square:before{content:""}.fa.fa-compass{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-down:before{content:""}.fa.fa-toggle-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-down:before{content:""}.fa.fa-caret-square-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-up:before{content:""}.fa.fa-toggle-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-up:before{content:""}.fa.fa-caret-square-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-right:before{content:""}.fa.fa-toggle-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-right:before{content:""}.fa.fa-eur:before,.fa.fa-euro:before{content:""}.fa.fa-gbp:before{content:""}.fa.fa-dollar:before,.fa.fa-usd:before{content:""}.fa.fa-inr:before,.fa.fa-rupee:before{content:""}.fa.fa-cny:before,.fa.fa-jpy:before,.fa.fa-rmb:before,.fa.fa-yen:before{content:""}.fa.fa-rouble:before,.fa.fa-rub:before,.fa.fa-ruble:before{content:""}.fa.fa-krw:before,.fa.fa-won:before{content:""}.fa.fa-bitcoin,.fa.fa-btc{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bitcoin:before{content:""}.fa.fa-file-text:before{content:""}.fa.fa-sort-alpha-asc:before{content:""}.fa.fa-sort-alpha-desc:before{content:""}.fa.fa-sort-amount-asc:before{content:""}.fa.fa-sort-amount-desc:before{content:""}.fa.fa-sort-numeric-asc:before{content:""}.fa.fa-sort-numeric-desc:before{content:""}.fa.fa-xing,.fa.fa-xing-square,.fa.fa-youtube,.fa.fa-youtube-play,.fa.fa-youtube-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-youtube-play:before{content:""}.fa.fa-adn,.fa.fa-bitbucket,.fa.fa-bitbucket-square,.fa.fa-dropbox,.fa.fa-flickr,.fa.fa-instagram,.fa.fa-stack-overflow{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bitbucket-square:before{content:""}.fa.fa-tumblr,.fa.fa-tumblr-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-long-arrow-down:before{content:""}.fa.fa-long-arrow-up:before{content:""}.fa.fa-long-arrow-left:before{content:""}.fa.fa-long-arrow-right:before{content:""}.fa.fa-android,.fa.fa-apple,.fa.fa-dribbble,.fa.fa-foursquare,.fa.fa-gittip,.fa.fa-gratipay,.fa.fa-linux,.fa.fa-skype,.fa.fa-trello,.fa.fa-windows{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-gittip:before{content:""}.fa.fa-sun-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-sun-o:before{content:""}.fa.fa-moon-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-moon-o:before{content:""}.fa.fa-pagelines,.fa.fa-renren,.fa.fa-stack-exchange,.fa.fa-vk,.fa.fa-weibo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-arrow-circle-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-right:before{content:""}.fa.fa-arrow-circle-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-left:before{content:""}.fa.fa-caret-square-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-left:before{content:""}.fa.fa-toggle-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-left:before{content:""}.fa.fa-dot-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-dot-circle-o:before{content:""}.fa.fa-vimeo-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-try:before,.fa.fa-turkish-lira:before{content:""}.fa.fa-plus-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-plus-square-o:before{content:""}.fa.fa-openid,.fa.fa-slack,.fa.fa-wordpress{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bank:before,.fa.fa-institution:before{content:""}.fa.fa-mortar-board:before{content:""}.fa.fa-delicious,.fa.fa-digg,.fa.fa-drupal,.fa.fa-google,.fa.fa-joomla,.fa.fa-pied-piper-alt,.fa.fa-pied-piper-pp,.fa.fa-reddit,.fa.fa-reddit-square,.fa.fa-stumbleupon,.fa.fa-stumbleupon-circle,.fa.fa-yahoo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-spoon:before{content:""}.fa.fa-behance,.fa.fa-behance-square,.fa.fa-steam,.fa.fa-steam-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-automobile:before{content:""}.fa.fa-cab:before{content:""}.fa.fa-envelope-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-envelope-o:before{content:""}.fa.fa-deviantart,.fa.fa-soundcloud{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-file-pdf-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-pdf-o:before{content:""}.fa.fa-file-word-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-word-o:before{content:""}.fa.fa-file-excel-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-excel-o:before{content:""}.fa.fa-file-powerpoint-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-powerpoint-o:before{content:""}.fa.fa-file-image-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-image-o:before{content:""}.fa.fa-file-photo-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-photo-o:before{content:""}.fa.fa-file-picture-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-picture-o:before{content:""}.fa.fa-file-archive-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-archive-o:before{content:""}.fa.fa-file-zip-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-zip-o:before{content:""}.fa.fa-file-audio-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-audio-o:before{content:""}.fa.fa-file-sound-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-sound-o:before{content:""}.fa.fa-file-video-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-video-o:before{content:""}.fa.fa-file-movie-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-movie-o:before{content:""}.fa.fa-file-code-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-code-o:before{content:""}.fa.fa-codepen,.fa.fa-jsfiddle,.fa.fa-vine{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-life-bouy,.fa.fa-life-ring{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-bouy:before{content:""}.fa.fa-life-buoy{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-buoy:before{content:""}.fa.fa-life-saver{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-saver:before{content:""}.fa.fa-support{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-support:before{content:""}.fa.fa-circle-o-notch:before{content:""}.fa.fa-ra,.fa.fa-rebel{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ra:before{content:""}.fa.fa-resistance{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-resistance:before{content:""}.fa.fa-empire,.fa.fa-ge{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ge:before{content:""}.fa.fa-git,.fa.fa-git-square,.fa.fa-hacker-news,.fa.fa-y-combinator-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-y-combinator-square:before{content:""}.fa.fa-yc-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-yc-square:before{content:""}.fa.fa-qq,.fa.fa-tencent-weibo,.fa.fa-wechat,.fa.fa-weixin{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-wechat:before{content:""}.fa.fa-send:before{content:""}.fa.fa-paper-plane-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-paper-plane-o:before{content:""}.fa.fa-send-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-send-o:before{content:""}.fa.fa-circle-thin{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-circle-thin:before{content:""}.fa.fa-header:before{content:""}.fa.fa-sliders:before{content:""}.fa.fa-futbol-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-futbol-o:before{content:""}.fa.fa-soccer-ball-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-soccer-ball-o:before{content:""}.fa.fa-slideshare,.fa.fa-twitch,.fa.fa-yelp{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-newspaper-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-newspaper-o:before{content:""}.fa.fa-cc-amex,.fa.fa-cc-discover,.fa.fa-cc-mastercard,.fa.fa-cc-paypal,.fa.fa-cc-stripe,.fa.fa-cc-visa,.fa.fa-google-wallet,.fa.fa-paypal{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bell-slash-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bell-slash-o:before{content:""}.fa.fa-trash:before{content:""}.fa.fa-copyright{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-eyedropper:before{content:""}.fa.fa-area-chart:before{content:""}.fa.fa-pie-chart:before{content:""}.fa.fa-line-chart:before{content:""}.fa.fa-angellist,.fa.fa-ioxhost,.fa.fa-lastfm,.fa.fa-lastfm-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-cc{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-cc:before{content:""}.fa.fa-ils:before,.fa.fa-shekel:before,.fa.fa-sheqel:before{content:""}.fa.fa-meanpath{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-meanpath:before{content:""}.fa.fa-buysellads,.fa.fa-connectdevelop,.fa.fa-dashcube,.fa.fa-forumbee,.fa.fa-leanpub,.fa.fa-sellsy,.fa.fa-shirtsinbulk,.fa.fa-simplybuilt,.fa.fa-skyatlas{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-diamond{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-diamond:before{content:""}.fa.fa-intersex:before{content:""}.fa.fa-facebook-official{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook-official:before{content:""}.fa.fa-pinterest-p,.fa.fa-whatsapp{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-hotel:before{content:""}.fa.fa-medium,.fa.fa-viacoin,.fa.fa-y-combinator,.fa.fa-yc{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-yc:before{content:""}.fa.fa-expeditedssl,.fa.fa-opencart,.fa.fa-optin-monster{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-battery-4:before,.fa.fa-battery:before{content:""}.fa.fa-battery-3:before{content:""}.fa.fa-battery-2:before{content:""}.fa.fa-battery-1:before{content:""}.fa.fa-battery-0:before{content:""}.fa.fa-object-group,.fa.fa-object-ungroup,.fa.fa-sticky-note-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-sticky-note-o:before{content:""}.fa.fa-cc-diners-club,.fa.fa-cc-jcb{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-clone,.fa.fa-hourglass-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hourglass-o:before{content:""}.fa.fa-hourglass-1:before{content:""}.fa.fa-hourglass-2:before{content:""}.fa.fa-hourglass-3:before{content:""}.fa.fa-hand-rock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-rock-o:before{content:""}.fa.fa-hand-grab-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-grab-o:before{content:""}.fa.fa-hand-paper-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-paper-o:before{content:""}.fa.fa-hand-stop-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-stop-o:before{content:""}.fa.fa-hand-scissors-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-scissors-o:before{content:""}.fa.fa-hand-lizard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-lizard-o:before{content:""}.fa.fa-hand-spock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-spock-o:before{content:""}.fa.fa-hand-pointer-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-pointer-o:before{content:""}.fa.fa-hand-peace-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-peace-o:before{content:""}.fa.fa-registered{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-chrome,.fa.fa-creative-commons,.fa.fa-firefox,.fa.fa-get-pocket,.fa.fa-gg,.fa.fa-gg-circle,.fa.fa-internet-explorer,.fa.fa-odnoklassniki,.fa.fa-odnoklassniki-square,.fa.fa-opera,.fa.fa-safari,.fa.fa-tripadvisor,.fa.fa-wikipedia-w{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-television:before{content:""}.fa.fa-500px,.fa.fa-amazon,.fa.fa-contao{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-calendar-plus-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-plus-o:before{content:""}.fa.fa-calendar-minus-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-minus-o:before{content:""}.fa.fa-calendar-times-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-times-o:before{content:""}.fa.fa-calendar-check-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-check-o:before{content:""}.fa.fa-map-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-map-o:before{content:""}.fa.fa-commenting{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-commenting:before{content:""}.fa.fa-commenting-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-commenting-o:before{content:""}.fa.fa-houzz,.fa.fa-vimeo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-vimeo:before{content:""}.fa.fa-black-tie,.fa.fa-edge,.fa.fa-fonticons,.fa.fa-reddit-alien{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-credit-card-alt:before{content:""}.fa.fa-codiepie,.fa.fa-fort-awesome,.fa.fa-mixcloud,.fa.fa-modx,.fa.fa-product-hunt,.fa.fa-scribd,.fa.fa-usb{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-pause-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-pause-circle-o:before{content:""}.fa.fa-stop-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-stop-circle-o:before{content:""}.fa.fa-bluetooth,.fa.fa-bluetooth-b,.fa.fa-envira,.fa.fa-gitlab,.fa.fa-wheelchair-alt,.fa.fa-wpbeginner,.fa.fa-wpforms{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-wheelchair-alt:before{content:""}.fa.fa-question-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-question-circle-o:before{content:""}.fa.fa-volume-control-phone:before{content:""}.fa.fa-asl-interpreting:before{content:""}.fa.fa-deafness:before,.fa.fa-hard-of-hearing:before{content:""}.fa.fa-glide,.fa.fa-glide-g{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-signing:before{content:""}.fa.fa-first-order,.fa.fa-google-plus-official,.fa.fa-pied-piper,.fa.fa-snapchat,.fa.fa-snapchat-ghost,.fa.fa-snapchat-square,.fa.fa-themeisle,.fa.fa-viadeo,.fa.fa-viadeo-square,.fa.fa-yoast{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus-official:before{content:""}.fa.fa-google-plus-circle{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus-circle:before{content:""}.fa.fa-fa,.fa.fa-font-awesome{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-fa:before{content:""}.fa.fa-handshake-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-handshake-o:before{content:""}.fa.fa-envelope-open-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-envelope-open-o:before{content:""}.fa.fa-linode{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-address-book-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-address-book-o:before{content:""}.fa.fa-vcard:before{content:""}.fa.fa-address-card-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-address-card-o:before{content:""}.fa.fa-vcard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-vcard-o:before{content:""}.fa.fa-user-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-user-circle-o:before{content:""}.fa.fa-user-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-user-o:before{content:""}.fa.fa-id-badge{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-drivers-license:before{content:""}.fa.fa-id-card-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-id-card-o:before{content:""}.fa.fa-drivers-license-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-drivers-license-o:before{content:""}.fa.fa-free-code-camp,.fa.fa-quora,.fa.fa-telegram{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-thermometer-4:before,.fa.fa-thermometer:before{content:""}.fa.fa-thermometer-3:before{content:""}.fa.fa-thermometer-2:before{content:""}.fa.fa-thermometer-1:before{content:""}.fa.fa-thermometer-0:before{content:""}.fa.fa-bathtub:before,.fa.fa-s15:before{content:""}.fa.fa-window-maximize,.fa.fa-window-restore{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-rectangle:before{content:""}.fa.fa-window-close-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-window-close-o:before{content:""}.fa.fa-times-rectangle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-rectangle-o:before{content:""}.fa.fa-bandcamp,.fa.fa-eercast,.fa.fa-etsy,.fa.fa-grav,.fa.fa-imdb,.fa.fa-ravelry{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-eercast:before{content:""}.fa.fa-snowflake-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-snowflake-o:before{content:""}.fa.fa-spotify,.fa.fa-superpowers,.fa.fa-wpexplorer{font-family:"Font Awesome 5 Brands";font-weight:400}section.highlight{background:#ccc;boder-left:0;boder-right:0;border:3px solid #ccc;margin:35px 0 45px;padding:40px 0}section.highlight div.img-thumbnail{background-color:#fff}section.highlight,section.highlight>p,section.highlight>a,section.highlight h1,section.highlight h2,section.highlight h3,section.highlight h4,section.highlight h5{color:#fff}section.highlight.footer{margin:45px 0 -70px}section.highlight.top{margin-top:0}em.image-icon{background-repeat:no-repeat;background-position:center center;display:inline-block;text-indent:-9999px;width:24px;height:24px;overflow:hidden}em.image-icon.small{width:16px;height:16px}em.image-icon.big{width:110px;height:110px}em.image-icon.user{background-image:url("/Portals/_default/skins/porto/Resources/img/icons/icon-user-24.png")}em.image-icon.user.small{background-image:url("/Portals/_default/skins/porto/Resources/img/icons/icon-user-16.png")}em.image-icon.user.big{background-image:url("/Portals/_default/skins/porto/Resources/img/icons/icon-user-48.png")}div.featured-box em.image-icon{-moz-border-radius:50px;-webkit-border-radius:50px;border-radius:100%;color:#fff;font-size:40px;line-height:110px;margin:25px 0;padding:25px}p.drop-caps.secundary:first-child:first-letter {background-color:#ccc;color:#fff;padding:6px;margin-right:5px;border-radius:4px}ul.icons,ul.icons li{list-style:none}.portfolio-item.img-thumbnail{display:block}section.featured{background:#f0f0ed;border-top:5px solid #ecece8;margin:35px 0;padding:50px 0}section.featured.footer{margin:30px 0 -70px}section.featured.map{background-image:url("/Portals/_default/skins/porto/Resources/img/map-bottom.png");background-position:center 0;background-repeat:no-repeat;margin-top:0;border-top:0}.sidebar .input-group .form-control{height:46px;padding:12px;border-right-color:transparent}.sidebar .input-group .form-control:focus{-moz-box-shadow:0 1px 1px rgba(0,0,0,.075) inset;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.075) inset;box-shadow:0 1px 1px rgba(0,0,0,.075) inset;border-color:#ccc}.pull-bottom{margin-bottom:35px}.pull-top{margin-top:35px}section.timeline .timeline-box .img-thumbnail,section.timeline .timeline-box .img-thumbnail img{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;padding:0;border:0}a.thumb-info img{-moz-border-radius:3px;-moz-transition:all .2s linear;-o-transition:all .2s linear;-webkit-border-radius:3px;-webkit-transition:all .2s linear;border-radius:3px;position:relative;transition:all .2s linear}a.thumb-info:hover img{-moz-transform:scale(1.1,1.1);-ms-transform:scale(1.1,1.1);-o-transform:scale(1.1,1.1);-webkit-transform:scale(1.1,1.1);transform:scale(1.1,1.1)}a.thumb-info:hover div.thumb-info-action{filter:alpha(opacity=100);opacity:1}a.thumb-info div.thumb-info-action{-moz-transition:all .3s;-o-transition:all .3s;-webkit-transition:all .3s;background:rgba(36,27,28,.9);bottom:0;color:#fff;filter:alpha(opacity=0);height:100%;left:0;opacity:0;position:absolute;right:0;top:0;transition:all .3s;width:100%}.sort-destination.full-width .isotope-item .img-thumbnail{border:0;padding:0;margin:0}section.call-to-action{position:relative;clear:both}section.featured.footer{background:#f0f0ed !important;border-top:5px solid #ecece8 !important;padding:50px 0 !important}section.featured.with-button-arrow.call-to-action:before{content:"";display:block;position:absolute;border-left:20px solid transparent;border-right:20px solid transparent;border-top:20px solid #fff;height:20px;width:20px;top:-5px;left:50%;margin-left:-20px}.call-to-action.featured.footer:before{content:"";display:block;position:absolute;border-left:20px solid transparent;border-right:20px solid transparent;border-top:20px solid #fff;height:20px;width:20px;top:-5px;left:50%;margin-left:-20px}section.call-to-action h3 .btn{margin-left:10px}span.arrow.hl{background-position:-209px 0;width:120px;height:47px}.pricing-table{margin:25px 0 0 -15px}div.row>.pricing-table{margin:10px 0}ul.list.icons li i,ul.list.icons li em{color:#ccc;margin-right:5px}a.thumb-info.secundary span.thumb-info-title{background:transparent;bottom:auto;left:0;right:0;top:35%;text-align:center;opacity:0}a.thumb-info.secundary span.thumb-info-type{float:none}a.thumb-info.secundary:hover span.thumb-info-title{top:42%;opacity:1}@charset "UTF-8";
/*!
 * Bootstrap v5.0.2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg,rgba(255,255,255,.15),rgba(255,255,255,0))}*,*::before,*::after{box-sizing:border-box}@media(prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-font-sans-serif);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}h6,.h6,h5,.h5,h4,.h4,h3,.h3,h2,.h2,h1,.h1{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}h1,.h1{font-size:calc(1.375rem + 1.5vw)}@media(min-width:1200px){h1,.h1{font-size:2.5rem}}h2,.h2{font-size:calc(1.325rem + .9vw)}@media(min-width:1200px){h2,.h2{font-size:2rem}}h3,.h3{font-size:calc(1.3rem + .6vw)}@media(min-width:1200px){h3,.h3{font-size:1.75rem}}h4,.h4{font-size:calc(1.275rem + .3vw)}@media(min-width:1200px){h4,.h4{font-size:1.5rem}}h5,.h5{font-size:1.25rem}h6,.h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-bs-original-title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small,.small{font-size:.875em}mark,.mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}thead,tbody,tfoot,tr,td,th{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button:not(:disabled),[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media(min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-text,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none !important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media(min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"��"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#6c757d}.container,.container-fluid,.container-xxl,.container-xl,.container-lg,.container-md,.container-sm{width:100%;padding-right:var(--bs-gutter-x,.75rem);padding-left:var(--bs-gutter-x,.75rem);margin-right:auto;margin-left:auto}@media(min-width:576px){.container-sm,.container{max-width:540px}}@media(min-width:768px){.container-md,.container-sm,.container{max-width:720px}}@media(min-width:992px){.container-lg,.container-md,.container-sm,.container{max-width:960px}}@media(min-width:1200px){.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1140px}}@media(min-width:1400px){.container-xxl,.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y)*-1);margin-right:calc(var(--bs-gutter-x)*-.5);margin-left:calc(var(--bs-gutter-x)*-.5)}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}@media(min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}}@media(min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}}@media(min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}}@media(min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}}@media(min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:.25rem}.g-1,.gy-1{--bs-gutter-y:.25rem}.g-2,.gx-2{--bs-gutter-x:.5rem}.g-2,.gy-2{--bs-gutter-y:.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media(min-width:576px){.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media(min-width:768px){.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media(min-width:992px){.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}

@media(min-width:1200px){.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media(min-width:1400px){.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-bg:transparent;--bs-table-accent-bg:transparent;--bs-table-striped-color:#212529;--bs-table-striped-bg:rgba(0,0,0,.05);--bs-table-active-color:#212529;--bs-table-active-bg:rgba(0,0,0,.1);--bs-table-hover-color:#212529;--bs-table-hover-bg:rgba(0,0,0,.075);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#dee2e6}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:last-child)>:last-child>*{border-bottom-color:currentColor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-striped>tbody>tr:nth-of-type(odd){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-bg:#cfe2ff;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:#000;border-color:#bacbe6}.table-secondary{--bs-table-bg:#e2e3e5;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:#000;border-color:#cbccce}.table-success{--bs-table-bg:#d1e7dd;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:#000;border-color:#bcd0c7}.table-info{--bs-table-bg:#cff4fc;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:#000;border-color:#badce3}.table-warning{--bs-table-bg:#fff3cd;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:#000;border-color:#e6dbb9}.table-danger{--bs-table-bg:#f8d7da;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:#000;border-color:#dfc2c4}.table-light{--bs-table-bg:#f8f9fa;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:#000;border-color:#dfe0e1}.table-dark{--bs-table-bg:#212529;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:#fff;border-color:#373b3e}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media(max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + (.5rem + 2px));padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + (1rem + 2px));padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + (.75rem + 2px))}textarea.form-control-sm{min-height:calc(1.5em + (.5rem + 2px))}textarea.form-control-lg{min-height:calc(1.5em + (1rem + 2px))}.form-control-color{max-width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media(prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input[disabled]~.form-check-label,.form-check-input:disabled~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check[disabled]+.btn,.btn-check:disabled+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media(prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media(prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media(prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text,.input-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text,.input-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(25,135,84,.9);border-radius:.25rem}.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip,.is-valid~.valid-feedback,.is-valid~.valid-tooltip{display:block}.was-validated .form-control:valid,.form-control.is-valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.was-validated .form-select:valid,.form-select.is-valid{border-color:#198754}.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"],.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .form-select:valid:focus,.form-select.is-valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated .form-check-input:valid,.form-check-input.is-valid{border-color:#198754}.was-validated .form-check-input:valid:checked,.form-check-input.is-valid:checked{background-color:#198754}.was-validated .form-check-input:valid:focus,.form-check-input.is-valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated .form-check-input:valid~.form-check-label,.form-check-input.is-valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.was-validated .input-group .form-control:valid,.input-group .form-control.is-valid,.was-validated .input-group .form-select:valid,.input-group .form-select.is-valid{z-index:1}.was-validated .input-group .form-control:valid:focus,.input-group .form-control.is-valid:focus,.was-validated .input-group .form-select:valid:focus,.input-group .form-select.is-valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip,.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip{display:block}.was-validated .form-control:invalid,.form-control.is-invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.was-validated .form-select:invalid,.form-select.is-invalid{border-color:#dc3545}.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"],.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .form-select:invalid:focus,.form-select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated .form-check-input:invalid,.form-check-input.is-invalid{border-color:#dc3545}.was-validated .form-check-input:invalid:checked,.form-check-input.is-invalid:checked{background-color:#dc3545}.was-validated .form-check-input:invalid:focus,.form-check-input.is-invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated .form-check-input:invalid~.form-check-label,.form-check-input.is-invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.was-validated .input-group .form-control:invalid,.input-group .form-control.is-invalid,.was-validated .input-group .form-select:invalid,.input-group .form-select.is-invalid{z-index:2}.was-validated .input-group .form-control:invalid:focus,.input-group .form-control.is-invalid:focus,.was-validated .input-group .form-select:invalid:focus,.input-group .form-select.is-invalid:focus{z-index:3}.btn{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.btn:disabled,.btn.disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-primary:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-check:checked+.btn-primary,.btn-check:active+.btn-primary,.btn-primary:active,.btn-primary.active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:checked+.btn-primary:focus,.btn-check:active+.btn-primary:focus,.btn-primary:active:focus,.btn-primary.active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-primary:disabled,.btn-primary.disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-check:checked+.btn-secondary,.btn-check:active+.btn-secondary,.btn-secondary:active,.btn-secondary.active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:checked+.btn-secondary:focus,.btn-check:active+.btn-secondary:focus,.btn-secondary:active:focus,.btn-secondary.active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-secondary:disabled,.btn-secondary.disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-success{color:#fff;background-color:#198754;border-color:#198754}.btn-success:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+.btn-success,.btn-success:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-check:checked+.btn-success,.btn-check:active+.btn-success,.btn-success:active,.btn-success.active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:checked+.btn-success:focus,.btn-check:active+.btn-success:focus,.btn-success:active:focus,.btn-success.active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-success:disabled,.btn-success.disabled{color:#fff;background-color:#198754;border-color:#198754}.btn-info{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-info:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-check:checked+.btn-info,.btn-check:active+.btn-info,.btn-info:active,.btn-info.active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:checked+.btn-info:focus,.btn-check:active+.btn-info:focus,.btn-info:active:focus,.btn-info.active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-info:disabled,.btn-info.disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-warning{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-check:checked+.btn-warning,.btn-check:active+.btn-warning,.btn-warning:active,.btn-warning.active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:checked+.btn-warning:focus,.btn-check:active+.btn-warning:focus,.btn-warning:active:focus,.btn-warning.active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-warning:disabled,.btn-warning.disabled{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-check:checked+.btn-danger,.btn-check:active+.btn-danger,.btn-danger:active,.btn-danger.active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:checked+.btn-danger:focus,.btn-check:active+.btn-danger:focus,.btn-danger:active:focus,.btn-danger.active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-danger:disabled,.btn-danger.disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-check:checked+.btn-light,.btn-check:active+.btn-light,.btn-light:active,.btn-light.active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:checked+.btn-light:focus,.btn-check:active+.btn-light:focus,.btn-light:active:focus,.btn-light.active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-light:disabled,.btn-light.disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-dark{color:#fff;background-color:#212529;border-color:#212529}.btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-check:checked+.btn-dark,.btn-check:active+.btn-dark,.btn-dark:active,.btn-dark.active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:checked+.btn-dark:focus,.btn-check:active+.btn-dark:focus,.btn-dark:active:focus,.btn-dark.active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-dark:disabled,.btn-dark.disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-primary{color:#0d6efd;border-color:#0d6efd}.btn-outline-primary:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-check:checked+.btn-outline-primary,.btn-check:active+.btn-outline-primary,.btn-outline-primary:active,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:checked+.btn-outline-primary:focus,.btn-check:active+.btn-outline-primary:focus,.btn-outline-primary:active:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-outline-primary:disabled,.btn-outline-primary.disabled{color:#0d6efd;background-color:transparent}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-check:checked+.btn-outline-secondary,.btn-check:active+.btn-outline-secondary,.btn-outline-secondary:active,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:checked+.btn-outline-secondary:focus,.btn-check:active+.btn-outline-secondary:focus,.btn-outline-secondary:active:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-outline-secondary:disabled,.btn-outline-secondary.disabled{color:#6c757d;background-color:transparent}.btn-outline-success{color:#198754;border-color:#198754}.btn-outline-success:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-check:checked+.btn-outline-success,.btn-check:active+.btn-outline-success,.btn-outline-success:active,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show{color:#fff;background-color:#198754;border-color:#198754}.btn-check:checked+.btn-outline-success:focus,.btn-check:active+.btn-outline-success:focus,.btn-outline-success:active:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-outline-success:disabled,.btn-outline-success.disabled{color:#198754;background-color:transparent}.btn-outline-info{color:#0dcaf0;border-color:#0dcaf0}.btn-outline-info:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-check:checked+.btn-outline-info,.btn-check:active+.btn-outline-info,.btn-outline-info:active,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:checked+.btn-outline-info:focus,.btn-check:active+.btn-outline-info:focus,.btn-outline-info:active:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-outline-info:disabled,.btn-outline-info.disabled{color:#0dcaf0;background-color:transparent}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-check:checked+.btn-outline-warning,.btn-check:active+.btn-outline-warning,.btn-outline-warning:active,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:checked+.btn-outline-warning:focus,.btn-check:active+.btn-outline-warning:focus,.btn-outline-warning:active:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-outline-warning:disabled,.btn-outline-warning.disabled{color:#ffc107;background-color:transparent}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-check:checked+.btn-outline-danger,.btn-check:active+.btn-outline-danger,.btn-outline-danger:active,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:checked+.btn-outline-danger:focus,.btn-check:active+.btn-outline-danger:focus,.btn-outline-danger:active:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-outline-danger:disabled,.btn-outline-danger.disabled{color:#dc3545;background-color:transparent}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-check:checked+.btn-outline-light,.btn-check:active+.btn-outline-light,.btn-outline-light:active,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:checked+.btn-outline-light:focus,.btn-check:active+.btn-outline-light:focus,.btn-outline-light:active:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-outline-light:disabled,.btn-outline-light.disabled{color:#f8f9fa;background-color:transparent}.btn-outline-dark{color:#212529;border-color:#212529}.btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-check:checked+.btn-outline-dark,.btn-check:active+.btn-outline-dark,.btn-outline-dark:active,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show{color:#fff;background-color:#212529;border-color:#212529}.btn-check:checked+.btn-outline-dark:focus,.btn-check:active+.btn-outline-dark:focus,.btn-outline-dark:active:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-outline-dark:disabled,.btn-outline-dark.disabled{color:#212529;background-color:transparent}.btn-link{font-weight:400;color:#0d6efd;text-decoration:underline}.btn-link:hover{color:#0a58ca}.btn-link:disabled,.btn-link.disabled{color:#6c757d}.btn-lg,.btn-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.btn-sm,.btn-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media(prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media(prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropup,.dropend,.dropdown,.dropstart{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media(min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media(min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media(min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media(min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media(min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:hover,.dropdown-item:focus{color:#1e2125;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}.dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#dee2e6}.dropdown-menu-dark .dropdown-item:hover,.dropdown-menu-dark .dropdown-item:focus{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#0d6efd}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#dee2e6}.dropdown-menu-dark .dropdown-header{color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;flex:1 1 auto}.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn:hover,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child){margin-left:-1px}.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn,.btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn~.btn,.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#0d6efd;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media(prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:hover,.nav-link:focus{color:#0a58ca}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background:none;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{border-color:#e9ecef #e9ecef #dee2e6;isolation:isolate}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:none;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#0d6efd}.nav-fill>.nav-link,.nav-fill .nav-item{flex:1 1 auto;text-align:center}.nav-justified>.nav-link,.nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-sm,.navbar>.container-md,.navbar>.container-lg,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media(min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media(min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media(min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media(min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}@media(min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:hover,.navbar-dark .navbar-brand:focus{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.55)}.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .nav-link.active{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:hover,.navbar-dark .navbar-text a:focus{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1rem 1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{padding:.5rem 1rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.5rem;margin-bottom:-.5rem;margin-left:-.5rem;border-bottom:0}.card-header-pills{margin-right:-.5rem;margin-left:-.5rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-top,.card-img-bottom{width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media(min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#212529;text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media(prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#0c63e4;background-color:#e7f1ff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed)::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(-180deg)}.accordion-button::after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media(prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-body{padding:1rem 1.25rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.breadcrumb{display:flex;flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:var(--bs-breadcrumb-divider,"/")}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#0d6efd;text-decoration:none;background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#0a58ca;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;color:#0a58ca;background-color:#e9ecef;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#fff;border-color:#dee2e6}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem 1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}.alert-primary .alert-link{color:#06357a}.alert-secondary{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}.alert-secondary .alert-link{color:#34383c}.alert-success{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}.alert-success .alert-link{color:#0c4128}.alert-info{color:#055160;background-color:#cff4fc;border-color:#b6effb}.alert-info .alert-link{color:#04414d}.alert-warning{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}.alert-warning .alert-link{color:#523e02}.alert-danger{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}.alert-danger .alert-link{color:#6a1a21}.alert-light{color:#636464;background-color:#fefefe;border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}.alert-dark .alert-link{color:#101214}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:1rem}}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#0d6efd;transition:width .6s ease}@media(prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{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:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media(prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section,".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#212529;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media(min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media(min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media(min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media(min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media(min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#084298;background-color:#cfe2ff}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#084298;background-color:#bacbe6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-secondary{color:#41464b;background-color:#e2e3e5}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#41464b;background-color:#cbccce}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-success{color:#0f5132;background-color:#d1e7dd}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#0f5132;background-color:#bcd0c7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-info{color:#055160;background-color:#cff4fc}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#055160;background-color:#badce3}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-warning{color:#664d03;background-color:#fff3cd}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#664d03;background-color:#e6dbb9}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-danger{color:#842029;background-color:#f8d7da}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#842029;background-color:#dfc2c4}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25);opacity:1}.btn-close:disabled,.btn-close.disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem rgba(0,0,0,.15);border-radius:.25rem}.toast:not(.showing):not(.show){opacity:0}.toast.hide{display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;left:0;z-index:1060;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media(prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .btn-close{padding:.5rem .5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}@media(min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media(min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media(min-width:1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media(max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media(max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media(max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media(max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media(max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[data-popper-placement^=top]{padding:.4rem 0}.bs-tooltip-top .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow{bottom:0}.bs-tooltip-top .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-end,.bs-tooltip-auto[data-popper-placement^=right]{padding:0 .4rem}.bs-tooltip-end .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-end .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[data-popper-placement^=bottom]{padding:.4rem 0}.bs-tooltip-bottom .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow{top:0}.bs-tooltip-bottom .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-start,.bs-tooltip-auto[data-popper-placement^=left]{padding:0 .4rem}.bs-tooltip-start .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-start .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::before,.popover .popover-arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top>.popover-arrow,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-top>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-top>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-end>.popover-arrow,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-end>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-end>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-bottom>.popover-arrow,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-bottom>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-bottom>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-start>.popover-arrow,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-start>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-start>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem 1rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media(prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}.carousel-item-next:not(.carousel-item-start),.active.carousel-item-end{transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-end),.active.carousel-item-start{transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end{z-index:1;opacity:1}.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{z-index:0;opacity:0;transition:opacity 0s .6s}@media(prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity .15s ease}@media(prefers-reduced-motion:reduce){.carousel-control-prev,.carousel-control-next{transition:none}}.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media(prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-prev-icon,.carousel-dark .carousel-control-next-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{to{transform:rotate(360deg)}}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media(prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.offcanvas{position:fixed;bottom:0;z-index:1050;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media(prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1rem}.offcanvas-header .btn-close{padding:.5rem .5rem;margin-top:-.5rem;margin-right:-.5rem;margin-bottom:-.5rem}.offcanvas-title{margin-bottom:0;line-height:1.5}.offcanvas-body{flex-grow:1;padding:1rem 1rem;overflow-y:auto}.offcanvas-start{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-end{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-top{top:0;right:0;left:0;height:30vh;max-height:100%;border-bottom:1px solid rgba(0,0,0,.2);transform:translateY(-100%)}.offcanvas-bottom{right:0;left:0;height:30vh;max-height:100%;border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.clearfix::after{display:block;clear:both;content:""}.link-primary{color:#0d6efd}.link-primary:hover,.link-primary:focus{color:#0a58ca}.link-secondary{color:#6c757d}.link-secondary:hover,.link-secondary:focus{color:#565e64}.link-success{color:#198754}.link-success:hover,.link-success:focus{color:#146c43}.link-info{color:#0dcaf0}.link-info:hover,.link-info:focus{color:#3dd5f3}.link-warning{color:#ffc107}.link-warning:hover,.link-warning:focus{color:#ffcd39}.link-danger{color:#dc3545}.link-danger:hover,.link-danger:focus{color:#b02a37}.link-light{color:#f8f9fa}.link-light:hover,.link-light:focus{color:#f9fafb}.link-dark{color:#212529}.link-dark:hover,.link-dark:focus{color:#1a1e21}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:calc(3 / 4 * 100%)}.ratio-16x9{--bs-aspect-ratio:calc(9 / 16 * 100%)}.ratio-21x9{--bs-aspect-ratio:calc(9 / 21 * 100%)}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media(min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media(min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute !important;width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0,0,0,0) !important;white-space:nowrap !important;border:0 !important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.align-baseline{vertical-align:baseline !important}.align-top{vertical-align:top !important}.align-middle{vertical-align:middle !important}.align-bottom{vertical-align:bottom !important}.align-text-bottom{vertical-align:text-bottom !important}.align-text-top{vertical-align:text-top !important}.float-start{float:left !important}.float-end{float:right !important}.float-none{float:none !important}.overflow-auto{overflow:auto !important}.overflow-hidden{overflow:hidden !important}.overflow-visible{overflow:visible !important}.overflow-scroll{overflow:scroll !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-grid{display:grid !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:flex !important}.d-inline-flex{display:inline-flex !important}.d-none{display:none !important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15) !important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075) !important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175) !important}.shadow-none{box-shadow:none !important}.position-static{position:static !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.position-sticky{position:-webkit-sticky !important;position:sticky !important}.top-0{top:0 !important}.top-50{top:50% !important}.top-100{top:100% !important}.bottom-0{bottom:0 !important}.bottom-50{bottom:50% !important}.bottom-100{bottom:100% !important}.start-0{left:0 !important}.start-50{left:50% !important}.start-100{left:100% !important}.end-0{right:0 !important}.end-50{right:50% !important}.end-100{right:100% !important}.translate-middle{transform:translate(-50%,-50%) !important}.translate-middle-x{transform:translateX(-50%) !important}.translate-middle-y{transform:translateY(-50%) !important}.border{border:1px solid #dee2e6 !important}.border-0{border:0 !important}.border-top{border-top:1px solid #dee2e6 !important}.border-top-0{border-top:0 !important}.border-end{border-right:1px solid #dee2e6 !important}.border-end-0{border-right:0 !important}.border-bottom{border-bottom:1px solid #dee2e6 !important}.border-bottom-0{border-bottom:0 !important}.border-start{border-left:1px solid #dee2e6 !important}.border-start-0{border-left:0 !important}.border-primary{border-color:#0d6efd !important}.border-secondary{border-color:#6c757d !important}.border-success{border-color:#198754 !important}.border-info{border-color:#0dcaf0 !important}.border-warning{border-color:#ffc107 !important}.border-danger{border-color:#dc3545 !important}.border-light{border-color:#f8f9fa !important}.border-dark{border-color:#212529 !important}.border-white{border-color:#fff !important}.border-1{border-width:1px !important}.border-2{border-width:2px !important}.border-3{border-width:3px !important}.border-4{border-width:4px !important}.border-5{border-width:5px !important}.w-25{width:25% !important}.w-50{width:50% !important}.w-75{width:75% !important}.w-100{width:100% !important}.w-auto{width:auto !important}.mw-100{max-width:100% !important}.vw-100{width:100vw !important}.min-vw-100{min-width:100vw !important}.h-25{height:25% !important}.h-50{height:50% !important}.h-75{height:75% !important}.h-100{height:100% !important}.h-auto{height:auto !important}.mh-100{max-height:100% !important}.vh-100{height:100vh !important}.min-vh-100{min-height:100vh !important}.flex-fill{flex:1 1 auto !important}.flex-row{flex-direction:row !important}.flex-column{flex-direction:column !important}.flex-row-reverse{flex-direction:row-reverse !important}.flex-column-reverse{flex-direction:column-reverse !important}.flex-grow-0{flex-grow:0 !important}.flex-grow-1{flex-grow:1 !important}.flex-shrink-0{flex-shrink:0 !important}.flex-shrink-1{flex-shrink:1 !important}.flex-wrap{flex-wrap:wrap !important}.flex-nowrap{flex-wrap:nowrap !important}.flex-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-0{gap:0 !important}.gap-1{gap:.25rem !important}.gap-2{gap:.5rem !important}.gap-3{gap:1rem !important}.gap-4{gap:1.5rem !important}.gap-5{gap:3rem !important}.justify-content-start{justify-content:flex-start !important}.justify-content-end{justify-content:flex-end !important}.justify-content-center{justify-content:center !important}.justify-content-between{justify-content:space-between !important}.justify-content-around{justify-content:space-around !important}.justify-content-evenly{justify-content:space-evenly !important}.align-items-start{align-items:flex-start !important}.align-items-end{align-items:flex-end !important}.align-items-center{align-items:center !important}.align-items-baseline{align-items:baseline !important}.align-items-stretch{align-items:stretch !important}.align-content-start{align-content:flex-start !important}.align-content-end{align-content:flex-end !important}.align-content-center{align-content:center !important}.align-content-between{align-content:space-between !important}.align-content-around{align-content:space-around !important}.align-content-stretch{align-content:stretch !important}.align-self-auto{align-self:auto !important}.align-self-start{align-self:flex-start !important}.align-self-end{align-self:flex-end !important}.align-self-center{align-self:center !important}.align-self-baseline{align-self:baseline !important}.align-self-stretch{align-self:stretch !important}.order-first{order:-1 !important}.order-0{order:0 !important}.order-1{order:1 !important}.order-2{order:2 !important}.order-3{order:3 !important}.order-4{order:4 !important}.order-5{order:5 !important}.order-last{order:6 !important}.m-0{margin:0 !important}.m-1{margin:.25rem !important}.m-2{margin:.5rem !important}.m-3{margin:1rem !important}.m-4{margin:1.5rem !important}.m-5{margin:3rem !important}.m-auto{margin:auto !important}.mx-0{margin-right:0 !important;margin-left:0 !important}.mx-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-3{margin-right:1rem !important;margin-left:1rem !important}.mx-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-5{margin-right:3rem !important;margin-left:3rem !important}.mx-auto{margin-right:auto !important;margin-left:auto !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-0{margin-top:0 !important}.mt-1{margin-top:.25rem !important}.mt-2{margin-top:.5rem !important}.mt-3{margin-top:1rem !important}.mt-4{margin-top:1.5rem !important}.mt-5{margin-top:3rem !important}.mt-auto{margin-top:auto !important}.me-0{margin-right:0 !important}.me-1{margin-right:.25rem !important}.me-2{margin-right:.5rem !important}.me-3{margin-right:1rem !important}.me-4{margin-right:1.5rem !important}.me-5{margin-right:3rem !important}.me-auto{margin-right:auto !important}.mb-0{margin-bottom:0 !important}.mb-1{margin-bottom:.25rem !important}.mb-2{margin-bottom:.5rem !important}.mb-3{margin-bottom:1rem !important}.mb-4{margin-bottom:1.5rem !important}.mb-5{margin-bottom:3rem !important}.mb-auto{margin-bottom:auto !important}.ms-0{margin-left:0 !important}.ms-1{margin-left:.25rem !important}.ms-2{margin-left:.5rem !important}.ms-3{margin-left:1rem !important}.ms-4{margin-left:1.5rem !important}.ms-5{margin-left:3rem !important}.ms-auto{margin-left:auto !important}.p-0{padding:0 !important}.p-1{padding:.25rem !important}.p-2{padding:.5rem !important}.p-3{padding:1rem !important}.p-4{padding:1.5rem !important}.p-5{padding:3rem !important}.px-0{padding-right:0 !important;padding-left:0 !important}.px-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-3{padding-right:1rem !important;padding-left:1rem !important}.px-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-5{padding-right:3rem !important;padding-left:3rem !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-0{padding-top:0 !important}.pt-1{padding-top:.25rem !important}.pt-2{padding-top:.5rem !important}.pt-3{padding-top:1rem !important}.pt-4{padding-top:1.5rem !important}.pt-5{padding-top:3rem !important}.pe-0{padding-right:0 !important}.pe-1{padding-right:.25rem !important}.pe-2{padding-right:.5rem !important}.pe-3{padding-right:1rem !important}.pe-4{padding-right:1.5rem !important}.pe-5{padding-right:3rem !important}.pb-0{padding-bottom:0 !important}.pb-1{padding-bottom:.25rem !important}.pb-2{padding-bottom:.5rem !important}.pb-3{padding-bottom:1rem !important}.pb-4{padding-bottom:1.5rem !important}.pb-5{padding-bottom:3rem !important}.ps-0{padding-left:0 !important}.ps-1{padding-left:.25rem !important}.ps-2{padding-left:.5rem !important}.ps-3{padding-left:1rem !important}.ps-4{padding-left:1.5rem !important}.ps-5{padding-left:3rem !important}.font-monospace{font-family:var(--bs-font-monospace) !important}.fs-1{font-size:calc(1.375rem + 1.5vw) !important}.fs-2{font-size:calc(1.325rem + .9vw) !important}.fs-3{font-size:calc(1.3rem + .6vw) !important}.fs-4{font-size:calc(1.275rem + .3vw) !important}.fs-5{font-size:1.25rem !important}.fs-6{font-size:1rem !important}.fst-italic{font-style:italic !important}.fst-normal{font-style:normal !important}.fw-light{font-weight:300 !important}.fw-lighter{font-weight:lighter !important}.fw-normal{font-weight:400 !important}.fw-bold{font-weight:700 !important}.fw-bolder{font-weight:bolder !important}.lh-1{line-height:1 !important}.lh-sm{line-height:1.25 !important}.lh-base{line-height:1.5 !important}.lh-lg{line-height:2 !important}.text-start{text-align:left !important}.text-end{text-align:right !important}.text-center{text-align:center !important}.text-decoration-none{text-decoration:none !important}.text-decoration-underline{text-decoration:underline !important}.text-decoration-line-through{text-decoration:line-through !important}.text-lowercase{text-transform:lowercase !important}.text-uppercase{text-transform:uppercase !important}.text-capitalize{text-transform:capitalize !important}.text-wrap{white-space:normal !important}.text-nowrap{white-space:nowrap !important}.text-break{word-wrap:break-word !important;word-break:break-word !important}.text-primary{color:#0d6efd !important}.text-secondary{color:#6c757d !important}.text-success{color:#198754 !important}.text-info{color:#0dcaf0 !important}.text-warning{color:#ffc107 !important}.text-danger{color:#dc3545 !important}.text-light{color:#f8f9fa !important}.text-dark{color:#212529 !important}.text-white{color:#fff !important}.text-body{color:#212529 !important}.text-muted{color:#6c757d !important}.text-black-50{color:rgba(0,0,0,.5) !important}.text-white-50{color:rgba(255,255,255,.5) !important}.text-reset{color:inherit !important}.bg-primary{background-color:#0d6efd !important}.bg-secondary{background-color:#6c757d !important}.bg-success{background-color:#198754 !important}.bg-info{background-color:#0dcaf0 !important}.bg-warning{background-color:#ffc107 !important}.bg-danger{background-color:#dc3545 !important}.bg-light{background-color:#f8f9fa !important}.bg-dark{background-color:#212529 !important}.bg-body{background-color:#fff !important}.bg-white{background-color:#fff !important}.bg-transparent{background-color:transparent !important}.bg-gradient{background-image:var(--bs-gradient) !important}.user-select-all{-webkit-user-select:all !important;-moz-user-select:all !important;user-select:all !important}.user-select-auto{-webkit-user-select:auto !important;-moz-user-select:auto !important;user-select:auto !important}.user-select-none{-webkit-user-select:none !important;-moz-user-select:none !important;user-select:none !important}.pe-none{pointer-events:none !important}.pe-auto{pointer-events:auto !important}.rounded{border-radius:.25rem !important}.rounded-0{border-radius:0 !important}.rounded-1{border-radius:.2rem !important}.rounded-2{border-radius:.25rem !important}.rounded-3{border-radius:.3rem !important}.rounded-circle{border-radius:50% !important}.rounded-pill{border-radius:50rem !important}.rounded-top{border-top-left-radius:.25rem !important;border-top-right-radius:.25rem !important}.rounded-end{border-top-right-radius:.25rem !important;border-bottom-right-radius:.25rem !important}.rounded-bottom{border-bottom-right-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.rounded-start{border-bottom-left-radius:.25rem !important;border-top-left-radius:.25rem !important}.visible{visibility:visible !important}.invisible{visibility:hidden !important}@media(min-width:576px){.float-sm-start{float:left !important}.float-sm-end{float:right !important}.float-sm-none{float:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-grid{display:grid !important}.d-sm-table{display:table !important}.d-sm-table-row{display:table-row !important}.d-sm-table-cell{display:table-cell !important}.d-sm-flex{display:flex !important}.d-sm-inline-flex{display:inline-flex !important}.d-sm-none{display:none !important}.flex-sm-fill{flex:1 1 auto !important}.flex-sm-row{flex-direction:row !important}.flex-sm-column{flex-direction:column !important}.flex-sm-row-reverse{flex-direction:row-reverse !important}.flex-sm-column-reverse{flex-direction:column-reverse !important}.flex-sm-grow-0{flex-grow:0 !important}.flex-sm-grow-1{flex-grow:1 !important}.flex-sm-shrink-0{flex-shrink:0 !important}.flex-sm-shrink-1{flex-shrink:1 !important}.flex-sm-wrap{flex-wrap:wrap !important}.flex-sm-nowrap{flex-wrap:nowrap !important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-sm-0{gap:0 !important}.gap-sm-1{gap:.25rem !important}.gap-sm-2{gap:.5rem !important}.gap-sm-3{gap:1rem !important}.gap-sm-4{gap:1.5rem !important}.gap-sm-5{gap:3rem !important}.justify-content-sm-start{justify-content:flex-start !important}.justify-content-sm-end{justify-content:flex-end !important}.justify-content-sm-center{justify-content:center !important}.justify-content-sm-between{justify-content:space-between !important}.justify-content-sm-around{justify-content:space-around !important}.justify-content-sm-evenly{justify-content:space-evenly !important}.align-items-sm-start{align-items:flex-start !important}.align-items-sm-end{align-items:flex-end !important}.align-items-sm-center{align-items:center !important}.align-items-sm-baseline{align-items:baseline !important}.align-items-sm-stretch{align-items:stretch !important}.align-content-sm-start{align-content:flex-start !important}.align-content-sm-end{align-content:flex-end !important}.align-content-sm-center{align-content:center !important}.align-content-sm-between{align-content:space-between !important}.align-content-sm-around{align-content:space-around !important}.align-content-sm-stretch{align-content:stretch !important}.align-self-sm-auto{align-self:auto !important}.align-self-sm-start{align-self:flex-start !important}.align-self-sm-end{align-self:flex-end !important}.align-self-sm-center{align-self:center !important}.align-self-sm-baseline{align-self:baseline !important}.align-self-sm-stretch{align-self:stretch !important}.order-sm-first{order:-1 !important}.order-sm-0{order:0 !important}.order-sm-1{order:1 !important}.order-sm-2{order:2 !important}.order-sm-3{order:3 !important}.order-sm-4{order:4 !important}.order-sm-5{order:5 !important}.order-sm-last{order:6 !important}.m-sm-0{margin:0 !important}.m-sm-1{margin:.25rem !important}.m-sm-2{margin:.5rem !important}.m-sm-3{margin:1rem !important}.m-sm-4{margin:1.5rem !important}.m-sm-5{margin:3rem !important}.m-sm-auto{margin:auto !important}.mx-sm-0{margin-right:0 !important;margin-left:0 !important}.mx-sm-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-sm-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-sm-3{margin-right:1rem !important;margin-left:1rem !important}.mx-sm-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-sm-5{margin-right:3rem !important;margin-left:3rem !important}.mx-sm-auto{margin-right:auto !important;margin-left:auto !important}.my-sm-0{margin-top:0 !important;margin-bottom:0 !important}.my-sm-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-sm-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-sm-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-sm-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-sm-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-sm-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-sm-0{margin-top:0 !important}.mt-sm-1{margin-top:.25rem !important}.mt-sm-2{margin-top:.5rem !important}.mt-sm-3{margin-top:1rem !important}.mt-sm-4{margin-top:1.5rem !important}.mt-sm-5{margin-top:3rem !important}.mt-sm-auto{margin-top:auto !important}.me-sm-0{margin-right:0 !important}.me-sm-1{margin-right:.25rem !important}.me-sm-2{margin-right:.5rem !important}.me-sm-3{margin-right:1rem !important}.me-sm-4{margin-right:1.5rem !important}.me-sm-5{margin-right:3rem !important}.me-sm-auto{margin-right:auto !important}.mb-sm-0{margin-bottom:0 !important}.mb-sm-1{margin-bottom:.25rem !important}.mb-sm-2{margin-bottom:.5rem !important}.mb-sm-3{margin-bottom:1rem !important}.mb-sm-4{margin-bottom:1.5rem !important}.mb-sm-5{margin-bottom:3rem !important}.mb-sm-auto{margin-bottom:auto !important}.ms-sm-0{margin-left:0 !important}.ms-sm-1{margin-left:.25rem !important}.ms-sm-2{margin-left:.5rem !important}.ms-sm-3{margin-left:1rem !important}.ms-sm-4{margin-left:1.5rem !important}.ms-sm-5{margin-left:3rem !important}.ms-sm-auto{margin-left:auto !important}.p-sm-0{padding:0 !important}.p-sm-1{padding:.25rem !important}.p-sm-2{padding:.5rem !important}.p-sm-3{padding:1rem !important}.p-sm-4{padding:1.5rem !important}.p-sm-5{padding:3rem !important}.px-sm-0{padding-right:0 !important;padding-left:0 !important}.px-sm-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-sm-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-sm-3{padding-right:1rem !important;padding-left:1rem !important}.px-sm-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-sm-5{padding-right:3rem !important;padding-left:3rem !important}.py-sm-0{padding-top:0 !important;padding-bottom:0 !important}.py-sm-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-sm-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-sm-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-sm-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-sm-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-sm-0{padding-top:0 !important}.pt-sm-1{padding-top:.25rem !important}.pt-sm-2{padding-top:.5rem !important}.pt-sm-3{padding-top:1rem !important}.pt-sm-4{padding-top:1.5rem !important}.pt-sm-5{padding-top:3rem !important}.pe-sm-0{padding-right:0 !important}.pe-sm-1{padding-right:.25rem !important}.pe-sm-2{padding-right:.5rem !important}.pe-sm-3{padding-right:1rem !important}.pe-sm-4{padding-right:1.5rem !important}.pe-sm-5{padding-right:3rem !important}.pb-sm-0{padding-bottom:0 !important}.pb-sm-1{padding-bottom:.25rem !important}.pb-sm-2{padding-bottom:.5rem !important}.pb-sm-3{padding-bottom:1rem !important}.pb-sm-4{padding-bottom:1.5rem !important}.pb-sm-5{padding-bottom:3rem !important}.ps-sm-0{padding-left:0 !important}.ps-sm-1{padding-left:.25rem !important}.ps-sm-2{padding-left:.5rem !important}.ps-sm-3{padding-left:1rem !important}.ps-sm-4{padding-left:1.5rem !important}.ps-sm-5{padding-left:3rem !important}.text-sm-start{text-align:left !important}.text-sm-end{text-align:right !important}.text-sm-center{text-align:center !important}}@media(min-width:768px){.float-md-start{float:left !important}.float-md-end{float:right !important}.float-md-none{float:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-grid{display:grid !important}.d-md-table{display:table !important}.d-md-table-row{display:table-row !important}.d-md-table-cell{display:table-cell !important}.d-md-flex{display:flex !important}.d-md-inline-flex{display:inline-flex !important}.d-md-none{display:none !important}.flex-md-fill{flex:1 1 auto !important}.flex-md-row{flex-direction:row !important}.flex-md-column{flex-direction:column !important}.flex-md-row-reverse{flex-direction:row-reverse !important}.flex-md-column-reverse{flex-direction:column-reverse !important}.flex-md-grow-0{flex-grow:0 !important}.flex-md-grow-1{flex-grow:1 !important}.flex-md-shrink-0{flex-shrink:0 !important}.flex-md-shrink-1{flex-shrink:1 !important}.flex-md-wrap{flex-wrap:wrap !important}.flex-md-nowrap{flex-wrap:nowrap !important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-md-0{gap:0 !important}.gap-md-1{gap:.25rem !important}.gap-md-2{gap:.5rem !important}.gap-md-3{gap:1rem !important}.gap-md-4{gap:1.5rem !important}.gap-md-5{gap:3rem !important}.justify-content-md-start{justify-content:flex-start !important}.justify-content-md-end{justify-content:flex-end !important}.justify-content-md-center{justify-content:center !important}.justify-content-md-between{justify-content:space-between !important}.justify-content-md-around{justify-content:space-around !important}.justify-content-md-evenly{justify-content:space-evenly !important}.align-items-md-start{align-items:flex-start !important}.align-items-md-end{align-items:flex-end !important}.align-items-md-center{align-items:center !important}.align-items-md-baseline{align-items:baseline !important}.align-items-md-stretch{align-items:stretch !important}.align-content-md-start{align-content:flex-start !important}.align-content-md-end{align-content:flex-end !important}.align-content-md-center{align-content:center !important}.align-content-md-between{align-content:space-between !important}.align-content-md-around{align-content:space-around !important}.align-content-md-stretch{align-content:stretch !important}.align-self-md-auto{align-self:auto !important}.align-self-md-start{align-self:flex-start !important}.align-self-md-end{align-self:flex-end !important}.align-self-md-center{align-self:center !important}.align-self-md-baseline{align-self:baseline !important}.align-self-md-stretch{align-self:stretch !important}.order-md-first{order:-1 !important}.order-md-0{order:0 !important}.order-md-1{order:1 !important}.order-md-2{order:2 !important}.order-md-3{order:3 !important}.order-md-4{order:4 !important}.order-md-5{order:5 !important}.order-md-last{order:6 !important}.m-md-0{margin:0 !important}.m-md-1{margin:.25rem !important}.m-md-2{margin:.5rem !important}.m-md-3{margin:1rem !important}.m-md-4{margin:1.5rem !important}.m-md-5{margin:3rem !important}.m-md-auto{margin:auto !important}.mx-md-0{margin-right:0 !important;margin-left:0 !important}.mx-md-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-md-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-md-3{margin-right:1rem !important;margin-left:1rem !important}.mx-md-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-md-5{margin-right:3rem !important;margin-left:3rem !important}.mx-md-auto{margin-right:auto !important;margin-left:auto !important}.my-md-0{margin-top:0 !important;margin-bottom:0 !important}.my-md-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-md-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-md-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-md-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-md-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-md-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-md-0{margin-top:0 !important}.mt-md-1{margin-top:.25rem !important}.mt-md-2{margin-top:.5rem !important}.mt-md-3{margin-top:1rem !important}.mt-md-4{margin-top:1.5rem !important}.mt-md-5{margin-top:3rem !important}.mt-md-auto{margin-top:auto !important}.me-md-0{margin-right:0 !important}.me-md-1{margin-right:.25rem !important}.me-md-2{margin-right:.5rem !important}.me-md-3{margin-right:1rem !important}.me-md-4{margin-right:1.5rem !important}.me-md-5{margin-right:3rem !important}.me-md-auto{margin-right:auto !important}.mb-md-0{margin-bottom:0 !important}.mb-md-1{margin-bottom:.25rem !important}.mb-md-2{margin-bottom:.5rem !important}.mb-md-3{margin-bottom:1rem !important}.mb-md-4{margin-bottom:1.5rem !important}.mb-md-5{margin-bottom:3rem !important}.mb-md-auto{margin-bottom:auto !important}.ms-md-0{margin-left:0 !important}.ms-md-1{margin-left:.25rem !important}.ms-md-2{margin-left:.5rem !important}.ms-md-3{margin-left:1rem !important}.ms-md-4{margin-left:1.5rem !important}.ms-md-5{margin-left:3rem !important}.ms-md-auto{margin-left:auto !important}.p-md-0{padding:0 !important}.p-md-1{padding:.25rem !important}.p-md-2{padding:.5rem !important}.p-md-3{padding:1rem !important}.p-md-4{padding:1.5rem !important}.p-md-5{padding:3rem !important}.px-md-0{padding-right:0 !important;padding-left:0 !important}.px-md-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-md-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-md-3{padding-right:1rem !important;padding-left:1rem !important}.px-md-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-md-5{padding-right:3rem !important;padding-left:3rem !important}.py-md-0{padding-top:0 !important;padding-bottom:0 !important}.py-md-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-md-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-md-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-md-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-md-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-md-0{padding-top:0 !important}.pt-md-1{padding-top:.25rem !important}.pt-md-2{padding-top:.5rem !important}.pt-md-3{padding-top:1rem !important}.pt-md-4{padding-top:1.5rem !important}.pt-md-5{padding-top:3rem !important}.pe-md-0{padding-right:0 !important}.pe-md-1{padding-right:.25rem !important}.pe-md-2{padding-right:.5rem !important}.pe-md-3{padding-right:1rem !important}.pe-md-4{padding-right:1.5rem !important}.pe-md-5{padding-right:3rem !important}.pb-md-0{padding-bottom:0 !important}.pb-md-1{padding-bottom:.25rem !important}.pb-md-2{padding-bottom:.5rem !important}.pb-md-3{padding-bottom:1rem !important}.pb-md-4{padding-bottom:1.5rem !important}.pb-md-5{padding-bottom:3rem !important}.ps-md-0{padding-left:0 !important}.ps-md-1{padding-left:.25rem !important}.ps-md-2{padding-left:.5rem !important}.ps-md-3{padding-left:1rem !important}.ps-md-4{padding-left:1.5rem !important}.ps-md-5{padding-left:3rem !important}.text-md-start{text-align:left !important}.text-md-end{text-align:right !important}.text-md-center{text-align:center !important}}@media(min-width:992px){.float-lg-start{float:left !important}.float-lg-end{float:right !important}.float-lg-none{float:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-grid{display:grid !important}.d-lg-table{display:table !important}.d-lg-table-row{display:table-row !important}.d-lg-table-cell{display:table-cell !important}.d-lg-flex{display:flex !important}.d-lg-inline-flex{display:inline-flex !important}.d-lg-none{display:none !important}.flex-lg-fill{flex:1 1 auto !important}.flex-lg-row{flex-direction:row !important}.flex-lg-column{flex-direction:column !important}.flex-lg-row-reverse{flex-direction:row-reverse !important}.flex-lg-column-reverse{flex-direction:column-reverse !important}.flex-lg-grow-0{flex-grow:0 !important}.flex-lg-grow-1{flex-grow:1 !important}.flex-lg-shrink-0{flex-shrink:0 !important}.flex-lg-shrink-1{flex-shrink:1 !important}.flex-lg-wrap{flex-wrap:wrap !important}.flex-lg-nowrap{flex-wrap:nowrap !important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-lg-0{gap:0 !important}.gap-lg-1{gap:.25rem !important}.gap-lg-2{gap:.5rem !important}.gap-lg-3{gap:1rem !important}.gap-lg-4{gap:1.5rem !important}.gap-lg-5{gap:3rem !important}.justify-content-lg-start{justify-content:flex-start !important}.justify-content-lg-end{justify-content:flex-end !important}.justify-content-lg-center{justify-content:center !important}.justify-content-lg-between{justify-content:space-between !important}.justify-content-lg-around{justify-content:space-around !important}.justify-content-lg-evenly{justify-content:space-evenly !important}.align-items-lg-start{align-items:flex-start !important}.align-items-lg-end{align-items:flex-end !important}.align-items-lg-center{align-items:center !important}.align-items-lg-baseline{align-items:baseline !important}.align-items-lg-stretch{align-items:stretch !important}.align-content-lg-start{align-content:flex-start !important}.align-content-lg-end{align-content:flex-end !important}.align-content-lg-center{align-content:center !important}.align-content-lg-between{align-content:space-between !important}.align-content-lg-around{align-content:space-around !important}.align-content-lg-stretch{align-content:stretch !important}.align-self-lg-auto{align-self:auto !important}.align-self-lg-start{align-self:flex-start !important}.align-self-lg-end{align-self:flex-end !important}.align-self-lg-center{align-self:center !important}.align-self-lg-baseline{align-self:baseline !important}.align-self-lg-stretch{align-self:stretch !important}.order-lg-first{order:-1 !important}.order-lg-0{order:0 !important}.order-lg-1{order:1 !important}.order-lg-2{order:2 !important}.order-lg-3{order:3 !important}.order-lg-4{order:4 !important}.order-lg-5{order:5 !important}.order-lg-last{order:6 !important}.m-lg-0{margin:0 !important}.m-lg-1{margin:.25rem !important}.m-lg-2{margin:.5rem !important}.m-lg-3{margin:1rem !important}.m-lg-4{margin:1.5rem !important}.m-lg-5{margin:3rem !important}.m-lg-auto{margin:auto !important}.mx-lg-0{margin-right:0 !important;margin-left:0 !important}.mx-lg-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-lg-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-lg-3{margin-right:1rem !important;margin-left:1rem !important}.mx-lg-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-lg-5{margin-right:3rem !important;margin-left:3rem !important}.mx-lg-auto{margin-right:auto !important;margin-left:auto !important}.my-lg-0{margin-top:0 !important;margin-bottom:0 !important}.my-lg-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-lg-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-lg-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-lg-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-lg-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-lg-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-lg-0{margin-top:0 !important}.mt-lg-1{margin-top:.25rem !important}.mt-lg-2{margin-top:.5rem !important}.mt-lg-3{margin-top:1rem !important}.mt-lg-4{margin-top:1.5rem !important}.mt-lg-5{margin-top:3rem !important}.mt-lg-auto{margin-top:auto !important}.me-lg-0{margin-right:0 !important}.me-lg-1{margin-right:.25rem !important}.me-lg-2{margin-right:.5rem !important}.me-lg-3{margin-right:1rem !important}.me-lg-4{margin-right:1.5rem !important}.me-lg-5{margin-right:3rem !important}.me-lg-auto{margin-right:auto !important}.mb-lg-0{margin-bottom:0 !important}.mb-lg-1{margin-bottom:.25rem !important}.mb-lg-2{margin-bottom:.5rem !important}.mb-lg-3{margin-bottom:1rem !important}.mb-lg-4{margin-bottom:1.5rem !important}.mb-lg-5{margin-bottom:3rem !important}.mb-lg-auto{margin-bottom:auto !important}.ms-lg-0{margin-left:0 !important}.ms-lg-1{margin-left:.25rem !important}.ms-lg-2{margin-left:.5rem !important}.ms-lg-3{margin-left:1rem !important}.ms-lg-4{margin-left:1.5rem !important}.ms-lg-5{margin-left:3rem !important}.ms-lg-auto{margin-left:auto !important}.p-lg-0{padding:0 !important}.p-lg-1{padding:.25rem !important}.p-lg-2{padding:.5rem !important}.p-lg-3{padding:1rem !important}.p-lg-4{padding:1.5rem !important}.p-lg-5{padding:3rem !important}.px-lg-0{padding-right:0 !important;padding-left:0 !important}.px-lg-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-lg-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-lg-3{padding-right:1rem !important;padding-left:1rem !important}.px-lg-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-lg-5{padding-right:3rem !important;padding-left:3rem !important}.py-lg-0{padding-top:0 !important;padding-bottom:0 !important}.py-lg-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-lg-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-lg-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-lg-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-lg-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-lg-0{padding-top:0 !important}.pt-lg-1{padding-top:.25rem !important}.pt-lg-2{padding-top:.5rem !important}.pt-lg-3{padding-top:1rem !important}.pt-lg-4{padding-top:1.5rem !important}.pt-lg-5{padding-top:3rem !important}.pe-lg-0{padding-right:0 !important}.pe-lg-1{padding-right:.25rem !important}.pe-lg-2{padding-right:.5rem !important}.pe-lg-3{padding-right:1rem !important}.pe-lg-4{padding-right:1.5rem !important}.pe-lg-5{padding-right:3rem !important}.pb-lg-0{padding-bottom:0 !important}.pb-lg-1{padding-bottom:.25rem !important}.pb-lg-2{padding-bottom:.5rem !important}.pb-lg-3{padding-bottom:1rem !important}.pb-lg-4{padding-bottom:1.5rem !important}.pb-lg-5{padding-bottom:3rem !important}.ps-lg-0{padding-left:0 !important}.ps-lg-1{padding-left:.25rem !important}.ps-lg-2{padding-left:.5rem !important}.ps-lg-3{padding-left:1rem !important}.ps-lg-4{padding-left:1.5rem !important}.ps-lg-5{padding-left:3rem !important}.text-lg-start{text-align:left !important}.text-lg-end{text-align:right !important}.text-lg-center{text-align:center !important}}@media(min-width:1200px){.float-xl-start{float:left !important}.float-xl-end{float:right !important}.float-xl-none{float:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-grid{display:grid !important}.d-xl-table{display:table !important}.d-xl-table-row{display:table-row !important}.d-xl-table-cell{display:table-cell !important}.d-xl-flex{display:flex !important}.d-xl-inline-flex{display:inline-flex !important}.d-xl-none{display:none !important}.flex-xl-fill{flex:1 1 auto !important}.flex-xl-row{flex-direction:row !important}.flex-xl-column{flex-direction:column !important}.flex-xl-row-reverse{flex-direction:row-reverse !important}.flex-xl-column-reverse{flex-direction:column-reverse !important}.flex-xl-grow-0{flex-grow:0 !important}.flex-xl-grow-1{flex-grow:1 !important}.flex-xl-shrink-0{flex-shrink:0 !important}.flex-xl-shrink-1{flex-shrink:1 !important}.flex-xl-wrap{flex-wrap:wrap !important}.flex-xl-nowrap{flex-wrap:nowrap !important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-xl-0{gap:0 !important}.gap-xl-1{gap:.25rem !important}.gap-xl-2{gap:.5rem !important}.gap-xl-3{gap:1rem !important}.gap-xl-4{gap:1.5rem !important}.gap-xl-5{gap:3rem !important}.justify-content-xl-start{justify-content:flex-start !important}.justify-content-xl-end{justify-content:flex-end !important}.justify-content-xl-center{justify-content:center !important}.justify-content-xl-between{justify-content:space-between !important}.justify-content-xl-around{justify-content:space-around !important}.justify-content-xl-evenly{justify-content:space-evenly !important}.align-items-xl-start{align-items:flex-start !important}.align-items-xl-end{align-items:flex-end !important}.align-items-xl-center{align-items:center !important}.align-items-xl-baseline{align-items:baseline !important}.align-items-xl-stretch{align-items:stretch !important}.align-content-xl-start{align-content:flex-start !important}.align-content-xl-end{align-content:flex-end !important}.align-content-xl-center{align-content:center !important}.align-content-xl-between{align-content:space-between !important}.align-content-xl-around{align-content:space-around !important}.align-content-xl-stretch{align-content:stretch !important}.align-self-xl-auto{align-self:auto !important}.align-self-xl-start{align-self:flex-start !important}.align-self-xl-end{align-self:flex-end !important}.align-self-xl-center{align-self:center !important}.align-self-xl-baseline{align-self:baseline !important}.align-self-xl-stretch{align-self:stretch !important}.order-xl-first{order:-1 !important}.order-xl-0{order:0 !important}.order-xl-1{order:1 !important}.order-xl-2{order:2 !important}.order-xl-3{order:3 !important}.order-xl-4{order:4 !important}.order-xl-5{order:5 !important}.order-xl-last{order:6 !important}.m-xl-0{margin:0 !important}.m-xl-1{margin:.25rem !important}.m-xl-2{margin:.5rem !important}.m-xl-3{margin:1rem !important}.m-xl-4{margin:1.5rem !important}.m-xl-5{margin:3rem !important}.m-xl-auto{margin:auto !important}.mx-xl-0{margin-right:0 !important;margin-left:0 !important}.mx-xl-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xl-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xl-3{margin-right:1rem !important;margin-left:1rem !important}.mx-xl-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xl-5{margin-right:3rem !important;margin-left:3rem !important}.mx-xl-auto{margin-right:auto !important;margin-left:auto !important}.my-xl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xl-0{margin-top:0 !important}.mt-xl-1{margin-top:.25rem !important}.mt-xl-2{margin-top:.5rem !important}.mt-xl-3{margin-top:1rem !important}.mt-xl-4{margin-top:1.5rem !important}.mt-xl-5{margin-top:3rem !important}.mt-xl-auto{margin-top:auto !important}.me-xl-0{margin-right:0 !important}.me-xl-1{margin-right:.25rem !important}.me-xl-2{margin-right:.5rem !important}.me-xl-3{margin-right:1rem !important}.me-xl-4{margin-right:1.5rem !important}.me-xl-5{margin-right:3rem !important}.me-xl-auto{margin-right:auto !important}.mb-xl-0{margin-bottom:0 !important}.mb-xl-1{margin-bottom:.25rem !important}.mb-xl-2{margin-bottom:.5rem !important}.mb-xl-3{margin-bottom:1rem !important}.mb-xl-4{margin-bottom:1.5rem !important}.mb-xl-5{margin-bottom:3rem !important}.mb-xl-auto{margin-bottom:auto !important}.ms-xl-0{margin-left:0 !important}.ms-xl-1{margin-left:.25rem !important}.ms-xl-2{margin-left:.5rem !important}.ms-xl-3{margin-left:1rem !important}.ms-xl-4{margin-left:1.5rem !important}.ms-xl-5{margin-left:3rem !important}.ms-xl-auto{margin-left:auto !important}.p-xl-0{padding:0 !important}.p-xl-1{padding:.25rem !important}.p-xl-2{padding:.5rem !important}.p-xl-3{padding:1rem !important}.p-xl-4{padding:1.5rem !important}.p-xl-5{padding:3rem !important}.px-xl-0{padding-right:0 !important;padding-left:0 !important}.px-xl-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-xl-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-xl-3{padding-right:1rem !important;padding-left:1rem !important}.px-xl-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xl-5{padding-right:3rem !important;padding-left:3rem !important}.py-xl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xl-0{padding-top:0 !important}.pt-xl-1{padding-top:.25rem !important}.pt-xl-2{padding-top:.5rem !important}.pt-xl-3{padding-top:1rem !important}.pt-xl-4{padding-top:1.5rem !important}.pt-xl-5{padding-top:3rem !important}.pe-xl-0{padding-right:0 !important}.pe-xl-1{padding-right:.25rem !important}.pe-xl-2{padding-right:.5rem !important}.pe-xl-3{padding-right:1rem !important}.pe-xl-4{padding-right:1.5rem !important}.pe-xl-5{padding-right:3rem !important}.pb-xl-0{padding-bottom:0 !important}.pb-xl-1{padding-bottom:.25rem !important}.pb-xl-2{padding-bottom:.5rem !important}.pb-xl-3{padding-bottom:1rem !important}.pb-xl-4{padding-bottom:1.5rem !important}.pb-xl-5{padding-bottom:3rem !important}.ps-xl-0{padding-left:0 !important}.ps-xl-1{padding-left:.25rem !important}.ps-xl-2{padding-left:.5rem !important}.ps-xl-3{padding-left:1rem !important}.ps-xl-4{padding-left:1.5rem !important}.ps-xl-5{padding-left:3rem !important}.text-xl-start{text-align:left !important}.text-xl-end{text-align:right !important}.text-xl-center{text-align:center !important}}@media(min-width:1400px){.float-xxl-start{float:left !important}.float-xxl-end{float:right !important}.float-xxl-none{float:none !important}.d-xxl-inline{display:inline !important}.d-xxl-inline-block{display:inline-block !important}.d-xxl-block{display:block !important}.d-xxl-grid{display:grid !important}.d-xxl-table{display:table !important}.d-xxl-table-row{display:table-row !important}.d-xxl-table-cell{display:table-cell !important}.d-xxl-flex{display:flex !important}.d-xxl-inline-flex{display:inline-flex !important}.d-xxl-none{display:none !important}.flex-xxl-fill{flex:1 1 auto !important}.flex-xxl-row{flex-direction:row !important}.flex-xxl-column{flex-direction:column !important}.flex-xxl-row-reverse{flex-direction:row-reverse !important}.flex-xxl-column-reverse{flex-direction:column-reverse !important}.flex-xxl-grow-0{flex-grow:0 !important}.flex-xxl-grow-1{flex-grow:1 !important}.flex-xxl-shrink-0{flex-shrink:0 !important}.flex-xxl-shrink-1{flex-shrink:1 !important}.flex-xxl-wrap{flex-wrap:wrap !important}.flex-xxl-nowrap{flex-wrap:nowrap !important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-xxl-0{gap:0 !important}.gap-xxl-1{gap:.25rem !important}.gap-xxl-2{gap:.5rem !important}.gap-xxl-3{gap:1rem !important}.gap-xxl-4{gap:1.5rem !important}.gap-xxl-5{gap:3rem !important}.justify-content-xxl-start{justify-content:flex-start !important}.justify-content-xxl-end{justify-content:flex-end !important}.justify-content-xxl-center{justify-content:center !important}.justify-content-xxl-between{justify-content:space-between !important}.justify-content-xxl-around{justify-content:space-around !important}.justify-content-xxl-evenly{justify-content:space-evenly !important}.align-items-xxl-start{align-items:flex-start !important}.align-items-xxl-end{align-items:flex-end !important}.align-items-xxl-center{align-items:center !important}.align-items-xxl-baseline{align-items:baseline !important}.align-items-xxl-stretch{align-items:stretch !important}.align-content-xxl-start{align-content:flex-start !important}.align-content-xxl-end{align-content:flex-end !important}.align-content-xxl-center{align-content:center !important}.align-content-xxl-between{align-content:space-between !important}.align-content-xxl-around{align-content:space-around !important}.align-content-xxl-stretch{align-content:stretch !important}.align-self-xxl-auto{align-self:auto !important}.align-self-xxl-start{align-self:flex-start !important}.align-self-xxl-end{align-self:flex-end !important}.align-self-xxl-center{align-self:center !important}.align-self-xxl-baseline{align-self:baseline !important}.align-self-xxl-stretch{align-self:stretch !important}.order-xxl-first{order:-1 !important}.order-xxl-0{order:0 !important}.order-xxl-1{order:1 !important}.order-xxl-2{order:2 !important}.order-xxl-3{order:3 !important}.order-xxl-4{order:4 !important}.order-xxl-5{order:5 !important}.order-xxl-last{order:6 !important}.m-xxl-0{margin:0 !important}.m-xxl-1{margin:.25rem !important}.m-xxl-2{margin:.5rem !important}.m-xxl-3{margin:1rem !important}.m-xxl-4{margin:1.5rem !important}.m-xxl-5{margin:3rem !important}.m-xxl-auto{margin:auto !important}.mx-xxl-0{margin-right:0 !important;margin-left:0 !important}.mx-xxl-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xxl-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xxl-3{margin-right:1rem !important;margin-left:1rem !important}.mx-xxl-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xxl-5{margin-right:3rem !important;margin-left:3rem !important}.mx-xxl-auto{margin-right:auto !important;margin-left:auto !important}.my-xxl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xxl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xxl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xxl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xxl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xxl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xxl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xxl-0{margin-top:0 !important}.mt-xxl-1{margin-top:.25rem !important}.mt-xxl-2{margin-top:.5rem !important}.mt-xxl-3{margin-top:1rem !important}.mt-xxl-4{margin-top:1.5rem !important}.mt-xxl-5{margin-top:3rem !important}.mt-xxl-auto{margin-top:auto !important}.me-xxl-0{margin-right:0 !important}.me-xxl-1{margin-right:.25rem !important}.me-xxl-2{margin-right:.5rem !important}.me-xxl-3{margin-right:1rem !important}.me-xxl-4{margin-right:1.5rem !important}.me-xxl-5{margin-right:3rem !important}.me-xxl-auto{margin-right:auto !important}.mb-xxl-0{margin-bottom:0 !important}.mb-xxl-1{margin-bottom:.25rem !important}.mb-xxl-2{margin-bottom:.5rem !important}.mb-xxl-3{margin-bottom:1rem !important}.mb-xxl-4{margin-bottom:1.5rem !important}.mb-xxl-5{margin-bottom:3rem !important}.mb-xxl-auto{margin-bottom:auto !important}.ms-xxl-0{margin-left:0 !important}.ms-xxl-1{margin-left:.25rem !important}.ms-xxl-2{margin-left:.5rem !important}.ms-xxl-3{margin-left:1rem !important}.ms-xxl-4{margin-left:1.5rem !important}.ms-xxl-5{margin-left:3rem !important}.ms-xxl-auto{margin-left:auto !important}.p-xxl-0{padding:0 !important}.p-xxl-1{padding:.25rem !important}.p-xxl-2{padding:.5rem !important}.p-xxl-3{padding:1rem !important}.p-xxl-4{padding:1.5rem !important}.p-xxl-5{padding:3rem !important}.px-xxl-0{padding-right:0 !important;padding-left:0 !important}.px-xxl-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-xxl-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-xxl-3{padding-right:1rem !important;padding-left:1rem !important}.px-xxl-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xxl-5{padding-right:3rem !important;padding-left:3rem !important}.py-xxl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xxl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xxl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xxl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xxl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xxl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xxl-0{padding-top:0 !important}.pt-xxl-1{padding-top:.25rem !important}.pt-xxl-2{padding-top:.5rem !important}.pt-xxl-3{padding-top:1rem !important}.pt-xxl-4{padding-top:1.5rem !important}.pt-xxl-5{padding-top:3rem !important}.pe-xxl-0{padding-right:0 !important}.pe-xxl-1{padding-right:.25rem !important}.pe-xxl-2{padding-right:.5rem !important}.pe-xxl-3{padding-right:1rem !important}.pe-xxl-4{padding-right:1.5rem !important}.pe-xxl-5{padding-right:3rem !important}.pb-xxl-0{padding-bottom:0 !important}.pb-xxl-1{padding-bottom:.25rem !important}.pb-xxl-2{padding-bottom:.5rem !important}.pb-xxl-3{padding-bottom:1rem !important}.pb-xxl-4{padding-bottom:1.5rem !important}.pb-xxl-5{padding-bottom:3rem !important}.ps-xxl-0{padding-left:0 !important}.ps-xxl-1{padding-left:.25rem !important}.ps-xxl-2{padding-left:.5rem !important}.ps-xxl-3{padding-left:1rem !important}.ps-xxl-4{padding-left:1.5rem !important}.ps-xxl-5{padding-left:3rem !important}.text-xxl-start{text-align:left !important}.text-xxl-end{text-align:right !important}.text-xxl-center{text-align:center !important}}@media(min-width:1200px){.fs-1{font-size:2.5rem !important}.fs-2{font-size:2rem !important}.fs-3{font-size:1.75rem !important}.fs-4{font-size:1.5rem !important}}@media print{.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-grid{display:grid !important}.d-print-table{display:table !important}.d-print-table-row{display:table-row !important}.d-print-table-cell{display:table-cell !important}.d-print-flex{display:flex !important}.d-print-inline-flex{display:inline-flex !important}.d-print-none{display:none !important}}@media(min-width:768px){.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-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-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}}.img-responsive{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block}.img-circle{border-radius:50%}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'— '}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:' —'}.pagination{margin:20px 0}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-right:auto;margin-left:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a,.panel-title>small,.panel-title>.small,.panel-title>small>a,.panel-title>.small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-right:15px;padding-left:15px}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.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 td:first-child,.panel>.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 td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th: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 th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.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 td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th: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 th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.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 td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.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 td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.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}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.hidden{display:none !important}.affix{position:fixed}.input-group[class*="col-"]{float:none;padding-right:0;padding-left: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.3333333;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}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].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}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:auto;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.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="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav.nav-list{flex-direction:column !important}.nav-tabs>li{float:left;margin-bottom:-1px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li>a{display:block;position:relative;padding:10px 15px}.progress{margin-bottom:20px}div.row>.pricing-table,div.row>.counters,div.row>.form-group{width:100%;display:flex}@media(max-width:768px){.hidden-xs{display:none !important}}.fade.in{opacity:1}.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}.row>*{position:relative}a:hover{text-decoration:underline}label{margin-bottom:.5rem}.card-body{padding:0}.alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:.75rem 1.25rem;color:inherit}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}html{direction:ltr}body{background-color:#fff;color:#777;font-family:"Open Sans",Arial,sans-serif;font-size:14px;line-height:22px;margin:0}body a{outline:none !important;text-decoration:none}li{line-height:24px}@media(max-width:479px){body{font-size:13px}}.page-top{background-color:#171717;border-bottom:5px solid #ccc;border-top:5px solid #384045;margin:0 0 35px 0;min-height:50px;padding:20px 0;position:relative;text-align:left}.page-top .breadcrumb{background:none;margin:-3px 0 0;padding:0}.page-top .breadcrumb>li{text-shadow:none}.page-top .breadcrumb.breadcrumb-valign-mid{position:absolute;top:40%;right:20px}.page-top h2,.page-top h1{border-bottom:5px solid #ccc;color:#fff;display:inline-block;font-weight:200;margin:0 0 -25px;min-height:37px;font-size:2.6em;line-height:46px;padding:0 0 17px;position:relative}.page-top h2 span,.page-top h1 span{color:#999da3;display:block;font-size:.6em;font-weight:300;margin:-10px 0 0}.page-top-no-title-border h2,.page-top-no-title-border h1{border:0}.page-top-more-padding{padding:35px 0}.page-top-color{background-color:#f7f7f7;border-bottom:5px solid #f4f4f4;border-top:none}.page-top-color h2{border-bottom:none;color:#1d2127;font-size:2.3em}.page-top-color h2 span{opacity:.65}.page-top-color .breadcrumb>.active{opacity:.65}.page-top-light{background-color:#f7f7f7;border-bottom:5px solid #f4f4f4;border-top:none}.page-top-light h2{border-bottom:none;color:#1d2127;font-size:2.3em}.page-top-reverse{text-align:right}.page-top-reverse .breadcrumb,.page-top-reverse .breadcrumb.breadcrumb-valign-mid{float:left;left:20px;right:auto;margin-top:-10px}.page-top.parallax{margin:0 0 35px;padding:180px 0 60px}.page-top-center{text-align:center}.page-top-center .breadcrumb{margin:15px 0 0}.page-top-custom-background{padding:45px 0;background-repeat:repeat;background-color:transparent;border-top:0;border-bottom:0}.page-top-custom-background h2{color:#fff;border:0}.page-top-custom-background h2 span{color:#fff;opacity:.7}.page-top-custom-background .breadcrumb.breadcrumb-valign-mid{top:36%}.page-top-custom-background .breadcrumb.breadcrumb-valign-mid li.active{color:#fff;opacity:.7}.page-top-custom-background .breadcrumb.breadcrumb-valign-mid a{color:#fff}.page-top.custom-product{background-image:url("/Portals/_default/skins/porto/Resources/img/custom-header-bg.jpg");background-repeat:repeat;background-color:#999;border-top:5px solid #888;overflow:hidden}.page-top.custom-product .row{position:relative}.page-top.custom-product p.lead{color:#e8e8e8}.page-top.custom-product img{bottom:-47px;position:relative}.page-top.custom-product h1{color:#fff;margin-bottom:10px;margin-top:30px;border:0}.page-top.small{border-bottom:3px solid #ccc;border-top-width:3px;padding:1px 0;min-height:30px}.page-top.small .breadcrumb{margin:-2px 0 0}@media(max-width:991px){.page-top .breadcrumb{margin:20px 0 0;float:none !important;position:static !important}}@media(max-width:479px){.page-top{padding:16px 0}.page-top h2,.page-top h1{line-height:37px}}aside ul.nav-list>li>a{color:#666;font-size:.9em}.home-intro{background-color:#171717;margin-bottom:60px;overflow:hidden;padding:20px 0 10px 0;position:relative;text-align:left}.home-intro p{color:#fff;display:inline-block;font-size:1.4em;font-weight:300;max-width:800px;padding-top:5px}.home-intro p span{color:#999;display:block;font-size:.8em;padding-top:5px}.home-intro p em{font-family:"Shadows Into Light",cursive;font-size:1.6em}.home-intro .get-started{margin-top:15px;margin-bottom:15px;position:relative;text-align:right}.home-intro .get-started .btn{position:relative;z-index:1}.home-intro .get-started .btn i,.home-intro .get-started .btn em{font-size:1.1em;font-weight:normal;margin-left:5px}.home-intro .get-started a{color:#fff}.home-intro .get-started a:not(.btn){color:#777}.home-intro .learn-more{margin-left:15px}.home-intro.light{background-color:#e2e2e2}.home-intro.light.secondary{background-color:#e0e1e4}.home-intro.light p{color:#777}.home-intro-compact{border-radius:0 0 10px 10px;margin-top:-10px}.home-intro-compact p{padding-left:20px}.home-intro-compact .get-started{padding-right:20px}@media(max-width:767px){.home-intro-compact{margin-left:0;margin-right:0;padding-left:0;padding-right:0}}.home-concept{background:transparent url("/Portals/_default/skins/porto/Resources/img/home-concept.png") no-repeat center 0;width:100%;overflow:hidden}.home-concept strong{display:block;font-family:"Shadows Into Light",cursive;font-size:2.1em;font-weight:normal;position:relative;margin-top:30px}.home-concept .row{position:relative}.home-concept .process-image{background:transparent url("/Portals/_default/skins/porto/Resources/img/home-concept-item.png") no-repeat 0 0;width:160px;height:175px;margin:135px auto 0 auto;padding-bottom:50px;position:relative;z-index:1}.home-concept .process-image img{border-radius:150px;margin:7px 8px;width:auto;height:auto;max-width:145px;max-height:145px}.home-concept .our-work{margin-top:52px;font-size:2.6em}.home-concept .project-image{background:transparent url("/Portals/_default/skins/porto/Resources/img/home-concept-item.png") no-repeat 100% 0;width:350px;height:420px;margin:15px 0 0 -30px;padding-bottom:45px;position:relative;z-index:1}.home-concept .sun{background:transparent url("/Portals/_default/skins/porto/Resources/img/home-concept-icons.png") no-repeat 0 0;width:60px;height:56px;display:block;position:absolute;left:10%;top:35px}.home-concept .cloud{background:transparent url("/Portals/_default/skins/porto/Resources/img/home-concept-icons.png") no-repeat 100% 0;width:116px;height:56px;display:block;position:absolute;left:57%;top:35px}@media(max-width:991px){.home-concept{background:none}.home-concept .project-image{margin:60px auto 0 auto}.home-concept .process-image{margin-top:60px}}@media(max-width:479px){.home-concept .project-image{background-position:0 0;margin-left:auto;max-width:160px;height:auto;line-height:normal}.home-concept .fc-slideshow{max-height:145px;max-width:145px}.home-concept .fc-slideshow img{max-height:145px;max-width:145px}}.page-not-found{margin:50px 0}.page-not-found h2{font-size:140px;font-weight:600;letter-spacing:-10px;line-height:140px}.page-not-found h4{color:#777}.page-not-found p{font-size:1.4em;line-height:36px}@media(max-width:479px){.page-not-found{margin:0}.page-not-found h2{font-size:100px;letter-spacing:0;line-height:100px}}.body>#footer{background:#0e0e0e;border-top:4px solid #0e0e0e;font-size:.9em;margin-top:50px;padding:70px 0 0;position:relative;clear:both}.body>#footer .container .row>div{margin-bottom:25px}.body>#footer .container input:focus{box-shadow:none}.body>#footer a:hover{color:#ccc}.body>#footer h1,.body>#footer h2,.body>#footer h3,.body>#footer h4,.body>#footer a{color:#fff !important}.body>#footer .copyright{color:#777}.body>#footer h4{font-size:1.8em;font-weight:200}.body>#footer h5{color:#ccc !important}.body>#footer ul.nav-list>li a{border-bottom:1px solid rgba(255,255,255,.1);line-height:20px;padding-bottom:11px}.body>#footer ul.nav-list>li:last-child a{border-bottom:0}.body>#footer ul.nav-list>li a:hover{background-color:rgba(255,255,255,.05)}.body>#footer ul.list.icons li{margin-bottom:5px}.body>#footer form{filter:alpha(opacity=85);opacity:.85}.body>#footer form label.error{line-height:16px;margin:5px 0 -5px;display:block;clear:both}.body>#footer form .alert{padding:6px;text-align:center}.body>#footer .footer-ribbon{background:#999;position:absolute;margin:-90px 0 0 14px;padding:10px 20px 6px 20px}.body>#footer .footer-ribbon:before{border-right:10px solid #646464;border-top:16px solid transparent;content:"";display:block;height:0;left:-10px;position:absolute;top:0;width:7px}.body>#footer .footer-ribbon span{color:#fff;font-size:1.6em;font-family:"Shadows Into Light",cursive}.body>#footer .newsletter form{width:100%;max-width:262px}.body>#footer .newsletter form input.form-control{height:34px;padding:6px 12px}.body>#footer .alert a{color:#222 !important}.body>#footer .alert a:hover{color:#666 !important}.body>#footer .twitter .fa,.body>#footer .twitter .fas,.body>#footer .twitter .far,.body>#footer .twitter .fal,.body>#footer .twitter .fab{clear:both;font-size:1.5em;position:relative;top:3px}.body>#footer .twitter .meta{color:#999;display:block;font-size:.9em;padding-top:3px}.body>#footer .twitter ul{list-style:none;margin:0;padding:0}.body>#footer .twitter ul li{padding-bottom:20px}.body>#footer .twitter ul li:last-child{padding-bottom:0}.body>#footer .twitter-account{color:#fff;display:block;font-size:.9em;margin:-15px 0 5px;filter:alpha(opacity=55);opacity:.55}.body>#footer .twitter-account:hover{filter:alpha(opacity=100);opacity:1}.body>#footer .contact{list-style:none;margin:0;padding:0}.body>#footer .contact i,.body>#footer .contact em{display:block;float:left;font-size:1.2em;margin:7px 8px 10px 0;position:relative;text-align:center;top:-2px;width:16px}.body>#footer .contact i.fa-envelope,.body>#footer .contact em.fa-envelope{font-size:1em;top:0}.body>#footer .contact p{margin-bottom:10px}.body>#footer .logo{display:block}footer .terms:before,footer .privacy:before{display:block;content:'';height:12px;border-left:1px solid #777;float:left;margin:5px 10px 0 7px}.body>#footer .footer-copyright{background:#060606;border-top:4px solid #060606;margin-top:40px;padding:30px 0 10px}.body>#footer .footer-copyright nav{float:right}.body>#footer .footer-copyright nav ul{list-style:none;margin:0;padding:0}.body>#footer .footer-copyright nav ul li{border-left:1px solid #505050;display:inline-block;line-height:12px;margin:0;padding:0 8px}.body>#footer .footer-copyright nav ul li:first-child{border:medium none;padding-left:0}.body>#footer .footer-copyright p{color:#555;margin:0;padding:0}.body>#footer .phone{color:#fff;font-size:26px;font-weight:bold;display:block;padding-bottom:15px;margin-top:-5px}.body>#footer .narrow-phone{text-align:right;margin:-2px 0 0 0}.body>#footer .narrow-phone .phone{font-size:16px;padding-bottom:0;margin-top:-13px}.body>#footer .recent-work{list-style:none;padding:0;margin:0}.body>#footer .recent-work li{float:left;width:29%;margin:10px 3% 0 0}.body>#footer .recent-work img{border:0;width:100%;filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");filter:gray;-webkit-filter:grayscale(100%)}.body>#footer .recent-work .img-thumbnail-hover-icon{border:0}.body>#footer .recent-work .img-thumbnail-hover-icon:after{font-size:22px;margin-left:-2px}.body>#footer .view-more-recent-work{padding:12px}.body>#footer.short{padding-top:50px}.body>#footer.short .footer-copyright{background:transparent;border:0;padding-top:0;margin-top:0}.body>#footer.light{padding-top:60px;background:#fff;border-top:1px solid #ddd}.body>#footer.light .footer-ribbon{margin-top:-76px;margin-left:14px}.body>#footer.light .footer-copyright{margin-top:15px;background:#fff;border-top:1px solid #ddd}.body>footer.light .footer-copyright p{color:#777}.body>#footer.light .phone,.body>#footer.light .twitter-account{color:#777 !important}.body>#footer.light ul.nav-pills>li.active>a{color:#fff !important}.body>#footer.narrow{padding-top:30px}.body>#footer.narrow .footer-copyright{margin-top:0}.body>#footer.narrow .nav>li>a{padding:5px 12px}.body>#footer.color{color:#fff}.body>#footer.color p{color:#fff}.body>#footer.color .footer-copyright nav ul li{border-left-color:#fff}@media(max-width:991px){.body>#footer .phone{font-size:20px}}@media(max-width:767px){.body>#footer .phone{font-size:20px}}section.section{background:#f4f4f4;border-top:5px solid #f1f1f1;margin:30px 0;padding:50px 0}section.section.section-no-background{background:transparent;border-top-color:transparent}section.section.section-center{text-align:center}section.section.section-text-light h1,section.section.section-text-light h2,section.section.section-text-light h3,section.section.section-text-light h4,section.section.section-text-light h5,section.section.section-text-light h6{color:#fff}section.section.section-text-light p{color:#e6e6e6}section.section.section-background{background-repeat:repeat;border:0}section.section.section-overlay{position:relative}section.section.section-overlay:before{content:"";display:block;background:url("/Portals/_default/skins/porto/Resources/img/video-overlay.png") repeat scroll 0 0 transparent;bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}section.section.section-video{background:none !important;border:0}section.section.section-parallax{border:0}section.section.section-with-divider{margin:56px 0 35px}section.section.section-with-divider .divider{margin:-56px 0 44px}section.section.section-footer{margin-bottom:-50px}section.section.section-height-1{padding:12.307px 0;padding:.7692307692rem 0}section.section.section-height-2{padding:36.923px 0;padding:2.3076923077rem 0}section.section.section-height-3{padding:73.846px 0;padding:4.6153846154rem 0}section.section.section-height-4{padding:110.769px 0;padding:6.9230769231rem 0}section.section.section-height-5{padding:147.692px 0;padding:9.2307692308rem 0}section.section.section-funnel{position:relative}section.section.section-funnel .section-funnel-layer-top{position:absolute;top:0;left:0;width:100%;padding:96px 0;padding:6rem 0;transform:translate3d(0,-50%,0)}section.section.section-funnel .section-funnel-layer-bottom{position:absolute;bottom:0;left:0;width:100%;padding:96px 0;padding:6rem 0;transform:translate3d(0,50%,0)}section.section.section-funnel .section-funnel-layer{position:absolute;top:0;left:0;width:100%;height:100%;background:#fff}section.section.section-funnel .section-funnel-layer:nth-child(1){transform:skewY(-4.7deg)}section.section.section-funnel .section-funnel-layer:nth-child(2){transform:skewY(4.7deg)}section.section.section-angled{position:relative;margin:0;overflow:hidden}section.section.section-angled .section-angled-layer-top{position:absolute;top:0;left:0;width:100%;padding:48px 0;padding:3rem 0;transform:skewY(-.7deg) translate3d(0,-50%,0)}section.section.section-angled .section-angled-layer-bottom{position:absolute;bottom:0;left:0;width:100%;padding:48px 0;padding:3rem 0;transform:skewY(.7deg) translate3d(0,50%,0)}section.section.section-angled .section-angled-layer-top+.section-angled-content,section.section.section-angled .section-angled-layer-top+.section-angled-layer-bottom+.section-angled-content{margin-top:40px;margin-top:2.5rem}section.section.section-angled .section-angled-layer-bottom+.section-angled-content,section.section.section-angled .section-angled-layer-bottom+.section-angled-layer-top+.section-angled-content{margin-bottom:40px;margin-bottom:2.5rem}section.section.section-angled .section-angled-layer-increase-angle.section-angled-layer-top{transform:skewY(-1.7deg) translate3d(0,-50%,0)}section.section.section-angled .section-angled-layer-increase-angle.section-angled-layer-bottom{transform:skewY(1.7deg) translate3d(0,50%,0)}section.section.section-angled .section-angled-layer-increase-angle-2.section-angled-layer-top{padding:80px 0;padding:5rem 0;transform:skewY(-4.7deg) translate3d(0,-50%,0)}section.section.section-angled .section-angled-layer-increase-angle-2.section-angled-layer-bottom{padding:80px 0;padding:5rem 0;transform:skewY(4.7deg) translate3d(0,50%,0)}section.section.section-angled.section-angled-reverse .section-angled-layer-top{transform:skewY(.7deg) translate3d(0,-50%,0)}section.section.section-angled.section-angled-reverse .section-angled-layer-bottom{transform:skewY(-.7deg) translate3d(0,50%,0)}section.section.section-angled.section-angled-reverse .section-angled-layer-increase-angle.section-angled-layer-top{transform:skewY(1.7deg) translate3d(0,-50%,0)}section.section.section-angled.section-angled-reverse .section-angled-layer-increase-angle.section-angled-layer-bottom{transform:skewY(-1.7deg) translate3d(0,50%,0)}section.section.section-angled.section-angled-reverse .section-angled-layer-increase-angle-2.section-angled-layer-top{padding:80px 0;padding:5rem 0;transform:skewY(4.7deg) translate3d(0,-50%,0)}section.section.section-angled.section-angled-reverse .section-angled-layer-increase-angle-2.section-angled-layer-bottom{padding:80px 0;padding:5rem 0;transform:skewY(-4.7deg) translate3d(0,50%,0)}section.section.section-angled+.section-angled{padding-top:0}section.section.overlay .section-angled-layer-top,section.section.overlay .section-angled-layer-bottom{z-index:99 !important}section.section .bg-light{background-color:#fff !important}@media(max-width:991px){.container-fluid>.row>.p-none section.section{margin-bottom:0;margin-top:0}.container-fluid>.row>.p-none:first-child section.section{margin-bottom:0;margin-top:30px}.container-fluid>.row>.p-none:last-child section.section{margin-bottom:30px;margin-top:0}}.parallax{background-position:50% 50%;background-repeat:no-repeat;margin:70px 0;padding:50px 0;clear:both}.parallax blockquote{border:0;padding:0 10%}.parallax blockquote i.fa-quote-left,.parallax blockquote em.fa-quote-left{font-size:34px;position:relative;left:-5px}.parallax blockquote p{font-size:24px;line-height:30px}.parallax blockquote span{font-size:16px;line-height:20px;color:#999;position:relative;left:-5px}.parallax.parallax-ready{background-attachment:fixed}.parallax.parallax-disabled{background-attachment:fixed !important;background-position:50% 50% !important}@media(max-width:991px){.parallax{background-attachment:fixed !important;background-position:50% 50% !important}}.text-muted{color:#999 !important}.text-dark{color:#1d2127 !important}.text-light{color:#fff !important}.text-weight-light{font-weight:300}.text-weight-normal{font-weight:400}.text-weight-semibold{font-weight:600}.text-weight-bold{font-weight:700}.text-uppercase{text-transform:uppercase}.text-lowercase{text-transform:lowercase}.text-capitalize{text-transform:capitalize}.font-weight-thin{font-weight:100 !important}.font-weight-extralight,.font-weight-extra-light{font-weight:200 !important}.font-weight-light{font-weight:300 !important}.font-weight-regular,.font-weight-normal{font-weight:400 !important}.font-weight-medium{font-weight:500 !important}.font-weight-semibold,.font-weight-semi-bold{font-weight:600 !important}.font-weight-bold{font-weight:700 !important}.font-weight-extrabold,.font-weight-extra-bold{font-weight:800 !important}.font-weight-black{font-weight:900 !important}.m-none{margin:0 !important}.m-auto{margin:0 auto !important}.m-xs{margin:5px !important}.m-sm{margin:10px !important}.m-md{margin:15px !important}.m-lg{margin:20px !important}.m-xl{margin:25px !important}.m-xlg{margin:30px !important}.mt-none{margin-top:0 !important}.mt-xs{margin-top:5px !important}.mt-sm{margin-top:10px !important}.mt-md{margin-top:15px !important}.mt-lg{margin-top:20px !important}.mt-xl{margin-top:25px !important}.mt-xlg{margin-top:30px !important}.mb-none{margin-bottom:0 !important}.mb-xs{margin-bottom:5px !important}.mb-sm{margin-bottom:10px !important}.mb-md{margin-bottom:15px !important}.mb-lg{margin-bottom:20px !important}.mb-xl{margin-bottom:25px !important}.mb-xlg{margin-bottom:30px !important}.mb-minus50{margin-bottom:-50px !important}.ml-none{margin-left:0 !important}.ml-xs{margin-left:5px !important}.ml-sm{margin-left:10px !important}.ml-md{margin-left:15px !important}.ml-lg{margin-left:20px !important}.ml-xl{margin-left:25px !important}.ml-xlg{margin-left:30px !important}.mr-none{margin-right:0 !important}.mr-xs{margin-right:5px !important}.mr-sm{margin-right:10px !important}.mr-md{margin-right:15px !important}.mr-lg{margin-right:20px !important}.mr-xl{margin-right:25px !important}.mr-xlg{margin-right:30px !important}.p-none{padding:0 !important}.p-xs{padding:5px !important}.p-sm{padding:10px !important}.p-md{padding:15px !important}.p-lg{padding:20px !important}.p-xl{padding:25px !important}.p-xlg{padding:30px !important}.pt-none{padding-top:0 !important}.pt-xs{padding-top:5px !important}.pt-sm{padding-top:10px !important}.pt-md{padding-top:15px !important}.pt-lg{padding-top:20px !important}.pt-xl{padding-top:25px !important}.pt-xlg{padding-top:30px !important}.pb-none{padding-bottom:0 !important}.pb-xs{padding-bottom:5px !important}.pb-sm{padding-bottom:10px !important}.pb-md{padding-bottom:15px !important}.pb-lg{padding-bottom:20px !important}.pb-xl{padding-bottom:25px !important}.pb-xlg{padding-bottom:30px !important}.pr-none{padding-left:0 !important}.pl-xs{padding-left:5px !important}.pl-sm{padding-left:10px !important}.pl-md{padding-left:15px !important}.pl-lg{padding-left:20px !important}.pl-xl{padding-left:25px !important}.pl-xlg{padding-left:30px !important}.pr-none{padding-right:0 !important}.pr-xs{padding-right:5px !important}.pr-sm{padding-right:10px !important}.pr-md{padding-right:15px !important}.pr-lg{padding-right:20px !important}.pr-xl{padding-right:25px !important}.pr-xlg{padding-right:30px !important}.ib{display:inline-block;vertical-align:top}.va-middle{vertical-align:middle}.ws-nowrap{white-space:nowrap}.ws-normal{white-space:normal}html.dark body{background-color:#1d2127 !important}html.dark.boxed .body{background-color:#1d2127}html.dark header,html.dark header .header-body{background:#1d2127 !important;border-color:#191c21;border-radius:6px 6px 0 0}html.dark header.transparent{background:transparent}html.dark header .dropdown ul.dropdown-menu{background-color:#282d36}html.dark header .dropdown ul.dropdown-menu li a{border-bottom:1px solid rgba(255,255,255,.05)}html.dark header nav ul.nav-top li a:hover{background-color:#282d36}html.dark header nav.mega-menu ul.nav-main li.mega-menu-item:not(.dropdown-full-color) .form-control{background-color:#2e353e !important;border-color:#2e353e !important;color:#fff !important}html.dark header nav.mega-menu ul.nav-main .mega-menu-signin a,html.dark header nav.mega-menu ul.nav-main .mega-menu-signin a:hover,html.dark header nav.mega-menu ul.nav-main .mega-menu-signin.logged .user-avatar strong{color:#fff}html.dark header nav.mega-menu .mega-menu-signin ul.dropdown-menu:hover li:hover li:hover a{color:#d9d9d9}html.dark header .search input.search:focus{border-color:#282d36}html.dark header.clean-top .header-top{background:#21262d;border-bottom-color:#282d36}html.dark header.narrow{border-bottom-color:#21262d}html.dark header nav.mega-menu .mega-menu-shop .actions-continue{border-top-color:#21262d}html.dark header nav.mega-menu .mega-menu-shop .dropdown-menu li table tr td a{color:#fff}html.dark header nav.mega-menu .mega-menu-shop a{color:#fff}html.dark body.sticky-menu-active header{border-bottom-color:#282d36}html.dark body.sticky-menu-active header.transparent{background:#1d2127}html.dark h1,html.dark h2,html.dark h3,html.dark h4,html.dark h5,html.dark h6{color:#fff}html.dark .alert h1,html.dark .alert h2,html.dark .alert h3,html.dark .alert h4,html.dark .alert h5,html.dark .alert h6{color:#111}html.dark blockquote{border-color:#282d36}html.dark section.featured{background-color:#191c21;border-top-color:#2e353e}html.dark section.section{background-color:#21262d;border-top-color:#282d36}html.dark .tabs .nav-tabs li a,html.dark .tabs .nav-tabs li a:focus{border-top-color:#282d36;border-left-color:#282d36;border-right-color:#282d36;background:#282d36}html.dark .tabs .nav-tabs li a:hover{border-top-color:#808697}html.dark .tabs .nav-tabs li.active a,html.dark .tabs .nav-tabs li.active a:hover,html.dark .tabs .nav-tabs li.active a:focus{border-top-color:#808697}html.dark .tabs .nav-tabs.nav-justified{border-left-width:0;border-right-width:0;border-left-color:transparent;border-right-color:transparent}html.dark .tabs .nav-tabs.nav-justified li a,html.dark .tabs .nav-tabs.nav-justified li a:hover,html.dark .tabs .nav-tabs.nav-justified li a:focus{border-bottom-color:#282d36}html.dark .tabs.tabs-left .nav-tabs>li a,html.dark .tabs.tabs-right .nav-tabs>li a{background:#282d36;border-left-color:#282d36;border-right-color:#282d36}html.dark .tabs.tabs-left .nav-tabs>li:last-child a,html.dark .tabs.tabs-right .nav-tabs>li:last-child a{border-bottom-color:#282d36}html.dark .tabs .nav-tabs{border-color:#282d36}html.dark .tabs .nav-tabs li.active a,html.dark .tabs .nav-tabs li.active a:hover,html.dark .tabs .nav-tabs li.active a:focus,html.dark .tabs .nav-tabs.nav-justified li.active a,html.dark .tabs .nav-tabs.nav-justified li.active a:hover,html.dark .tabs .nav-tabs.nav-justified li.active a:focus{background:#2e353e;border-left-color:#2e353e;border-right-color:#2e353e}html.dark .tabs .nav-tabs.nav-justified li.active a{border-bottom-color:#2e353e}html.dark .tabs.tabs-vertical{border-top-color:#2e353e}html.dark .tabs.tabs-bottom .nav-tabs li a,html.dark .tabs.tabs-bottom .nav-tabs li a:focus{border-bottom-color:#282d36;border-top-color:#2e353e}html.dark .tabs.tabs-bottom .nav-tabs li a:hover{border-bottom-color:#808697;border-top-color:#2e353e}html.dark .tabs.tabs-bottom .nav-tabs li.active a,html.dark .tabs.tabs-bottom .nav-tabs li.active a:hover,html.dark .tabs.tabs-bottom .nav-tabs li.active a:focus{border-bottom-color:#808697;border-top-color:#2e353e}html.dark .tabs .tab-content{background:#2e353e;border-color:#2e353e}html.dark .tabs-primary.tabs-bottom .nav-tabs li a,html.dark .tabs-primary.tabs-bottom .nav-tabs li a:hover,html.dark .tabs-primary.tabs-bottom .nav-tabs li a:focus,html.dark .tabs-primary.tabs-bottom .nav-tabs.nav-justified li a,html.dark .tabs-primary.tabs-bottom .nav-tabs.nav-justified li a:hover,html.dark .tabs-primary.tabs-bottom .nav-tabs.nav-justified li a:focus{border-top-color:#2e353e !important}html.dark .nav-tabs li.active a,html.dark .nav-tabs li.active a:hover,html.dark .nav-tabs li.active a:focus,html.dark .nav-tabs li a{color:#808697}html.dark .tab-content{background:#2e353e;border-color:#1d2127}html.dark .tabs-simple .tab-content,html.dark .tabs-simple .nav-tabs li a,html.dark .tabs-simple .nav-tabs li.active a{background:transparent !important}html.dark .call-to-action.call-to-action-default{background:#282d36}html.dark .call-to-action.call-to-action-dark{background:#2e353e}html.dark .call-to-action.with-borders{border-top-color:#2e353e;border-bottom-color:#2e353e;border-left-color:#282d36;border-right-color:#282d36}html.dark .call-to-action.with-full-borders{border-color:#2e353e}html.dark .call-to-action.featured{background-color:transparent;background:-webkit-linear-gradient(top,#282d36 1%,#2e353e 98%) repeat scroll 0 0 transparent;background:linear-gradient(to bottom,#282d36 1%,#2e353e 98%) repeat scroll 0 0 transparent;border-bottom-color:#2e353e;border-left-color:#282d36;border-right-color:#282d36}html.dark .call-to-action.call-to-action-in-footer:before{border-top-color:#1d2127}html.dark .counters.with-borders .counter{border-top:1px solid #2e353e;border-bottom:1px solid #2e353e;border-left:1px solid #282d36;border-right:1px solid #282d36}html.dark .counters.counters-text-dark .counter{color:#fff !important}html.dark .counters.counters-text-dark .counter .fa,html.dark .counters.counters-text-dark .counter .fas,html.dark .counters.counters-text-dark .counter .far,html.dark .counters.counters-text-dark .counter .fal,html.dark .counters.counters-text-dark .counter .fab,html.dark .counters.counters-text-dark .counter strong,html.dark .counters.counters-text-dark .counter label{color:#fff !important}html.dark section.timeline:after{background:#505050;background:-moz-linear-gradient(top,rgba(80,80,80,0) 0%,#505050 8%,#505050 92%,rgba(80,80,80,0) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#1e5799),color-stop(100%,#7db9e8));background:-webkit-linear-gradient(top,rgba(80,80,80,0) 0%,#505050 8%,#505050 92%,rgba(80,80,80,0) 100%);background:-o-linear-gradient(top,rgba(80,80,80,0) 0%,#505050 8%,#505050 92%,rgba(80,80,80,0) 100%);background:-ms-linear-gradient(top,rgba(80,80,80,0) 0%,#505050 8%,#505050 92%,rgba(80,80,80,0) 100%);background:linear,to bottom,rgba(80,80,80,0) 0%,#505050 8%,#505050 92%,rgba(80,80,80,0) 100%}html.dark section.timeline .timeline-date{background-color:#282d36;border-color:#282d36;text-shadow:none}html.dark section.timeline .timeline-title{background:#282d36}html.dark section.timeline .timeline-box{border-color:#282d36;background:#282d36}html.dark section.timeline .timeline-box.left:before{box-shadow:0 0 0 3px #282d36,0 0 0 6px #282d36}html.dark section.timeline .timeline-box.left:after{background:#282d36;border-right-color:#282d36;border-top-color:#282d36}html.dark section.timeline .timeline-box.right:before{box-shadow:0 0 0 3px #282d36,0 0 0 6px #282d36}html.dark section.timeline .timeline-box.right:after{background:#282d36;border-left-color:#282d36;border-bottom-color:#282d36}html.dark .form-control{background-color:#282d36;border-color:#282d36}html.dark .btn-default{background-color:#282d36;border-color:#282d36;color:#fff}html.dark .btn.disabled,html.dark .btn[disabled]{border-color:#282d36 !important}html.dark .pagination>li>a,html.dark .pagination>li>span{background-color:#282d36;border-color:#242830}html.dark .theme-default .nivoSlider{background-color:#1d2127}html.dark section.section-custom-map section.section{border-top-color:rgba(40,45,54,.8);background:rgba(33,38,45,.8)}html.dark .page-top{border-bottom-color:#191c21}html.dark .page-top-light{background-color:#2e353e}html.dark .panel-group .panel{background-color:#282d36}html.dark .panel-group .panel-default{border-color:#282d36}html.dark .panel-group .panel-heading{background-color:#2e353e}html.dark .panel-group .form-control{background-color:#21262d;border-color:#21262d}html.dark .toggle>label{background-color:#2e353e}html.dark .toggle.toggle-simple .toggle>label{color:#fff}html.dark .featured-box{background:#2e353e;border-left-color:#2e353e;border-right-color:#2e353e;border-bottom-color:#2e353e}html.dark .featured-box.secondary h4{color:#fff}html.dark .featured-boxes-flat .featured-box .box-content{background:#2e353e}html.dark .featured-boxes-style-5 .featured-box .box-content h4,html.dark .featured-boxes-style-6 .featured-box .box-content h4,html.dark .featured-boxes-style-7 .featured-box .box-content h4{color:#fff}html.dark .featured-boxes-style-2 .featured-box{background:transparent}html.dark .featured-boxes-style-3 .featured-box .icon-featured{background:#1d2127}html.dark .featured-boxes-style-4 .featured-box{background:transparent}html.dark .featured-boxes-style-5 .featured-box{background:transparent}html.dark .featured-boxes-style-5 .featured-box .icon-featured{background:#282d36;border-color:#2e353e}html.dark .featured-boxes-style-6 .featured-box{background:transparent}html.dark .featured-boxes-style-6 .featured-box .icon-featured{background:#282d36;border-color:#2e353e}html.dark .featured-boxes-style-6 .featured-box .icon-featured:after{border-color:#2e353e}html.dark .featured-boxes-style-7 .featured-box{background:transparent}html.dark .featured-boxes-style-7 .featured-box .icon-featured{background:#282d36;border-color:#2e353e}html.dark .featured-boxes-style-7 .featured-box .icon-featured:after{box-shadow:3px 3px #161a1e}html.dark .featured-boxes-style-8 .featured-box .icon-featured{background:#2e353e}html.dark .featured-box-effect-1 .icon-featured:after{box-shadow:0 0 0 3px #2e353e}html.dark .feature-box.feature-box-style-2 h4,html.dark .feature-box.feature-box-style-3 h4,html.dark .feature-box.feature-box-style-4 h4{color:#fff}html.dark .feature-box.feature-box-style-6 .feature-box-icon{border-color:#2e353e}html.dark .feature-box.feature-box-style-6 .feature-box-icon:after{border-color:#2e353e}html.dark .owl-dots .owl-dot span{background:#2e353e}html.dark .owl-carousel.top-border{border-top-color:#3f4247}html.dark .progress{background:#2e353e}html.dark .arrow{background-image:url("/Portals/_default/skins/porto/Resources/img/arrows-dark.png")}html.dark .thumbnail,html.dark .img-thumbnail,html.dark .thumb-info{background-color:#282d36;border-color:#282d36}html.dark .thumb-info .thumb-info-wrapper:after{background-color:rgba(29,33,39,.9)}html.dark .thumb-info-social-icons{border-top-color:#373f4a}html.dark ul.nav-list>li a{border-bottom-color:#282d36}html.dark ul.nav-list>li a:hover{background-color:#282d36}html.dark .content-grid .content-grid-item:before,html.dark .content-grid.content-grid-dashed .content-grid-item:before{border-left-color:#2e353e}html.dark .content-grid .content-grid-item:after,html.dark .content-grid.content-grid-dashed .content-grid-item:after{border-bottom-color:#2e353e}html.dark .testimonial .testimonial-author strong{color:#fff}html.dark .testimonial.testimonial-style-3 blockquote{background:#2e353e !important}html.dark .testimonial.testimonial-style-4{border-color:#2e353e !important}html.dark .testimonial.testimonial-style-3 .testimonial-arrow-down,html.dark .testimonial.testimonial-style-5 .testimonial-author{border-top-color:#2e353e !important}html.dark .page-top{border-bottom-color:#282d36}html.dark .table>thead>tr>th,html.dark .table>tbody>tr>th,html.dark .table>tfoot>tr>th,html.dark .table>thead>tr>td,html.dark .table>tbody>tr>td,html.dark .table>tfoot>tr>td,html.dark .table-bordered{border-color:#282d36}html.dark .table-striped>tbody>tr:nth-child(2n+1)>td,html.dark .table-striped>tbody>tr:nth-child(2n+1)>th{background-color:#2e353e}html.dark pre{background-color:#282d36;border-color:#282d36;color:#777}html.dark .show-grid [class*="col-md-"] .show-grid-block{background-color:#282d36;border-color:#282d36}html.dark .google-map-borders,html.dark .embed-responsive-borders{border-color:#2e353e}html.dark .alert.alert-default{border-color:#2e353e;background-color:#282d36}html.dark hr,html.dark hr.light,html.dark .divider{background-image:-webkit-linear-gradient(left,transparent,#3f4247,transparent);background-image:linear-gradient(to right,transparent,#3f4247,transparent)}html.dark hr.solid{background:#3f4247}html.dark .divider .fa,html.dark .divider .fas,html.dark .divider .far,html.dark .divider .fal,html.dark .divider .fab{background:#1d2127}html.dark .divider.divider-solid{background:#3f4247}html.dark .divider.divider-style-2 .fa,html.dark .divider.divider-style-2 .fas,html.dark .divider.divider-style-2 .far,html.dark .divider.divider-style-2 .fal,html.dark .divider.divider-style-2 .fab{background:#21262d}html.dark .divider.divider-style-3 .fa,html.dark .divider.divider-style-3 .fas,html.dark .divider.divider-style-3 .far,html.dark .divider.divider-style-3 .fal,html.dark .divider.divider-style-3 .fab{border-color:#3f4247}html.dark .divider.divider-style-4 .fa,html.dark .divider.divider-style-4 .fas,html.dark .divider.divider-style-4 .far,html.dark .divider.divider-style-4 .fal,html.dark .divider.divider-style-4 .fab{border-color:#3f4247}html.dark .divider.divider-style-4 .fa:after,html.dark .divider.divider-style-4 .fas:after,html.dark .divider.divider-style-4 .far:after,html.dark .divider.divider-style-4 .fal:after,html.dark .divider.divider-style-4 .fab:after{border-color:#21262d}html.dark .divider.divider-small{background:transparent}html.dark .divider.divider-small hr{background:#3f4247}html.dark .divider.divider-small.divider-light hr{background:#3f4247}html.dark hr.dashed:after,html.dark .divider.dashed:after{border-color:#3f4247}html.dark .heading.heading-bottom-border h1{border-bottom-color:#3f4247}html.dark .heading.heading-bottom-border h2,html.dark .heading.heading-bottom-border h3{border-bottom-color:#3f4247}html.dark .heading.heading-bottom-border h4,html.dark .heading.heading-bottom-border h5,html.dark .heading.heading-bottom-border h6{border-bottom-color:#3f4247}html.dark .heading.heading-bottom-double-border h1,html.dark .heading.heading-bottom-double-border h2,html.dark .heading.heading-bottom-double-border h3{border-bottom-color:#3f4247}html.dark .heading.heading-bottom-double-border h4,html.dark .heading.heading-bottom-double-border h5,html.dark .heading.heading-bottom-double-border h6{border-bottom-color:#3f4247}html.dark .heading.heading-middle-border:before{border-top-color:#3f4247}html.dark .heading.heading-middle-border h1,html.dark .heading.heading-middle-border h2,html.dark .heading.heading-middle-border h3,html.dark .heading.heading-middle-border h4,html.dark .heading.heading-middle-border h5,html.dark .heading.heading-middle-border h6{background:#1d2127}html.dark .recent-posts .date .day{background-color:#2e353e}html.dark .blog-posts article{border-color:#282d36}html.dark section.featured .recent-posts .date .day,html.dark article.post .post-date .day{background-color:#282d36}html.dark article .post-video,html.dark article .post-video iframe,html.dark article .post-audio,html.dark article .post-audio iframe{background-color:#282d36;border-color:#282d36}html.dark ul.simple-post-list li{border-bottom-color:#21262d}html.dark .post-block{border-top-color:#191c21}html.dark ul.comments .comment-block{background-color:#282d36}html.dark ul.comments .comment-arrow{border-right-color:#282d36}html.dark .pricing-table li{border-top-color:#21262d}html.dark .pricing-table h3{background-color:#21262d;text-shadow:none}html.dark .pricing-table h3 span{background:#282d36;border-color:#242830;box-shadow:0 5px 20px #242830 inset,0 3px 0 #282d36 inset;color:#777}html.dark .pricing-table .most-popular{border-color:#282d36}html.dark .pricing-table .most-popular h3{background-color:#282d36;color:#fff;text-shadow:none}html.dark .pricing-table .plan-ribbon{background-color:#282d36}html.dark .pricing-table .plan{background:#282d36;border:1px solid #282d36;color:#777;text-shadow:none}html.dark .product-thumb-info{background-color:#282d36;border-color:transparent}html.dark .shop .quantity .qty{background-color:#282d36;border-color:transparent}html.dark .shop .quantity .minus,html.dark .shop .quantity .plus{background-color:#21262d;border-color:transparent}html.dark .shop table.cart td,html.dark .shop .cart-totals th,html.dark .shop .cart-totals td{border-color:#282d36}html.dark .dialog{background-color:#1d2127}html.dark .modal-content{background-color:#1d2127}html.dark .modal-header{border-bottom-color:#282d36}html.dark .modal-header h1,html.dark .modal-header h2,html.dark .modal-header h3,html.dark .modal-header h4,html.dark .modal-header h5,html.dark .modal-header h6{color:#777}html.dark .modal-header .close{text-shadow:none;color:#fff}html.dark .modal-footer{border-top-color:#282d36}html.dark .body>#footer .newsletter form .btn-default{background-color:#21262d;border-color:#21262d;color:#777}html.dark .text-muted{color:#505461 !important}html.dark header .btn-responsive-nav{color:#fff}@media(max-width:991px){html.dark header nav.mega-menu ul.nav-main li.mega-menu-item ul.dropdown-menu{background:transparent !important}}html.boxed body{background-color:transparent;background-position:0 0;background-repeat:repeat}html.boxed .body{background-color:#fff;border-bottom:5px solid #1d2127;border-radius:5px;border-top:5px solid #ccc;box-shadow:0 0 4px rgba(0,0,0,.15);margin:25px auto;max-width:1200px;height:auto}html.boxed header,html.boxed header .header-body,html.boxed header.header-bottom .header-nav-bottom{max-width:1200px}html.boxed header{left:auto;width:auto}html.boxed header.darken-top-border{margin-top:-5px;border-top-left-radius:5px;border-top-right-radius:5px}html.boxed body.sticky-menu-active header{width:auto;max-width:1200px;margin:0 auto;left:auto}@media(max-width:1200px){html.boxed body.sticky-menu-active header{width:100%}}@media(max-width:991px){html.boxed .body{margin:0 auto;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}}@media(max-width:767px){html.boxed{background:none !important}}.shortcode-title{margin-bottom:35px;text-align:right}.shortcode-title h4{display:inline-block;float:left}header.fixedheader,header.fixedheader .header-body{position:relative !important}body.sticky-disable .newHeader:not(.fixedheader),body.sticky-disable .full-header:not(.fixedheader),body.sticky-disable .header-bottom{display:none}.element-invisible.element-focusable{position:absolute !important;background:#fff;z-index:-99}.element-invisible.element-focusable:active,.element-invisible.element-focusable:focus{position:static !important;z-index:9999}.focused>ul{display:block}.btn.btn-vertical-nav{background:#171717;color:#fff;display:none}@media(min-width:992px){.nav-main-collapse-vertical{display:block !important}}.nav-pills>li>a{border-radius:4px}@media(min-width:992px){header nav.mega-menu .nav,header nav.mega-menu .dropup,header nav.mega-menu .dropdown,header nav.mega-menu .collapse{position:static}header nav.mega-menu ul.nav-main .mega-menu-content{text-shadow:none}header nav.mega-menu ul.nav-main li.mega-menu-item ul.sub-menu .mega-menu-sub-title{color:#333;display:block;font-size:1em;font-weight:600;padding-bottom:5px;text-transform:uppercase;margin-top:20px}header nav.mega-menu ul.nav-main li.mega-menu-item ul.sub-menu .mega-menu-sub-title:first-child{margin-top:0}header nav.mega-menu ul.nav-main li.mega-menu-item ul.dropdown-menu{background:#fff !important;border-top:6px solid #ccc;color:#777;box-shadow:0 20px 45px rgba(0,0,0,.08)}header nav.mega-menu ul.nav-main li.mega-menu-item ul.sub-menu{list-style:none;padding:0;margin:0}header nav.mega-menu ul.nav-main li.mega-menu-item ul.sub-menu a{color:#777;text-shadow:none;margin:0 0 0 -8px;padding:3px 8px;text-transform:none;font-size:.9em;display:block;font-weight:normal;border-radius:4px}header nav.mega-menu ul.nav-main li.mega-menu-item:hover ul.sub-menu li:hover a:hover{background:#f4f4f4 !important;text-decoration:none}header nav.mega-menu ul.nav-main li.mega-menu-fullwidth ul.dropdown-menu{border-radius:6px}header nav.mega-menu .navbar-inner,header nav.mega-menu .container{position:relative}header nav.mega-menu .dropdown-menu{left:auto}header nav.mega-menu .dropdown-menu>li{display:block}header nav.mega-menu .mega-menu-content{padding:20px 30px}header nav.mega-menu .mega-menu-content:before{display:table;content:"";line-height:0}header nav.mega-menu .mega-menu-content:after{display:table;content:"";line-height:0;clear:both}header nav.mega-menu.navbar .nav>li>.dropdown-menu:after,header nav.mega-menu.navbar .nav>li>.dropdown-menu:before{display:none}header nav.mega-menu .dropdown.mega-menu-fullwidth .dropdown-menu{width:auto;left:15px;right:15px}header nav.mega-menu nav.pull-right .dropdown-menu{right:0}html header nav ul.nav-main .dropdown-full-color>ul.dropdown-menu li a,html header nav ul.nav-main .dropdown-full-color.mega-menu-item>ul.dropdown-menu li a{border-bottom:1px solid rgba(255,255,255,.15)}html header nav ul.nav-main .dropdown-full-color>ul.dropdown-menu li:last-child>a,html header nav ul.nav-main .dropdown-full-color.mega-menu-item>ul.dropdown-menu li:last-child>a,html header nav ul.nav-main .dropdown-full-color.mega-menu-item>ul.dropdown-menu li:last-child a{border-bottom:0}html header nav ul.nav-main .dropdown-full-color .mega-menu-sub-title,html header nav ul.nav-main .dropdown-full-color.mega-menu-item ul.sub-menu .mega-menu-sub-title{color:#fff;opacity:.65}html header nav ul.nav-main .dropdown-full-color .tip,html header nav ul.nav-main .dropdown-full-color.mega-menu-item .tip{background:#fff;color:#333}html header nav ul.nav-main .dropdown-full-color .tip:before,html header nav ul.nav-main .dropdown-full-color.mega-menu-item .tip:before{border-right-color:#fff}html header nav ul.nav-main .dropdown-full-color .dropdown-submenu>a:after,html header nav ul.nav-main .dropdown-full-color .dropdown-submenu:hover>a:after,html header nav ul.nav-main .dropdown-full-color.mega-menu-item .dropdown-submenu>a:after,html header nav ul.nav-main .dropdown-full-color.mega-menu-item .dropdown-submenu:hover>a:after{border-right-color:#fff;border-left-color:#fff}}
@import url("/Portals/_default/skins/porto/ThemeA.base-1.css");
@import url("/Portals/_default/skins/porto/ThemeA.base-2.css");
@media(max-width:991px){.mega-menu-content [class^="col-md"]{flex:0 0 100%;max-width:100%}}header{position:relative;background:#f6f6f6;background:-webkit-linear-gradient(#f6f6f6,#fff);background:linear-gradient(#f6f6f6,#fff);clear:both;min-height:128px}header .header-body{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%;z-index:1000;border-bottom:1px solid transparent;min-height:128px;background:#fff}header .header-container{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}header .container{position:relative}header .header-row{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-item-align:stretch;align-self:stretch;max-height:100%}header .header-column{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-item-align:stretch;align-self:stretch;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}header .header-column .header-row{-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit}header .header-top{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;min-height:50px;z-index:4}header .header-top .header-column{min-height:50px}header .logo{margin:10px 0;-webkit-transition:all .2s ease-in .2s;-moz-transition:all .2s ease-in .2s;transition:all .2s ease-in .2s;min-width:120px;max-width:280px}header .header-body .logo img{position:relative;max-width:100%}header .header-body .header-nav{padding-top:16px;min-height:52px}header .header-body .header-nav-top{display:-ms-flexbox;display:flex;align-items:center}header .header-body #login,header .header-body .search .input-group>span{display:-ms-flexbox;display:flex}header .header-body .header-nav-main{padding:15px 0}header .header-nav-main nav>ul>li>a{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;white-space:normal;font-size:12px;font-style:normal;font-weight:700;padding:8px 12px;text-transform:uppercase;margin-left:2px}header .header-nav-main .dropdown-toggle::after{content:none}header nav ul.nav-main li a .fa-caret-down{position:relative;top:-1px;margin-left:2px}header.flat-header .header-container .header-column{min-height:128px}header.clean-top .header-top{background-color:#f4f4f4;border-bottom:1px solid #ededed}header.flat-menu .header-body{min-height:152px}header.flat-menu .header-container .header-column{min-height:100px}header.flat-menu .header-body .header-nav-main{padding:0}header.colored .header-body{min-height:147px;border-top:0}header.center .header-body{min-height:142px}header.center .header-container .header-nav-center>.header-column.justify-content-end{min-height:100px}header.center .header-nav-center{display:block}header.center .header-body .header-nav-main,header.nav-bar .header-body .header-nav-main{padding:0}header.nav-bar .header-top{border-bottom:1px solid #e3e1e0}header.nav-bar .header-top .header-column{min-height:55px}header.nav-bar .header-body>.header-container .header-column{min-height:100px}header .search{margin-left:15px}header .mini-search{display:none}header div.social-icons{margin-left:20px}header .gtranslator a{text-decoration:none}header.full-header div.social-icons,header.header-bottom div.social-icons{margin-left:0}body.sticky-menu-active .showControlBar header .header-body{top:0}body.sticky-menu-active header.flat-menu .header-body .logo img,body.sticky-menu-active header.center .header-body .logo img,body.sticky-menu-active header.nav-bar .header-body .logo img{top:0 !important}body.sticky-menu-active .header-body{position:fixed !important;top:-58px}body.sticky-menu-active header .header-nav-top,body.sticky-menu-active header #login,body.sticky-menu-active header .search,body.sticky-menu-active .mini-widget{display:none}body.sticky-menu-active header.center .header-nav-center{display:flex}body.sticky-menu-active header.center .header-nav-main{padding-top:15px;justify-content:flex-end}@media(min-width:992px){header .nav-main-collapse{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;height:auto !important;min-height:40px}header nav ul.nav-main li a{font-size:12px;font-style:normal;line-height:20px;text-transform:uppercase;font-weight:700;padding:10px 13px}header nav ul.nav-main li ul a{text-transform:none;font-weight:normal}header nav ul.nav-main li.dropdown:hover a.dropdown-toggle,header nav ul.nav-main li.dropdown:focus a.dropdown-toggle,header nav ul.nav-main li.dropdown.focused a.dropdown-toggle{border-radius:5px 5px 0 0}header nav ul.nav-main li.dropdown:hover>ul{display:block}header nav ul.nav-main ul.dropdown-menu{border:0;border-top:5px solid #ccc;border-radius:0 6px 6px 6px;box-shadow:0 20px 45px rgba(0,0,0,.08);margin:0 0 0 2px;padding:5px;top:auto;text-align:left;min-width:200px}header nav ul.nav-main ul.dropdown-menu>li>a{display:block;font-weight:400;text-transform:none;position:relative;padding:8px 20px 8px 5px;border-bottom:1px solid #f4f4f4;text-decoration:none;margin:0 3px}header nav ul.nav-main ul.dropdown-menu ul.dropdown-menu{border-top:0;border-radius:6px;margin-left:0;margin-top:0}header nav ul.nav-main .dropdown-submenu:hover>.dropdown-menu{display:block}header nav ul.nav-main .dropdown-submenu>.dropdown-menu{top:0;left:100%;border-radius:0 6px 6px 6px}header nav ul.nav-main .dropdown-submenu{position:relative}header nav ul.nav-main .dropdown-submenu .fa-caret-down{display:none}header nav ul.nav-main .dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#fff;margin-top:5px;margin-right:-10px;position:absolute;top:8px;right:15px}header.ddrheader.center .header-container .header-column.justify-content-center,header.ddrheader.nav-bar .nav-bar-primary{height:auto !important}header.ddrheader.center .header-body .header-nav-main{padding-bottom:15px}header.ddrheader.nav-bar .header-body .header-nav-main{padding:10px 0}header.ddrheader.flat-menu .header-nav-main nav>ul>li{margin-top:-1px}header.ddrheader.flat-menu .header-nav-main nav>ul>li>a{padding-top:40px;padding-bottom:40px;border-radius:0 !important;height:100%;margin-top:1px}header.flat-menu nav ul.nav-main ul.dropdown-menu,header.flat-menu nav ul.nav-main ul.dropdown-menu ul.dropdown-menu{border-radius:0 !important}body.sticky-menu-active header.center .header-nav-center .header-column.justify-content-center{align-items:flex-start}header .mini-search{display:none !important}header .navbar-collapse .nav-main ul.dropdown-menu>li:hover>a{background-color:#f4f4f4}}@media(max-width:991px){header .header-body{padding:0;overflow:hidden}header .header-body #login .registerGroup li{margin-bottom:5px}header .header-body .header-nav{padding-top:20px}header .header-nav-main-effect{position:absolute;background:transparent;width:100%;top:100%;left:50%;-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0);z-index:99}header .header-nav-main-effect:before{content:'';display:block;position:absolute;top:0;left:50%;width:100vw;height:100%;background:#171717;z-index:-1;-webkit-transform:translateX(-50%);transform:translateX(-50%)}header .nav-main{width:100%}header nav ul.nav-main{padding:15px 25px;display:block}header .nav-main ul{padding:0;margin:0}header nav ul.nav-main ul.sub-menu{padding:0;margin-left:5px !important}header .nav-main ul li{padding:0;margin:0;clear:both;float:none;display:block;border-bottom:1px solid #2a2a2a;position:relative;text-align:left}header .nav-main ul li:last-child{border-bottom:none}header nav ul.nav-main li a{clear:both;display:block;padding:9px 8px !important;border:0;border-top:0;margin:0;font-weight:normal;text-transform:capitalize}header nav ul.nav-main li a .fa-caret-down{line-height:35px;min-height:38px;min-width:30px;position:absolute;right:5px;text-align:center;top:0}header .nav-main ul ul{margin-left:20px !important}header nav ul.nav-main li.dropdown.open .dropdown-toggle,header nav ul.nav-main li a,header nav ul.nav-main li>a:hover,header nav ul.nav-main li.active a,header nav ul.nav-main li.dropdown:hover a{background:none !important;background-color:transparent !important}header .nav-main ul.dropdown-menu{position:static;clear:both;float:none;display:none !important;border:0}header .nav-main li.opened>ul.dropdown-menu,header .nav-main li.focused>ul.dropdown-menu{display:block !important}header nav ul.nav-main ul.dropdown-menu{background:none !important;background-color:transparent !important;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;margin-bottom:15px}header div.social-icons{display:none !important}header .mini-search{padding:6px 12px;background:#171717;color:#fff !important;margin-right:10px;font-size:14px !important}header.pushdownHeader .mini-search{margin-right:45px}header.pushdownHeader.full-header .mini-search{margin-right:55px}header .search-block{position:absolute;top:100%;z-index:9;width:100%;left:0}header .search-block span{display:block !important;margin:0 !important}header .search-block input{width:100%;font-size:16px;padding:5px 32px 5px 6px;border:1px solid #ccc}header .search-block .searchInputContainer a.dnnSearchBoxClearText.dnnShow{top:2px}header .search-block ul.searchSkinObjectPreview,header.ddrheader.center nav{width:100%}header.center .header-container .header-nav-center>.header-column.justify-content-end{width:100%;min-height:100px}header.center .header-container .header-nav-center>.header-column.justify-content-center{height:0;min-height:0}header.center .mini-search,header.center .btn-responsive-nav{position:absolute}header.center .mini-search{right:50px}header .nav-main-collapse.show,body.sticky-menu-active header .nav-main-collapse.show{overflow:hidden !important;overflow-x:hidden !important;overflow-y:auto !important}header .nav-main-collapse,body.sticky-menu-active header .nav-main-collapse{max-height:330px}body.sticky-menu-active header.ddrheader.center .header-nav-center>.header-column.justify-content-end{width:100%}}@media(min-width:992px){header.newHeader{position:absolute;z-index:1000;width:100%;background:transparent}header.newHeader .header-body{background:transparent;width:100%;z-index:1000;position:fixed;border-top:0;border-bottom:1px solid rgba(255,255,255,.2);min-height:128px}header.newHeader .header-container .header-column{min-height:127px}header.ddrheader.newHeader .header-body .header-nav-main{padding-bottom:0}header.newHeader nav>ul.nav-main>li>ul.dropdown-menu{border-radius:0 !important}header.newHeader .header-body nav ul.nav-main .dropdown-full-color ul.dropdown-menu{border-top-color:#fff !important}header.newHeader .header-nav-main nav>ul>li>a{padding-bottom:20px;padding-top:20px}body.sticky-menu-active header.newHeader .header-nav-main nav>ul>li>a{padding-bottom:42px;padding-top:42px}header.newHeader.fixedheader .header-nav-main nav>ul>li>a,body.sticky-menu-active header.newHeader.fixedheader .header-nav-main nav>ul>li>a{padding-bottom:10px;padding-top:10px}body.sticky-menu-active header.newHeader .header-body{background:rgba(0,0,0,.8);border-bottom:0}body.sticky-menu-active header.ddrheader.newHeader .header-body .header-nav-main{padding-top:0}body.sticky-menu-active header.newHeader.fixedheader .header-body{border-bottom:1px solid rgba(255,255,255,.2)}header.header-bottom{position:absolute;z-index:1000;width:100%;background:transparent;min-height:60px !important}header.header-bottom .header-body{background:transparent;width:100%;z-index:1000;position:fixed;border:0;min-height:60px}header.header-bottom .header-container .header-column{min-height:100px}header.header-bottom .header-top{min-height:60px}header.header-bottom .header-nav-bottom{bottom:0;position:fixed;width:100%;min-height:100px;background:rgba(0,0,0,.8);z-index:1000}header.header-bottom .header-body .header-nav-main{padding:0}header.header-bottom .header-nav-main nav>ul>li>a{padding-top:40px;padding-bottom:40px}header.header-bottom ul.dropdown-menu{bottom:100%;border-radius:0 !important}header.header-bottom nav ul.nav-main .dropdown-submenu>.dropdown-menu{top:auto;bottom:0}header.header-bottom nav ul.nav-main>li.focused>a{background:transparent}body.sticky-menu-active header.header-bottom .header-top{display:none}body.sticky-menu-active header.header-bottom .header-nav-bottom{bottom:auto;top:0}body.sticky-menu-active .showControlBar header.header-bottom .header-nav-bottom{top:54px}body.sticky-menu-active header.header-bottom .dropdown-menu{bottom:auto}header.full-header{position:absolute;z-index:1000;width:100%;background:transparent}header.full-header .header-body{padding:0 40px;width:100%;z-index:1000;position:fixed;border-top:0;border-bottom:1px solid rgba(255,255,255,.2);min-height:140px;background:rgba(0,0,0,.5)}header.full-header .header-container-fluid .header-column{min-height:85px}header.full-header .header-top{min-height:54px}header.full-header .header-body .header-nav-main{padding:0}header.full-header .header-nav-main nav>ul>li>a{padding-top:32px;padding-bottom:32px}header.full-header nav>ul.nav-main>li>ul.dropdown-menu{border-radius:0 !important}header.full-header.fixedheader .header-nav-main nav>ul>li>a,body.sticky-menu-active header.full-header.fixedheader .header-nav-main nav>ul>li>a{padding-bottom:10px;padding-top:10px}body.sticky-menu-active header.full-header .header-body{background:rgba(0,0,0,.8);border-bottom:0}body.sticky-menu-active header.full-header .header-nav-main nav>ul>li>a{margin-top:1px}}header.full-header .header-container-fluid{position:relative}@media(max-width:991px){header.header-bottom .header-container .header-column{min-height:85px}header.full-header .header-top{padding:0 10px}header.full-header .logo{padding-left:10px}header.full-header .btn-responsive-nav{margin-right:10px}}.scrollbar::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);border-radius:10px;background-color:#171717}.scrollbar::-webkit-scrollbar{width:12px;background-color:#171717}.scrollbar::-webkit-scrollbar-thumb{border-radius:10px;-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);background-color:#555}header.overlayHeader .overlay{position:fixed;width:auto;top:250px;left:50%;opacity:0;margin:0 0 0 -150px !important;text-align:center;z-index:1050;-moz-transition:.5s ease;-webkit-transition:.5s ease;transition:.5s ease;-moz-transform:translateY(20px);-ms-transform:translateY(20px);-webkit-transform:translateY(20px);transform:translateY(20px);float:none !important;visibility:hidden}.overlay-effect header.overlayHeader .overlay{opacity:1 !important;-moz-transform:translateY(0);-ms-transform:translateY(0);-webkit-transform:translateY(0);transform:translateY(0);visibility:visible}header.overlayHeader .btn-responsive-nav{z-index:9}header.overlayHeader .btn-responsive-nav:before{-moz-border-radius:50%;-webkit-border-radius:50%;border-radius:50%;-moz-transition:1s;-webkit-transition:1s;transition:1s;opacity:.9;-moz-transform:scale(.2) translate3d(0,0,0);-ms-transform:scale(.2) translate3d(0,0,0);-webkit-transform:scale(.2) translate3d(0,0,0);transform:scale(.2) translate3d(0,0,0);visibility:hidden;-moz-backface-visibility:hidden;-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:#000;width:200px;height:200px !important;position:absolute;top:0;right:-86px;bottom:0;margin:auto;content:"";z-index:9}.overlay-effect header.overlayHeader .btn-responsive-nav:before{visibility:visible;-moz-transform:scale(30);-ms-transform:scale(30);-webkit-transform:scale(30);transform:scale(30)}header.overlayHeader.center .btn-responsive-nav:before,header.overlayHeader.nav-bar .btn-responsive-nav:before{right:-72px}header.overlayHeader button{outline:none}header.overlayHeader .nav-main-collapse>nav.nav-main.overlay>ul.nav-pills li a{background:none !important;background-color:transparent !important}header.overlayHeader .overlay .dl-subview li.dl-subview,header.overlayHeader .overlay .dl-subview li.dl-subview .overlay-menu,header.overlayHeader .overlay .dl-subview li.dl-subviewopen,header.overlayHeader .overlay .dl-subview li.dl-subviewopen>.overlay-menu,header.overlayHeader .overlay .dl-subview li.dl-subviewopen>.overlay-menu>li,header.overlayHeader .overlay .dl-subview li.dl-subview .overlay-submenu,header.overlayHeader .overlay .dl-subview li.dl-subviewopen>.overlay-submenu,header.overlayHeader .overlay .dl-subview li.dl-subviewopen>.overlay-submenu>li,header.overlayHeader .overlay .dl-menu li.dl-menu,header.overlayHeader .overlay .dl-menu li.dl-menu .overlay-submenu,header.overlayHeader .overlay .dl-menu li.dl-submenu,header.overlayHeader .overlay .dl-menu li.dl-submenu>.overlay-submenu,header.overlayHeader .overlay .dl-menu li.dl-submenu>.overlay-submenu>li,header.overlayHeader .overlay .nav-pills>li,header.overlayHeader .overlay ul li a{display:block}header.overlayHeader .overlay .dl-subview li.dl-subviewopen.dl-menuopen>.overlay-menu>li>a,header.overlayHeader .overlay .dl-subview li.dl-subview.dl-menuopen>.overlay-menu>li>a,header.overlayHeader .overlay .dl-subview li,header.overlayHeader .overlay .dl-subview li.dl-subviewopen>a,header.overlayHeader .overlay .dl-subview li.dl-subview>a,header.overlayHeader .overlay li .overlay-submenu,header.overlayHeader .overlay .overlay-menu,header.overlayHeader .overlay .icon-back,header.overlayHeader .overlay.one-menu,header .overlay .nav-pills>li{display:none}header.overlayHeader .overlay .dl-subview .icon-back{display:table;color:#fff;margin:10px 18px 0;padding:5px;font-size:16px}header.overlayHeader .overlay .dl-subview .dl-subviewopen li a,header.overlayHeader .overlay .dl-menu .dl-submenu li a{display:block;position:relative;line-height:20px;text-decoration:none}header.overlayHeader .header-body .header-nav-main{position:relative}header.overlayHeader .overlay ul li a{color:transparent;text-align:left}header.overlayHeader nav ul.nav-main li a{padding:15px 20px !important}header.overlayHeader nav ul.nav-main .overlay-dropdown a,header.overlayHeader nav ul.nav-main li.overlay-dropdown:hover a,header.overlayHeader nav ul.nav-main li.overlay-child:hover a,header.overlayHeader nav ul.nav-main>li.active>a,header.overlayHeader .overlay-menu .overlay-dropdown-submenu a:hover,header.overlayHeader .overlay-menu .overlay-subchild a:hover{background-color:transparent !important}header.overlayHeader .overlay ul.nav-main{width:300px;max-height:450px;margin:0 !important;padding:0;overflow-y:auto;background-color:#1f1f1f;display:block}header.overlayHeader .overlay em.icon-right{float:right;font-size:20px}header.overlayHeader nav ul.nav-main>li+li{margin-left:0 !important}header.overlayHeader .overlay ul.nav-main li ul{padding:0;margin:0}.animate-menu{animation-name:example;animation-duration:500ms}@keyframes example{0%{left:60%;opacity:.1}100%{left:50%;opacity:1}}header.overlayHeader .close-btn{display:block;background:transparent;color:#fff;font-size:25px;border:none;width:25px;position:absolute;right:0;z-index:99;padding:0;cursor:pointer}header.overlayHeader.center .close-btn,header.overlayHeader.nav-bar .close-btn{right:15px}@media(max-width:991px){header.overlayHeader .header-nav-main-effect{-webkit-transform:none;transform:none}header.overlayHeader .btn-responsive-nav:before{right:-80px}header.overlayHeader.center .btn-responsive-nav:before,header.overlayHeader.nav-bar .btn-responsive-nav:before{right:-66px}header.overlayHeader .close-btn{right:6px}header.overlayHeader.center .close-btn,header.overlayHeader.nav-bar .close-btn{right:22px}header.overlayHeader .nav-main ul li{border-bottom:none}header.overlayHeader .nav-main ul ul{margin-left:0 !important}header.overlayHeader .overlay .dl-subview .icon-back{padding:10px 20px;margin:0}}@media(max-width:479px){header.overlayHeader .overlay{top:250px}}header.inlineHeader .push-menu{position:absolute;width:270px;z-index:9;overflow:hidden;-webkit-transition:box-shadow .3s ease,visibility 0s .6s ease;-moz-transition:box-shadow .3s ease,visibility 0s .6s ease;transition:box-shadow .3s ease,visibility 0s .6s ease;visibility:hidden;border-radius:4px;text-align:left}header.inlineHeader .push-menu:after{content:' ';position:absolute;top:-835px;right:-640px;height:1650px;width:1300px;-webkit-transform:scale(0);-moz-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);transform:scale(0);-webkit-transition:transform .6s ease,opacity .3s .3s ease;-moz-transition:transform .6s ease,opacity .3s .3s ease;transition:transform .6s ease,opacity .3s .3s ease;border-radius:50%;background:#fff;z-index:-1;opacity:0}.show-menu header.inlineHeader .push-menu{-webkit-transition:box-shadow .6s .3s ease;-moz-transition:box-shadow .6s .3s ease;transition:box-shadow .6s .3s ease;-webkit-box-shadow:0 0 30px 0 rgba(0,0,0,.2);-moz-box-shadow:0 0 30px 0 rgba(0,0,0,.2);box-shadow:0 0 30px 0 rgba(0,0,0,.2);visibility:visible !important}.show-menu header.inlineHeader .push-menu:after{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1);-webkit-transition:transform .6s ease,opacity .6s ease;-moz-transition:transform .6s ease,opacity .6s ease;transition:transform .6s ease,opacity .6s ease;opacity:1}.show-menu header.inlineHeader .push-menu ul li{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0);opacity:1;visibility:visible;-webkit-transition:all .3s ease;-moz-transition:all .3s ease;transition:all .3s ease}.show-menu header.inlineHeader .push-menu li:nth-of-type(1){-webkit-transition-delay:.1s;-moz-transition-delay:.1s;transition-delay:.1s}.show-menu header.inlineHeader .push-menu li:nth-of-type(2){-webkit-transition-delay:.2s;-moz-transition-delay:.2s;transition-delay:.2s}.show-menu header.inlineHeader .push-menu li:nth-of-type(3){-webkit-transition-delay:.3s;-moz-transition-delay:.3s;transition-delay:.3s}.show-menu header.inlineHeader .push-menu li:nth-of-type(4){-webkit-transition-delay:.4s;-moz-transition-delay:.4s;transition-delay:.4s}.show-menu header.inlineHeader .push-menu li:nth-of-type(5){-webkit-transition-delay:.5s;-moz-transition-delay:.5s;transition-delay:.5s}.show-menu header.inlineHeader .push-menu li:nth-of-type(6){-webkit-transition-delay:.6s;-moz-transition-delay:.6s;transition-delay:.6s}.show-menu header.inlineHeader .push-menu li:nth-of-type(7){-webkit-transition-delay:.7s;-moz-transition-delay:.7s;transition-delay:.7s}.show-menu header.inlineHeader .push-menu li:nth-of-type(8){-webkit-transition-delay:.8s;-moz-transition-delay:.8s;transition-delay:.8s}.show-menu header.inlineHeader .push-menu li:nth-of-type(9){-webkit-transition-delay:.9s;-moz-transition-delay:.9s;transition-delay:.9s}.show-menu header.inlineHeader .push-menu li:nth-of-type(10){-webkit-transition-delay:1s;-moz-transition-delay:1s;transition-delay:1s}.show-menu header.inlineHeader .push-menu li:nth-of-type(11){-webkit-transition-delay:1.1s;-moz-transition-delay:1.1s;transition-delay:1.1s}.show-menu header.inlineHeader .push-menu li:nth-of-type(12){-webkit-transition-delay:1.2s;-moz-transition-delay:1.2s;transition-delay:1.2s}.show-menu header.inlineHeader .push-menu nav.nav-main.mega-menu.push-down{position:relative;right:0}header nav.push-down ul.nav-main>li{display:none}header.inlineHeader nav ul.nav-main>li{display:block}header.inlineHeader nav.push-menu ul.nav-main>li+li{margin-left:0}header.inlineHeader .nav-main-collapse{position:relative;overflow:visible !important}.push-animate{animation-name:example1;animation-duration:500ms}@keyframes example1{0%{left:60%;opacity:.1}100%{left:0;opacity:1}}header.inlineHeader .navbar-collapse .push-menu>nav.push-down>ul.nav-main li>a{background:none !important;background-color:transparent !important}header.inlineHeader .navbar-collapse .push-menu ul.nav-main li:hover>a,header.inlineHeader .navbar-collapse .push-menu ul.nav-main li>a:hover{background-color:rgba(0,0,0,.04) !important}header.inlineHeader .push-menu nav.nav-main.mega-menu{width:100%}header.inlineHeader .push-menu .nav-main ul.nav-main{margin:0 !important;display:block;width:100%}header.inlineHeader .push-menu li>a{display:block;font-weight:600;margin:0;color:transparent;padding:16px 25px !important;text-transform:none;text-decoration:none;-webkit-transition:all .3s ease;-moz-transition:all .3s ease;transition:all .3s ease;outline:none !important}header.inlineHeader .push-menu ul li{-webkit-transform:translateY(-15px);-moz-transform:translateY(-15px);-ms-transform:translateY(-15px);-o-transform:translateY(-15px);transform:translateY(-15px);opacity:0;visibility:hidden;-webkit-transition:all .3s ease;-moz-transition:all .3s ease;transition:all .3s ease;list-style-type:none;margin-left:0 !important}header.inlineHeader .pushdown-menu{display:none !important}header.inlineHeader .push-menu .icon-right{padding:0 0 0 15px;float:right;font-size:20px}header.inlineHeader .push-menu a.backicon{display:table;font-size:15px;font-weight:500;color:#808080 !important;padding:15px 25px 0;text-decoration:none}header.inlineHeader .push-menu li.menu-set.dl-subviewopen>ul.pushdown-menu,header.inlineHeader .push-menu li.pushdown-sub-menu>ul{padding:0;margin:0 !important}header.inlineHeader .push-menu li.subviewopen>ul.pushdown-submenu{margin-left:0 !important;padding:0}header.inlineHeader .push-menu ul.dl-subview>li.menu-set.dl-subviewopen>a,header.inlineHeader .push-menu ul.dl-subview>li.menu-child>a,header.inlineHeader .push-menu ul.pushdown-menu>li.pushdown-sub>ul.pushdown-menu>li.push-down-menu,header.inlineHeader .push-menu ul.pushdown-menu>li.pushdown-sub>ul.pushdown-submenu,header.inlineHeader .push-menu ul.pushdown-menu.subview>li.pushdown-sub.subviewopen>a,header.inlineHeader .push-menu ul.pushdown-menu.subview>li.pushdown-sub,header.inlineHeader .push-menu li.a.subviewopen>a,header.inlineHeader .push-menu ul.pushdown-menu.subview>li.push-down-menu,header.inlineHeader .push-menu li.menu-set>ul.pushdown-menu,header.inlineHeader .push-menu ul.dl-subview>li.menu-set,header.inlineHeader .push-menu ul.pushdown-submenu.sub-view>li,header.inlineHeader .push-menu li.pushdown-sub-menu.open>a,header.inlineHeader .push-menu li.pushdown-sub-menu>ul.pushdown-submenu>li,header.inlineHeader .push-menu a.backicon{display:none}.show-menu header.inlineHeader .push-menu ul.dl-subview a.backicon{display:table}header.inlineHeader .push-menu ul.pushdown-menu>li.subviewopen>ul.pushdown-submenu,header.inlineHeader .push-menuli.pushdown-sub-menu.open>ul>li,header.inlineHeader .push-menuul.pushdown-submenu.sub-view>li.open,header.inlineHeader .push-menu li.menu-set.dl-subviewopen>ul.pushdown-menu,header.inlineHeader .push-menu li.dl-subviewopen>ul.pushdown-menu>li.pushdown-sub.dl-subviewopen>ul.pushdown-menu>li.push-down-menu,header.inlineHeader .push-menu ul.dl-subview>li.dl-subviewopen>ul.pushdown-submenu,header.inlineHeader .push-menu ul.pushdown-menu.subview>li.pushdown-sub.subviewopen,header.inlineHeader .push-menu li.a.subviewopen>ul.pushdown-submenu,header.inlineHeader .push-menu li.menu-set.dl-subviewopen{display:block !important}header.inlineHeader.center .header-nav-center>.header-column.justify-content-center,header.inlineHeader.nav-bar .header-nav-center .header-nav-main{justify-content:flex-end !important}@media(min-width:992px){header.inlineHeader.flat-header .header-body .header-nav-main,header.inlineHeader.newHeader .header-body .header-nav-main{position:relative}header.inlineHeader.flat-header .nav-main-collapse,header.inlineHeader.newHeader .nav-main-collapse{position:unset}header.inlineHeader.flat-header .push-menu{top:25px;right:36px}header.inlineHeader.newHeader .push-menu{top:18px;right:36px}header.inlineHeader .push-menu{top:10px;right:-128px}header.inlineHeader.flat-menu .push-menu{right:-10px}header.inlineHeader.center .push-menu,header.inlineHeader.no-border-top .push-menu{top:-42px;right:35px}header.header-bottom.inlineHeader .push-menu{top:auto;bottom:5px;right:-5px}header.header-bottom.inlineHeader .push-menu:after{right:-900px;top:-200px;height:1500px;width:1500px}header.inlineHeader.full-header .push-menu{top:8px;right:-5px}body.sticky-menu-active header.inlineHeader.center .push-menu{top:58px}body.sticky-menu-active header.inlineHeader.no-border-top .push-menu{top:-26px}body.sticky-menu-active header.header-bottom.inlineHeader .push-menu{top:10px;bottom:auto}body.sticky-menu-active header.header-bottom.inlineHeader .push-menu:after{top:-795px;right:-515px;height:1535px;width:1000px}}@media(max-width:991px){header.inlineHeader .header-nav-main-effect{transform:none;left:auto}header.inlineHeader .push-menu{top:-52px;right:46px}header.inlineHeader.flat-menu .push-menu,header.inlineHeader.center .push-menu,header.inlineHeader.nav-bar .push-menu{top:-68px}header.inlineHeader.header-bottom .push-menu,header.inlineHeader.full-header .push-menu{top:-62px}body.sticky-menu-active header.inlineHeader.header-bottom .push-menu,body.sticky-menu-active header.inlineHeader.full-header .push-menu{top:-50px}header.inlineHeader .push-menu .nav-main ul li{border-bottom:0}}@media(max-width:361px){header.inlineHeader .push-menu{width:235px}}header.pushdownHeader .navbar-collapse{position:absolute;width:100%;left:50%;transform:translate3d(-50%,0,0);top:100%;z-index:99999;min-height:auto}header.pushdownHeader .navbar-collapse nav{width:100%;padding:0 15px}header.pushdownHeader .pushdown.nav-main ul li{padding:5px 10px;clear:both;display:block;border-bottom:1px solid #2a2a2a;text-align:left;width:100%}header.pushdownHeader .navbar-collapse nav.pushdown ul.nav-main li>a,header.pushdownHeader .navbar-collapse nav.pushdown ul.nav-main li.active a,header.pushdownHeader .navbar-collapse nav.pushdown ul.nav-main li:hover a,header.pushdownHeader .navbar-collapse nav.pushdown ul.nav-main li a:focus,header.pushdownHeader .navbar-collapse nav.pushdown ul.nav-main li a:hover,header.pushdownHeader .navbar-collapse nav.pushdown ul.nav-main>li:hover>a,header.pushdownHeader .navbar-collapse nav.pushdown ul.nav-main ul.dropdown-menu{background:none !important;background-color:transparent !important}header.pushdownHeader .pushdown .nav>li,header.pushdownHeader .pushdown .nav>li>a{position:relative}header.pushdownHeader .pushdown .nav-pills li>a{outline:none !important;display:block}header.pushdownHeader nav.pushdown ul.nav-main li a .fa-caret-down{top:4px;font-size:2em;position:absolute;right:5px}header.pushdownHeader nav.pushdown ul.nav-main ul.dropdown-menu{border:0;border-radius:6px;margin:0;padding:5px;padding-right:0 !important}header.pushdownHeader .pushdown.nav-main ul.dropdown-menu{position:static;clear:both;float:none;display:none !important}header.pushdownHeader .pushdown .dropdown-menu{left:0;z-index:1000;text-align:left;list-style:none}header.pushdownHeader nav.pushdown ul.nav-main ul.dropdown-menu li>a{padding:5px;border:0;font-weight:400;text-transform:none;position:relative}header.pushdownHeader nav.pushdown ul.nav-main ul.dropdown-menu ul.dropdown-menu{border-radius:6px;margin-top:-5px;margin-bottom:0}header.pushdownHeader .pushdown.nav-main ul li:last-child{border-bottom:none}header.pushdownHeader nav.pushdown ul.nav-main ul.dropdown-menu li>a{-moz-transition:all .2s;-o-transition:all .2s;-webkit-transition:all .2s;transition:all .2s}header.pushdownHeader nav.pushdown ul.nav-main ul.dropdown-menu li:hover>a{padding-left:16px;padding-right:16px}header.pushdownHeader nav.pushdown ul.nav-main>li>a,header.pushdownHeader nav.pushdown ul.nav-main li.dropdown:hover>a{padding:5px !important}header.pushdownHeader nav.pushdown ul.nav-main .dropdown-submenu .fa-caret-down{display:block;right:0}header.pushdownHeader .pushdown .scrollbar{max-height:330px;background:#171717;overflow-y:auto}header.pushdownHeader nav ul.nav-main li>a:after{content:none}header.pushdownHeader.nav-bar nav.nav-main{float:right}header.pushdownHeader nav.nav-main.nav-main-collapse-push.collapse{display:none}header.pushdownHeader nav.nav-main.nav-main-collapse-push.collapse.in{display:block}header.pushdownHeader .pushdown .nav-main li.resp-active>ul.dropdown-menu{display:block !important}header.pushdownHeader .pushdown.nav-main ul.nav-main{border:5px solid #171717}header.pushdownHeader.header-bottom .navbar-collapse{position:static;transform:none}header.pushdownHeader.full-header .header-container-fluid{position:relative}header.pushdownHeader .btn-responsive-nav{display:none !important}header.pushdownHeader .btn-push-nav{position:absolute;top:-52px;right:15px}header.pushdownHeader.flat-menu .btn-push-nav,header.pushdownHeader.center .btn-push-nav,header.pushdownHeader.nav-bar .btn-push-nav{top:-65px}header.pushdownHeader.newHeader .btn-push-nav{top:-55px}header.pushdownHeader.header-bottom .btn-push-nav{top:32px}header.pushdownHeader.full-header .btn-push-nav{top:-60px}@media(min-width:992px){header.pushdownHeader .navbar-collapse{margin-top:1px}header.pushdownHeader.header-bottom .pushdown.nav-main{position:absolute;width:100%;left:50%;transform:translate3d(-50%,0,0);top:auto;bottom:100%}body.sticky-menu-active header.pushdownHeader.header-bottom .pushdown.nav-main{top:100%;bottom:auto}}@media(max-width:991px){header.pushdownHeader .navbar-collapse nav{padding:5px 10px}header.pushdownHeader ul.nav-main{padding:0;border:0 !important}header.pushdownHeader .btn-push-nav{top:-52px}header.pushdownHeader.newHeader .btn-push-nav{top:-50px}header.pushdownHeader.center .btn-push-nav,header.pushdownHeader.nav-bar .btn-push-nav{top:-67px}header.pushdownHeader.header-bottom .btn-push-nav{top:-60px}header.pushdownHeader.full-header .btn-push-nav{right:10px}header.pushdownHeader.header-bottom .navbar-collapse{height:0}header.pushdownHeader .header-nav-main-effect:before{content:none}header.pushdownHeader .navbar-collapse{position:static;transform:none;height:0;padding:0}header.pushdownHeader .navbar-collapse:before{content:'';display:block;position:absolute;top:0;left:50%;width:100vw;height:100%;background:#171717;z-index:-1;-webkit-transform:translateX(-50%);transform:translateX(-50%)}header.pushdownHeader.newHeader .header-container .header-column{min-height:122px}header.pushdownHeader.full-header .header-container-fluid .header-column{min-height:85px}}.showControlBar .navbar-collapse.slidebar{top:54px}.navbar-collapse.slidebar{top:0;overflow-y:auto !important;height:100% !important;display:block !important}.slidebar .close-icon{display:inline-block;width:100%;cursor:default}.slidebar .close-icon .fa-times-circle{cursor:pointer}.slidebar .close-icon em{float:right;padding:15px;font-size:20px}.slidebar .nav-pills>li{width:100%;margin:0}.slidebar .nav-pills>li>a{padding:15px;font-weight:600;color:#fff;border-radius:0}.slidebar .nav-pills li .dropdown-toggle::after{content:none}.slidebar ul.nav-pills>li.active>a,.slidebar ul.nav-pills>li.active>a:hover,.slidebar ul.nav-pills>li.active>a:focus,.slidebar .nav>li>a:hover,.slidebar .nav>li>a:focus{background-color:rgba(255,255,255,.1)}.slidebar .dropdown-menu>li>a{padding:15px;color:transparent;background-color:transparent;position:relative;transition:all .2s;display:block;text-decoration:none}.slidebar .dropdown-menu>li:hover>a{padding-left:25px}.slidebar ul>li>a>em{float:right;top:15px;font-size:25px;position:absolute;right:20px}.slidebar nav ul.nav-main li>ul{position:static;float:none;background-color:transparent;margin:0;padding:0;border:none;margin-left:15px;display:none}.slidebar nav ul.nav-main li.sub-open>ul{display:block}.slidebar .dropdown-menu>.active>a,.slidebar .dropdown-menu>.active>a:hover,.slidebar .dropdown-menu>.active>a:focus{background-color:transparent}body.sticky-menu-active .navbar-collapse.slidebar{top:0}body .navbar-collapse.slidebar{top:0;z-index:0}body .navbar-collapse.in.slidebar{z-index:0}body .navbar-collapse.slidebar[off-canvas*=overlay],body .navbar-collapse.in.slidebar[off-canvas*=overlay]{z-index:9999}header.overlayHeader.center .header-nav-main,header.inlineHeader.center .header-nav-main,header.overlayHeader.nav-bar .header-nav-main,header.inlineHeader.nav-bar .header-nav-main{height:0;padding:0}header.overlayHeader.center .header-nav-center>.header-column.justify-content-center,header.inlineHeader.center .header-nav-center>.header-column.justify-content-center,header.overlayHeader.nav-bar .nav-bar-primary,header.inlineHeader.nav-bar .nav-bar-primary{height:0;min-height:0}header.overlayHeader.center .header-nav-center>.header-column.justify-content-end,header.inlineHeader.center .header-nav-center>.header-column.justify-content-end{width:100%}body.sticky-menu-active header.header-bottom .header-body .logo img,body.sticky-menu-active header.full-header .header-body .logo img{top:0 !important}@media(min-width:992px){header .btn-responsive-nav,header.pushdownHeader .btn-push-nav{display:none;background:transparent;color:#000;font-size:25px;padding:0;border:none;width:25px;outline:none !important;box-shadow:none !important;z-index:2;margin-left:20px}header.newHeader .btn-responsive-nav,header.header-bottom .btn-responsive-nav,header.full-header .btn-responsive-nav,header.pushdownHeader.newHeader .btn-push-nav,header.pushdownHeader.header-bottom .btn-push-nav,header.pushdownHeader.full-header .btn-push-nav{color:#fff}header.newHeader.fixedheader .btn-responsive-nav,header.full-header.fixedheader .btn-responsive-nav,header.newHeader.fixedheader .btn-push-nav,header.full-header.fixedheader .btn-push-nav{color:#000}header.overlayHeader .btn-responsive-nav,header.inlineHeader .btn-responsive-nav,header.slideheader .btn-responsive-nav,header.pushdownHeader .btn-push-nav{display:inline-block !important}header.ddrheader .btn-responsive-nav{display:none !important}}@media(max-width:991px){header .btn-responsive-nav,header.pushdownHeader .btn-push-nav{background:#171717;display:block;color:#fff !important;outline:none !important;width:38px}header.pushdownHeader .btn-push-nav{line-height:normal}html header.overlayHeader .nav-main-collapse,html header.inlineHeader .nav-main-collapse{height:0 !important}}.dnnEditState header{position:relative !important}.widget-overlap{position:fixed;width:100%;z-index:1001;border:0}.bg-color-dark{background-color:rgba(0,0,0,.5)}.bg-color-light{background-color:#f4f4f4}.mt-55{margin-top:55px}.mt-32{margin-top:32px}.mt-38{margin-top:38px}.brd-top{border-top:5px solid #ededed}@media(prefers-reduced-motion:reduce){html .fade{transition:opacity .15s linear}html .modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out}}[data-bs-dismiss]:not(.btn){background-color:transparent;border:0}.form-group{margin-bottom:10px}.form-group label{margin-bottom:5px}h1,h2,h3,h4,h5,h6{color:#1d2127;font-weight:200;letter-spacing:-1px;margin:0}h1{font-size:2.6em;line-height:44px;margin:0 0 32px 0}h2{font-size:2.2em;font-weight:300;line-height:42px;margin:0 0 32px 0}h3{font-size:1.8em;font-weight:400;letter-spacing:normal;line-height:24px;margin-bottom:33px;text-transform:uppercase}h4{font-size:1.4em;font-weight:400;letter-spacing:normal;line-height:27px;margin:0 0 14px 0}h5{font-size:1em;font-weight:600;letter-spacing:normal;line-height:18px;margin:0 0 14px 0;text-transform:uppercase}h6{color:#333;font-size:1em;font-weight:400;letter-spacing:normal;line-height:18px;margin:0 0 14px 0}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a,h1 a:hover,h2 a:hover,h3 a:hover,h4 a:hover,h5 a:hover,h6 a:hover,h1 a:active,h2 a:active,h3 a:active,h4 a:active,h5 a:active,h6 a:active,h1 a:visited,h2 a:visited,h3 a:visited,h4 a:visited,h5 a:visited,h6 a:visited{font-size:inherit !important;font-family:inherit !important}h1.big{font-size:4.2em;line-height:54px}h1.small{font-size:2.2em;line-height:42px;font-weight:600}h1.short{margin-bottom:15px}h2.short{margin-bottom:15px}h3.short,h4.short,h5.short,h6.short{margin-bottom:9px}h1.shorter,h2.shorter,h3.shorter,h4.shorter,h5.shorter,h6.shorter{margin-bottom:0}h1.tall,h2.tall,h3.tall,h4.tall,h5.tall,h6.tall{margin-bottom:33px}h1.taller,h2.taller,h3.taller,h4.taller,h5.taller,h6.taller{margin-bottom:44px}h1.spaced,h2.spaced,h3.spaced,h4.spaced,h5.spaced,h6.spaced{margin-top:22px}h1.more-spaced,h2.more-spaced,h3.more-spaced,h4.more-spaced,h5.more-spaced,h6.more-spaced{margin-top:44px}h1.dark,h2.dark,h3.dark,h4.dark,h5.dark{color:#1d2127}h1.light,h2.light,h3.light,h4.light,h5.light,h6.light{color:#fff}h1.text-shadow,h2.text-shadow,h3.text-shadow,h4.text-shadow,h5.text-shadow,h6.text-shadow{text-shadow:1px 1px 0 rgba(0,0,0,.2)}.heading.heading-border{margin-bottom:25px}.heading.heading-border h1,.heading.heading-border h2,.heading.heading-border h3,.heading.heading-border h4,.heading.heading-border h5,.heading.heading-border h6{margin:0;padding:0}.heading.heading-bottom-border h1{border-bottom:5px solid #dbdbdb;padding-bottom:10px}.heading.heading-bottom-border h2,.heading.heading-bottom-border h3{border-bottom:2px solid #dbdbdb;padding-bottom:10px}.heading.heading-bottom-border h4,.heading.heading-bottom-border h5,.heading.heading-bottom-border h6{border-bottom:1px solid #dbdbdb;padding-bottom:5px}.heading.heading-bottom-double-border h1,.heading.heading-bottom-double-border h2,.heading.heading-bottom-double-border h3{border-bottom:3px double #dbdbdb;padding-bottom:10px}.heading.heading-bottom-double-border h4,.heading.heading-bottom-double-border h5,.heading.heading-bottom-double-border h6{border-bottom:3px double #dbdbdb;padding-bottom:5px}.heading.heading-middle-border{position:relative}.heading.heading-middle-border:before{border-top:1px solid #dbdbdb;content:"";height:0;left:auto;position:absolute;right:0;top:50%;width:100%}.heading.heading-middle-border h1,.heading.heading-middle-border h2,.heading.heading-middle-border h3,.heading.heading-middle-border h4,.heading.heading-middle-border h5,.heading.heading-middle-border h6{position:relative;background:#fff;display:inline-block}.heading.heading-middle-border h1{padding-right:15px}.heading.heading-middle-border h2,.heading.heading-middle-border h3{padding-right:10px}.heading.heading-middle-border h4,.heading.heading-middle-border h5,.heading.heading-middle-border h6{padding-right:5px}.heading.heading-middle-border-reverse{text-align:right}.heading.heading-middle-border-reverse h1,.heading.heading-middle-border-reverse h2,.heading.heading-middle-border-reverse h3,.heading.heading-middle-border-reverse h4,.heading.heading-middle-border-reverse h5,.heading.heading-middle-border-reverse h6{padding-right:0}.heading.heading-middle-border-reverse h1{padding-left:15px}.heading.heading-middle-border-reverse h2,.heading.heading-middle-border-reverse h3{padding-left:10px}.heading.heading-middle-border-reverse h4,.heading.heading-middle-border-reverse h5,.heading.heading-middle-border-reverse h6{padding-left:5px}.heading.heading-middle-border-center{text-align:center}.heading.heading-middle-border-center h1{padding-left:15px;padding-right:15px}.heading.heading-middle-border-center h2,.heading.heading-middle-border-center h3{padding-left:10px;padding-right:10px}.heading.heading-middle-border-center h4,.heading.heading-middle-border-center h5,.heading.heading-middle-border-center h6{padding-left:5px;padding-right:5px}.heading.heading-border-xs:before{border-top-width:1px}.heading.heading-border-sm:before{border-top-width:2px}.heading.heading-border-lg:before{border-top-width:3px}.heading.heading-border-xl:before{border-top-width:5px}.modal-header h3{color:#333;text-transform:none}@media(max-width:479px){h2{line-height:40px}}@media(max-width:767px){h1.big{font-size:3.2em;line-height:42px}}blockquote{border-left:5px solid #eee;padding:10px 20px;margin:0 0 20px;font-size:1em;font-style:normal}blockquote.with-borders{border-radius:6px;border-top:1px solid #dfdfdf;border-bottom:1px solid #dfdfdf;border-left:1px solid #ececec;border-right:1px solid #ececec;box-shadow:0 1px 1px 0 rgba(0,0,0,.04);padding:15px 20px}blockquote.blockquote-reverse{border-right:5px solid #eee;border-left:0;text-align:right}p{color:#777;line-height:24px;margin:0 0 20px}p.featured{font-size:1.6em;line-height:1.5em}p.short{margin-bottom:0}p.tall{margin-bottom:20px}p.taller{margin-bottom:40px}p .alternative-font{display:inline-block;margin-top:-15px;position:relative;top:3px;margin-bottom:-6px}a,a:hover,a:focus{color:#ccc}p.drop-caps:first-child:first-letter {float:left;font-size:75px;line-height:60px;padding:4px;margin-right:5px;margin-top:5px;font-family:Georgia}p.drop-caps.drop-caps-style-2:first-child:first-letter {background-color:#ccc;color:#fff;padding:6px;margin-right:5px;border-radius:4px}.alternative-font{color:#ccc;font-family:"Shadows Into Light",cursive;font-size:1.6em}ul.nav-list li{margin:0;padding:0;display:block;position:relative}ul.nav-list li a{-webkit-transition:background .1s;-moz-transition:background .1s;transition:background .1s;border-bottom:1px solid #ededde;padding:8px 0;display:block;color:#666;font-size:.9em;text-decoration:none}ul.nav-list li a:before{content:"";display:inline-block;width:0;height:0;border-top:4px solid transparent;border-bottom:4px solid transparent;border-left:4px solid #333;margin-left:10px;margin-right:5px;position:relative}ul.nav-list li a:hover{background-color:#eee;text-decoration:none}ul.nav-list li.active>a{font-weight:bold}ul.nav-list li ul{list-style:none;margin:0 0 0 25px;padding:0}ul.nav-list li:last-child a{border-bottom:none}ul.nav-list.hide-not-active li ul{display:none}ul.nav-list.hide-not-active li.active ul{display:block}ul.nav-list.show-bg-active .active>a{background-color:#f5f5f5}ul.nav-list.show-bg-active .active>a:hover{background-color:#eee}ul.narrow li a{padding:4px 0}ul.nav-pills>li.active>a{background-color:#ccc}ul.nav-pills>li.active>a:hover,ul.nav-pills>li.active>a:focus{background-color:#ccc}.btn{-webkit-transition:all .1s;-moz-transition:all .1s;transition:all .1s;font-size:.9rem}.btn.btn-lg{font-size:1rem;padding:.5rem 1rem}.btn.btn-sm{font-size:.8rem;padding:.3rem .65rem}.btn.btn-xs{font-size:.7rem;padding:.2rem .5rem}.btn-icon i,.btn-icon em{margin-right:10px}.btn-icon-right i,.btn-icon-right em{margin-right:0;margin-left:10px}.btn-default{color:#666;background:#fff;border-color:#ccc}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:focus{box-shadow:0 0 0 .2rem #ddd !important}.btn-success{border-color:#47a447;background-color:#47a447;border-color:#47a447 #47a447 #388038;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.btn-success:hover{border-color:#51b451 #51b451 #3f923f;background-color:#51b451;color:#fff}.btn-success:active,.btn-success:focus{border-color:#3f923f;background-color:#3f923f;color:#fff}.btn-success.dropdown-toggle{border-left-color:#3f923f}.btn-success[disabled]{border-color:#86cb86;background-color:#86cb86;color:#ccc}.btn-warning{border-color:#ed9c28;background-color:#ed9c28;border-color:#ed9c28 #ed9c28 #d18211;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.btn-warning:hover{border-color:#efa740 #efa740 #e89113;background-color:#efa740;color:#fff}.btn-warning:active,.btn-warning:focus{border-color:#e89113;background-color:#e89113;color:#fff}.btn-warning.dropdown-toggle{border-left-color:#e89113}.btn-warning[disabled]{border-color:#f5c786;background-color:#f5c786;color:#ccc}.btn-danger{border-color:#d2322d;background-color:#d2322d;border-color:#d2322d #d2322d #a82824;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.btn-danger:hover{border-color:#d64742 #d64742 #bd2d29;background-color:#d64742;color:#fff}.btn-danger:active,.btn-danger:focus{border-color:#bd2d29;background-color:#bd2d29;color:#fff}.btn-danger.dropdown-toggle{border-left-color:#bd2d29}.btn-danger[disabled]{border-color:#e48481;background-color:#e48481;color:#ccc}.btn-info{border-color:#5bc0de;background-color:#5bc0de;border-color:#5bc0de #5bc0de #31b0d5;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.btn-info:hover{border-color:#70c8e2 #70c8e2 #46b8da;background-color:#70c8e2;color:#fff}.btn-info:active,.btn-info:focus{border-color:#46b8da;background-color:#46b8da;color:#fff}.btn-info.dropdown-toggle{border-left-color:#46b8da}.btn-info[disabled]{border-color:#b0e1ef;background-color:#b0e1ef;color:#ccc}.btn-outline{border-width:2px}.btn-3d{border-bottom-width:3px;padding:5px 12px;border-radius:6px}.btn-3d.btn-lg,.btn-group-lg>.btn-3d.btn{padding:9px 16px}.btn-3d.btn-sm,.btn-group-sm>.btn-3d.btn{border-width:2px;padding:4px 10px}.btn-3d.btn-xs,.btn-group-xs>.btn-3d.btn{padding:1px 5px;border-width:1px}.btn-borders{border-width:3px}.btn-borders.btn-success{background:transparent;border-color:#47a447;color:#47a447;text-shadow:none}.btn-borders.btn-success:hover,.btn-borders.btn-success:focus{background-color:#51b451;border-color:#47a447 !important;color:#fff}.btn-borders.btn-warning{background:transparent;border-color:#ed9c28;color:#ed9c28;text-shadow:none}.btn-borders.btn-warning:hover,.btn-borders.btn-warning:focus{background-color:#efa740;border-color:#ed9c28 !important;color:#fff}.btn-borders.btn-danger{background:transparent;border-color:#d2322d;color:#d2322d;text-shadow:none}.btn-borders.btn-danger:hover,.btn-borders.btn-danger:focus{background-color:#d64742;border-color:#d2322d !important;color:#fff}.btn-borders.btn-info{background:transparent;border-color:#5bc0de;color:#5bc0de;text-shadow:none}.btn-borders.btn-info:hover,.btn-borders.btn-info:focus{background-color:#70c8e2;border-color:#5bc0de !important;color:#fff}.btn-borders{padding:4px 12px}.btn-borders.btn-lg,.btn-group-lg>.btn-borders.btn{padding:8px 16px}.btn-borders.btn-sm,.btn-group-sm>.btn-borders.btn{border-width:2px;padding:4px 10px}.btn-borders.btn-xs,.btn-group-xs>.btn-borders.btn{padding:1px 5px;border-width:1px}.badge{font-weight:600}.badge-default{background-color:#777;color:#fff}.badge-primary{background-color:#ccc;color:#fff}.badge-success{background-color:#47a447;color:#fff}.badge-warning{background-color:#ed9c28;color:#fff}.badge-danger{background-color:#d2322d;color:#fff}.badge-info{background-color:#5bc0de;color:#fff}.badge-dark{background-color:#1d2127;color:#fff}.badge.badge-sm{font-size:.7em}.badge.badge-lg{font-size:1em}.label-primary{background-color:#ccc;color:#fff}.label-success{background-color:#47a447;color:#fff}.label-warning{background-color:#ed9c28;color:#fff}.label-danger{background-color:#d2322d;color:#fff}.label-info{background-color:#5bc0de;color:#fff}.label-dark{background-color:#1d2127;color:#fff}.label.label-sm{font-size:.7em}.label.label-lg{font-size:1em}form label{font-weight:normal}textarea{resize:vertical}select{border:1px solid #e5e7e9;border-radius:6px;outline:none}.label{font-weight:normal}.form-group:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.form-control{font-size:.9rem}.form-control:focus{box-shadow:0 1px 1px rgba(0,0,0,.075) inset;border-color:#ccc}.form-control.error{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)}.form-control.error: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}label.valid{display:inline-block;text-indent:-9999px}label.error{color:#c10000;font-size:.9em;line-height:18px;padding:5px 0 0}label.error#captcha-error{margin-top:15px}.captcha{clear:both;overflow:hidden;background:#f2f2f2;text-align:center;margin-bottom:20px;max-width:160px;height:78px;position:relative}.captcha input{border:0}.captcha-input{position:relative;top:15px;font-size:14px}.captcha-image{float:left;position:relative;top:-5px;left:-13px}.captcha-refresh{position:absolute;z-index:1;bottom:2px;right:2px;border-radius:3px;padding:2px 5px}.captcha-refresh a,.captcha-refresh a:hover,.captcha-refresh a:focus,.captcha-refresh a:active{color:#333}.table>thead>tr>td.primary,.table>tbody>tr>td.primary,.table>tfoot>tr>td.primary,.table>thead>tr>th.primary,.table>tbody>tr>th.primary,.table>tfoot>tr>th.primary,.table>thead>tr.primary>td,.table>tbody>tr.primary>td,.table>tfoot>tr.primary>td,.table>thead>tr.primary>th,.table>tbody>tr.primary>th,.table>tfoot>tr.primary>th{background-color:#ccc;color:#fff}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#47a447;color:#fff}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#ed9c28;color:#fff}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#d2322d;color:#fff}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#5bc0de;color:#fff}.table>thead>tr>td.dark,.table>tbody>tr>td.dark,.table>tfoot>tr>td.dark,.table>thead>tr>th.dark,.table>tbody>tr>th.dark,.table>tfoot>tr>th.dark,.table>thead>tr.dark>td,.table>tbody>tr.dark>td,.table>tfoot>tr.dark>td,.table>thead>tr.dark>th,.table>tbody>tr.dark>th,.table>tfoot>tr.dark>th{background-color:#1d2127;color:#fff}.table-condensed.table th,.table-condensed.table td{padding:.25em}.featured-icon{background:#ccc;border-radius:35px;color:#fff;display:inline-block;height:35px;line-height:35px;margin-right:10px;position:relative;text-align:center;top:5px;width:35px}.featured-icon i,.featured-icon em{color:#fff;font-size:.9em;font-weight:normal}.simple-icon-list .simple-icon{display:flex;margin-bottom:10px;-webkit-transition:all .5s cubic-bezier(.165,.84,.44,1);transition:all .5s cubic-bezier(.165,.84,.44,1)}.simple-icon:hover{box-shadow:0 2px 5px 0 rgba(0,0,0,.16)}.simple-icon-list .simple-icon a{display:inline-block;padding:11px;font-size:24px;cursor:pointer;color:#000}.simple-icon-list .simple-icon a:hover{color:#fff;text-decoration:none}.simple-icon-list .simple-icon span{font-size:12px;color:#888;max-width:180px;padding:5px 10px;display:flex;align-items:center}.simple-icon-list .simple-icon span:hover{color:#000}.sample-icon-list .sample-icon a{display:block;color:#222;line-height:32px;height:32px;padding-left:10px;border-radius:4px;font-size:11px}.sample-icon-list .sample-icon a:hover{color:#fff;text-decoration:none}.sample-icon-list .sample-icon a:hover{background-color:#08c}.sample-icon-list .sample-icon a:hover .fa,.sample-icon-list .sample-icon a:hover .fas,.sample-icon-list .sample-icon a:hover .far,.sample-icon-list .sample-icon a:hover .fal,.sample-icon-list .sample-icon a:hover .fab,.sample-icon-list .sample-icon a:hover .icons{font-size:28px;vertical-align:-6px}.sample-icon-list .sample-icon a .fa,.sample-icon-list .sample-icon a .fas,.sample-icon-list .sample-icon a .far,.sample-icon-list .sample-icon a .fal,.sample-icon-list .sample-icon a .fab,.sample-icon-list .sample-icon a .icons{width:32px;font-size:14px;display:inline-block;text-align:right;margin-right:10px}.fontawesome-icon-list [class*="col-md-"]{margin-bottom:9px}.fontawesome-icon-list>section{margin-top:25px}.img-rounded{border-radius:4px}.img-thumbnail{border-radius:4px;position:relative}.img-thumbnail img{border-radius:4px}.img-thumbnail .zoom{background:#ccc;border-radius:100%;bottom:8px;color:#fff;display:block;height:30px;padding:6px;position:absolute;right:8px;text-align:center;width:30px}.img-thumbnail .zoom i,.img-thumbnail .zoom em{font-size:14px;left:-1px;position:relative;top:-3px}.img-thumbnail.img-thumbnail-hover-icon{position:relative}.img-thumbnail.img-thumbnail-hover-icon img{position:relative;z-index:1}.img-thumbnail.img-thumbnail-hover-icon:before{-webkit-transition:all .2s;-moz-transition:all .2s;transition:all .2s;background:rgba(0,0,0,.65);border-radius:4px;content:"";display:block;position:absolute;width:100%;height:100%;left:0;top:0;bottom:0;right:0;opacity:0;z-index:2}.img-thumbnail.img-thumbnail-hover-icon:after{-webkit-transition:all .2s;-moz-transition:all .2s;transition:all .2s;font-family:"Font Awesome 5 Free";color:#fff;content:"";font-size:30px;height:30px;position:absolute;top:30%;margin-top:-15px;display:block;text-align:center;width:100%;opacity:0;z-index:3}.img-thumbnail.img-thumbnail-hover-icon:hover:before{opacity:1}.img-thumbnail.img-thumbnail-hover-icon:hover:after{top:50%;opacity:1}.img-thumbnail.img-thumbnail-hover-icon{font-weight:bold}ul.image-gallery{list-style:none;padding:0}ul.image-gallery .image-gallery-item{margin-bottom:35px}ul.image-gallery{display:flex}.restaurant .thumb-info-custom-icon{width:auto;margin:-30px auto 0;transform:none !important;border-radius:0}.restaurant .thumb-info-custom{position:relative;overflow:visible;z-index:2;border-radius:0}.restaurant .thumb-info-caption .thumb-info-caption-text,.restaurant .thumb-info-caption p{line-height:20px;margin:0 0 8px;padding:10px;display:block}.restaurant .thumb-info-custom:after{border:1px solid #ddd;bottom:-9px;content:"";height:5px;left:5px;position:absolute;right:5px;width:auto;z-index:0}.restaurant .thumb-info-custom:before{border:1px solid #ddd;bottom:-5px;content:"";height:5px;left:2px;position:absolute;right:2px;width:auto;z-index:0}.restaurant .thumb-info-custom .btn{margin:0 0 -60px;position:relative;z-index:10;border-radius:0}.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8;filter:alpha(opacity=80)}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:none !important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none !important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:none;padding:0;z-index:1046;-webkit-box-shadow:none;box-shadow:none}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;filter:alpha(opacity=65);padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:hover,.mfp-close:focus{opacity:1;filter:alpha(opacity=100)}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;filter:alpha(opacity=65);margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:hover,.mfp-arrow:focus{opacity:1;filter:alpha(opacity=100)}.mfp-arrow:before,.mfp-arrow:after,.mfp-arrow .mfp-b,.mfp-arrow .mfp-a{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after,.mfp-arrow .mfp-a{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before,.mfp-arrow .mfp-b{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after,.mfp-arrow-left .mfp-a{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left:before,.mfp-arrow-left .mfp-b{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after,.mfp-arrow-right .mfp-a{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right:before,.mfp-arrow-right .mfp-b{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.mfp-ie7 .mfp-img{padding:0}.mfp-ie7 .mfp-bottom-bar{width:600px;left:50%;margin-left:-300px;margin-top:5px;padding-bottom:5px}.mfp-ie7 .mfp-container{padding:0}.mfp-ie7 .mfp-content{padding-top:44px}.mfp-ie7 .mfp-close{top:0;right:0;padding-top:0}.mfp-close,.mfp-close-btn-in .mfp-close{font-family:"Open Sans",Arial,sans-serif;font-weight:600;font-size:22px;color:#838383}.mfp-no-margins img.mfp-img{padding:0}.mfp-no-margins .mfp-figure:after{top:0;bottom:0}.mfp-no-margins .mfp-container{padding:0}.mfp-with-zoom .mfp-container,.mfp-with-zoom.mfp-bg{opacity:.001;-webkit-backface-visibility:hidden;-webkit-transition:all .3s ease-out;-moz-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out}.mfp-with-zoom.mfp-ready .mfp-container{opacity:1}.mfp-with-zoom.mfp-ready.mfp-bg{opacity:.8}.mfp-with-zoom.mfp-removing .mfp-container,.mfp-with-zoom.mfp-removing.mfp-bg{opacity:0}.my-mfp-zoom-in .zoom-anim-dialog{opacity:0;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-transform:scale(.8);-moz-transform:scale(.8);-ms-transform:scale(.8);-o-transform:scale(.8);transform:scale(.8)}.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog{opacity:1;-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog{-webkit-transform:scale(.8);-moz-transform:scale(.8);-ms-transform:scale(.8);-o-transform:scale(.8);transform:scale(.8);opacity:0}.my-mfp-zoom-in.mfp-bg{opacity:.001;-webkit-transition:opacity .3s ease-out;-moz-transition:opacity .3s ease-out;-o-transition:opacity .3s ease-out;transition:opacity .3s ease-out}.my-mfp-zoom-in.mfp-ready.mfp-bg{opacity:.8}.my-mfp-zoom-in.mfp-removing.mfp-bg{opacity:0}.my-mfp-slide-bottom .zoom-anim-dialog{opacity:0;-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-o-transition:all .2s ease-out;transition:all .2s ease-out;-webkit-transform:translateY(-20px) perspective(600px) rotateX(10deg);-moz-transform:translateY(-20px) perspective(600px) rotateX(10deg);-ms-transform:translateY(-20px) perspective(600px) rotateX(10deg);-o-transform:translateY(-20px) perspective(600px) rotateX(10deg);transform:translateY(-20px) perspective(600px) rotateX(10deg)}.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog{opacity:1;-webkit-transform:translateY(0) perspective(600px) rotateX(0);-moz-transform:translateY(0) perspective(600px) rotateX(0);-ms-transform:translateY(0) perspective(600px) rotateX(0);-o-transform:translateY(0) perspective(600px) rotateX(0);transform:translateY(0) perspective(600px) rotateX(0)}.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog{opacity:0;-webkit-transform:translateY(-10px) perspective(600px) rotateX(10deg);-moz-transform:translateY(-10px) perspective(600px) rotateX(10deg);-ms-transform:translateY(-10px) perspective(600px) rotateX(10deg);-o-transform:translateY(-10px) perspective(600px) rotateX(10deg);transform:translateY(-10px) perspective(600px) rotateX(10deg)}.my-mfp-slide-bottom.mfp-bg{opacity:.01;-webkit-transition:opacity .3s ease-out;-moz-transition:opacity .3s ease-out;-o-transition:opacity .3s ease-out;transition:opacity .3s ease-out}.my-mfp-slide-bottom.mfp-ready.mfp-bg{opacity:.8}.my-mfp-slide-bottom.mfp-removing.mfp-bg{opacity:0}ul.thumbnail-gallery{list-style:none;margin:10px 0;padding:0}ul.thumbnail-gallery li{display:inline-block;margin:10px 10px 0 0;padding:0}@media(max-width:991px){.thumbnail{border:0;text-align:center}}.v-menu ul.nav-main{clear:both;display:block;float:none;width:100%;margin-right:auto;margin-left:auto;border-radius:5px;border:5px solid #171717}.v-menu nav ul.nav-main li a,.v-menu nav ul.nav-main li.active a{background:none !important;background-color:transparent !important}.v-menu .nav-main ul li{padding:5px;margin:0;clear:both;float:none;display:block;border-bottom:1px solid #2a2a2a}.v-menu nav ul.nav-main li a{clear:both;float:none;display:block;padding:5px;border:0;border-top:0;margin:0;font-style:normal;font-weight:400;line-height:20px;text-decoration:none}.v-menu .nav-main ul.nav-main{float:none;position:static;margin:0;margin-right:-10px}.v-menu .nav-main ul{padding:0}.v-menu .nav>li,.v-menu .nav>li>a{position:relative}.v-menu .nav-pills>li>a{border-radius:4px}.v-menu nav ul.nav-main li a .fa-caret-down{top:6px;font-size:25px;position:absolute;right:5px}.v-menu nav ul.nav-main ul.dropdown-menu{border:0;border-radius:6px;margin:0;padding:5px;top:auto;margin-bottom:-5px;padding-right:0 !important;background:none !important;background-color:transparent !important;box-shadow:none}.v-menu .dropdown-menu{left:0;z-index:1000;font-size:14px;text-align:left;list-style:none}.v-menu li{line-height:24px}.v-menu a{outline:none !important}.v-menu nav ul.nav-main ul.dropdown-menu li>a{padding:5px;border:0;border-top:0;margin:0;border-bottom:none;font-weight:400;text-transform:none;position:relative}.v-menu nav ul.nav-main ul.dropdown-menu ul.dropdown-menu{border-radius:6px;margin-top:-5px}.v-menu .nav-main ul li:last-child{border-bottom:none}.v-menu nav ul.nav-main ul.dropdown-menu li>a{-moz-transition:all .2s;-o-transition:all .2s;-webkit-transition:all .2s;transition:all .2s}.v-menu nav ul.nav-main ul.dropdown-menu li:hover>a{filter:none;background-color:#171717;padding-left:16px;padding-right:16px}.v-menu .nav-main li.resp-active>ul.dropdown-menu{display:block !important}.v-menu .nav-main ul.dropdown-menu{position:static !important;transform:none !important;clear:both;float:none;display:none !important;min-width:100%}.v-menu li.dropdown-submenu{padding-right:0 !important}.v-menu .dropdown-toggle::after{content:none}.masonry .masonry-item{width:25%}.masonry .masonry-item.w2{width:50%}.masonry .masonry-item img{border-radius:0 !important}.restaurant .thumb-info.thumb-info-centered-icons .thumb-info-action-custom .thumb-info-icon-custom:before{border-top:1px solid #ddd;content:"";height:1px;left:20%;position:absolute;right:2px;top:50%;width:60%}.restaurant .thumb-info.thumb-info-centered-icons .thumb-info-action-custom .thumb-info-icon-custom:after{border-left:1px solid #ddd;content:"";height:60%;left:50%;position:absolute;right:2px;top:20%;width:1px}.restaurant .thumb-info.thumb-info-centered-icons .thumb-info-action{-webkit-transition:-webkit-transform .2s ease-out,opacity .2s ease-out;-moz-transition:-moz-transform .2s ease-out,opacity .2s ease-out;transition:transform .2s ease-out,opacity .2s ease-out;transform:translate3d(0,-10px,0);top:50%;left:3px;right:auto;bottom:auto;width:100%;height:40px;margin-top:-20px;text-align:center;position:absolute;opacity:0;z-index:2}.restaurant .thumb-info.thumb-info-centered-icons .thumb-info-action-custom{top:0 !important;margin-top:0;height:100%;left:0;width:100%;display:block}.restaurant .thumb-info:hover.thumb-info-centered-icons .thumb-info-action{transform:translate3d(0,0,0);opacity:1}.list li{margin-bottom:13px}.list.pull-left li{text-align:left}.list.list-icons{list-style:none;padding-left:0;padding-right:0}.list.list-icons li{position:relative;padding-left:25px}.list.list-icons li .fa,.list.list-icons li .fas,.list.list-icons li .far,.list.list-icons li .fal,.list.list-icons li .fab{position:absolute;left:0;top:5px}.list.list-icons.list-icons-style-2 li{padding-top:5px;padding-left:36px}.list.list-icons.list-icons-style-2 li .fa,.list.list-icons.list-icons-style-2 li .fas,.list.list-icons.list-icons-style-2 li .far,.list.list-icons.list-icons-style-2 li .fal,.list.list-icons.list-icons-style-2 li .fab{border-width:1px;border-style:solid;border-radius:50%;width:25px;height:25px;text-align:center;padding:4px}.list.list-icons.list-icons-style-3 li{padding-top:5px;padding-left:36px}.list.list-icons.list-icons-style-3 li .fa,.list.list-icons.list-icons-style-3 li .fas,.list.list-icons.list-icons-style-3 li .far,.list.list-icons.list-icons-style-3 li .fal,.list.list-icons.list-icons-style-3 li .fab{color:#fff;border-radius:50%;width:25px;height:25px;text-align:center;padding:5px}.list.list-icons.list-icons-sm li{padding-left:13px;margin-bottom:5px}.list.list-icons.list-icons-sm li .fa,.list.list-icons.list-icons-sm li .fas,.list.list-icons.list-icons-sm li .far,.list.list-icons.list-icons-sm li .fal,.list.list-icons.list-icons-sm li .fab{font-size:.8em;top:7px}.list.list-icons.list-icons-sm.list-icons-style-2 li{padding-left:32px}.list.list-icons.list-icons-sm.list-icons-style-2 li .fa,.list.list-icons.list-icons-sm.list-icons-style-2 li .fas,.list.list-icons.list-icons-sm.list-icons-style-2 li .far,.list.list-icons.list-icons-sm.list-icons-style-2 li .fal,.list.list-icons.list-icons-sm.list-icons-style-2 li .fab{width:20px;height:20px;padding:3px}.list.list-icons.list-icons-sm.list-icons-style-3 li{padding-left:32px}.list.list-icons.list-icons-sm.list-icons-style-3 li .fa,.list.list-icons.list-icons-sm.list-icons-style-3 li .fas,.list.list-icons.list-icons-sm.list-icons-style-3 li .far,.list.list-icons.list-icons-sm.list-icons-style-3 li .fal,.list.list-icons.list-icons-sm.list-icons-style-3 li .fab{width:20px;height:20px;padding:3px}.list.list-icons.list-icons-lg li{padding-top:5px;padding-left:32px}.list.list-icons.list-icons-lg li .fa,.list.list-icons.list-icons-lg li .fas,.list.list-icons.list-icons-lg li .far,.list.list-icons.list-icons-lg li .fal,.list.list-icons.list-icons-lg li .fab{font-size:1.5em}.list.list-icons.list-icons-lg.list-icons-style-2 li{padding-top:8px;padding-left:42px}.list.list-icons.list-icons-lg.list-icons-style-2 li .fa,.list.list-icons.list-icons-lg.list-icons-style-2 li .fas,.list.list-icons.list-icons-lg.list-icons-style-2 li .far,.list.list-icons.list-icons-lg.list-icons-style-2 li .fal,.list.list-icons.list-icons-lg.list-icons-style-2 li .fab{width:30px;height:30px;padding:4px}.list.list-icons.list-icons-lg.list-icons-style-3 li{padding-top:8px;padding-left:42px}.list.list-icons.list-icons-lg.list-icons-style-3 li .fa,.list.list-icons.list-icons-lg.list-icons-style-3 li .fas,.list.list-icons.list-icons-lg.list-icons-style-3 li .far,.list.list-icons.list-icons-lg.list-icons-style-3 li .fal,.list.list-icons.list-icons-lg.list-icons-style-3 li .fab{width:30px;height:30px;padding:4px}.list.list-icons.list-icons-reverse li{text-align:right;padding-right:25px;padding-left:0}.list.list-icons.list-icons-reverse li .fa,.list.list-icons.list-icons-reverse li .fas,.list.list-icons.list-icons-reverse li .far,.list.list-icons.list-icons-reverse li .fal,.list.list-icons.list-icons-reverse li .fab{position:absolute;left:auto;right:0;top:5px}.list.list-icons.list-icons-reverse.list-icons-style-2 li{padding-right:36px}.list.list-icons.list-icons-reverse.list-icons-style-3 li{padding-right:36px}.list.list-icons.list-icons-reverse.list-icons-sm li{padding-left:0;padding-right:13px}.list.list-icons.list-icons-reverse.list-icons-sm.list-icons-style-2 li{padding-right:32px}.list.list-icons.list-icons-reverse.list-icons-sm.list-icons-style-3 li{padding-right:32px}.list.list-icons.list-icons-reverse.list-icons-lg li{padding-left:0;padding-right:32px}.list.list-icons.list-icons-reverse.list-icons-lg.list-icons-style-2 li{padding-right:42px}.list.list-icons.list-icons-reverse.list-icons-lg.list-icons-style-3 li{padding-right:42px}.list.list-borders li{border-bottom:1px solid #dbdbdb;margin-top:9px;margin-bottom:0;padding-bottom:9px}.list.list-borders li:last-child{border-bottom:0}.list.list-side-borders{border-left:1px solid #dbdbdb;padding-left:10px}.list.list-ordened{counter-reset:custom-counter;list-style:none}.list.list-ordened li{position:relative;padding-left:22px}.list.list-ordened li:before{position:absolute;top:0;left:0;content:counter(custom-counter);counter-increment:custom-counter;font-weight:bold}.list.list-ordened.list-ordened-style-2 li,.list.list-ordened.list-ordened-style-3 li{padding-left:32px}.list.list-ordened.list-ordened-style-2 li:before,.list.list-ordened.list-ordened-style-3 li:before{border-radius:100%;border-style:solid;border-width:1px;min-width:26px;padding:0;text-align:center}.list.list-ordened.list-ordened-style-3 li:before{color:#fff;border:0}.list.list-unstyled{padding-left:0;padding-right:0}dl dd{margin-bottom:15px}ul.sitemap>li>a{font-weight:bold}ul.sitemap.list li{margin:0 0 3px 0}ul.sitemap.list ul{margin-bottom:5px;margin-top:5px}.accordion .card{margin-top:5px}.accordion .card:first-child{margin-top:0}.accordion .card.card-default:nth-of-type(n){border-bottom:1px solid rgba(0,0,0,.125);border-radius:.25rem}.accordion .card.card-default:nth-of-type(n) .card-header{padding:0;border-radius:.25rem;border-bottom:0;margin:-1px}.accordion .card-title{font-size:16px;margin:0}.accordion .card-header a{display:block;padding:10px 20px}.accordion .card-header a:hover,.accordion .card-header a:focus{text-decoration:none}.accordion .card-header a .fa,.accordion .card-header a .fas,.accordion .card-header a .far,.accordion .card-header a .fal,.accordion .card-header a .fab{display:inline-block;margin-right:5px;position:relative;top:-1px}.accordion.accordion-sm .card-header a{padding:5px 15px;font-size:.9em}.accordion.accordion-sm .card-body{font-size:.9em}.accordion.accordion-lg .card-header a{padding:15px 15px;font-size:1em;font-weight:600}.accordion.without-bg .card-default,.accordion.without-bg .card-default>.card-header{background:transparent !important}.accordion.without-bg .card-body{padding-top:0;padding-bottom:0}.accordion.without-borders .card{border:0;-webkit-box-shadow:none;box-shadow:none;border-bottom:1px solid #ddd;border-radius:0}.accordion.without-borders .card-header a{padding-left:0;padding-right:0}.accordion.without-borders .card-body{padding:0}.panel-group .panel-heading{padding:0;border-radius:3px}.panel-group .panel-heading a{display:block;padding:10px 15px}.panel-group .panel-heading a:hover,.panel-group .panel-heading a:focus{text-decoration:none}.panel-group .panel-heading a [class^="icon-"]{margin-right:4px;position:relative;top:1px}.panel-group .panel-heading a .fa,.panel-group .panel-heading a .fas,.panel-group .panel-heading a .far,.panel-group .panel-heading a .fal,.panel-group .panel-heading a .fab{display:inline-block;margin-right:5px;position:relative;top:-1px}.panel-group.panel-group-sm .panel-heading a{padding:5px 15px;font-size:.9em}.panel-group.panel-group-sm .panel-body{font-size:.9em}.panel-group.panel-group-lg .panel-heading a{padding:15px 15px;font-size:1em;font-weight:600}.panel-group.without-bg .panel-default,.panel-group.without-bg .panel-default>.panel-heading{background:transparent !important}.panel-group.without-bg .panel-body{padding-top:0;padding-bottom:0}.panel-group.without-borders .panel{border:0;box-shadow:none;border-bottom:1px solid #ddd;border-radius:0}.panel-group.without-borders .panel-heading a{padding-left:0;padding-right:0}.panel-group.without-borders .panel-body{padding:0}.tabs{border-radius:4px;margin-bottom:20px}.nav-tabs{margin:0;padding:0;font-size:0;border-bottom-color:#eee}.nav-tabs li{display:inline-block;float:none;position:relative}.nav-tabs li:last-child a{margin-right:0}.nav-tabs li a{border-radius:5px 5px 0 0;font-size:14px;margin-right:1px}.nav-tabs li a,.nav-tabs li a:hover{background:#f4f4f4;border-bottom:none;border-left:1px solid #eee;border-right:1px solid #eee;border-top:3px solid #eee;color:#ccc}.nav-tabs li a:hover{border-bottom-color:transparent;border-top:3px solid #ccc;box-shadow:none}.nav-tabs li a:active,.nav-tabs li a:focus{border-bottom:0}.nav-tabs li.active a,.nav-tabs li.active a:hover,.nav-tabs li.active a:focus{background:#fff;border-left-color:#eee;border-right-color:#eee;border-top:3px solid #ccc;color:#ccc}.nav-tabs li .nav-link{border-radius:5px 5px 0 0;font-size:14px;margin-right:1px}.nav-tabs li .nav-link{background:#f4f4f4;border-bottom:none;border-left:1px solid #eee;border-right:1px solid #eee;border-top:3px solid #eee;color:#ccc}.tab-content{border-radius:0 0 4px 4px;box-shadow:0 1px 5px 0 rgba(0,0,0,.04);background-color:#fff;border:1px solid #eee;border-top:0;padding:15px}.nav-tabs.nav-right,.nav-tabs.text-right{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important}.tabs.tabs-bottom{margin:0 0 20px 0;padding:0}.tabs.tabs-bottom .tab-content{border-radius:4px 4px 0 0;border-bottom:0;border-top:1px solid #eee}.tabs.tabs-bottom .nav-tabs{border-bottom:none;border-top:1px solid #eee}.tabs.tabs-bottom .nav-tabs li{margin-bottom:0;margin-top:-1px}.tabs.tabs-bottom .nav-tabs li:last-child a{margin-right:0}.tabs.tabs-bottom .nav-tabs li a{border-radius:0 0 5px 5px;font-size:14px;margin-right:1px}.tabs.tabs-bottom .nav-tabs li a,.tabs.tabs-bottom .nav-tabs li a:hover{border-bottom:3px solid #eee;border-top:1px solid #eee}.tabs.tabs-bottom .nav-tabs li a:hover{border-bottom:3px solid #ccc;border-top:1px solid #eee}.tabs.tabs-bottom .nav-tabs li.active a,.tabs.tabs-bottom .nav-tabs li.active a:hover,.tabs.tabs-bottom .nav-tabs li.active a:focus{border-bottom:3px solid #ccc;border-top-color:transparent}.tabs-vertical{display:table;width:100%;padding:0;border-top:1px solid #eee}.tabs-vertical .tab-content{display:table-cell;vertical-align:top}.tabs-vertical .nav-tabs{border-bottom:none;display:table-cell;height:100%;float:none;padding:0;vertical-align:top;width:25%}.tabs-vertical .nav-tabs>li{display:block}.tabs-vertical .nav-tabs>li a{border-radius:0;display:block;padding-top:10px}.tabs-vertical .nav-tabs>li a,.tabs-vertical .nav-tabs>li a:hover,.tabs-vertical .nav-tabs>li a:focus{border-bottom:none;border-top:none}.tabs-vertical .nav-tabs>li.active a,.tabs-vertical .nav-tabs>li.active a:hover,.tabs-vertical .nav-tabs>li.active:focus{border-top:none}.tabs-left{padding:0}.tabs-left .tab-content{border-radius:0 5px 5px 5px;border-left:none}.tabs-left .nav-tabs>li{margin-right:-1px}.tabs-left .nav-tabs>li:first-child a{border-radius:5px 0 0 0}.tabs-left .nav-tabs>li:last-child a{border-radius:0 0 0 5px;border-bottom:1px solid #eee}.tabs-left .nav-tabs>li a{border-right:1px solid #eee;border-left:3px solid #eee;margin-right:1px;margin-left:-3px}.tabs-left .nav-tabs>li a:hover{border-left-color:#ccc}.tabs-left .nav-tabs>li.active a,.tabs-left .nav-tabs>li.active a:hover,.tabs-left .nav-tabs>li.active a:focus{border-left:3px solid #ccc;border-right-color:#fff}.tabs-right{padding:0}.tabs-right .tab-content{border-radius:5px 0 5px 5px;border-right:none}.tabs-right .nav-tabs>li{margin-left:-1px}.tabs-right .nav-tabs>li:first-child a{border-radius:0 5px 0 0}.tabs-right .nav-tabs>li:last-child a{border-radius:0 0 5px 0;border-bottom:1px solid #eee}.tabs-right .nav-tabs>li a{border-right:3px solid #eee;border-left:1px solid #eee;margin-right:1px;margin-left:1px}.tabs-right .nav-tabs>li a:hover{border-right-color:#ccc}.tabs-right .nav-tabs>li.active a,.tabs-right .nav-tabs>li.active a:hover,.tabs-right .nav-tabs>li.active a:focus{border-right:3px solid #ccc;border-left:1px solid #fff}.nav-tabs.nav-justified{padding:0;margin-bottom:-1px;-ms-flex-direction:row !important;flex-direction:row !important}.nav-tabs.nav-justified li{margin-bottom:0;-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.nav-tabs.nav-justified li:first-child a,.nav-tabs.nav-justified li:first-child a:hover{border-radius:5px 0 0 0}.nav-tabs.nav-justified li:last-child a,.nav-tabs.nav-justified li:last-child a:hover{border-radius:0 5px 0 0}.nav-tabs.nav-justified li a{border-bottom:1px solid #ddd;border-radius:0;margin-right:0}.nav-tabs.nav-justified li a:hover,.nav-tabs.nav-justified li a:focus{border-bottom:1px solid #ddd}.nav-tabs.nav-justified li.active a,.nav-tabs.nav-justified li.active a:hover,.nav-tabs.nav-justified li.active a:focus{background:#fff;border-left-color:#eee;border-right-color:#eee}.nav-tabs.nav-justified li.active a{border-bottom:1px solid #fff}.nav-tabs.nav-justified li.active a:hover{border-bottom:1px solid #fff}.tabs.tabs-bottom{padding:0}.tabs.tabs-bottom .nav.nav-tabs.nav-justified{border-top:none}.tabs.tabs-bottom .nav.nav-tabs.nav-justified li a{margin-right:0;border-top-color:transparent}.tabs.tabs-bottom .nav.nav-tabs.nav-justified li:first-child a{border-radius:0 0 0 5px}.tabs.tabs-bottom .nav.nav-tabs.nav-justified li:last-child a{margin-right:0;border-radius:0 0 5px 0}.tabs.tabs-bottom .nav.nav-tabs.nav-justified li.active a,.tabs.tabs-bottom .nav.nav-tabs.nav-justified li.active a:hover,.tabs.tabs-bottom .nav.nav-tabs.nav-justified li.active a:focus{border-top-color:transparent}.tabs-center .nav-tabs{text-align:center;-webkit-box-pack:center !important;-ms-flex-pack:center !important;justify-content:center !important}.tabs-navigation{border-radius:5px}.tabs-navigation .nav-tabs>li{margin-bottom:1px}.tabs-navigation .nav-tabs>li a{color:#777;padding:14px;line-height:120%}.tabs-navigation .nav-tabs>li a:before{font-family:"Font Awesome 5 Free";content:"";position:absolute;right:15px;top:15px}.tabs-navigation .nav-tabs>li a .fa,.tabs-navigation .nav-tabs>li a .fas,.tabs-navigation .nav-tabs>li a .far,.tabs-navigation .nav-tabs>li a .fal,.tabs-navigation .nav-tabs>li a .fab{margin-right:4px}.tabs-navigation .nav-tabs>li:first-child a{border-radius:5px 5px 0 0}.tabs-navigation .nav-tabs>li.active a,.tabs-navigation .nav-tabs>li.active a:hover,.tabs-navigation .nav-tabs>li.active a:focus{border-right-color:#eee}.tabs-navigation .nav-tabs>li:last-child a{border-radius:0 0 5px 5px}.tab-pane-navigation{display:none}.tab-pane-navigation.active{display:block}.tabs.tabs-simple .nav-tabs{border:0;margin-bottom:10px}.tabs.tabs-simple .nav-tabs>li{margin-left:0;margin-bottom:20px}.tabs.tabs-simple .nav-tabs>li a,.tabs.tabs-simple .nav-tabs>li a:hover,.tabs.tabs-simple .nav-tabs>li a:focus{padding:15px 30px;background:none;border:0;border-bottom:3px solid #eee;border-radius:0;color:#777;font-size:16px}.tabs.tabs-simple .tab-content{border:0;padding:0;margin:0;box-shadow:none}@media(max-width:479px){.tabs .nav.nav-tabs.nav-justified li{display:block;margin-bottom:-5px}.tabs .nav.nav-tabs.nav-justified li a{border-top-width:3px !important;border-bottom-width:0 !important}.tabs .nav.nav-tabs.nav-justified li:first-child a,.tabs .nav.nav-tabs.nav-justified li:first-child a:hover{border-radius:5px 5px 0 0}.tabs .nav.nav-tabs.nav-justified li:last-child a,.tabs .nav.nav-tabs.nav-justified li:last-child a:hover{border-radius:0}.tabs.tabs-bottom .nav.nav-tabs.nav-justified li{margin-bottom:0;margin-top:-5px}.tabs.tabs-bottom .nav.nav-tabs.nav-justified li a{border-bottom-width:3px !important;border-top-width:0 !important}.tabs.tabs-bottom .nav.nav-tabs.nav-justified li:first-child a,.tabs.tabs-bottom .nav.nav-tabs.nav-justified li:first-child a:hover{border-radius:0}.tabs.tabs-bottom .nav.nav-tabs.nav-justified li:last-child a,.tabs.tabs-bottom .nav.nav-tabs.nav-justified li:last-child a:hover{border-radius:0 0 5px 5px}}.tabs-navigation .nav-tabs>li{font-weight:bold}.toggle{margin:10px 0 20px;position:relative;clear:both}.toggle .toggle{margin:10px 0 0}.toggle>input{cursor:pointer;filter:alpha(opacity=0);height:45px;margin:0;opacity:0;position:absolute;width:100%;z-index:2}.toggle>label,.toggle>.toggle-heading{-webkit-transition:all .15s ease-out;-moz-transition:all .15s ease-out;transition:all .15s ease-out;background:#f4f4f4;border-left:3px solid #ccc;border-radius:5px;color:#ccc;display:block;font-size:1.1em;min-height:20px;padding:12px 20px 12px 10px;position:relative;cursor:pointer;font-weight:400;width:100%;text-align:left;border-top:0;border-bottom:0;border-right:0;outline:none}.toggle>label:-moz-selection,.toggle>.toggle-heading:-moz-selection{background:none}.toggle>label em.fa-minus,.toggle>.toggle-heading em.fa-minus{display:none}.toggle>label em.fa-plus,.toggle>.toggle-heading em.fa-plus{display:inline}.toggle>label:selection,.toggle>.toggle-heading:selection{background:none}.toggle>label:before,.toggle>.toggle-heading:before{border:6px solid transparent;border-left-color:inherit;content:'';margin-top:-6px;position:absolute;right:4px;top:50%}.toggle>label:hover,.toggle>.toggle-heading:hover{background:#f5f5f5}.toggle>label+p,.toggle>.toggle-heading+p{color:#999;display:block;overflow:hidden;padding-left:30px;text-overflow:ellipsis;white-space:nowrap;height:25px}.toggle>label i,.toggle>label em,.toggle>.toggle-heading i,.toggle>.toggle-heading em{font-size:.7em;margin-right:8px;position:relative;top:-1px}.toggle>.toggle-content{display:none}.toggle>.toggle-content>p{margin-bottom:0;padding:10px 0}.toggle.active i.fa-minus,.toggle.active em.fa-minus{display:inline}.toggle.active i.fa-plus,.toggle.active em.fa-plus{display:none}.toggle.active>label,.toggle.active>.toggle-heading{background:#f4f4f4;border-color:#ccc}.toggle.active>label:before,.toggle.active>.toggle-heading:before{border:6px solid transparent;border-top-color:#fff;margin-top:-3px;right:10px}.toggle.active>p{white-space:normal}.toggle>p.preview-active{height:auto;white-space:normal}.toggle.toggle-sm .toggle>label,.toggle.toggle-sm .toggle>.toggle-heading{font-size:.9em;padding:6px 20px 6px 10px}.toggle.toggle-sm .toggle>.toggle-content>p{font-size:.9em}.toggle.toggle-lg .toggle>label,.toggle.toggle-lg .toggle>.toggle-heading{font-size:1.1em;padding:16px 20px 16px 20px}.toggle.toggle-lg .toggle>.toggle-content>p{font-size:1.1em}.toggle.toggle-simple .toggle>label,.toggle.toggle-simple .toggle>.toggle-heading{border-radius:0;border:0;background:transparent;color:#777;padding-left:32px;margin-bottom:-10px;font-size:1em;font-weight:600;color:#1d2127}.toggle.toggle-simple .toggle>label:after,.toggle.toggle-simple .toggle>.toggle-heading:after{content:'';position:absolute;left:0;display:block;width:24px;height:24px;background:#ccc;top:50%;margin-top:-12px;border-radius:3px;z-index:1}.toggle.toggle-simple .toggle>label:before,.toggle.toggle-simple .toggle>.toggle-heading:before{border:0;left:7px;right:auto;margin-top:-10px;top:50%;font-family:"Font Awesome 5 Free";content:"";z-index:2;color:#fff;font-size:13px}.toggle.toggle-simple .toggle.active>label,.toggle.toggle-simple .toggle.active>.toggle-heading{background:transparent;color:#1d2127}.toggle.toggle-simple .toggle.active>label:before,.toggle.toggle-simple .toggle.active>.toggle-heading:before{content:""}.toggle.toggle-simple .toggle>label,.toggle.toggle-simple .toggle>.toggle-heading{font-weight:bold}.popup-inline-content{background:none repeat scroll 0 0 #fff;margin:40px auto;max-width:1170px;padding:20px 30px;position:relative;text-align:left;display:none}.mfp-wrap .popup-inline-content{display:block}.dialog{background:#fff;padding:20px 30px;text-align:left;margin:40px auto;position:relative;max-width:600px}.dialog.dialog-xs{max-width:200px}.dialog.dialog-sm{max-width:400px}.dialog.dialog-md{max-width:600px}.dialog.dialog-lg{max-width:900px}.white-popup-block{background:#fff;padding:20px 30px;text-align:left;max-width:600px;margin:40px auto;position:relative}.white-popup-block.white-popup-block-xs{max-width:200px}.white-popup-block.white-popup-block-sm{max-width:400px}.white-popup-block.white-popup-block-md{max-width:600px}.white-popup-block.white-popup-block-lg{max-width:900px}body.lightbox-opened.sticky-menu-active header{padding-right:17px}.pull-left{float:left !important}.pull-right{float:right !important}.push-bottom{margin-bottom:35px}.push-top{margin-top:35px}.align-center,.center{text-align:center !important}.align-left{text-align:left !important}.align-right{text-align:right !important}.bold{font-weight:bold}.inverted{color:#fff;display:inline-block;padding-left:10px;padding-right:10px}h1 .inverted{padding-left:10px;padding-right:10px}h2 .inverted{padding-left:7px;padding-right:7px}h3 .inverted{padding-left:2px;padding-right:2px}h4 .inverted{padding-left:4px;padding-right:4px}h5 .inverted{padding-left:2px;padding-right:2px}h6 .inverted{padding-left:2px;padding-right:2px}.cur-pointer{cursor:pointer}.clearfix{display:inline-block}.clearfix:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}html[xmlns] .clearfix{display:block}* html .clearfix{height:1%}.pagination>li>a,.pagination>li>span,.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{color:#ccc}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{background-color:#ccc;border-color:#ccc}.read-more,.learn-more{display:inline-block;white-space:nowrap}.offset-anchor{display:block;position:relative;visibility:hidden;top:-100px}@media(max-width:991px){.offset-anchor{top:0}}.show-grid [class*="col-md-"] .show-grid-block{background-color:#eee;line-height:40px;min-height:40px;text-align:center;border:1px solid #fff;display:block}.alert-admin{margin:25px 0}.alert-admin img{margin:-50px 0 0}.alert-admin .btn{margin:0 0 -15px}.alert-admin p{color:#444}.alert-admin h4{color:#111;font-size:1.2em;font-weight:600;text-transform:uppercase}.alert-admin .warning{color:#b20000}.alert .fa,.alert .fas,.alert .far,.alert .fal,.alert .fab{margin-right:8px;font-size:1.1em}.alert ul{padding:0;margin:7px 0 0 40px}.alert ul li{font-size:.9em}.alert.alert-sm{padding:5px 10px;font-size:.9em}.alert.alert-lg{padding:20px;font-size:1.2em}.alert.alert-default{background-color:#f2f2f2;border-color:#eaeaea;color:#727272}.alert.alert-default .alert-link{color:#4c4c4c}.alert.alert-dark{background-color:#333a44;border-color:#07080a;color:#ced3db}.alert.alert-dark .alert-link{color:#fafbfb}.embed-responsive.embed-soundcloud{padding-bottom:19.25%}.embed-responsive.embed-responsive-borders{border:1px solid #ddd;padding:4px;border-radius:4px}.content-grid{overflow:hidden;margin:0;padding:0}.content-grid .content-grid-item{position:relative;padding:30px;margin:0}.content-grid .content-grid-item:before,.content-grid .content-grid-item:after{content:'';position:absolute}.content-grid .content-grid-item:before{height:100%;top:0;left:-1px;border-left:1px solid #dadada}.content-grid .content-grid-item:after{width:100%;height:0;top:auto;left:0;bottom:-1px;border-bottom:1px solid #dadada}.content-grid .content-grid-item .img-responsive{display:inline-block}.content-grid.content-grid-dashed .content-grid-item:before{border-left:1px dashed #dadada}.content-grid.content-grid-dashed .content-grid-item:after{border-bottom:1px dashed #dadada}hr{background-image:-webkit-linear-gradient(left,transparent,#dbdbdb,transparent);background-image:linear-gradient(to right,transparent,#dbdbdb,transparent);border:0;height:1px;margin:22px 0}hr.short{margin:11px 0}hr.tall{margin:44px 0}hr.taller{margin:66px 0}hr.solid{background:#dbdbdb}hr.light{background-image:-webkit-linear-gradient(left,transparent,rgba(255,255,255,.15),transparent);background-image:linear-gradient(to right,transparent,rgba(255,255,255,.15),transparent)}hr.invisible{background:none}.divider{border:0;height:1px;margin:44px auto;background-image:-webkit-linear-gradient(left,transparent,#dbdbdb,transparent);background-image:linear-gradient(to right,transparent,#dbdbdb,transparent);text-align:center;position:relative;clear:both}.divider.taller{margin:66px auto}.divider .fa,.divider .fas,.divider .far,.divider .fal,.divider .fab,.divider .icons{text-align:center;-moz-border-radius:50px;-webkit-border-radius:50px;background:#fff;border-radius:50px;color:#a9a9a9;display:inline-block;height:50px;line-height:50px;position:absolute;text-align:center;width:50px;font-size:20px;margin:0 auto 0 -25px;top:-25px;left:50%;z-index:1}.divider.divider-solid{background:#dbdbdb}.divider.divider-icon-sm .fa,.divider.divider-icon-sm .fas,.divider.divider-icon-sm .far,.divider.divider-icon-sm .fal,.divider.divider-icon-sm .fab,.divider.divider-icon-sm .icons{width:30px;height:30px;line-height:30px;top:-15px;font-size:15px;margin-left:-16px}.divider.divider-icon-lg{margin:86px 0}.divider.divider-icon-lg .fa,.divider.divider-icon-lg .fas,.divider.divider-icon-lg .far,.divider.divider-icon-lg .fal,.divider.divider-icon-lg .fab,.divider.divider-icon-lg .icons{width:60px;height:60px;line-height:60px;top:-30px;font-size:30px;margin-left:-30px}.divider.divider-icon-lg.taller{margin:100px auto}.divider.divider-xs{width:35%}.divider.divider-sm{width:67%}.divider.divider-left .fa,.divider.divider-left .fas,.divider.divider-left .far,.divider.divider-left .fal,.divider.divider-left .fab,.divider.divider-left .icons{left:0;margin-left:0;margin-right:0;right:auto}.divider.divider-right .fa,.divider.divider-right .fas,.divider.divider-right .far,.divider.divider-right .fal,.divider.divider-right .fab,.divider.divider-right .icons{left:auto;margin-left:0;margin-right:0;right:0}.divider.divider-style-2 .fa,.divider.divider-style-2 .fas,.divider.divider-style-2 .far,.divider.divider-style-2 .fal,.divider.divider-style-2 .fab,.divider.divider-style-2 .icons{background:#f4f4f4;color:#a9a9a9}.divider.divider-style-3 .fa,.divider.divider-style-3 .fas,.divider.divider-style-3 .far,.divider.divider-style-3 .fal,.divider.divider-style-3 .fab,.divider.divider-style-3 .icons{border:1px solid #cecece}.divider.divider-style-4 .fa,.divider.divider-style-4 .fas,.divider.divider-style-4 .far,.divider.divider-style-4 .fal,.divider.divider-style-4 .fab,.divider.divider-style-4 .icons{border:1px solid #cecece}.divider.divider-style-4 .fa:after,.divider.divider-style-4 .fas:after,.divider.divider-style-4 .far:after,.divider.divider-style-4 .fal:after,.divider.divider-style-4 .fab:after,.divider.divider-style-4 .icons:after{border:3px solid #f4f4f4;border-radius:50%;box-sizing:initial;content:"";display:block;height:100%;left:-4px;padding:1px;position:absolute;top:-4px;width:100%}.divider.divider-small{margin:22px auto;background:transparent}.divider.divider-small hr{width:50px;height:3px;background:#555}.divider.divider-small.divider-small-center{text-align:center}.divider.divider-small.divider-small-center hr{margin-left:auto;margin-right:auto}.divider.divider-small.divider-small-right{text-align:right}.divider.divider-small.divider-small-right hr{margin-left:auto}.divider.divider-small.divider-light hr{background:#ddd}.divider.divider-small.divider-small-sm hr{height:1px}.divider.divider-small.divider-small-lg hr{height:6px}.divider.divider-small.tall{margin:34px 0}.divider.divider-small.taller{margin:46px 0}hr.dashed,.divider.dashed{background:none;position:relative}hr.dashed:after,.divider.dashed:after{border:1px dashed #dbdbdb;content:"";display:block;height:0;position:absolute;top:50%;margin-top:-1px;width:100%}hr.pattern,.divider.pattern{background:none;position:relative}hr.pattern:after,.divider.pattern:after{background:transparent url("/Portals/_default/skins/porto/Resources/img/patterns/worn_dots.png") repeat 0 0;content:"";display:block;height:15px;position:absolute;top:50%;margin-top:-7px;width:100%}hr.pattern.pattern-2:after,.divider.pattern.pattern-2:after{background-image:url("/Portals/_default/skins/porto/Resources/img/patterns/az_subtle.png")}.sort-source-wrapper{padding:8px 0;position:relative}.sort-source-wrapper .nav{margin:-100px 0 5px}.sort-source-wrapper .nav>li>a{color:#fff;background:transparent}.sort-source-wrapper .nav>li>a:hover,.sort-source-wrapper .nav>li>a:focus{background:transparent}.sort-source-wrapper .nav>li.active>a{background:transparent}.sort-source-wrapper .nav>li.active>a:hover,.sort-source-wrapper .nav>li.active>a:focus{background:transparent}.sort-source{clear:both}.sort-destination{overflow:hidden}.sort-destination.full-width{position:relative}.sort-destination.full-width .isotope-item{width:20%;float:left}.sort-destination.full-width .isotope-item.w2{width:40%}.sort-destination.full-width .isotope-item .img-thumbnail,.sort-destination.full-width .isotope-item a,.sort-destination.full-width .isotope-item .thumb-info img{border-radius:0}.sort-source-wrapper+.sort-destination.full-width{margin:0 0 -81px;top:-51px}@media(max-width:991px){.sort-destination.isotope{overflow:visible !important;height:auto !important}.sort-destination.isotope.full-width{overflow:hidden !important}.isotope-hidden{display:none !important}}@media(max-width:767px){.isotope-item{position:static !important;text-align:center;width:100%;margin-left:auto;margin-right:auto;-moz-transform:none !important;-ms-transform:none !important;-o-transform:none !important;-webkit-transform:none !important;transform:none !important}.isotope-item.product{position:relative !important}.sort-source-wrapper{background:#171717;clear:both;margin-top:-35px}.sort-source-wrapper .nav{margin:0}.sort-destination{height:auto !important}.sort-destination,.isotope-item{margin-left:auto !important;margin-right:auto !important}.sort-destination.full-width,.sort-source-wrapper+.sort-destination.full-width{max-width:none;margin:0 0 -30px;top:0}.sort-destination.full-width .isotope-item,.sort-source-wrapper+.sort-destination.full-width .isotope-item{max-width:none}}@media(max-width:479px){.sort-destination,.isotope-item{margin-left:auto !important;margin-right:auto !important}.sort-destination.full-width .isotope-item,.sort-source-wrapper+.sort-destination.full-width .isotope-item{position:static !important;clear:both;float:none;width:auto}}.pricing-table{margin:10px 0;padding:0 15px;text-align:center}.pricing-table ul{list-style:none;margin:20px 0 0 0;padding:0}.pricing-table li{border-top:1px solid #ddd;padding:10px 0;color:#777}.pricing-table h3{background-color:#eee;border-radius:2px 2px 0 0;font-size:1.3em;font-weight:normal;margin:-20px -20px 50px -20px;padding:20px}.pricing-table h3 .desc{font-size:.7em;margin-bottom:0;padding-bottom:0;color:#777;font-style:normal;text-transform:none;display:block}.pricing-table h3 span{background:#fff;border:5px solid #fff;border-radius:100px;box-shadow:0 5px 20px #ddd inset,0 3px 0 #999 inset;color:#777;display:block;font:bold 25px/100px Georgia,Serif;height:100px;margin:20px auto -65px;width:100px}.pricing-table .most-popular{border:3px solid #ccc;box-shadow:11px 0 10px -10px rgba(0,0,0,.1),-11px 0 10px -10px rgba(0,0,0,.1);padding:30px 20px;top:-10px;z-index:2}.pricing-table .most-popular h3{background-color:#666;color:#fff;padding-top:30px;text-shadow:0 1px #555}.pricing-table .most-popular h3 .desc{color:#fff}.pricing-table .plan-ribbon-wrapper{height:88px;overflow:hidden;position:absolute;right:-3px;top:-5px;width:85px}.pricing-table .plan-ribbon{-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg);background-image:-webkit-linear-gradient(top,#bfdc7a,#8ebf45);background-image:linear-gradient(to bottom,#bfdc7a,#8ebf45);background-color:#bfdc7a;box-shadow:0 0 3px rgba(0,0,0,.3);color:#333;font-size:14px;left:-5px;padding:7px 0;position:relative;text-align:center;text-shadow:rgba(255,255,255,.5) 0 1px 0;top:15px;width:120px}.pricing-table .plan-ribbon:before{left:0;border-left:3px solid transparent;border-right:3px solid transparent;bottom:-3px;content:"";position:absolute}.pricing-table .plan-ribbon:after{border-left:3px solid transparent;border-right:3px solid transparent;bottom:-3px;content:"";position:absolute;right:0}.pricing-table [class*="col-md-"]{padding-left:0;padding-right:0}.pricing-table .plan{background:#fff;border:1px solid #ddd;border-radius:5px;color:#333;margin-bottom:35px;margin-right:0;padding:20px;position:relative;text-shadow:0 1px rgba(255,255,255,.8)}.pricing-table .btn{margin-top:5px}.pricing-table.pricing-table-sm h3 .desc{font-size:.7em}.pricing-table.pricing-table-sm h3 span{border:3px solid #fff;box-shadow:0 5px 20px #ddd inset,0 3px 0 #999 inset;font:bold 19px/65px Georgia,serif;height:70px;margin:10px auto -65px;width:70px}.pricing-table.pricing-table-sm .most-popular{padding-bottom:30px}.pricing-table.princig-table-flat .plan{padding-left:0;padding-right:0;margin:-1px}.pricing-table.princig-table-flat .plan h3{padding-left:0;padding-right:0;margin:-20px 0 0;background-color:#666;color:#fff;padding-top:30px;text-shadow:0 1px #555}.pricing-table.princig-table-flat .plan h3 .desc{color:#fff}.pricing-table.princig-table-flat .plan h3 span{border-radius:0;border:0;background:#666;color:#fff;font-family:"Open Sans",Arial,sans-serif;font-size:600;box-shadow:none;width:100%;font-size:1.5em;height:auto;line-height:38px;margin:0}.pricing-table.princig-table-flat .plan ul{margin-top:0;margin-bottom:-15px}.pricing-table.princig-table-flat .plan ul li{padding:8px 0}.pricing-table.princig-table-flat .plan.most-popular ul li{padding:10px 0}.pricing-table.spaced [class*="col-md-"]{padding-left:2px;padding-right:2px}.pricing-table.no-borders .plan{border:0 !important}html.boxed .pricing-table .plan,html.boxed .pricing-table h3{border-radius:0}@media(max-width:767px){.pricing-table{margin-left:0}.pricing-table .plan{margin-right:0}html.boxed .pricing-table{margin-left:0}}.icon-featured{display:inline-block;font-size:0;margin:15px;width:110px;height:110px;border-radius:50%;text-align:center;position:relative;z-index:1;color:#fff;font-size:40px;line-height:110px}.icon-featured:after{pointer-events:none;position:absolute;width:100%;height:100%;border-radius:50%;content:'';-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.featured-box{background:#f5f5f5;background-color:transparent;background:-webkit-linear-gradient(top,#fff 1%,#fcfcfc 98%) repeat scroll 0 0 transparent;background:linear-gradient(to bottom,#fff 1%,#fcfcfc 98%) repeat scroll 0 0 transparent;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border-bottom:1px solid #dfdfdf;border-left:1px solid #ececec;border-radius:8px;border-right:1px solid #ececec;box-shadow:0 1px 1px 0 rgba(0,0,0,.04);margin-bottom:20px;margin-left:auto;margin-right:auto;margin-top:20px;min-height:100px;position:relative;text-align:center;z-index:1}.featured-box h4{font-size:1.3em;font-weight:400;letter-spacing:-.7px;margin-top:5px;margin-bottom:5px}.featured-box .box-content{border-radius:8px;border-top:1px solid #ccc;border-top-width:4px;padding:30px 30px 10px 30px;position:relative;top:-1px}.featured-box .learn-more{display:block;margin-top:10px}.featured-box-text-left{text-align:left}.featured-boxes-flat .featured-box{box-shadow:none;margin:10px 0}.featured-boxes-flat .featured-box .box-content{background:#fff;margin-top:65px}.featured-boxes-flat .featured-box .icon-featured{display:inline-block;font-size:38px;height:90px;line-height:90px;padding:0;width:90px;margin:-100px 0 -15px;position:relative;top:-37px}.featured-boxes-style-2 .featured-box{background:none;border:0;margin:10px 0;box-shadow:none}.featured-boxes-style-2 .featured-box .box-content{border:0;padding-top:0;padding-bottom:0}.featured-boxes-style-2 .featured-box .icon-featured{display:inline-block;font-size:30px;height:75px;line-height:75px;padding:0;width:75px;margin-top:0}.featured-boxes-style-3 .featured-box{margin:10px 0}.featured-boxes-style-3 .featured-box .icon-featured{display:inline-block;font-size:30px;height:75px;line-height:75px;padding:0;width:75px;margin-top:-35px;background:#fff;border:3px solid #ccc;color:#ccc;line-height:68px}.featured-boxes-style-3:not(.featured-boxes-flat) .featured-box{background:none;border:0;box-shadow:none}.featured-boxes-style-3:not(.featured-boxes-flat) .featured-box .box-content{border:0;padding-top:0;padding-bottom:0}.featured-boxes-style-4 .featured-box{background:none;border:0;margin:10px 0;box-shadow:none}.featured-boxes-style-4 .featured-box .box-content{border:0;padding-top:0;padding-bottom:0}.featured-boxes-style-4 .featured-box .icon-featured{display:inline-block;font-size:40px;height:45px;line-height:45px;padding:0;width:45px;margin-top:0;margin-bottom:10px;background:transparent;color:#ccc;border-radius:0}.featured-boxes-style-5 .featured-box,.featured-boxes-style-6 .featured-box,.featured-boxes-style-7 .featured-box{background:none;border:0;box-shadow:none;margin:10px 0}.featured-boxes-style-5 .featured-box .box-content,.featured-boxes-style-6 .featured-box .box-content,.featured-boxes-style-7 .featured-box .box-content{border:0;padding-top:0;padding-bottom:0}.featured-boxes-style-5 .featured-box .box-content h4,.featured-boxes-style-6 .featured-box .box-content h4,.featured-boxes-style-7 .featured-box .box-content h4{color:#2e353e}.featured-boxes-style-5 .featured-box .icon-featured,.featured-boxes-style-6 .featured-box .icon-featured,.featured-boxes-style-7 .featured-box .icon-featured{display:inline-block;font-size:30px;height:75px;padding:0;width:75px;margin-top:0;margin-bottom:10px;background:#fff;border:1px solid #dfdfdf;color:#777;line-height:73px}.featured-boxes-style-6 .featured-box .icon-featured{border:1px solid #cecece;color:#777}.featured-boxes-style-6 .featured-box .icon-featured:after{border:5px solid #f4f4f4;border-radius:50%;box-sizing:initial;content:"";display:block;height:100%;left:-6px;padding:1px;position:absolute;top:-6px;width:100%}.featured-boxes-style-7 .featured-box .icon-featured{border:1px solid #dfdfdf;color:#777}.featured-boxes-style-8 .featured-box .icon-featured{display:inline-block;font-size:30px;height:75px;padding:0;width:75px;margin:-15px -15px 0 0;background:#fff;line-height:73px;border:0;color:#777}.featured-boxes-style-8 .featured-box .icon-featured:after{display:none}.featured-boxes .featured-box{margin-bottom:30px;margin-top:45px}.featured-box-effect-1 .icon-featured:after{top:-7px;left:-7px;padding:7px;box-shadow:0 0 0 3px #fff;-webkit-transition:-webkit-transform .2s,opacity .2s;-webkit-transform:scale(1);-moz-transition:-moz-transform .2s,opacity .2s;-moz-transform:scale(1);-ms-transform:scale(1);transition:transform .2s,opacity .2s;transform:scale(1);opacity:0}.featured-box-effect-1:hover .icon-featured:after{-webkit-transform:scale(.8);-moz-transform:scale(.8);-ms-transform:scale(.8);transform:scale(.8);opacity:1}.featured-box-effect-2 .icon-featured:after{top:-7px;left:-7px;padding:7px;box-shadow:0 0 0 3px #fff;-webkit-transition:-webkit-transform .2s,opacity .2s;-webkit-transform:scale(.8);-moz-transition:-moz-transform .2s,opacity .2s;-moz-transform:scale(.8);-ms-transform:scale(.8);transition:transform .2s,opacity .2s;transform:scale(.8);opacity:0}.featured-box-effect-2:hover .icon-featured:after{-webkit-transform:scale(.95);-moz-transform:scale(.95);-ms-transform:scale(.95);transform:scale(.95);opacity:1}.featured-box-effect-3 .icon-featured:after{top:0;left:0;box-shadow:0 0 0 10px #fff;-webkit-transition:-webkit-transform .2s,opacity .2s;-webkit-transform:scale(.9);-moz-transition:-moz-transform .2s,opacity .2s;-moz-transform:scale(.9);-ms-transform:scale(.9);transition:transform .2s,opacity .2s;transform:scale(.9);opacity:0}.featured-box-effect-3:hover .icon-featured{color:#fff !important}.featured-box-effect-3:hover .icon-featured:after{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:.8}.featured-box-effect-4 .icon-featured{-webkit-transition:-webkit-transform .2s,transform .2s;-moz-transition:-moz-transform .2s,transform .2s;transition:transform .2s,transform .2s;-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.featured-box-effect-4:hover .icon-featured{-webkit-transform:scale(1.15);-moz-transform:scale(1.15);-ms-transform:scale(1.15);transform:scale(1.15)}.featured-box-effect-5 .icon-featured{overflow:hidden;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s}.featured-box-effect-5:hover .icon-featured{-webkit-animation:toRightFromLeft .3s forwards;-moz-animation:toRightFromLeft .3s forwards;animation:toRightFromLeft .3s forwards}@-webkit-keyframes toRightFromLeft{49%{-webkit-transform:translate(100%)}50%{opacity:0;-webkit-transform:translate(-100%)}51%{opacity:1}}@-moz-keyframes toRightFromLeft{49%{-moz-transform:translate(100%)}50%{opacity:0;-moz-transform:translate(-100%)}51%{opacity:1}}@keyframes toRightFromLeft{49%{transform:translate(100%)}50%{opacity:0;transform:translate(-100%)}51%{opacity:1}}.featured-box-effect-6 .icon-featured:after{-webkit-transition:all .2s,-webkit-transform .2s;-moz-transition:all .2s,-moz-transform .2s;transition:all .2s,transform .2s}.featured-box-effect-6:hover .box-content .icon-featured:after{-webkit-transform:scale(1.1);-moz-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}.featured-box-effect-7 .icon-featured:after{opacity:0;box-shadow:3px 3px #d5d5d5;-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transition:opacity .2s,-webkit-transform .2s;-moz-transition:opacity .2s,-moz-transform .2s;transition:opacity .2s,transform .2s;left:0;top:-1px}.featured-box-effect-7:hover .icon-featured:after{opacity:1;-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}.featured-box-effect-7 .icon-featured:before{-webkit-transform:scale(.8);-moz-transform:scale(.8);-ms-transform:scale(.8);transform:scale(.8);opacity:.7;-webkit-transition:-webkit-transform .2s,opacity .2s;-moz-transition:-moz-transform .2s,opacity .2s;transition:transform .2s,opacity .2s}.featured-box-effect-7:hover .icon-featured:before{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1}.featured-boxes-full>[class*="col-"]{padding:0}.featured-boxes-full .featured-box-full{text-align:center;padding:55px}.featured-boxes-full .featured-box-full .fa,.featured-boxes-full .featured-box-full .fas,.featured-boxes-full .featured-box-full .far,.featured-boxes-full .featured-box-full .fab,.featured-boxes-full .featured-box-full h1,.featured-boxes-full .featured-box-full h2,.featured-boxes-full .featured-box-full h3,.featured-boxes-full .featured-box-full h4,.featured-boxes-full .featured-box-full h5,.featured-boxes-full .featured-box-full h6,.featured-boxes-full .featured-box-full p,.featured-boxes-full .featured-box-full a{color:#fff;padding:0;margin:0}.featured-boxes-full .featured-box-full .fa,.featured-boxes-full .featured-box-full .fas,.featured-boxes-full .featured-box-full .far,.featured-boxes-full .featured-box-full .fab{font-size:55px;margin-bottom:15px;text-shadow:1px 1px 1px rgba(0,0,0,.2)}.featured-boxes-full .featured-box-full p{padding-top:12px;opacity:.8}.featured-boxes.featured-boxes-modern-style-1 .featured-box{overflow:hidden;border-radius:0}.featured-boxes.featured-boxes-modern-style-1 .featured-box .featured-box-background{position:absolute;top:0;right:0;bottom:0;left:0;transition:cubic-bezier(.39,.66,.42,.99) all 2s;transform:scale(1)}.featured-boxes.featured-boxes-modern-style-1 .featured-box:hover .featured-box-background{transform:scale(1.1)}.featured-boxes-modern-style-1.custom-image-position{position:absolute;top:0;right:100%;min-width:250px;height:100%}.featured-boxes-full{display:flex}.feature-box{clear:both}.feature-box .feature-box-icon{background:#ccc;border-radius:35px;color:#fff;display:inline-block;float:left;height:35px;line-height:35px;margin-right:10px;position:relative;text-align:center;top:5px;width:35px}.feature-box .feature-box-info{padding-left:50px}.feature-box.feature-box-style-2 h4{color:#1d2127}.feature-box.feature-box-style-2 .feature-box-icon{background:transparent;width:50px;height:50px}.feature-box.feature-box-style-2 .feature-box-icon i.fa,.feature-box.feature-box-style-2 .feature-box-icon em.fa,.feature-box.feature-box-style-2 .feature-box-icon i.fas,.feature-box.feature-box-style-2 .feature-box-icon em.fas,.feature-box.feature-box-style-2 .feature-box-icon i.far,.feature-box.feature-box-style-2 .feature-box-icon em.far,.feature-box.feature-box-style-2 .feature-box-icon i.fal,.feature-box.feature-box-style-2 .feature-box-icon em.fal,.feature-box.feature-box-style-2 .feature-box-icon i.fab,.feature-box.feature-box-style-2 .feature-box-icon em.fab,.feature-box.feature-box-style-2 .feature-box-icon i.icons,.feature-box.feature-box-style-2 .feature-box-icon em.icons{font-size:28px}.feature-box.feature-box-style-2 .feature-box-info{padding-left:60px}.feature-box.feature-box-style-3 h4{color:#1d2127}.feature-box.feature-box-style-3 .feature-box-icon{border:1px solid #ccc;background:transparent;line-height:32px}.feature-box.feature-box-style-3 .feature-box-icon i.fa,.feature-box.feature-box-style-3 .feature-box-icon em.fa,.feature-box.feature-box-style-3 .feature-box-icon i.fas,.feature-box.feature-box-style-3 .feature-box-icon em.fas,.feature-box.feature-box-style-3 .feature-box-icon i.far,.feature-box.feature-box-style-3 .feature-box-icon em.far,.feature-box.feature-box-style-3 .feature-box-icon i.fal,.feature-box.feature-box-style-3 .feature-box-icon em.fal,.feature-box.feature-box-style-3 .feature-box-icon i.fab,.feature-box.feature-box-style-3 .feature-box-icon em.fab{color:#ccc}.feature-box.feature-box-style-4 h4{color:#1d2127}.feature-box.feature-box-style-4 .feature-box-icon{background:transparent;padding-bottom:10px;height:auto;width:auto;float:none}.feature-box.feature-box-style-4 .feature-box-icon i.fa,.feature-box.feature-box-style-4 .feature-box-icon em.fa,.feature-box.feature-box-style-4 .feature-box-icon i.fas,.feature-box.feature-box-style-4 .feature-box-icon em.fas,.feature-box.feature-box-style-4 .feature-box-icon i.far,.feature-box.feature-box-style-4 .feature-box-icon em.far,.feature-box.feature-box-style-4 .feature-box-icon i.fal,.feature-box.feature-box-style-4 .feature-box-icon em.fal,.feature-box.feature-box-style-4 .feature-box-icon i.fab,.feature-box.feature-box-style-4 .feature-box-icon em.fab{font-size:38px}.feature-box.feature-box-style-4 .feature-box-info{clear:both;padding-left:0}.feature-box.feature-box-style-5 h4{color:#1d2127}.feature-box.feature-box-style-5 .feature-box-icon{background:transparent;width:74px;height:74px}.feature-box.feature-box-style-5 .feature-box-icon i.fa,.feature-box.feature-box-style-5 .feature-box-icon em.fa,.feature-box.feature-box-style-5 .feature-box-icon i.fas,.feature-box.feature-box-style-5 .feature-box-icon em.fas,.feature-box.feature-box-style-5 .feature-box-icon i.far,.feature-box.feature-box-style-5 .feature-box-icon em.far,.feature-box.feature-box-style-5 .feature-box-icon i.fal,.feature-box.feature-box-style-5 .feature-box-icon em.fal,.feature-box.feature-box-style-5 .feature-box-icon i.fab,.feature-box.feature-box-style-5 .feature-box-icon em.fab{font-size:44px}.feature-box.feature-box-style-5 .feature-box-info{padding-left:84px}.feature-box.feature-box-style-6 h4{color:#1d2127}.feature-box.feature-box-style-6 .feature-box-icon{border:1px solid #cecece;background:transparent;line-height:32px}.feature-box.feature-box-style-6 .feature-box-icon:after{border:3px solid #f4f4f4;border-radius:50%;box-sizing:initial;content:"";display:block;height:100%;left:-4px;padding:1px;position:absolute;top:-4px;width:100%}.feature-box.feature-box-style-6 .feature-box-icon i.fa,.feature-box.feature-box-style-6 .feature-box-icon em.fa,.feature-box.feature-box-style-6 .feature-box-icon i.fas,.feature-box.feature-box-style-6 .feature-box-icon em.fas,.feature-box.feature-box-style-6 .feature-box-icon i.far,.feature-box.feature-box-style-6 .feature-box-icon em.far,.feature-box.feature-box-style-6 .feature-box-icon i.fal,.feature-box.feature-box-style-6 .feature-box-icon em.fal,.feature-box.feature-box-style-6 .feature-box-icon i.fab,.feature-box.feature-box-style-6 .feature-box-icon em.fab{color:#a9a9a9}@media(min-width:991px){.feature-box.reverse{text-align:right}.feature-box.reverse .feature-box-info{padding-right:50px;padding-left:0}.feature-box.reverse .feature-box-icon{float:right;margin-right:0;margin-left:10px}.feature-box.reverse.feature-box-style-2 .feature-box-info{padding-right:60px}.feature-box.reverse.feature-box-style-4 .feature-box-info{padding-right:0}.feature-box.reverse.feature-box-style-5 .feature-box-info{padding-right:84px}}.thumb-info{display:block;position:relative;text-decoration:none;max-width:100%;background-color:#fff;border:1px solid #ddd;border-radius:4px;overflow:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.thumb-info .thumb-info-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);transform:translate3d(0,0,0);border-radius:4px;margin:4px;overflow:hidden;display:block;position:relative}.thumb-info .thumb-info-wrapper:after{content:"";background:rgba(36,27,28,.9);-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;border-radius:4px;bottom:-4px;color:#fff;left:-4px;position:absolute;right:-4px;top:-4px;display:block;filter:alpha(opacity=0);opacity:0;z-index:1}.thumb-info .thumb-info-action-icon{-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;background:#ccc;border-radius:0 0 0 25px;display:inline-block;font-size:25px;height:50px;line-height:50px;position:absolute;right:-100px;text-align:center;top:-100px;width:50px;z-index:2}.thumb-info .thumb-info-action-icon i,.thumb-info .thumb-info-action-icon em{font-size:24px;left:3px;position:relative;top:-4px;color:#fff}.thumb-info .thumb-info-inner{-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;display:block}.thumb-info .thumb-info-inner em{display:block;font-size:.8em;font-style:normal;font-weight:normal}.thumb-info .thumb-info-title{-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;background:rgba(36,27,28,.9);bottom:10%;color:#fff;font-size:18px;font-weight:700;left:0;letter-spacing:-1px;padding:9px 11px 9px;position:absolute;text-shadow:1px 1px 1px rgba(0,0,0,.2);text-transform:uppercase;z-index:2;max-width:90%}.thumb-info .thumb-info-type{background-color:#ccc;border-radius:2px;display:inline-block;float:left;font-size:12px;font-weight:400;letter-spacing:0;margin:8px -2px -15px -2px;padding:2px 9px;text-transform:none;z-index:2}.thumb-info img{-webkit-transition:all .3s ease;-moz-transition:all .3s ease;transition:all .3s ease;border-radius:3px;position:relative;width:100%}.thumb-info:hover .thumb-info-wrapper:after{filter:alpha(opacity=100);opacity:1}.thumb-info:hover .thumb-info-action-icon{right:0;top:0}.thumb-info:hover .thumb-info-title{background:#000}.thumb-info:hover img{-webkit-transform:scale(1.1,1.1);-moz-transform:scale(1.1,1.1);-ms-transform:scale(1.1,1.1);-o-transform:scale(1.1,1.1);transform:scale(1.1,1.1)}.thumb-info.thumb-info-no-zoom:hover img{-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-ms-transform:scale(1,1);-o-transform:scale(1,1);transform:scale(1,1)}.thumb-info.thumb-info-lighten .thumb-info-wrapper:after{background:rgba(36,27,28,.65)}.thumb-info.thumb-info-hide-wrapper-bg .thumb-info-wrapper:after{display:none}.thumb-info.thumb-info-centered-icons .thumb-info-action{-webkit-transition:top .1s ease;-moz-transition:top .1s ease;transition:top .1s ease;top:40%;left:3px;right:auto;bottom:auto;width:100%;height:40px;margin-top:-20px;text-align:center;position:absolute;filter:alpha(opacity=0);opacity:0}.thumb-info.thumb-info-centered-icons .thumb-info-action-icon{-webkit-transition:all .1s ease;-moz-transition:all .1s ease;transition:all .1s ease;position:relative;z-index:2;left:auto;right:auto;top:auto;bottom:auto;width:40px;height:40px;line-height:33px;border-radius:50%;margin-right:3px}.thumb-info.thumb-info-centered-icons .thumb-info-action-icon i,.thumb-info.thumb-info-centered-icons .thumb-info-action-icon em{position:static;font-size:18px}.thumb-info.thumb-info-centered-icons .thumb-info-action-icon:hover{-webkit-transform:scale(1.15,1.15);-moz-transform:scale(1.15,1.15);-ms-transform:scale(1.15,1.15);-o-transform:scale(1.15,1.15);transform:scale(1.15,1.15)}.thumb-info:hover.thumb-info-centered-icons .thumb-info-action{top:50%;filter:alpha(opacity=100);opacity:1}.thumb-info:hover.thumb-info-centered-icons .thumb-info-action-icon{position:relative}.thumb-info.thumb-info-centered-info .thumb-info-title{background:transparent;left:5%;width:90%;-webkit-transition:all .3s ease;-moz-transition:all .3s ease;transition:all .3s ease;top:30%;filter:alpha(opacity=0);opacity:0;text-align:center;padding:0}.thumb-info.thumb-info-centered-info .thumb-info-type{float:none}.thumb-info.thumb-info-centered-info:hover .thumb-info-title{filter:alpha(opacity=100);opacity:1;top:45%}.thumb-info.thumb-info-bottom-info .thumb-info-title{background:#fff;left:0;width:100%;max-width:100%;-webkit-transition:all .3s ease;-moz-transition:all .3s ease;transition:all .3s ease;top:auto;bottom:-100px;filter:alpha(opacity=0);opacity:0;padding:15px;text-shadow:none;color:#777}.thumb-info.thumb-info-bottom-info .thumb-info-type{float:none;background:none;padding:0;margin:0}.thumb-info.thumb-info-bottom-info:hover .thumb-info-title{filter:alpha(opacity=100);opacity:1;bottom:0}.thumb-info.thumb-info-bottom-info:hover img{-webkit-transform:translateY(-18px);-moz-transform:translateY(-18px);-ms-transform:translateY(-18px);-o-transform:translateY(-18px);transform:translateY(-18px)}.thumb-info.thumb-info-bottom-info-dark .thumb-info-title{background-color:transparent;background:-webkit-linear-gradient(bottom,rgba(36,27,28,.8) 0,transparent 100%) repeat scroll 0 0 transparent;background:linear-gradient(to top,rgba(36,27,28,.8) 0,transparent 100%) repeat scroll 0 0 transparent;color:#fff}.thumb-info.thumb-info-push-hor img{-webkit-transform:translatex(-18px);-moz-transform:translatex(-18px);-ms-transform:translatex(-18px);-o-transform:translatex(-18px);transform:translatex(-18px);width:calc(100% + 19px);max-width:none}.thumb-info.thumb-info-push-hor:hover img{-webkit-transform:translatex(0);-moz-transform:translatex(0);-ms-transform:translatex(0);-o-transform:translatex(0);transform:translatex(0)}.thumb-info.thumb-info-hide-info-hover .thumb-info-wrapper:after{filter:alpha(opacity=65);opacity:.65}.thumb-info.thumb-info-hide-info-hover .thumb-info-title{filter:alpha(opacity=100);opacity:1;top:40%}.thumb-info.thumb-info-hide-info-hover .thumb-info-type{float:none}.thumb-info.thumb-info-hide-info-hover:hover .thumb-info-wrapper:after{filter:alpha(opacity=10);opacity:.1}.thumb-info.thumb-info-hide-info-hover:hover .thumb-info-title{filter:alpha(opacity=0);opacity:0}.thumb-info.thumb-info-no-borders,.thumb-info.thumb-info-no-borders img,.thumb-info.thumb-info-no-borders .thumb-info-wrapper{border:0;padding:0;margin:0;border-radius:0}.thumb-info.thumb-info-no-borders .thumb-info-wrapper:after{border-radius:0;bottom:0;left:0;right:0;top:0}html.webkit .thumb-info .thumb-info-wrapper{margin:4px 4px 3px 4px}html.webkit .full-width .thumb-info .thumb-info-wrapper,html.webkit .masonry-item .thumb-info .thumb-info-wrapper,html.webkit .thumb-info-no-borders .thumb-info-wrapper{margin:0}.full-width .thumb-info img{border-radius:0 !important}.thumb-info-caption{padding:10px 0}.thumb-info-caption .thumb-info-caption-text,.thumb-info-caption p{font-size:.9em;line-height:20px;margin:0 0 8px;padding:10px;display:block}.thumb-info-social-icons{border-top:1px dotted #ddd;margin:0;padding:15px 10px;display:block}.thumb-info-social-icons a{background:#ccc;border-radius:25px;display:inline-block;height:30px;line-height:30px;text-align:center;width:30px}.thumb-info-social-icons a:hover{text-decoration:none}.thumb-info-social-icons a span{display:none}.thumb-info-social-icons a i,.thumb-info-social-icons a em{color:#fff;font-size:.9em;font-weight:normal}.custom-thumb-info-date{position:absolute;top:0;left:0;font-size:1.7rem;line-height:1;text-align:center;padding:.7rem 1.2rem;z-index:2}.custom-thumb-info-date>span{display:block;font-size:.4em;line-height:1.5}.custom-fs-1{font-size:1.2rem !important;line-height:1.3 !important}@media(max-width:991px){.thumb-info .thumb-info-title{font-size:14px}.thumb-info .thumb-info-more{font-size:11px}}section.timeline{width:75%;margin:50px 12.5% 0;position:relative;float:left;padding-bottom:120px}section.timeline:after{background:#505050;background:-moz-linear-gradient(top,rgba(80,80,80,0) 0%,#505050 8%,#505050 92%,rgba(80,80,80,0) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#1e5799),color-stop(100%,#7db9e8));background:-webkit-linear-gradient(top,rgba(80,80,80,0) 0%,#505050 8%,#505050 92%,rgba(80,80,80,0) 100%);background:-o-linear-gradient(top,rgba(80,80,80,0) 0%,#505050 8%,#505050 92%,rgba(80,80,80,0) 100%);background:-ms-linear-gradient(top,rgba(80,80,80,0) 0%,#505050 8%,#505050 92%,rgba(80,80,80,0) 100%);background:linear,to bottom,rgba(80,80,80,0) 0%,#505050 8%,#505050 92%,rgba(80,80,80,0) 100%;content:"";display:block;height:100%;left:50%;margin-left:-2px;position:absolute;top:-60px;width:3px;z-index:0;filter:alpha(opacity=35);opacity:.35}section.timeline .timeline-date{box-shadow:0 1px 5px 0 rgba(0,0,0,.04);position:relative;display:block;clear:both;width:200px;height:45px;padding:5px;border:1px solid #e5e5e5;margin:0 auto 10px;text-shadow:0 1px 1px #fff;border-radius:4px;background:#fff;z-index:1}section.timeline .timeline-date h3{display:block;text-align:center;color:#757575;font-size:.9em;line-height:32px}section.timeline .timeline-title{background:#f4f4f4;padding:12px}section.timeline .timeline-title h4{padding:0;margin:0;color:#171717;font-size:1.4em}section.timeline .timeline-title a{color:#171717}section.timeline .timeline-title .timeline-title-tags{color:#b1b1b1;font-size:.9em}section.timeline .timeline-title .timeline-title-tags a{color:#b1b1b1;font-size:.9em}section.timeline .timeline-box{box-shadow:0 1px 5px 0 rgba(0,0,0,.04);border:1px solid #e5e5e5;border-radius:4px;margin:20px 10px 10px 10px;padding:10px;position:relative;width:45.7%;float:left;z-index:1;margin-bottom:30px;background:#fff}section.timeline .timeline-box.left{clear:both}section.timeline .timeline-box.left:before{background:none repeat scroll 0 0 #e5e5e5;border-radius:50%;box-shadow:0 0 0 3px #fff,0 0 0 6px #e5e5e5;content:"";display:block;height:7px;margin-right:-5px;position:absolute;right:-6.8%;top:22px;width:8px}section.timeline .timeline-box.left:after{-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg);background:#fff;border-right:1px solid #e5e5e5;border-top:1px solid #e5e5e5;content:"";display:block;height:14px;position:absolute;right:-8px;top:20px;width:14px;z-index:0}section.timeline .timeline-box.right{clear:right;float:right;right:-1px;margin-top:40px}section.timeline .timeline-box.right:before{background:none repeat scroll 0 0 #e5e5e5;border-radius:50%;box-shadow:0 0 0 3px #fff,0 0 0 6px #e5e5e5;content:"";display:block;height:7px;margin-left:-5px;position:absolute;left:-7.2%;top:32px;width:8px}section.timeline .timeline-box.right:after{-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg);background:#fff;border-left:1px solid #e5e5e5;border-bottom:1px solid #e5e5e5;content:"";display:block;height:14px;position:absolute;left:-8px;top:30px;width:14px;z-index:0}section.timeline .timeline-box .owl-carousel{border-radius:0;padding:0;border:0;box-shadow:none}@media(max-width:991px){section.timeline .timeline-box{float:none;clear:both;right:auto;left:auto;margin:25px auto;max-width:70%;width:auto}section.timeline .timeline-box.right{float:none;clear:both;right:auto;left:auto;margin:25px auto;max-width:70%;width:auto}section.timeline .timeline-box.left:after,section.timeline .timeline-box.right:after,section.timeline .timeline-box.left:before,section.timeline .timeline-box.right:before{display:none}}@media(max-width:479px){section.timeline{width:auto;float:none;margin-left:0;margin-right:0}section.timeline .timeline-box{margin:15px auto;max-width:90%}section.timeline .timeline-box.right{margin:15px auto;max-width:90%}article.post-large{margin-left:0}article.post-large .post-image,article.post-large .post-date{margin-left:0}}.testimonial{margin-bottom:20px}.testimonial blockquote{background:#ccc;border-radius:10px;border:0;color:#666;font-family:Georgia,serif;font-style:italic;margin:0;padding:10px 50px;position:relative}.testimonial blockquote:before{left:10px;top:0;color:#fff;content:"“";font-size:80px;font-style:normal;line-height:1;position:absolute}.testimonial blockquote:after{color:#fff;content:"”";font-size:80px;font-style:normal;line-height:1;position:absolute;bottom:-.5em;right:10px}.testimonial blockquote p{color:#fff;font-family:Georgia,serif;font-style:italic;font-size:1.2em;line-height:1.3}.testimonial .testimonial-arrow-down{border-left:15px solid transparent;border-right:15px solid transparent;border-top:15px solid #ccc;height:0;margin:0 0 0 17px;width:0}.testimonial .testimonial-author{margin:8px 0 0 0}.testimonial .testimonial-author:before,.testimonial .testimonial-author:after{content:" ";display:table}.testimonial .testimonial-author:after{clear:both}.testimonial .testimonial-author .testimonial-author-thumbnail{float:left;margin-right:10px;width:auto}.testimonial .testimonial-author img{max-width:55px}.testimonial .testimonial-author strong{color:#111;display:block;padding-top:10px;margin-bottom:-5px}.testimonial .testimonial-author span{color:#666;display:block;font-size:12px}.testimonial .testimonial-author p{color:#999;margin:0 0 0 25px;text-align:left}.testimonial.testimonial-style-2{text-align:center}.testimonial.testimonial-style-2 blockquote{background:transparent !important;border-radius:4px;padding:6px 20px}.testimonial.testimonial-style-2 blockquote:before,.testimonial.testimonial-style-2 blockquote:after{display:none}.testimonial.testimonial-style-2 blockquote p{color:#777}.testimonial.testimonial-style-2 .testimonial-arrow-down{display:none}.testimonial.testimonial-style-2 .testimonial-author{padding:0;margin:6px 0 0}.testimonial.testimonial-style-2 .testimonial-author img{margin:0 auto 10px}.testimonial.testimonial-style-2 .testimonial-author p{text-align:center;padding:0;margin:0}.testimonial.testimonial-style-3 blockquote{background:#f2f2f2 !important;border-radius:4px;padding:12px 30px}.testimonial.testimonial-style-3 blockquote:before{top:5px;color:#777;font-size:35px}.testimonial.testimonial-style-3 blockquote:after{color:#777;font-size:35px;bottom:-5px}.testimonial.testimonial-style-3 blockquote p{color:#777;font-family:"Open Sans",Arial,sans-serif;font-size:1em;font-style:normal}.testimonial.testimonial-style-3 .testimonial-author{margin-left:8px}.testimonial.testimonial-style-3 .testimonial-arrow-down{margin-left:20px;border-top:10px solid #f2f2f2 !important}.testimonial.testimonial-style-4{border-radius:6px;padding:8px;border-top:1px solid #dfdfdf;border-bottom:1px solid #dfdfdf;border-left:1px solid #ececec;border-right:1px solid #ececec;box-shadow:0 1px 1px 0 rgba(0,0,0,.04)}.testimonial.testimonial-style-4 blockquote{background:transparent !important;border-radius:4px;padding:12px 30px}.testimonial.testimonial-style-4 blockquote:before{top:5px;color:#777;font-size:35px}.testimonial.testimonial-style-4 blockquote:after{color:#777;font-size:35px;bottom:-5px}.testimonial.testimonial-style-4 blockquote p{color:#777;font-family:"Open Sans",Arial,sans-serif;font-size:1em;font-style:normal}.testimonial.testimonial-style-4 .testimonial-arrow-down{display:none}.testimonial.testimonial-style-4 .testimonial-author{margin-left:30px;margin-bottom:15px}.testimonial.testimonial-style-5{text-align:center}.testimonial.testimonial-style-5 blockquote{background:transparent !important;border-radius:4px;padding:6px 20px}.testimonial.testimonial-style-5 blockquote:before,.testimonial.testimonial-style-5 blockquote:after{display:none}.testimonial.testimonial-style-5 blockquote p{color:#777;font-family:"Open Sans",Arial,sans-serif;font-size:1.2em;font-style:normal}.testimonial.testimonial-style-5 .testimonial-arrow-down{display:none}.testimonial.testimonial-style-5 .testimonial-author{padding:6px 0 0;margin:12px 0 0;border-top:1px solid #f2f2f2}.testimonial.testimonial-style-5 .testimonial-author img{margin:0 auto 10px}.testimonial.testimonial-style-5 .testimonial-author p{text-align:center;padding:0;margin:0}.testimonial.testimonial-style-6{text-align:center}.testimonial.testimonial-style-6 blockquote{background:transparent !important;border-radius:4px;border:0;padding:0 10%}.testimonial.testimonial-style-6 blockquote:before,.testimonial.testimonial-style-6 blockquote:after{display:none}.testimonial.testimonial-style-6 blockquote i.fa-quote-left,.testimonial.testimonial-style-6 blockquote em.fa-quote-left{font-size:34px;position:relative;left:-5px}.testimonial.testimonial-style-6 blockquote p{color:#777;font-size:24px;line-height:30px}.testimonial.testimonial-style-6 blockquote span{font-size:16px;line-height:20px;color:#999;position:relative;left:-5px}.testimonial.testimonial-style-6 .testimonial-arrow-down{display:none}.testimonial.testimonial-style-6 .testimonial-author{padding:0;margin:6px 0 0}.testimonial.testimonial-style-6 .testimonial-author img{margin:0 auto 10px}.testimonial.testimonial-style-6 .testimonial-author p{text-align:center;padding:0;margin:0}.testimonial.testimonial-with-quotes blockquote:before{color:#777;display:block !important;left:10px;top:0;content:"“";font-size:80px;font-style:normal;line-height:1;position:absolute}.testimonial.testimonial-with-quotes blockquote:after{color:#777;display:block !important;right:10px;font-size:80px;font-style:normal;line-height:1;position:absolute;bottom:-.5em;content:"”"}.testimonial.testimonial-with-quotes blockquote p{padding:0 40px}.section-text-light .testimonial.testimonial blockquote:before,.section-text-light .testimonial.testimonial blockquote:after,.section-text-light .testimonial.testimonial blockquote p{opacity:.9;color:#fff}.section-text-light .testimonial.testimonial .testimonial-author span,.section-text-light .testimonial.testimonial .testimonial-author strong{opacity:.6;color:#fff}ul.social-icons{margin:0;padding:0;width:auto}header ul.social-icons li{-webkit-transition:all .3s ease;-moz-transition:all .3s ease;transition:all .3s ease;background-image:url("/Portals/_default/skins/porto/Resources/img/social-sprites.png");background-repeat:no-repeat;background-position:0 100px;display:none;margin:-1px 1px 5px 0;padding:0;border-radius:100%;overflow:visible;box-shadow:0 2px 2px 0 rgba(0,0,0,.3)}ul.social-icons li{-webkit-transition:all .3s ease;-moz-transition:all .3s ease;transition:all .3s ease;background-image:url("/Portals/_default/skins/porto/Resources/img/social-sprites.png");background-repeat:no-repeat;background-position:0 100px;display:inline-block;margin:-1px 1px 5px 0;padding:0;border-radius:100%;overflow:visible;box-shadow:0 2px 2px 0 rgba(0,0,0,.3)}ul.social-icons.new li,ul.social-icons li.active{display:inline-block}ul.social-icons li a{display:block;height:30px;width:30px;text-align:center;font-size:12px}ul.social-icons li a:hover{text-decoration:none}ul.social-icons li a i[class^="icon-"]{color:#444;position:relative;top:3px}ul.social-icons li a:active{box-shadow:inset 0 0 10px rgba(0,0,0,.3),inset 0 0 10px rgba(0,0,0,.3)}ul.social-icons li[class] a{text-indent:-9999px}ul.social-icons li:active,ul.social-icons li a:active{border-radius:100%}ul.social-icons li.digg{background-position:0 0}ul.social-icons li.digg:hover{background-position:0 -30px}ul.social-icons li.dribbble{background-position:0 -60px}ul.social-icons li.dribbble:hover{background-position:0 -90px}ul.social-icons li.facebook{background-position:0 -120px}ul.social-icons li.facebook:hover{background-position:0 -150px}ul.social-icons li.flickr{background-position:0 -180px}ul.social-icons li.flickr:hover{background-position:0 -210px}ul.social-icons li.forrst{background-position:0 -240px}ul.social-icons li.forrst:hover{background-position:0 -270px}ul.social-icons li.googleplus{background-position:0 -300px}ul.social-icons li.googleplus:hover{background-position:0 -330px}ul.social-icons li.html5{background-position:0 -360px}ul.social-icons li.html5:hover{background-position:0 -390px}ul.social-icons li.icloud{background-position:0 -420px}ul.social-icons li.icloud:hover{background-position:0 -450px}ul.social-icons li.lastfm{background-position:0 -480px}ul.social-icons li.lastfm:hover{background-position:0 -510px}ul.social-icons li.linkedin{background-position:0 -540px}ul.social-icons li.linkedin:hover{background-position:0 -570px}ul.social-icons li.myspace{background-position:0 -600px}ul.social-icons li.myspace:hover{background-position:0 -630px}ul.social-icons li.paypal{background-position:0 -660px}ul.social-icons li.paypal:hover{background-position:0 -690px}ul.social-icons li.picasa{background-position:0 -720px}ul.social-icons li.picasa:hover{background-position:0 -750px}ul.social-icons li.pinterest{background-position:0 -780px}ul.social-icons li.pinterest:hover{background-position:0 -810px}ul.social-icons li.reddit{background-position:0 -840px}ul.social-icons li.reddit:hover{background-position:0 -870px}ul.social-icons li.rss{background-position:0 -900px}ul.social-icons li.rss:hover{background-position:0 -930px}ul.social-icons li.skype{background-position:0 -960px}ul.social-icons li.skype:hover{background-position:0 -990px}ul.social-icons li.stumbleupon{background-position:0 -1020px}ul.social-icons li.stumbleupon:hover{background-position:0 -1050px}ul.social-icons li.tumblr{background-position:0 -1080px}ul.social-icons li.tumblr:hover{background-position:0 -1110px}ul.social-icons li.twitter{background-position:0 -1140px}ul.social-icons li.twitter:hover{background-position:0 -1170px}ul.social-icons li.vimeo{background-position:0 -1200px}ul.social-icons li.vimeo:hover{background-position:0 -1230px}ul.social-icons li.wordpress{background-position:0 -1260px}ul.social-icons li.wordpress:hover{background-position:0 -1290px}ul.social-icons li.yahoo{background-position:0 -1320px}ul.social-icons li.yahoo:hover{background-position:0 -1350px}ul.social-icons li.youtube{background-position:0 -1380px}ul.social-icons li.youtube:hover{background-position:0 -1410px}ul.social-icons li.github{background-position:0 -1440px}ul.social-icons li.github:hover{background-position:0 -1470px}ul.social-icons li.behance{background-position:0 -1500px}ul.social-icons li.behance:hover{background-position:0 -1530px}ul.social-icons li.yelp{background-position:0 -1560px}ul.social-icons li.yelp:hover{background-position:0 -1590px}ul.social-icons li.mail{background-position:0 -1620px}ul.social-icons li.mail:hover{background-position:0 -1650px}ul.social-icons li.instagram{background-position:0 -1680px}ul.social-icons li.instagram:hover{background-position:0 -1710px}ul.social-icons li.foursquare{background-position:0 -1740px}ul.social-icons li.foursquare:hover{background-position:0 -1770px}ul.social-icons li.zerply{background-position:0 -1800px}ul.social-icons li.zerply:hover{background-position:0 -1830px}ul.social-icons li.vk{background-position:0 -1860px}ul.social-icons li.vk:hover{background-position:0 -1890px}.social-icons-list{margin:0 0 20px;padding:0;display:block}.social-icons-list a{background:#ccc;border-radius:25px;display:inline-block;height:30px;line-height:30px;text-align:center;width:30px}.social-icons-list a:hover{text-decoration:none}.social-icons-list a span{display:none}.social-icons-list a i,.social-icons-list a em{color:#fff;font-size:.9em;font-weight:normal}.arrow{background:transparent url("/Portals/_default/skins/porto/Resources/img/arrows.png") no-repeat 0 0;width:47px;height:120px;display:inline-block;position:relative}.arrow.vtl{background-position:0 0;width:47px;height:96px}.arrow.vtr{background-position:-101px 0;width:47px;height:96px}.arrow.vbl{background-position:0 -144px;width:47px;height:96px}.arrow.vbr{background-position:-101px -144px;width:47px;height:96px}.arrow.hlt{background-position:-209px 0;width:120px;height:47px}.arrow.hlb{background-position:-209px -101px;width:120px;height:47px}.arrow.hrt{background-position:-353px 0;width:120px;height:47px}.arrow.hrb{background-position:-353px -101px;width:120px;height:47px}@media(max-width:479px){.arrow{display:none}}.call-to-action{position:relative;clear:both;min-height:125px;padding-left:25px;padding-right:25px}.call-to-action:before,.call-to-action:after{content:" ";display:table}.call-to-action:after{clear:both}.call-to-action h3{text-transform:none;color:#1d2127;padding:0;margin:0 0 9px}.call-to-action p{font-size:1.2em}.call-to-action .call-to-action-content{text-align:center;width:70%;margin-left:3%;padding-top:35px}.call-to-action .call-to-action-btn{width:22%;text-align:center;position:absolute;top:50%;margin:-18px 0 0;left:auto;right:25px}.call-to-action.call-to-action-default{background:#f2f2f2}.call-to-action.call-to-action-dark{background:#2e353e}.call-to-action.call-to-action-dark h3,.call-to-action.call-to-action-dark p{color:#fff}.call-to-action.with-borders{border-top:1px solid #dfdfdf;border-bottom:1px solid #dfdfdf;border-left:1px solid #ececec;border-right:1px solid #ececec;box-shadow:0 1px 1px 0 rgba(0,0,0,.04)}.call-to-action.with-full-borders{border:2px solid #ccc;box-shadow:0 1px 1px 0 rgba(0,0,0,.04)}.call-to-action.featured{background-color:transparent;background:-webkit-linear-gradient(top,#fff 1%,#fcfcfc 98%) repeat scroll 0 0 transparent;background:linear-gradient(to bottom,#fff 1%,#fcfcfc 98%) repeat scroll 0 0 transparent;padding:0;margin:0;border-top:3px solid #ccc;border-bottom:1px solid #dfdfdf;border-left:1px solid #ececec;border-right:1px solid #ececec;box-shadow:0 1px 1px 0 rgba(0,0,0,.04)}.call-to-action.featured.featured-primary{border-top-color:#ccc}.call-to-action.featured.featured-secondary{border-top-color:#e36159}.call-to-action.featured.featured-tertiary{border-top-color:#2baab1}.call-to-action.featured.featured-quaternary{border-top-color:#2e353e}.call-to-action.with-button-arrow .call-to-action-btn{top:30%}.call-to-action.button-centered .call-to-action-content{text-align:center;width:100%;padding:35px 0 0;margin:0}.call-to-action.button-centered .call-to-action-btn{text-align:center;position:static;margin:20px auto 25px;width:auto}.call-to-action.call-to-action-in-footer{padding-top:50px;padding-bottom:50px;margin-top:30px;margin-bottom:-50px !important}.call-to-action.call-to-action-in-footer:before{content:"";display:block;position:absolute;border-left:20px solid transparent;border-right:20px solid transparent;border-top:20px solid #fff;height:20px;width:20px;top:-5px;left:50%;margin-left:-20px}.call-to-action.no-top-arrow:before{display:none}.call-to-action.call-to-action-in-footer-margin-top{margin-top:60px}.container .call-to-action{border-radius:8px}@media(max-width:767px){.call-to-action .call-to-action-content,.call-to-action .call-to-action-btn{margin:0;padding:0;position:static;width:auto}}@media(max-width:768px){.call-to-action,.call-to-action.featured{padding-top:25px;padding-bottom:25px}}.circular-bar{text-align:center;margin-bottom:25px}.circular-bar .circular-bar-chart{position:relative}.circular-bar strong{display:block;font-weight:600;font-size:18px;line-height:30px;position:absolute;top:35%;width:80%;left:10%;text-align:center}.circular-bar label{display:block;font-weight:100;font-size:17px;line-height:20px;position:absolute;top:50%;width:80%;left:10%;text-align:center}.circular-bar.only-icon .fa,.circular-bar.only-icon .fas,.circular-bar.only-icon .far,.circular-bar.only-icon .fal,.circular-bar.only-icon .fab{display:block;font-weight:600;font-size:38px;line-height:30px;position:absolute;top:40%;width:80%;left:10%;text-align:center}.circular-bar.single-line strong{top:40%}.circular-bar.circular-bar-sm label{font-size:14px;top:36%}.circular-bar.circular-bar-lg strong{font-size:20px;top:40%}.progress{border-radius:25px;height:20px;background:#fafafa;box-shadow:0 1px 2px rgba(0,0,0,.1) inset;overflow:visible;margin-bottom:15px}.progress.progress-border-radius{border-radius:3px}.progress.progress-border-radius .progress-bar{border-radius:3px}.progress.progress-no-border-radius{border-radius:0}.progress.progress-no-border-radius .progress-bar{border-radius:0}.progress.progress-sm{height:10px}.progress.progress-sm .progress-bar{line-height:10px}.progress.progress-lg{height:35px}.progress.progress-lg .progress-bar{font-size:13px;line-height:35px}.progress-bar{background-color:#ccc;box-shadow:none;position:relative;border-radius:25px}.progress-bar-tooltip{position:absolute;padding:4px 8px;background-color:#333;color:#fff;line-height:15px;font-size:11px;display:block;position:absolute;top:-28px;right:5px;border-radius:3px;filter:alpha(opacity=0);opacity:0}.progress-bar-tooltip:after{border-color:#333 transparent;border-style:solid;border-width:5px 5px 0;bottom:-5px;content:"";display:block;left:13px;position:absolute;width:0}.progress-bar-primary{background-color:#ccc;color:#fff}.progress-bar-success{background-color:#47a447;color:#fff}.progress-bar-warning{background-color:#ed9c28;color:#fff}.progress-bar-danger{background-color:#d2322d;color:#fff}.progress-bar-info{background-color:#5bc0de;color:#fff}.progress-bar-dark{background-color:#1d2127;color:#fff}.counters .counter{text-align:center}.counters .fa,.counters .fas,.counters .far,.counters .fal,.counters .fab{display:block;font-size:35px;line-height:35px;margin-bottom:5px}.counters strong{display:block;font-weight:600;font-size:50px;line-height:50px}.counters label{display:block;font-weight:100;font-size:20px;line-height:20px}.counters .counter-side-icon .fa,.counters .counter-side-icon .fas,.counters .counter-side-icon .far,.counters .counter-side-icon .fal,.counters .counter-side-icon .fab,.counters .counter-side-icon strong{display:inline-block}.counters .counter-with-unit strong{display:inline-block}.counters.with-borders .counter{border-radius:6px;border-top:1px solid #dfdfdf;border-bottom:1px solid #dfdfdf;border-left:1px solid #ececec;border-right:1px solid #ececec;box-shadow:0 1px 1px 0 rgba(0,0,0,.04);padding:25px}.counters.counters-sm .fa,.counters.counters-sm .fas,.counters.counters-sm .far,.counters.counters-sm .fal,.counters.counters-sm .fab{font-size:25px;line-height:25px}.counters.counters-sm strong{font-size:35px;line-height:35px}.counters.counters-sm label{font-size:15px;line-height:15px}.counters.counters-lg .fa,.counters.counters-lg .fas,.counters.counters-lg .far,.counters.counters-lg .fal,.counters.counters-lg .fab{font-size:45px;line-height:45px}.counters.counters-lg strong{font-size:60px;line-height:60px}.counters.counters-lg label{font-size:25px;line-height:25px}.counters.counters-text-light .counter,.counters.counters-text-light .counter .fa,.counters.counters-text-light .counter .fas,.counters.counters-text-light .counter .far,.counters.counters-text-light .counter .fal,.counters.counters-text-light .counter .fab,.counters.counters-text-light .counter strong,.counters.counters-text-light .counter label{color:#fff !important}.counters.counters-text-dark .counter,.counters.counters-text-dark .counter .fa,.counters.counters-text-dark .counter .fas,.counters.counters-text-dark .counter .far,.counters.counters-text-dark .counter .fal,.counters.counters-text-dark .counter .fab,.counters.counters-text-dark .counter strong,.counters.counters-text-dark .counter label{color:#2e353e !important}.word-rotate{display:inline-block;overflow:hidden;text-align:center;position:relative;max-height:22px;line-height:22px}.word-rotate .word-rotate-items{position:relative;top:0;width:0;display:inline-block}.word-rotate .word-rotate-items span{display:inline-block;white-space:nowrap}.word-rotate .word-rotate-items span:not(:first-child){display:none}.word-rotate.active .word-rotate-items{position:relative}.word-rotate.active .word-rotate-items span{display:inline-block}h1.word-rotator-title .inverted{min-height:56px}h1.word-rotator-title .word-rotate{max-height:46px;line-height:46px;margin-bottom:-9px}h2.word-rotator-title .inverted{min-height:46px}h2.word-rotator-title .word-rotate{max-height:42px;line-height:42px;margin-bottom:-9px}h3.word-rotator-title .inverted{min-height:25px}h3.word-rotator-title .word-rotate{max-height:24px;line-height:24px;margin-bottom:-2px}h4.word-rotator-title .inverted{min-height:32px}h4.word-rotator-title .word-rotate{max-height:27px;line-height:27px;margin-bottom:-6px}h5.word-rotator-title .inverted{min-height:18px}h5.word-rotator-title .word-rotate{max-height:18px;line-height:18px;margin-bottom:-4px}h6.word-rotator-title .inverted{min-height:20px}h6.word-rotator-title .word-rotate{max-height:18px;line-height:18px;margin-bottom:-4px}p .inverted{min-height:24px}p .word-rotate{max-height:22px;line-height:22px;margin-bottom:-6px}html .scroll-to-top{-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;background:#404040;border-radius:7px 7px 0 0;bottom:0;color:#fff;display:block;height:9px;opacity:0;padding:13px 10px 35px;position:fixed;right:10px;text-align:center;text-decoration:none;min-width:49px;z-index:1040}html .scroll-to-top:hover{filter:alpha(opacity=100);opacity:1}html .scroll-to-top.visible{filter:alpha(opacity=75);opacity:.75}html .scroll-to-top span{display:inline-block;padding:0 5px}html.ie11 .scroll-to-top{right:25px}@media(max-width:991px){html .scroll-to-top.hidden-mobile{display:none !important}}@-webkit-keyframes animateLoader{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(220deg)}}@-moz-keyframes animateLoader{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(220deg)}}@-o-keyframes animateLoader{0%{-o-transform:rotate(0deg);}100%{-o-transform:rotate(220deg);}}@keyframes animateLoader{0%{transform:rotate(0deg)}100%{transform:rotate(220deg)}}@-webkit-keyframes animateLoaderAfterWhite{0%{box-shadow:0 0 0 6px #fff inset;-webkit-transform:rotate(-140deg)}50%{box-shadow:0 0 0 2px #fff inset}100%{box-shadow:0 0 0 6px #fff inset;-webkit-transform:rotate(140deg)}}@-moz-keyframes animateLoaderAfterWhite{0%{box-shadow:0 0 0 6px #fff inset;-moz-transform:rotate(-140deg)}50%{box-shadow:0 0 0 2px #fff inset}100%{box-shadow:0 0 0 6px #fff inset;-moz-transform:rotate(140deg)}}@-o-keyframes animateLoaderAfterWhite{0%{box-shadow:0 0 0 6px #FFF inset;-o-transform:rotate(-140deg);}50%{box-shadow:0 0 0 2px #FFF inset;}100%{box-shadow:0 0 0 6px #FFF inset;-o-transform:rotate(140deg);}}@keyframes animateLoaderAfterWhite{0%{box-shadow:0 0 0 6px #fff inset;transform:rotate(-140deg)}50%{box-shadow:0 0 0 2px #fff inset}100%{box-shadow:0 0 0 6px #fff inset;transform:rotate(140deg)}}@-webkit-keyframes animateLoaderAfterBlack{0%{box-shadow:0 0 0 6px #999 inset;-webkit-transform:rotate(-140deg)}50%{box-shadow:0 0 0 2px #999 inset}100%{box-shadow:0 0 0 6px #999 inset;-webkit-transform:rotate(140deg)}}@-moz-keyframes animateLoaderAfterBlack{0%{box-shadow:0 0 0 6px #999 inset;-moz-transform:rotate(-140deg)}50%{box-shadow:0 0 0 2px #999 inset}100%{box-shadow:0 0 0 6px #999 inset;-moz-transform:rotate(140deg)}}@-o-keyframes animateLoaderAfterBlack{0%{box-shadow:0 0 0 6px #999 inset;-o-transform:rotate(-140deg);}50%{box-shadow:0 0 0 2px #999 inset;}100%{box-shadow:0 0 0 6px #999 inset;-o-transform:rotate(140deg);}}@keyframes animateLoaderAfterBlack{0%{box-shadow:0 0 0 6px #999 inset;transform:rotate(-140deg)}50%{box-shadow:0 0 0 2px #999 inset}100%{box-shadow:0 0 0 6px #999 inset;transform:rotate(140deg)}}html .scroll-to-top .scroll-indent{padding:0;text-indent:-9999px}.portfolio-title{margin-bottom:-10px}.portfolio-title a{display:inline-block}.portfolio-title .fa,.portfolio-title .fas,.portfolio-title .far,.portfolio-title .fal,.portfolio-title .fab{font-size:2.5em}.portfolio-title .portfolio-nav,.portfolio-title .portfolio-nav-all{margin-top:11px}.portfolio-title .portfolio-nav a{width:40%}.portfolio-title .portfolio-nav-all .fa,.portfolio-title .portfolio-nav-all .fas,.portfolio-title .portfolio-nav-all .far,.portfolio-title .portfolio-nav-all .fal,.portfolio-title .portfolio-nav-all .fab{font-size:2.7em}.portfolio-title .fa-angle-right{text-align:right}.portfolio-title .portfolio-nav-prev{text-align:left}.portfolio-info{margin:2px 0 10px;float:right}.portfolio-info ul{list-style:none;padding:0;margin:0}.portfolio-info ul li{display:inline-block;border-right:1px solid #e6e6e6;color:#b1b1b1;padding-right:8px;margin-right:8px;font-size:.9em}.portfolio-info ul li:last-child{border-right:0;padding-right:0;margin-right:0}.portfolio-info ul li a{text-decoration:none;color:#b1b1b1}.portfolio-info ul li a:hover .fa-heart{color:#e53f51}.portfolio-info ul li .fa,.portfolio-info ul li .fas,.portfolio-info ul li .far,.portfolio-info ul li .fal,.portfolio-info ul li .fab{margin-right:4px}ul.portfolio-list{list-style:none;margin-top:0;margin-bottom:0;padding:0}ul.portfolio-list .portfolio-item{margin-bottom:35px}ul.portfolio-details{list-style:none;padding:0;margin:45px 0 0 5px;font-size:.9em}ul.portfolio-details>li{padding:0;margin:0 0 20px}ul.portfolio-details p{padding:0;margin:0}ul.portfolio-details blockquote{padding:0 0 0 10px;margin:15px 0 0;color:#999}ul.portfolio-details .list-icons{margin-left:0}ul.portfolio-details .list-icons>li{padding-left:18px;margin-right:10px}ul.portfolio-details .list-icons>li .fa,ul.portfolio-details .list-icons>li .fas,ul.portfolio-details .list-icons>li .far,ul.portfolio-details .list-icons>li .fal,ul.portfolio-details .list-icons>li .fab{top:7px}@media(max-width:991px){.portfolio-nav,.portfolio-nav-all{display:none}}ul.team-list{list-style:none;margin-top:0;margin-bottom:0;padding:0}ul.team-list .team-item{margin-bottom:35px}ul.team-list .team-item .thumb-info-social-icons{margin:0 10px}@media(max-width:991px){ul.team-list .team-item{margin:0 auto 35px;max-width:270px}}ul.history{margin:0 0 25px;padding:0;list-style:none}ul.history li{margin:25px 0;padding:0;clear:both}ul.history li h4{margin:0 0 -27px 0;padding:0}ul.history li p{margin-left:53px}ul.history li .thumb{background:transparent url("/Portals/_default/skins/porto/Resources/img/history-thumb.png") no-repeat 0 0;width:227px;height:160px;margin:0 0 30px;padding:0;float:left}ul.history li .thumb img{border-radius:150px;margin:7px 8px;width:145px;height:145px}ul.history li .featured-box{text-align:left;margin-left:225px;margin-bottom:50px;min-height:115px}ul.history li .featured-box .box-content{border-top-color:#ccc}@media(max-width:479px){ul.history li .thumb{display:none}ul.history li .featured-box{margin-left:0}}.search-results{min-height:300px}.google-map{background:#e5e3df;height:400px;margin:-35px 0 30px 0;width:100%}.google-map.small{height:250px;border-radius:6px;margin:0;clear:both}.google-map img{max-width:9999px}.google-map-borders{border:1px solid #ddd;padding:4px;border-radius:4px}.blog-posts article{border-bottom:1px solid #ddd;margin-bottom:50px;padding-bottom:10px}.blog-posts .pagination{margin:-10px 0 20px}article.post h2 a{text-decoration:none}article.post .post-meta{font-size:.9em;margin-bottom:7px}article.post .post-meta>span{display:inline-block;padding-right:8px}article.post .post-meta i,article.post .post-meta em{margin-right:3px}article.post .post-date{box-shadow:0 1px 2px 0 rgba(0,0,0,.1);float:left;margin-right:10px;text-align:center}article.post .post-date .month{background:#ccc;border-radius:0 0 2px 2px;box-shadow:0 -1px 0 0 rgba(0,0,0,.07) inset;color:#fff;font-size:.9em;padding:0 10px 2px}article.post .post-date .day{background:#f4f4f4;border-radius:2px 2px 0 0;color:#ccc;display:block;font-size:16px;font-weight:500;font-weight:bold;padding:10px}article.post .post-image .owl-carousel{width:100.1%}article .post-video{-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;transition:all .2s ease-in-out;padding:0;background-color:#fff;border:1px solid #ddd;border-radius:8px;display:block;height:auto;position:relative;margin:0 0 30px 0;padding-bottom:61%}article .post-video iframe{bottom:0;height:auto;left:0;margin:0;min-height:100%;min-width:100%;padding:4px;position:absolute;right:0;top:0;width:auto}article .post-audio{-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;transition:all .2s ease-in-out;padding:0;background-color:#fff;border:1px solid #ddd;border-radius:8px;display:block;height:auto;position:relative;margin:0 0 30px 0;padding-bottom:25%}article .post-audio iframe{bottom:0;height:auto;left:0;margin:0;min-height:100%;min-width:100%;padding:4px;position:absolute;right:0;top:0;width:auto}article.post-medium .post-image .owl-carousel{width:100.2%}article.post-large{margin-left:60px}article.post-large h2{margin-bottom:5px}article.post-large .post-image,article.post-large .post-date{margin-left:-60px}article.post-large .post-image{margin-bottom:15px}article.post-large .post-image.single{margin-bottom:30px}article.post-large .post-video{margin-left:-60px}article.post-large .post-audio{margin-left:-60px}.single-post article{border-bottom:0;margin-bottom:0}article.blog-single-post .post-meta{margin-bottom:20px}.post-block{border-top:1px solid #ddd;margin:15px 0 0 0;padding:20px 0 15px 0}.post-block h3{font-size:1.8em;font-weight:200;margin:0 0 20px;text-transform:none}.post-block h3 i,.post-block h3 em{margin-right:7px}.post-author{margin:15px 0 0 0}.post-author img{max-height:80px;max-width:80px}.post-author p{font-size:.9em;line-height:22px;margin:0;padding:0}.post-author p .name{font-size:1.1em}.post-author .img-thumbnail{display:inline-block;float:left;margin-right:20px}.post-share{margin:55px 0 0 0;padding-bottom:0}.post-comments{margin-top:45px}ul.comments{list-style:none;margin:0;padding:0}ul.comments li{clear:both;padding:10px 0 0 115px}ul.comments li img.avatar{height:80px;width:80px}ul.comments li ul.reply{margin:0}ul.comments li a{text-decoration:none}ul.comments li .img-thumbnail{margin-left:-115px;position:absolute}ul.comments li .comment{margin-bottom:10px}ul.comments .comment-arrow{border-bottom:15px solid transparent;border-right:15px solid #f4f4f4;border-top:15px solid transparent;height:0;left:-15px;position:absolute;top:28px;width:0}ul.comments .comment-block{background:#f4f4f4;border-radius:5px;padding:20px 20px 30px;position:relative}ul.comments .comment-block p{font-size:.9em;line-height:21px;margin:0;padding:0}ul.comments .comment-block .comment-by{display:block;font-size:1em;line-height:21px;margin:0;padding:0 0 5px 0}ul.comments .comment-block .date{color:#999;font-size:.9em}.post-leave-comment{margin-top:25px;padding-top:45px}.post-leave-comment h3{margin:0 0 40px}.recent-posts h4{margin-bottom:7px}.recent-posts article.recent-post h4{margin:0 0 3px 0}.recent-posts article.recent-post h4 a{display:block}.recent-posts .date{float:left;margin-right:10px;margin-top:8px;text-align:center}.recent-posts .date .month{background:#ccc;border-radius:0 0 2px 2px;box-shadow:0 -1px 0 0 rgba(0,0,0,.07) inset;color:#fff;font-size:.9em;padding:0 10px 2px}.recent-posts .date .day{background:#f7f7f7;color:#ccc;display:block;font-size:18px;font-weight:500;font-weight:bold;padding:8px}section.section .recent-posts .date .day{background:#fff}ul.simple-post-list{list-style:none;margin:0;padding:0}ul.simple-post-list li{border-bottom:1px dotted #e2e2e2;padding:15px 0}ul.simple-post-list li:before,ul.simple-post-list li:after{content:" ";display:table}ul.simple-post-list li:after{clear:both}ul.simple-post-list li:last-child{border-bottom:0}ul.simple-post-list .post-image{float:left;margin-right:12px}ul.simple-post-list .post-meta{color:#888;font-size:.8em}@media(max-width:479px){ul.comments li{border-left:8px solid #ddd;clear:both;padding:0 0 0 10px}ul.comments li .img-thumbnail,ul.comments .comment-arrow{display:none}}.church .ft-church{font-size:27px;font-weight:600;margin-bottom:18px}.church .custom-thumb-info{border:none;overflow:initial}.church .custom-thumb-info .thumb-info-caption{display:block;padding:20px 40px}.church .custom-thumb-info .thumb-info-caption .custom-event-infos,.church .custom-thumb-info .thumb-info-caption .thumb-info-catption-text{float:left;width:100%}.church .custom-event-infos ul{padding:0;margin:0}.church .custom-event-infos ul li{list-style:none;display:inline-block;font-size:12px;margin-left:15px}.church .custom-event-infos ul li em{font-size:15px;color:#1f222b;font-weight:bold}.church .custom-event-infos ul li:first-child{margin-left:0}.church .custom-thumb-info .thumb-info-caption .thumb-info-caption-text,.church .custom-thumb-info .thumb-info-caption p{padding:0;font-size:16px;line-height:2}.church .custom-thumb-info .thumb-info-caption p{padding:0;line-height:1.9}.church .custom-post-event{position:relative}.church .custom-post-event .post-event-date{position:absolute;top:0;left:0;padding:15px 20px}.church .custom-post-event .post-event-date span{display:block}.church .custom-post-event .post-event-date span.day{font-size:30px}.church .custom-post-event .post-event-date span.year{font-size:14px}.church .custom-margin-1{margin-left:95px}.church .font-weight-bold a{text-decoration:none}.church .custom-thumb-info-2{background:transparent;border:none;overflow:initial}.church .custom-thumb-info-2 .thumb-info-caption{position:relative;display:block;width:80%;margin:-80px auto 0;background:#fff;padding:30px 30px 20px 30px;z-index:1}.church .custom-thumb-info-2 .thumb-info-caption .thumb-info-caption-text,.church .custom-thumb-info-2 .thumb-info-caption p{padding:0;font-size:16px;line-height:2}.church .custom-thumb-info-2 .thumb-info-caption p{font-size:14px;margin-bottom:45px}.church .custom-thumb-info-post-infos ul:after{content:'';display:block;clear:both}.church .custom-thumb-info-post-infos ul{position:relative;padding:0;margin:0}.church .custom-thumb-info-post-infos ul li{float:left;list-style:none;width:50%;font-size:.9em}.church .custom-thumb-info-post-infos ul li i{display:inline-block;font-size:16px;color:#1f222b;font-weight:bold;margin-right:8px}.church .custom-thumb-info-post-infos ul:before{content:'';display:block;position:absolute;top:-20px;left:50%;width:calc(100% + 60px);border-top:1px solid #efece8;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%)}.church .custom-thumb-info-post-infos ul li em{display:inline-block;font-size:13px;color:#1f222b;font-weight:bold;margin-right:8px}html .church.background-color-light{background-color:#fff !important}@font-face{font-family:'star';src:url("/Portals/_default/skins/porto/Resources/fonts/star.eot");src:url("/Portals/_default/skins/porto/Resources/fonts/star.eot?#iefix") format("embedded-opentype"),url("/Portals/_default/skins/porto/Resources/fonts/star.woff") format("woff"),url("/Portals/_default/skins/porto/Resources/fonts/star.ttf") format("truetype"),url("/Portals/_default/skins/porto/Resources/fonts/star.svg#star") format("svg");font-weight:normal;font-style:normal}header nav.mega-menu .mega-menu-shop{margin-right:-20px;padding-left:0;margin-left:0}header nav.mega-menu .mega-menu-shop a{color:#444}header nav.mega-menu .mega-menu-shop table{width:100%;margin-top:0}header nav.mega-menu .mega-menu-shop .dropdown-menu{width:40%;right:8px;border-radius:6px 0 6px 6px}header nav.mega-menu .mega-menu-shop .dropdown-menu li table tr td a{background-color:transparent !important;color:#333;padding:0;margin:0;display:block}header nav.mega-menu .mega-menu-shop .dropdown-menu li table tr td a.remove{float:right}header nav.mega-menu .mega-menu-shop .dropdown-menu li table tr td a:hover{text-decoration:none}header nav.mega-menu .mega-menu-shop .fa-shopping-cart{margin-right:5px}header nav.mega-menu .mega-menu-shop .product-thumbnail{width:120px}header nav.mega-menu .mega-menu-shop .product-actions{text-align:right;width:80px}header nav.mega-menu .mega-menu-shop .actions-continue{margin-top:10px;padding-top:20px;border-top:1px solid #ddd;clear:both}.shop{margin-top:-10px}.shop ul.products{margin:0;padding:25px 0;list-style:none}.shop ul.products:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.shop ul.products .product{position:relative;margin-bottom:30px}.shop ul.products .product a{text-decoration:none}.shop ul.products .product .add-to-cart-product{-webkit-transition:all .2s;-moz-transition:all .2s;transition:all .2s;position:absolute;top:0;left:0;border-radius:6px 6px 0 0;padding:8px 10px 5px;font-size:.9em;color:#fff;background:#222;z-index:1;filter:alpha(opacity=0);opacity:0;-webkit-transform:translate3d(0,0,0)}.shop ul.products .product .add-to-cart-product .fa,.shop ul.products .product .add-to-cart-product .fas,.shop ul.products .product .add-to-cart-product .far,.shop ul.products .product .add-to-cart-product .fal,.shop ul.products .product .add-to-cart-product .fab{margin-right:3px;font-size:1.1em}.shop ul.products .product:hover .add-to-cart-product{filter:alpha(opacity=100);opacity:1}.shop ul.products .product:hover .add-to-cart-product:hover{background:#000}.shop ul.products .product .price{display:block;min-height:28px}.shop ul.products .product .price del{color:rgba(145,145,145,.5);font-size:.7em;margin:-2px 0 0}.shop ul.products .product .price ins{text-decoration:none}.shop ul.products .product .price .amount{font-size:1.3em}.shop ul.products .product .onsale{position:absolute;background-image:none;border-radius:100%;left:auto;right:0;top:-15px;text-shadow:none;width:40px;height:40px;line-height:40px;display:inline-block;text-align:center;z-index:10;box-shadow:none;font-size:.9em;color:#fff;border-bottom:2px solid transparent}.product-info{-webkit-transition:all .2s;-moz-transition:all .2s;transition:all .2s;border-radius:6px;padding:0;position:relative;border:1px solid #ddd;background:#f7f9fc;display:block;overflow:hidden;position:relative;text-decoration:none;max-width:100%;text-align:center;padding:0;text-decoration:none}.product-info:hover{background-color:#fff;text-decoration:none}.product-info a{text-decoration:none;display:inline-block;width:100%}.product-info a:hover{text-decoration:none;display:inline-block;width:100%}.product-info img{-webkit-transition:all .2s;-moz-transition:all .2s;transition:all .2s;border-radius:6px 6px 0 0}.product-info h4{color:#404751;letter-spacing:-1px;font-weight:600;font-size:1.4em;line-height:1.1em;margin:0;padding:0}.product-info+.product-info{border-radius:0 0 6px 6px;margin-top:-5px}.product-info .product-info-image{display:block;position:relative}.product-info .product-info-image:before{-webkit-transition:all .2s;-moz-transition:all .2s;transition:all .2s;content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;background:#333;width:100%;height:100%;filter:alpha(opacity=0);opacity:0;border-radius:6px 6px 0 0}.product-info:hover .product-info-image:before{filter:alpha(opacity=80);opacity:.8}.product-info .product-info-act{position:absolute;top:50%;left:0;right:0;text-align:center;color:#fff}.product-info .product-info-act em{font-style:normal;position:relative;font-size:1.2em;font-weight:100}.product-info .product-info-act-left,.product-info .product-info-act-right{float:left;overflow:hidden}.product-info .product-info-act-left{text-align:right;width:45%}.product-info .product-info-act-left em{-webkit-transition:all .2s ease 0s;-moz-transition:all .2s ease 0s;transition:all .2s ease 0s;left:0%;filter:alpha(opacity=0);opacity:0}.product-info .product-info-act-right{text-align:left;margin-left:2%;width:53%}.product-info .product-info-act-right em{-webkit-transition:all .2s ease 0s;-moz-transition:all .2s ease 0s;transition:all .2s ease 0s;right:0%;font-weight:600;filter:alpha(opacity=0);opacity:0}.product-info:hover .product-info-act-left em{filter:alpha(opacity=100);opacity:1}.product-info:hover .product-info-act-right em{filter:alpha(opacity=100);opacity:1}.product-info .product-info-content{padding:15px;text-align:left;display:block}.product-info .product-info-caption{padding:0 15px 15px;text-align:left;display:block}.product-info .product-info-caption p{margin:0;padding:0 0 10px}.product-info .product-info-extra{clear:both;padding:10px 0 0;margin:10px 0 0;border-top:1px solid #ebebf4;display:block}.product-info .product-info-extra.social{text-align:center}.product-info .product-info-extra.social a{border-right:1px solid #ebebf4;display:inline-block;margin-right:10px;padding-right:10px;font-size:.9em;color:#acacac;width:auto}.product-info .product-info-extra.social a:last-child{border-right:0;margin-right:0;padding-right:0}.product-info .date{color:#9aa1ab;font-size:.9em}.product-info.secondary .product-info-content{text-align:center}.product-info.secondary .product-info-content h4{-webkit-transition:all .2s;-moz-transition:all .2s;transition:all .2s;color:#fff;position:relative;top:-25%;filter:alpha(opacity=0);opacity:0}.product-info.secondary .product-info-content .date{-webkit-transition:all .2s;-moz-transition:all .2s;transition:all .2s;position:relative;top:25%;display:block;filter:alpha(opacity=0);opacity:0}.product-info.secondary .product-info-act{top:30%}.product-info.secondary .label{-webkit-transition:all .2s;-moz-transition:all .2s;transition:all .2s;clear:both;display:inline-block;margin-top:15px;filter:alpha(opacity=0);opacity:0}.product-info.secondary:hover .label{filter:alpha(opacity=100);opacity:1}.product-info.secondary:hover .product-info-content h4{top:0;filter:alpha(opacity=100);opacity:1}.product-info.secondary:hover .product-info-content .date{top:0;filter:alpha(opacity=100);opacity:1}.shop .review_num{margin-right:10px;float:left;position:relative;top:-1px}.shop .star-rating{float:none;position:relative;top:2px;font-family:'star';font-size:1em;height:1.2em;line-height:1em;overflow:hidden;position:relative;width:5.4em;margin-bottom:25px}.shop .star-rating:before{color:#e0dadf;content:"SSSSS";float:left;left:0;position:absolute;top:0}.shop .star-rating span{float:left;left:0;overflow:hidden;padding-top:1.5em;position:absolute;top:0}.shop .star-rating span:before{content:"SSSSS";left:0;position:absolute;top:0}.shop .summary .price{color:#444;font-size:2em;letter-spacing:-1px;line-height:30px;margin-top:20px}.shop .quantity{margin:0 15px 25px 0;overflow:hidden;position:relative;width:125px;height:35px;float:left}.shop .quantity .minus{background:#f4f4f4;border:1px solid #c8bfc6;border-radius:2px;box-shadow:none;color:#5e5e5e;cursor:pointer;display:block;font-size:12px;font-weight:bold;height:35px;line-height:13px;margin:0;overflow:visible;outline:0;padding:0;position:absolute;text-align:center;text-decoration:none;text-shadow:0 1px 0 rgba(255,255,255,.8);vertical-align:text-top;width:35px}.shop .quantity .plus{background:#f4f4f4;border:1px solid #c8bfc6;border-radius:2px;box-shadow:none;color:#5e5e5e;cursor:pointer;display:block;font-size:12px;font-weight:bold;height:35px;line-height:13px;margin:0;overflow:visible;outline:0;padding:0;position:absolute;text-align:center;text-decoration:none;text-shadow:0 1px 0 rgba(255,255,255,.8);vertical-align:text-top;width:35px;right:0;top:0}.shop .quantity .qty{border:1px solid #ccc;box-shadow:none;float:left;height:35px;padding:0 39px;text-align:center;width:125px;font-size:1em}.shop .quantity .qty::-webkit-inner-spin-button,.shop .quantity .qty::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.shop .quantity .qty::-ms-clear{display:none}.shop .product_meta{clear:both}.shop .tabs-product{margin-top:35px}.shop ul.comments .comment-arrow{border-right-color:#f5f7f7}.shop ul.comments .comment-block{background:#f5f7f7}.shop table.cart{width:100%;margin:0;text-align:left}.shop table.cart img{height:auto;width:55px}.shop table.cart th{padding:8px 10px}.shop table.cart td{border-top:1px solid #dcdcdc;padding:8px 10px}.shop table.cart td.actions{padding:20px 10px}.shop table.cart .remove .fa,.shop table.cart .remove .fas,.shop table.cart .remove .far,.shop table.cart .remove .fal,.shop table.cart .remove .fab{font-size:1.5em}.shop table.cart .coupon{float:left}.shop table.cart .product-remove{width:1%}.shop table.cart .product-thumbnail{width:7%}.shop table.cart .product-name{width:60%}.shop table.cart .quantity{top:10px;position:relative}.shop .actions-continue{float:right}.shop .cart-totals{width:100%}.shop .cart-totals th,.shop .cart-totals td{border-top:1px solid #dcdcdc;padding:8px 10px}.shop .cart-totals tr.total .amount{font-size:2em;display:block;padding-top:10px}.shop ul.simple-post-list li{border:0}.product-thumb-info{-webkit-transition:all .2s;-moz-transition:all .2s;transition:all .2s;border-radius:6px;padding:0;position:relative;border:0;border-bottom:3px solid #e3e4e8;background:#f7f9fc;display:block;overflow:hidden;position:relative;text-decoration:none;max-width:100%;text-align:center;border:1px solid #ddd;text-decoration:none}.product-thumb-info:hover{background-color:#fff;text-decoration:none}.product-thumb-info a{text-decoration:none;display:inline-block;width:100%}.product-thumb-info a:hover{text-decoration:none;display:inline-block;width:100%}.product-thumb-info img{-webkit-transition:all .2s;-moz-transition:all .2s;transition:all .2s;border-radius:6px 6px 0 0;width:100%}.product-thumb-info h4{color:#404751;letter-spacing:-1px;font-weight:600;font-size:1.4em;line-height:1.1em;margin:0;padding:0}.product-thumb-info+.product-thumb-info{border-radius:0 0 6px 6px;margin-top:-5px}.product-thumb-info .product-thumb-info-touch-hover{position:absolute;width:100%;height:100%;top:0;left:0;bottom:0;right:0;display:none;background-color:transparent}.product-thumb-info.hover .product-thumb-info-touch-hover{display:block}.product-thumb-info .product-thumb-info-image{display:block;position:relative}.product-thumb-info .product-thumb-info-image:before{-webkit-transition:all .2s;-moz-transition:all .2s;transition:all .2s;content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;background:#171717;width:100%;height:100%;filter:alpha(opacity=0);opacity:0;border-radius:6px 6px 0 0}.product-thumb-info:hover .product-thumb-info-image:before{filter:alpha(opacity=80);opacity:.8}.product-thumb-info .product-thumb-info-act{position:absolute;top:40%;left:0;right:0;text-align:center;color:#fff;filter:alpha(opacity=0);opacity:0}.product-thumb-info:hover .product-thumb-info-act{filter:alpha(opacity=100);opacity:1;top:50%}.product-thumb-info .product-thumb-info-act em{font-style:normal}.product-thumb-info .product-thumb-info-content{padding:15px;text-align:left;display:block}.product-thumb-info .product-thumb-info-caption{padding:0 15px 15px;text-align:left;display:block}.product-thumb-info .product-thumb-info-caption p{margin:0;padding:0 0 10px}.product-thumb-info .product-thumb-info-extra{clear:both;padding:10px 0 0;margin:10px 0 0;border-top:1px solid #ebebf4;display:block}.product-thumb-info .product-thumb-info-extra.social a:last-child{border-right:0;margin-right:0;padding-right:0}.full-width .product-thumb-info .product-thumb-info-image:before{border-radius:0}@media(max-width:991px){.shop .actions-continue{float:none}.shop table.cart th.product-price,.shop table.cart td.product-price,.shop table.cart th.product-quantity,.shop table.cart td.product-quantity{display:none}header nav.mega-menu .mega-menu-shop a{color:#fff}header nav.mega-menu .mega-menu-shop a .fa-caret-down{display:none !important}header nav.mega-menu .mega-menu-shop>ul.dropdown-menu{display:none !important}}.appear-animation{opacity:0}.appear-animation-visible{opacity:1}.animated,.appear-animation{-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:1s;-moz-animation-duration:1s;-ms-animation-duration:1s;-o-animation-duration:1s;animation-duration:1s}@-moz-keyframes flash{0%,50%,100%{opacity:1}25%,75%{opacity:0}}@-o-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;-moz-animation-name:flash;-o-animation-name:flash;animation-name:flash}@-webkit-keyframes shake{0%,100%{-webkit-transform:translateX(0);opacity:1}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px)}}@-moz-keyframes shake{0%,100%{-moz-transform:translateX(0);opacity:1}10%,30%,50%,70%,90%{-moz-transform:translateX(-10px)}20%,40%,60%,80%{-moz-transform:translateX(10px)}}@-o-keyframes shake{0%,100%{-o-transform:translateX(0);opacity:1;}10%,30%,50%,70%,90%{-o-transform:translateX(-10px);}20%,40%,60%,80%{-o-transform:translateX(10px);}}@keyframes shake{0%,100%{transform:translateX(0);opacity:1}10%,30%,50%,70%,90%{transform:translateX(-10px)}20%,40%,60%,80%{transform:translateX(10px)}}.shake{-webkit-animation-name:shake;-moz-animation-name:shake;-o-animation-name:shake;animation-name:shake}@-webkit-keyframes bounce{0%,20%,50%,80%,100%{-webkit-transform:translateY(0);opacity:1}40%{-webkit-transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px)}}@-moz-keyframes bounce{0%,20%,50%,80%,100%{-moz-transform:translateY(0);opacity:1}40%{-moz-transform:translateY(-30px)}60%{-moz-transform:translateY(-15px)}}@-o-keyframes bounce{0%,20%,50%,80%,100%{-o-transform:translateY(0);opacity:1;}40%{-o-transform:translateY(-30px);}60%{-o-transform:translateY(-15px);}}@keyframes bounce{0%,20%,50%,80%,100%{transform:translateY(0);opacity:1}40%{transform:translateY(-30px)}60%{transform:translateY(-15px)}}.bounce{-webkit-animation-name:bounce;-moz-animation-name:bounce;-o-animation-name:bounce;animation-name:bounce}@-webkit-keyframes tada{0%{-webkit-transform:scale(1)}10%,20%{-webkit-transform:scale(.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg)}100%{-webkit-transform:scale(1) rotate(0);opacity:1}}@-moz-keyframes tada{0%{-moz-transform:scale(1)}10%,20%{-moz-transform:scale(.9) rotate(-3deg)}30%,50%,70%,90%{-moz-transform:scale(1.1) rotate(3deg)}40%,60%,80%{-moz-transform:scale(1.1) rotate(-3deg)}100%{-moz-transform:scale(1) rotate(0);opacity:1}}@-o-keyframes tada{0%{-o-transform:scale(1);}10%,20%{-o-transform:scale(.9)rotate(-3deg);}30%,50%,70%,90%{-o-transform:scale(1.1)rotate(3deg);}40%,60%,80%{-o-transform:scale(1.1)rotate(-3deg);}100%{-o-transform:scale(1)rotate(0);opacity:1;}}@keyframes tada{0%{transform:scale(1)}10%,20%{transform:scale(.9) rotate(-3deg)}30%,50%,70%,90%{transform:scale(1.1) rotate(3deg)}40%,60%,80%{transform:scale(1.1) rotate(-3deg)}100%{transform:scale(1) rotate(0);opacity:1}}.tada{-webkit-animation-name:tada;-moz-animation-name:tada;-o-animation-name:tada;animation-name:tada}@-webkit-keyframes swing{20%,40%,60%,80%,100%{-webkit-transform-origin:top center}20%{-webkit-transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg)}100%{-webkit-transform:rotate(0deg);opacity:1}}@-moz-keyframes swing{20%{-moz-transform:rotate(15deg)}40%{-moz-transform:rotate(-10deg)}60%{-moz-transform:rotate(5deg)}80%{-moz-transform:rotate(-5deg)}100%{-moz-transform:rotate(0deg);opacity:1}}@-o-keyframes swing{20%{-o-transform:rotate(15deg);}40%{-o-transform:rotate(-10deg);}60%{-o-transform:rotate(5deg);}80%{-o-transform:rotate(-5deg);}100%{-o-transform:rotate(0deg);opacity:1;}}@keyframes swing{20%{transform:rotate(15deg)}40%{transform:rotate(-10deg)}60%{transform:rotate(5deg)}80%{transform:rotate(-5deg)}100%{transform:rotate(0deg);opacity:1}}.swing{-webkit-transform-origin:top center;-moz-transform-origin:top center;-o-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;-moz-animation-name:swing;-o-animation-name:swing;animation-name:swing}@-webkit-keyframes wobble{0%{-webkit-transform:translateX(0%)}15%{-webkit-transform:translateX(-25%) rotate(-5deg)}30%{-webkit-transform:translateX(20%) rotate(3deg)}45%{-webkit-transform:translateX(-15%) rotate(-3deg)}60%{-webkit-transform:translateX(10%) rotate(2deg)}75%{-webkit-transform:translateX(-5%) rotate(-1deg)}100%{-webkit-transform:translateX(0%);opacity:1}}@-moz-keyframes wobble{0%{-moz-transform:translateX(0%)}15%{-moz-transform:translateX(-25%) rotate(-5deg)}30%{-moz-transform:translateX(20%) rotate(3deg)}45%{-moz-transform:translateX(-15%) rotate(-3deg)}60%{-moz-transform:translateX(10%) rotate(2deg)}75%{-moz-transform:translateX(-5%) rotate(-1deg)}100%{-moz-transform:translateX(0%);opacity:1}}@-o-keyframes wobble{0%{-o-transform:translateX(0%);}15%{-o-transform:translateX(-25%)rotate(-5deg);}30%{-o-transform:translateX(20%)rotate(3deg);}45%{-o-transform:translateX(-15%)rotate(-3deg);}60%{-o-transform:translateX(10%)rotate(2deg);}75%{-o-transform:translateX(-5%)rotate(-1deg);}100%{-o-transform:translateX(0%);opacity:1;}}@keyframes wobble{0%{transform:translateX(0%)}15%{transform:translateX(-25%) rotate(-5deg)}30%{transform:translateX(20%) rotate(3deg)}45%{transform:translateX(-15%) rotate(-3deg)}60%{transform:translateX(10%) rotate(2deg)}75%{transform:translateX(-5%) rotate(-1deg)}100%{transform:translateX(0%);opacity:1}}.wobble{-webkit-animation-name:wobble;-moz-animation-name:wobble;-o-animation-name:wobble;animation-name:wobble}@-webkit-keyframes wiggle{0%{-webkit-transform:skewX(9deg)}10%{-webkit-transform:skewX(-8deg)}20%{-webkit-transform:skewX(7deg)}30%{-webkit-transform:skewX(-6deg)}40%{-webkit-transform:skewX(5deg)}50%{-webkit-transform:skewX(-4deg)}60%{-webkit-transform:skewX(3deg)}70%{-webkit-transform:skewX(-2deg)}80%{-webkit-transform:skewX(1deg)}90%{-webkit-transform:skewX(0deg)}100%{-webkit-transform:skewX(0deg);opacity:1}}@-moz-keyframes wiggle{0%{-moz-transform:skewX(9deg)}10%{-moz-transform:skewX(-8deg)}20%{-moz-transform:skewX(7deg)}30%{-moz-transform:skewX(-6deg)}40%{-moz-transform:skewX(5deg)}50%{-moz-transform:skewX(-4deg)}60%{-moz-transform:skewX(3deg)}70%{-moz-transform:skewX(-2deg)}80%{-moz-transform:skewX(1deg)}90%{-moz-transform:skewX(0deg)}100%{-moz-transform:skewX(0deg);opacity:1}}@-o-keyframes wiggle{0%{-o-transform:skewX(9deg);}10%{-o-transform:skewX(-8deg);}20%{-o-transform:skewX(7deg);}30%{-o-transform:skewX(-6deg);}40%{-o-transform:skewX(5deg);}50%{-o-transform:skewX(-4deg);}60%{-o-transform:skewX(3deg);}70%{-o-transform:skewX(-2deg);}80%{-o-transform:skewX(1deg);}90%{-o-transform:skewX(0deg);}100%{-o-transform:skewX(0deg);opacity:1;}}@keyframes wiggle{0%{transform:skewX(9deg)}10%{transform:skewX(-8deg)}20%{transform:skewX(7deg)}30%{transform:skewX(-6deg)}40%{transform:skewX(5deg)}50%{transform:skewX(-4deg)}60%{transform:skewX(3deg)}70%{transform:skewX(-2deg)}80%{transform:skewX(1deg)}90%{transform:skewX(0deg)}100%{transform:skewX(0deg);opacity:1}}.wiggle{-webkit-animation-name:wiggle;-moz-animation-name:wiggle;-o-animation-name:wiggle;animation-name:wiggle;-webkit-animation-timing-function:ease-in;-moz-animation-timing-function:ease-in;-o-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes pulse{0%{-webkit-transform:scale(1)}50%{-webkit-transform:scale(1.1)}100%{-webkit-transform:scale(1);opacity:1}}@-moz-keyframes pulse{0%{-moz-transform:scale(1)}50%{-moz-transform:scale(1.1)}100%{-moz-transform:scale(1);opacity:1}}@-o-keyframes pulse{0%{-o-transform:scale(1);}50%{-o-transform:scale(1.1);}100%{-o-transform:scale(1);opacity:1;}}@keyframes pulse{0%{transform:scale(1)}50%{transform:scale(1.1)}100%{transform:scale(1);opacity:1}}.pulse{-webkit-animation-name:pulse;-moz-animation-name:pulse;-o-animation-name:pulse;animation-name:pulse}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@-moz-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@-o-keyframes fadeIn{0%{opacity:0;}100%{opacity:1;}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;-moz-animation-name:fadeIn;-o-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0)}}@-moz-keyframes fadeInUp{0%{opacity:0;-moz-transform:translateY(20px)}100%{opacity:1;-moz-transform:translateY(0)}}@-o-keyframes fadeInUp{0%{opacity:0;-o-transform:translateY(20px);}100%{opacity:1;-o-transform:translateY(0);}}@keyframes fadeInUp{0%{opacity:0;transform:translateY(20px)}100%{opacity:1;transform:translateY(0)}}.fadeInUp{-webkit-animation-name:fadeInUp;-moz-animation-name:fadeInUp;-o-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0)}}@-moz-keyframes fadeInDown{0%{opacity:0;-moz-transform:translateY(-20px)}100%{opacity:1;-moz-transform:translateY(0)}}@-o-keyframes fadeInDown{0%{opacity:0;-o-transform:translateY(-20px);}100%{opacity:1;-o-transform:translateY(0);}}@keyframes fadeInDown{0%{opacity:0;transform:translateY(-20px)}100%{opacity:1;transform:translateY(0)}}.fadeInDown{-webkit-animation-name:fadeInDown;-moz-animation-name:fadeInDown;-o-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px)}100%{opacity:1;-webkit-transform:translateX(0)}}@-moz-keyframes fadeInLeft{0%{opacity:0;-moz-transform:translateX(-20px)}100%{opacity:1;-moz-transform:translateX(0)}}@-o-keyframes fadeInLeft{0%{opacity:0;-o-transform:translateX(-20px);}100%{opacity:1;-o-transform:translateX(0);}}@keyframes fadeInLeft{0%{opacity:0;transform:translateX(-20px)}100%{opacity:1;transform:translateX(0)}}.fadeInLeft{-webkit-animation-name:fadeInLeft;-moz-animation-name:fadeInLeft;-o-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px)}100%{opacity:1;-webkit-transform:translateX(0)}}@-moz-keyframes fadeInRight{0%{opacity:0;-moz-transform:translateX(20px)}100%{opacity:1;-moz-transform:translateX(0)}}@-o-keyframes fadeInRight{0%{opacity:0;-o-transform:translateX(20px);}100%{opacity:1;-o-transform:translateX(0);}}@keyframes fadeInRight{0%{opacity:0;transform:translateX(20px)}100%{opacity:1;transform:translateX(0)}}.fadeInRight{-webkit-animation-name:fadeInRight;-moz-animation-name:fadeInRight;-o-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0)}}@-moz-keyframes fadeInUpBig{0%{opacity:0;-moz-transform:translateY(2000px)}100%{opacity:1;-moz-transform:translateY(0)}}@-o-keyframes fadeInUpBig{0%{opacity:0;-o-transform:translateY(2000px);}100%{opacity:1;-o-transform:translateY(0);}}@keyframes fadeInUpBig{0%{opacity:0;transform:translateY(2000px)}100%{opacity:1;transform:translateY(0)}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;-moz-animation-name:fadeInUpBig;-o-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translateY(-2000px)}100%{opacity:1;-webkit-transform:translateY(0)}}@-moz-keyframes fadeInDownBig{0%{opacity:0;-moz-transform:translateY(-2000px)}100%{opacity:1;-moz-transform:translateY(0)}}@-o-keyframes fadeInDownBig{0%{opacity:0;-o-transform:translateY(-2000px);}100%{opacity:1;-o-transform:translateY(0);}}@keyframes fadeInDownBig{0%{opacity:0;transform:translateY(-2000px)}100%{opacity:1;transform:translateY(0)}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;-moz-animation-name:fadeInDownBig;-o-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translateX(-2000px)}100%{opacity:1;-webkit-transform:translateX(0)}}@-moz-keyframes fadeInLeftBig{0%{opacity:0;-moz-transform:translateX(-2000px)}100%{opacity:1;-moz-transform:translateX(0)}}@-o-keyframes fadeInLeftBig{0%{opacity:0;-o-transform:translateX(-2000px);}100%{opacity:1;-o-transform:translateX(0);}}@keyframes fadeInLeftBig{0%{opacity:0;transform:translateX(-2000px)}100%{opacity:1;transform:translateX(0)}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;-moz-animation-name:fadeInLeftBig;-o-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translateX(2000px)}100%{opacity:1;-webkit-transform:translateX(0)}}@-moz-keyframes fadeInRightBig{0%{opacity:0;-moz-transform:translateX(2000px)}100%{opacity:1;-moz-transform:translateX(0)}}@-o-keyframes fadeInRightBig{0%{opacity:0;-o-transform:translateX(2000px);}100%{opacity:1;-o-transform:translateX(0);}}@keyframes fadeInRightBig{0%{opacity:0;transform:translateX(2000px)}100%{opacity:1;transform:translateX(0)}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;-moz-animation-name:fadeInRightBig;-o-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes bounceIn{0%{opacity:0;-webkit-transform:scale(.3)}50%{opacity:1;-webkit-transform:scale(1.05)}70%{-webkit-transform:scale(.9)}100%{-webkit-transform:scale(1);opacity:1}}@-moz-keyframes bounceIn{0%{opacity:0;-moz-transform:scale(.3)}50%{opacity:1;-moz-transform:scale(1.05)}70%{-moz-transform:scale(.9)}100%{-moz-transform:scale(1);opacity:1}}@-o-keyframes bounceIn{0%{opacity:0;-o-transform:scale(.3);}50%{opacity:1;-o-transform:scale(1.05);}70%{-o-transform:scale(.9);}100%{-o-transform:scale(1);opacity:1;}}@keyframes bounceIn{0%{opacity:0;transform:scale(.3)}50%{opacity:1;transform:scale(1.05)}70%{transform:scale(.9)}100%{transform:scale(1);opacity:1}}.bounceIn{-webkit-animation-name:bounceIn;-moz-animation-name:bounceIn;-o-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInUp{0%{opacity:0;-webkit-transform:translateY(2000px)}60%{opacity:1;-webkit-transform:translateY(-30px)}80%{-webkit-transform:translateY(10px)}100%{-webkit-transform:translateY(0);opacity:1}}@-moz-keyframes bounceInUp{0%{opacity:0;-moz-transform:translateY(2000px)}60%{opacity:1;-moz-transform:translateY(-30px)}80%{-moz-transform:translateY(10px)}100%{-moz-transform:translateY(0);opacity:1}}@-o-keyframes bounceInUp{0%{opacity:0;-o-transform:translateY(2000px);}60%{opacity:1;-o-transform:translateY(-30px);}80%{-o-transform:translateY(10px);}100%{-o-transform:translateY(0);opacity:1;}}@keyframes bounceInUp{0%{opacity:0;transform:translateY(2000px)}60%{opacity:1;transform:translateY(-30px)}80%{transform:translateY(10px)}100%{transform:translateY(0);opacity:1}}.bounceInUp{-webkit-animation-name:bounceInUp;-moz-animation-name:bounceInUp;-o-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceInDown{0%{opacity:0;-webkit-transform:translateY(-2000px)}60%{opacity:1;-webkit-transform:translateY(30px)}80%{-webkit-transform:translateY(-10px)}100%{-webkit-transform:translateY(0);opacity:1}}@-moz-keyframes bounceInDown{0%{opacity:0;-moz-transform:translateY(-2000px)}60%{opacity:1;-moz-transform:translateY(30px)}80%{-moz-transform:translateY(-10px)}100%{-moz-transform:translateY(0);opacity:1}}@-o-keyframes bounceInDown{0%{opacity:0;-o-transform:translateY(-2000px);}60%{opacity:1;-o-transform:translateY(30px);}80%{-o-transform:translateY(-10px);}100%{-o-transform:translateY(0);opacity:1;}}@keyframes bounceInDown{0%{opacity:0;transform:translateY(-2000px)}60%{opacity:1;transform:translateY(30px)}80%{transform:translateY(-10px)}100%{transform:translateY(0);opacity:1}}.bounceInDown{-webkit-animation-name:bounceInDown;-moz-animation-name:bounceInDown;-o-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px)}60%{opacity:1;-webkit-transform:translateX(30px)}80%{-webkit-transform:translateX(-10px)}100%{-webkit-transform:translateX(0);opacity:1}}@-moz-keyframes bounceInLeft{0%{opacity:0;-moz-transform:translateX(-2000px)}60%{opacity:1;-moz-transform:translateX(30px)}80%{-moz-transform:translateX(-10px)}100%{-moz-transform:translateX(0);opacity:1}}@-o-keyframes bounceInLeft{0%{opacity:0;-o-transform:translateX(-2000px);}60%{opacity:1;-o-transform:translateX(30px);}80%{-o-transform:translateX(-10px);}100%{-o-transform:translateX(0);opacity:1;}}@keyframes bounceInLeft{0%{opacity:0;transform:translateX(-2000px)}60%{opacity:1;transform:translateX(30px)}80%{transform:translateX(-10px)}100%{transform:translateX(0);opacity:1}}.bounceInLeft{-webkit-animation-name:bounceInLeft;-moz-animation-name:bounceInLeft;-o-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%{opacity:0;-webkit-transform:translateX(2000px)}60%{opacity:1;-webkit-transform:translateX(-30px)}80%{-webkit-transform:translateX(10px)}100%{-webkit-transform:translateX(0);opacity:1}}@-moz-keyframes bounceInRight{0%{opacity:0;-moz-transform:translateX(2000px)}60%{opacity:1;-moz-transform:translateX(-30px)}80%{-moz-transform:translateX(10px)}100%{-moz-transform:translateX(0);opacity:1}}@-o-keyframes bounceInRight{0%{opacity:0;-o-transform:translateX(2000px);}60%{opacity:1;-o-transform:translateX(-30px);}80%{-o-transform:translateX(10px);}100%{-o-transform:translateX(0);opacity:1;}}@keyframes bounceInRight{0%{opacity:0;transform:translateX(2000px)}60%{opacity:1;transform:translateX(-30px)}80%{transform:translateX(10px)}100%{transform:translateX(0);opacity:1}}.bounceInRight{-webkit-animation-name:bounceInRight;-moz-animation-name:bounceInRight;-o-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes rotateIn{0%{-webkit-transform-origin:center center;-webkit-transform:rotate(-200deg);opacity:0}100%{-webkit-transform-origin:center center;-webkit-transform:rotate(0);opacity:1}}@-moz-keyframes rotateIn{0%{-moz-transform-origin:center center;-moz-transform:rotate(-200deg);opacity:0}100%{-moz-transform-origin:center center;-moz-transform:rotate(0);opacity:1}}@-o-keyframes rotateIn{0%{-o-transform-origin:center center;-o-transform:rotate(-200deg);opacity:0;}100%{-o-transform-origin:center center;-o-transform:rotate(0);opacity:1;}}@keyframes rotateIn{0%{transform-origin:center center;transform:rotate(-200deg);opacity:0}100%{transform-origin:center center;transform:rotate(0);opacity:1}}.rotateIn{-webkit-animation-name:rotateIn;-moz-animation-name:rotateIn;-o-animation-name:rotateIn;animation-name:rotateIn}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform-origin:left bottom;-webkit-transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:left bottom;-webkit-transform:rotate(0);opacity:1}}@-moz-keyframes rotateInUpLeft{0%{-moz-transform-origin:left bottom;-moz-transform:rotate(90deg);opacity:0}100%{-moz-transform-origin:left bottom;-moz-transform:rotate(0);opacity:1}}@-o-keyframes rotateInUpLeft{0%{-o-transform-origin:left bottom;-o-transform:rotate(90deg);opacity:0;}100%{-o-transform-origin:left bottom;-o-transform:rotate(0);opacity:1;}}@keyframes rotateInUpLeft{0%{transform-origin:left bottom;transform:rotate(90deg);opacity:0}100%{transform-origin:left bottom;transform:rotate(0);opacity:1}}.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;-moz-animation-name:rotateInUpLeft;-o-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform-origin:left bottom;-webkit-transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:left bottom;-webkit-transform:rotate(0);opacity:1}}@-moz-keyframes rotateInDownLeft{0%{-moz-transform-origin:left bottom;-moz-transform:rotate(-90deg);opacity:0}100%{-moz-transform-origin:left bottom;-moz-transform:rotate(0);opacity:1}}@-o-keyframes rotateInDownLeft{0%{-o-transform-origin:left bottom;-o-transform:rotate(-90deg);opacity:0;}100%{-o-transform-origin:left bottom;-o-transform:rotate(0);opacity:1;}}@keyframes rotateInDownLeft{0%{transform-origin:left bottom;transform:rotate(-90deg);opacity:0}100%{transform-origin:left bottom;transform:rotate(0);opacity:1}}.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;-moz-animation-name:rotateInDownLeft;-o-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform-origin:right bottom;-webkit-transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:right bottom;-webkit-transform:rotate(0);opacity:1}}@-moz-keyframes rotateInUpRight{0%{-moz-transform-origin:right bottom;-moz-transform:rotate(-90deg);opacity:0}100%{-moz-transform-origin:right bottom;-moz-transform:rotate(0);opacity:1}}@-o-keyframes rotateInUpRight{0%{-o-transform-origin:right bottom;-o-transform:rotate(-90deg);opacity:0;}100%{-o-transform-origin:right bottom;-o-transform:rotate(0);opacity:1;}}@keyframes rotateInUpRight{0%{transform-origin:right bottom;transform:rotate(-90deg);opacity:0}100%{transform-origin:right bottom;transform:rotate(0);opacity:1}}.rotateInUpRight{-webkit-animation-name:rotateInUpRight;-moz-animation-name:rotateInUpRight;-o-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform-origin:right bottom;-webkit-transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:right bottom;-webkit-transform:rotate(0);opacity:1}}@-moz-keyframes rotateInDownRight{0%{-moz-transform-origin:right bottom;-moz-transform:rotate(90deg);opacity:0}100%{-moz-transform-origin:right bottom;-moz-transform:rotate(0);opacity:1}}@-o-keyframes rotateInDownRight{0%{-o-transform-origin:right bottom;-o-transform:rotate(90deg);opacity:0;}100%{-o-transform-origin:right bottom;-o-transform:rotate(0);opacity:1;}}@keyframes rotateInDownRight{0%{transform-origin:right bottom;transform:rotate(90deg);opacity:0}100%{transform-origin:right bottom;transform:rotate(0);opacity:1}}.rotateInDownRight{-webkit-animation-name:rotateInDownRight;-moz-animation-name:rotateInDownRight;-o-animation-name:rotateInDownRight;animation-name:rotateInDownRight}*{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}div.body *,html .scroll-to-top,.ui-dialog-titlebar-close,.lightbox-opened .mfp-wrap *,.mfp-wrap.my-mfp-zoom-in *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.common_license_container .porto.common_license_message{margin-bottom:0;position:fixed;width:100%;z-index:10000;bottom:0;left:0}.common_license_container .porto.common_license_message .mclose{top:22px;right:40px}.Normal,.NormalDisabled,.NormalDeleted{color:inherit;font-family:inherit;font-size:inherit;line-height:22px}.language .language-object span{float:right;padding:5px 8px;margin:0 0 0 5px;border-radius:100%;box-shadow:1px 1px 1px 0 rgba(0,0,0,.1);-moz-border-radius:100%;-webkit-border-radius:100%;background-color:#fff}.language .language-object span img{height:12px;width:17px;opacity:.4}.language .language-object span:hover img{opacity:1}.language .language-object .Language.selected img{opacity:1;border-color:#222;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:0 1px 0 0 rgba(255,255,255,.8);box-shadow:0 1px 0 0 rgba(255,255,255,.8)}@media(max-width:576px){header.flat-header .language,header.newHeader .language{display:inline-block;float:right;margin-bottom:10px}header.flat-header .header-body #login,header.newHeader .header-body #login{display:block;float:right}header.flat-header #login .loginGroup,header.flat-header #login .registerGroup,header.newHeader #login .loginGroup,header.newHeader #login .registerGroup{float:right}header.flat-header #login .registerGroup a,header.newHeader #login .registerGroup a{margin-left:5px}header.flat-header .header-body .header-nav-top,header.newHeader .header-body .header-nav-top{display:block}}header.colored.flat-menu.darken-top-border div.search,header.clean-top.center div.search{margin-bottom:0}#login .registerGroup,#login .registerGroup *,#login .loginGroup,#login .loginGroup *{display:block}#login .loginGroup{margin-left:15px}#login .registerGroup li:first-child:hover{border-left:#222}#login .registerGroup li{float:left}#login .registerGroup .buttonGroup{margin:0;padding:0 0 0 10px;list-style:none}#login .registerGroup a,#login .loginGroup a,#login a.SkinObject,#login a.LoginLink{position:relative;text-transform:uppercase;font-weight:bold}#login .registerGroup a{line-height:16px;height:32px;padding:10px 0;font-weight:bold;margin-left:8px}#login a.SkinObject,#login a.LoginLink{padding:7px 0}#login .userMessages a:hover,#login .userNotifications a:hover{background:#eee}#login .registerGroup a:hover,#login .loginGroup a:hover{text-decoration:none}#login .registerGroup a strong,#login .loginGroup a strong{display:block;position:absolute;left:0;top:0;width:100%;overflow:hidden;font-size:11px;text-indent:-9999px}#login .userMessages a,#login .userNotifications a{background-color:#fff;box-shadow:0 2px 2px 0 rgba(0,0,0,.3);padding-left:16px;padding-right:16px}#login .userProfileImg img,#login .registerGroup a,#login .loginGroup a,#login a.SkinObject,#login a.LoginLink{border-radius:20px}#login .userMessages strong{height:100%;background:url("/Portals/_default/skins/porto/Resources/img/icon_message.png") no-repeat center center}#login .userNotifications strong{height:100%;background:url("/Portals/_default/skins/porto/Resources/img/icon_notification.png") no-repeat center center}#login .registerGroup a span{display:inline-block;position:absolute;right:2px;top:-9px;min-width:7px;margin-right:3px;background:#3b96b6;text-align:center;font-size:11px;color:#fff;text-shadow:0 1px 0 #333}#login .registerGroup .userProfileImg a{min-width:25px;min-height:32px;padding:0;background:none;box-shadow:0 2px 2px 0 rgba(0,0,0,.3)}#login .registerGroup a img{height:32px;width:32px;background:#333}#login .userMessages a span,#login .userNotifications a span{display:inline-block;margin-top:9px;margin-right:0;background-color:transparent;font-size:10px}.layout_trigger{position:fixed;left:0;top:0;width:100%;height:100%;z-index:-2;background-size:cover}.dnnCheckbox .mark{padding:0;background-color:transparent}.body .dnnSortable{min-height:0 !important}.body .dnnDropEmptyPanes{min-height:110px !important;outline:1px dashed #ccc !important}.body ul.dnnAdminTabNav,.body ul.dnnActions,#dnnModuleDigitalAssetsBreadcrumb ul{padding-left:0}.body ul.dnnAdminTabNav li{line-height:normal}header.flat-menu.clean-top div.social-icons,header.colored.flat-menu div.social-icons,header.clean-top.center div.social-icons{float:left;margin:0;clear:none}#ControlBar,div.body .mdMemberList *,div.body .dnnDocumentViewerBackground *,div.body .dnnDropDownList .selected-item a,.dnnDocumentViewerBackground div,#dnnModuleDigitalAssetsMainToolbar,#dnnModuleDigitalAssetsSelectionToolbar{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.icon-search{display:inline-block;font-family:"Font Awesome 5 Free";font-style:normal;font-weight:normal;line-height:1}.DnnModule{z-index:inherit !important}#UserProfileImg img{width:100px;height:auto;border:solid 3px #fff}.UserProfileControls ul{margin:15px 0;padding:0}.UserProfileControls ul li{list-style-type:none;margin-bottom:3px}blockquote p{font-style:normal;font-family:"Open Sans",Arial,sans-serif}.dnnEditState .DnnModule{opacity:1}.DNNEmptyPane{width:auto}body .dnnLogin .dnnSecondaryAction{color:#333}.body .dnnLogin .dnnLoginService .dnnFormItem>label#dnn_ctr_Login_Login_DNN_lblLogin,.body .dnnForm.dnnLoginService.dnnClear .dnnFormItem:nth-child(4)>.dnnFormLabel,.body .dnnLogin .dnnLoginService .dnnFormItem>span.dnnFormLabel{display:none}.dnnFormMessage{max-width:100%}.btn-primary:visited,.btn-primary:visited:hover{color:#fff}@media only screen and (min-width:0) and (max-width:479px){.LoginPanel{width:100%;padding:0}.dnnLoginService input[type="text"],.dnnLoginService input[type="password"],div.dnnRegistrationForm{min-width:100%;width:100%}.dnnFormItem>label.dnnFormLabel,.dnnLabel{width:auto}.dnnFormItem input[type="text"],.dnnFormItem input[type="password"],.dnnFormItem input[type="email"],.dnnFormItem input[type="tel"],.dnnFormItem select,.dnnFormItem textarea{max-width:100%;width:100%}.dnnFormMessage{max-width:100%}div.dnnRegistrationForm .dnnForm{width:100%}}.btn-danger:visited{color:#fff}footer .container .row>div{margin-bottom:0 !important}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{min-height:0}blockquote cite{display:inline;color:#777;font-size:inherit}header div.search input.NormalTextBox:first-child{-moz-border-radius:20px;-webkit-border-radius:20px;border-radius:20px;width:170px;font-size:.9em;padding:6px 32px 6px 12px;height:34px;-moz-transition:all .2s ease-in .2s;-o-transition:all .2s ease-in .2s;-webkit-transition:all .2s ease-in .2s;transition:all .2s ease-in .2s}header div.search input.NormalTextBox:focus{width:220px;border-color:#ccc;outline:none}header div.search input.NormalTextBox{display:block;float:left;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.428571429;color:#555;vertical-align:middle;background-color:#fff;background-image:none;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}header .icon-search{border:0;background:url("/Portals/_default/skins/porto/Resources/img/search.png") no-repeat center center;position:absolute;top:0;right:4px;padding:10px;text-decoration:none;font-size:12px}ul,ol{margin-left:0;margin-right:0;padding-left:40px}li p{line-height:24px}header .header-top.header-top-style-2 div.social-icons{float:left;margin:0;clear:none}header .header-top.header-top-style-2 .social-icons{margin:14px 5px 0;line-height:normal}@media(max-width:991px){header nav ul.nav-main li a i.fa-caret-down,header nav ul.nav-main li a em.fa-caret-down,header nav ul.nav-main .dropdown-submenu i.fa-caret-down,header nav ul.nav-main .dropdown-submenu em.fa-caret-down{font-size:25px}header .header-top{display:block}header div.search{display:none}header .social-icons{margin-top:13px}}footer .copyright a{margin-left:5px;margin-right:5px}footer .copyright span{margin-right:5px}.icon{display:inline-block;font:normal normal normal 14px/1 'Font Awesome 5 Free';font-weight:900;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-map-marker:before{content:""}.icon-phone:before{content:""}.icon-envelope:before{content:""}.custom-underline{background:url("/Portals/_default/skins/porto/Resources/img/custom-underline.png") no-repeat center 100%;padding-bottom:25px;font-size:1.5em}.feature-box-icon i.fa.text-color-primary,.feature-box-icon i.fas.text-color-primary,.feature-box-icon i.far.text-color-primary,.feature-box-icon i.fal.text-color-primary,.feature-box-icon i.fab.text-color-primary,.feature-box-icon em.fa.text-color-primary,.feature-box-icon em.fas.text-color-primary,.feature-box-icon em.far.text-color-primary,.feature-box-icon em.fal.text-color-primary,.feature-box-icon em.fab.text-color-primary{line-height:32px}p .font-size-sm{font-size:.9em !important}.center .font-size-md{font-size:1em !important}@media(min-width:992px){.mockup-landing-page{margin-top:-120px}}section.section.section-with-mockup{margin-top:120px}.semi-bold{font-weight:600}.dnnFormItem .dnnLoginActions .dnnActions li{margin-bottom:-20px}.body .dnnLogin .dnnLoginService,.body div.dnnRegistrationForm{border-radius:8px;border:1px solid #ccc;border-top-width:4px;padding:30px 30px 10px 30px;width:100%}.body .dnnLogin .dnnLoginService .dnnFormItem>.dnnSecondaryAction,.body .dnnRegistrationForm ul#dnn_ctr_Register_actionsRow li a.dnnSecondaryAction{text-decoration:none;background:none;border:none;box-shadow:none}.dnnActions li#dnn_ctr_Login_Login_DNN_liPassword a.dnnSecondaryAction{text-decoration:none;background:none;border:none;box-shadow:none}.dnnActions li#dnn_ctr_Login_Login_DNN_liRegister .dnnSecondaryAction:hover,a.dnnSecondaryAction:hover{background-color:#0099e6}.body .dnnLogin .dnnFormItem label.dnnFormLabel,.body .dnnRegistrationForm .dnnLabel,.body .dnnLogin .dnnFormItem span.dnnFormLabel{margin-bottom:5px !important;text-align:left !important;width:100% !important}.body .dnnLogin .dnnLoginService input[type="text"],.body .dnnLoginService input[type="password"],.body .dnnRegistrationForm .dnnFormItem input[type="text"],.body .dnnRegistrationForm .dnnFormItem input[type="password"],.body .dnnRegistrationForm .dnnFormItem input[type="email"],.body .dnnRegistrationForm .dnnFormItem input[type="tel"],.body .dnnRegistrationForm .dnnFormItem select{width:100%;min-width:100%}.dnnForm .dnnFormItem{margin-bottom:12px}.body .dnnFormItem .dnnLoginRememberMe{display:block;margin-top:11px}.body .dnnLogin label,.body .dnnRegistrationForm label{font-weight:bold}.body .dnnLoginService input[type="text"],.body .dnnLoginService input[type="password"]{height:46px}.body .loginContent{margin-top:50px}.body .dnnLogin .dnnLoginService input[type="text"],.body .dnnLoginService input[type="password"],.body .dnnRegistrationForm .dnnFormItem input[type="text"],.body .dnnRegistrationForm .dnnFormItem input[type="password"],.body .dnnRegistrationForm .dnnFormItem input[type="email"],.body .dnnRegistrationForm .dnnFormItem input[type="tel"],.body .dnnRegistrationForm .dnnFormItem select{width:100%;min-width:100%}.body .dnnLogin .LoginPanel{padding-right:0;width:100%}.body div.dnnRegistrationForm .dnnForm{width:100%;margin-bottom:-30px}.body .dnnLogin a.dnnPrimaryAction,.body .dnnRegistrationForm a.dnnPrimaryAction{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25);box-shadow:none;text-decoration:none}.body .dnnRegistrationForm .dnnFormItem>.dnnLabel{margin-top:0;width:auto}.body .dnnRegistrationForm .password-strength-container{margin:0 0 18px 0 !important;max-width:100% !important;width:100% !important}.body .dnnFormItem .password-strength-container input[type="password"]{margin-bottom:10px}@media(min-width:991px){.body .dnnLogin .dnnLoginService{width:100%;margin:0 auto}}.body div.dnnRegistrationForm{min-width:100%;box-sizing:border-box}.dnnActions a.dnnSecondaryAction{text-decoration:none}.body .LoginPanel .dnnFormItem>.dnnLabel{padding-right:0;width:30%;margin:6px 18px 0 0;float:none}body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container input[type="password"]{margin:0;width:100%}body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage{padding:10px}.loginContent .dnnLoginActions ul.dnnActions.dnnClear{padding:0}.btn-text-indent{text-indent:-9999px;position:absolute}section.video{-webkit-transform:translate3d(0,0,0);background-position:50% 50%;background-repeat:no-repeat;padding:50px 0;position:relative;overflow:hidden;width:100%}section.video .container{position:relative;z-index:3}section.video .video-overlay{background:transparent url("/Portals/_default/skins/porto/Resources/img/video-overlay.png") repeat 0 0;position:absolute;top:0;left:0;right:0;bottom:0;width:100%;height:100%;z-index:2}html.boxed section.video>div:first-child{z-index:0 !important}html.boxed section.video>div:first-child video{z-index:0 !important}.owl-carousel{display:none;width:100%;-webkit-tap-highlight-color:transparent;position:relative;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-wrapper,.owl-carousel .owl-item{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{position:relative;min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-nav.disabled,.owl-carousel .owl-dots.disabled{display:none}.owl-carousel .owl-nav .owl-prev,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-dot{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-prev,.owl-carousel .owl-nav button.owl-next,.owl-carousel button.owl-dot{background:none;color:inherit;border:none;padding:0 !important;font:inherit}.owl-carousel.owl-loaded{display:block}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.no-js .owl-carousel{display:block}.owl-carousel .animated{animation-duration:1000ms;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height 500ms ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity 400ms ease}.owl-carousel .owl-item .owl-lazy[src^=""],.owl-carousel .owl-item .owl-lazy:not([src]){max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url("/Portals/_default/skins/porto/Resources/img/owl.video.play.png") no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform 100ms ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-tn,.owl-carousel .owl-video-playing .owl-video-play-icon{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity 400ms ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}.owl-theme .owl-nav{margin-top:10px;text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav [class*='owl-']{color:#fff;font-size:14px;margin:5px;padding:4px 7px;background:#d6d6d6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*='owl-']:hover{background:#869791;color:#fff;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1;*display:inline}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#d6d6d6;display:block;-webkit-backface-visibility:visible;transition:opacity 200ms ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}.owl-carousel{margin-bottom:20px}.owl-carousel .thumbnail{margin-right:1px}.owl-carousel .item-video{height:300px}.owl-carousel .owl-nav{top:50%;position:absolute;margin-top:-20px;width:100%}.owl-carousel .owl-nav .owl-prev,.owl-carousel .owl-nav .owl-next{display:inline-block;position:absolute;width:30px;height:30px}.owl-carousel .owl-nav .owl-prev{left:-5px}.owl-carousel .owl-nav .owl-next{right:-5px}.owl-carousel.stage-margin .owl-stage-outer{padding-left:0 !important;padding-right:0 !important;margin-left:40px !important;margin-right:40px !important}.owl-carousel.show-nav-hover .owl-nav{opacity:0;-webkit-transition:opacity .2s ease-in-out;-moz-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}.owl-carousel.show-nav-hover .owl-nav .owl-prev{left:-20px}.owl-carousel.show-nav-hover .owl-nav .owl-next{right:-20px}.owl-carousel.show-nav-hover:hover .owl-nav{opacity:1}.owl-carousel.show-nav-title .owl-controls .owl-nav{top:0;right:0;margin-top:-45px;width:auto}.owl-carousel.show-nav-title .owl-controls .owl-nav [class*="owl-"],.owl-carousel.show-nav-title .owl-controls .owl-nav [class*="owl-"]:hover{font-size:18px;background:transparent}.owl-carousel.rounded-nav .owl-controls .owl-nav [class*="owl-"],.owl-carousel.rounded-nav .owl-controls .owl-nav [class*="owl-"]:hover{padding:3px 7px;border-radius:50%;background:transparent;border:1px solid #999 !important;color:#999}.owl-carousel.nav-bottom .owl-controls .owl-nav{position:static;margin:0;padding:0;width:auto}.owl-carousel.nav-bottom .owl-controls .owl-nav .owl-prev,.owl-carousel.nav-bottom .owl-controls .owl-nav .owl-next{position:static}.owl-carousel.nav-inside .owl-controls{bottom:2px;margin-top:10px;position:absolute;right:6px}.owl-carousel.full-width .owl-controls .owl-nav,.owl-carousel.big-nav .owl-controls .owl-nav{margin-top:-30px}.owl-carousel.full-width .owl-controls .owl-nav [class*="owl-"],.owl-carousel.full-width .owl-controls .owl-nav [class*="owl-"]:hover,.owl-carousel.big-nav .owl-controls .owl-nav [class*="owl-"],.owl-carousel.big-nav .owl-controls .owl-nav [class*="owl-"]:hover{height:auto;padding:20px 0}.owl-carousel.full-width .owl-controls .owl-nav .owl-prev,.owl-carousel.big-nav .owl-controls .owl-nav .owl-prev{border-radius:0 4px 4px 0}.owl-carousel.full-width .owl-controls .owl-nav .owl-next,.owl-carousel.big-nav .owl-controls .owl-nav .owl-next{border-radius:4px 0 0 4px}.owl-carousel.top-border{border-top:1px solid #dbdbdb;padding-top:18px}.owl-carousel-spaced{margin-left:-5px}.owl-carousel-spaced .owl-item>div{margin:5px}.owl-carousel.testimonials img{display:inline-block;height:70px;width:70px}@media(max-width:479px){.owl-carousel-spaced{margin-left:0}}.carousel-areas .owl-carousel:first-child img{border-radius:6px 6px 0 0}.carousel-areas{background:transparent url("/Portals/_default/skins/porto/Resources/img/patterns/stripes.png") repeat 0 0;margin-bottom:-10px;padding:10px 10px 0 10px;border-radius:6px 6px 0 0}.carousel-areas .owl-carousel .owl-nav .owl-prev{left:-55px}.carousel-areas .owl-carousel .owl-nav .owl-next{right:-55px}.carousel-areas .owl-carousel{box-shadow:0 5px 5px rgba(0,0,0,.2)}.owl-carousel.stage-margin .owl-stage-outer{padding-left:0 !important;padding-right:0 !important;margin-left:40px !important;margin-right:40px !important}.owl-carousel .owl-nav .owl-next:before{font-family:"Font Awesome 5 Free";content:"";position:relative;left:2px;top:1px}.owl-carousel .owl-nav .owl-prev:before{font-family:"Font Awesome 5 Free";content:"";position:relative;left:-1px;top:1px}.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{display:inline-block;position:absolute;width:30px;height:30px}.owl-carousel .owl-nav .owl-prev{left:-5px}.owl-carousel .owl-nav .owl-next{right:-5px}.owl-carousel.show-nav-title .owl-nav .owl-prev{left:-72px}.owl-carousel.show-nav-title.owl-team-carousel .owl-controls .owl-nav{top:50%;margin-top:-45px;width:100%;left:0;right:0}.owl-carousel.show-nav-title.owl-team-carousel .owl-nav .owl-prev{left:-20px}.owl-carousel.show-nav-title.owl-team-carousel .owl-nav .owl-next{right:-20px}@media(max-width:991px){.owl-carousel.show-nav-title.owl-team-carousel .owl-nav .owl-prev{left:-15px}.owl-carousel.show-nav-title.owl-team-carousel .owl-nav .owl-next{right:-15px}}.owl-carousel.show-nav-title .owl-nav{top:0;right:0;margin-top:-45px;width:auto}.owl-carousel.show-nav-title .owl-nav [class*="owl-"],.owl-carousel.show-nav-title .owl-nav [class*="owl-"]:hover{font-size:18px;background:transparent}.owl-carousel.rounded-nav .owl-nav [class*="owl-"],.owl-carousel.rounded-nav .owl-nav [class*="owl-"]:hover{padding:3px 7px;border-radius:50%;background:transparent;border:1px solid #999 !important;color:#999}.owl-carousel.nav-bottom .owl-nav{position:static;margin:0;padding:0;width:auto}.owl-carousel.nav-bottom .owl-nav .owl-prev,.owl-carousel.nav-bottom .owl-nav .owl-next{position:static}.owl-carousel.nav-inside{bottom:2px;margin-top:10px;right:6px}.owl-carousel.full-width .owl-nav,.owl-carousel.big-nav .owl-nav{margin-top:-30px}.owl-carousel.full-width .owl-nav [class*="owl-"],.owl-carousel.full-width .owl-nav [class*="owl-"]:hover,.owl-carousel.big-nav .owl-nav [class*="owl-"],.owl-carousel.big-nav .owl-nav [class*="owl-"]:hover{height:auto;padding:20px 0}.owl-carousel.full-width .owl-nav .owl-prev,.owl-carousel.big-nav .owl-nav .owl-prev{border-radius:0 4px 4px 0}.owl-carousel.full-width .owl-nav .owl-next,.owl-carousel.big-nav .owl-nav .owl-next{border-radius:4px 0 0 4px}.owl-carousel.show-nav-title.owl-team-carousel .owl-nav{top:50%;margin-top:-45px;width:100%;left:0;right:0}.owl-carousel .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-carousel .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#d6d6d6;display:block;-webkit-backface-visibility:visible;-webkit-transition:opacity 200ms ease;-moz-transition:opacity 200ms ease;-ms-transition:opacity 200ms ease;-o-transition:opacity 200ms ease;transition:opacity 200ms ease;-webkit-border-radius:30px;-moz-border-radius:30px;border-radius:30px;border:2px solid transparent}.owl-carousel .owl-dots,.owl-carousel.nav-bottom .owl-nav{text-align:center;margin-top:10px}.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{text-align:center}.owl-carousel .owl-nav [class*='owl-']{margin:5px;webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;padding:4px 7px}.owl-carousel.nav-inside.owl-drag .owl-dots{position:absolute;right:10px;bottom:10px}.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{font-weight:bold !important}@font-face{font-family:'Simple-Line-Icons';src:url("/Portals/_default/skins/porto/Resources/fonts/Simple-Line-Icons.eot");src:url("/Portals/_default/skins/porto/Resources/fonts/Simple-Line-Icons.eot?#iefix") format('embedded-opentype'),url("/Portals/_default/skins/porto/Resources/fonts/Simple-Line-Icons.woff") format('woff'),url("/Portals/_default/skins/porto/Resources/fonts/Simple-Line-Icons.ttf") format('truetype'),url("/Portals/_default/skins/porto/Resources/fonts/Simple-Line-Icons.svg#Simple-Line-Icons") format('svg');font-weight:normal;font-style:normal}[data-icon]:before{font-family:'Simple-Line-Icons';content:attr(data-icon);speak:none;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-user-female,.icon-user-follow,.icon-user-following,.icon-user-unfollow,.icon-trophy,.icon-screen-smartphone,.icon-screen-desktop,.icon-plane,.icon-notebook,.icon-moustache,.icon-mouse,.icon-magnet,.icon-energy,.icon-emoticon-smile,.icon-disc,.icon-cursor-move,.icon-crop,.icon-credit-card,.icon-chemistry,.icon-user,.icon-speedometer,.icon-social-youtube,.icon-social-twitter,.icon-social-tumblr,.icon-social-facebook,.icon-social-dropbox,.icon-social-dribbble,.icon-shield,.icon-screen-tablet,.icon-magic-wand,.icon-hourglass,.icon-graduation,.icon-ghost,.icon-game-controller,.icon-fire,.icon-eyeglasses,.icon-envelope-open,.icon-envelope-letter,.icon-bell,.icon-badge,.icon-anchor,.icon-wallet,.icon-vector,.icon-speech,.icon-puzzle,.icon-printer,.icon-present,.icon-playlist,.icon-pin,.icon-picture,.icon-map,.icon-layers,.icon-handbag,.icon-globe-alt,.icon-globe,.icon-frame,.icon-folder-alt,.icon-film,.icon-feed,.icon-earphones-alt,.icon-earphones,.icon-drop,.icon-drawer,.icon-docs,.icon-directions,.icon-direction,.icon-diamond,.icon-cup,.icon-compass,.icon-call-out,.icon-call-in,.icon-call-end,.icon-calculator,.icon-bubbles,.icon-briefcase,.icon-book-open,.icon-basket-loaded,.icon-basket,.icon-bag,.icon-action-undo,.icon-action-redo,.icon-wrench,.icon-umbrella,.icon-trash,.icon-tag,.icon-support,.icon-size-fullscreen,.icon-size-actual,.icon-shuffle,.icon-share-alt,.icon-share,.icon-rocket,.icon-question,.icon-pie-chart,.icon-pencil,.icon-note,.icon-music-tone-alt,.icon-music-tone,.icon-microphone,.icon-loop,.icon-logout,.icon-login,.icon-list,.icon-like,.icon-home,.icon-grid,.icon-graph,.icon-equalizer,.icon-dislike,.icon-cursor,.icon-control-start,.icon-control-rewind,.icon-control-play,.icon-control-pause,.icon-control-forward,.icon-control-end,.icon-calendar,.icon-bulb,.icon-bar-chart,.icon-arrow-up,.icon-arrow-right,.icon-arrow-left,.icon-arrow-down,.icon-ban,.icon-bubble,.icon-camcorder,.icon-camera,.icon-check,.icon-clock,.icon-close,.icon-cloud-download,.icon-cloud-upload,.icon-doc,.icon-envelope,.icon-eye,.icon-flag,.icon-folder,.icon-heart,.icon-info,.icon-key,.icon-link,.icon-lock,.icon-lock-open,.icon-magnifier,.icon-magnifier-add,.icon-magnifier-remove,.icon-paper-clip,.icon-paper-plane,.icon-plus,.icon-pointer,.icon-power,.icon-refresh,.icon-reload,.icon-settings,.icon-star,.icon-symbol-female,.icon-symbol-male,.icon-target,.icon-volume-1,.icon-volume-2,.icon-volume-off,.icon-users{font-family:'Simple-Line-Icons';speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased}.icon-user-female:before{content:""}.icon-user-follow:before{content:""}.icon-user-following:before{content:""}.icon-user-unfollow:before{content:""}.icon-trophy:before{content:""}.icon-screen-smartphone:before{content:""}.icon-screen-desktop:before{content:""}.icon-plane:before{content:""}.icon-notebook:before{content:""}.icon-moustache:before{content:""}.icon-mouse:before{content:""}.icon-magnet:before{content:""}.icon-energy:before{content:""}.icon-emoticon-smile:before{content:""}.icon-disc:before{content:""}.icon-cursor-move:before{content:""}.icon-crop:before{content:""}.icon-credit-card:before{content:""}.icon-chemistry:before{content:""}.icon-user:before{content:""}.icon-speedometer:before{content:""}.icon-social-youtube:before{content:""}.icon-social-twitter:before{content:""}.icon-social-tumblr:before{content:""}.icon-social-facebook:before{content:""}.icon-social-dropbox:before{content:""}.icon-social-dribbble:before{content:""}.icon-shield:before{content:""}.icon-screen-tablet:before{content:""}.icon-magic-wand:before{content:""}.icon-hourglass:before{content:""}.icon-graduation:before{content:""}.icon-ghost:before{content:""}.icon-game-controller:before{content:""}.icon-fire:before{content:""}.icon-eyeglasses:before{content:""}.icon-envelope-open:before{content:""}.icon-envelope-letter:before{content:""}.icon-bell:before{content:""}.icon-badge:before{content:""}.icon-anchor:before{content:""}.icon-wallet:before{content:""}.icon-vector:before{content:""}.icon-speech:before{content:""}.icon-puzzle:before{content:""}.icon-printer:before{content:""}.icon-present:before{content:""}.icon-playlist:before{content:""}.icon-pin:before{content:""}.icon-picture:before{content:""}.icon-map:before{content:""}.icon-layers:before{content:""}.icon-handbag:before{content:""}.icon-globe-alt:before{content:""}.icon-globe:before{content:""}.icon-frame:before{content:""}.icon-folder-alt:before{content:""}.icon-film:before{content:""}.icon-feed:before{content:""}.icon-earphones-alt:before{content:""}.icon-earphones:before{content:""}.icon-drop:before{content:""}.icon-drawer:before{content:""}.icon-docs:before{content:""}.icon-directions:before{content:""}.icon-direction:before{content:""}.icon-diamond:before{content:""}.icon-cup:before{content:""}.icon-compass:before{content:""}.icon-call-out:before{content:""}.icon-call-in:before{content:""}.icon-call-end:before{content:""}.icon-calculator:before{content:""}.icon-bubbles:before{content:""}.icon-briefcase:before{content:""}.icon-book-open:before{content:""}.icon-basket-loaded:before{content:""}.icon-basket:before{content:""}.icon-bag:before{content:""}.icon-action-undo:before{content:""}.icon-action-redo:before{content:""}.icon-wrench:before{content:""}.icon-umbrella:before{content:""}.icon-trash:before{content:""}.icon-tag:before{content:""}.icon-support:before{content:""}.icon-size-fullscreen:before{content:""}.icon-size-actual:before{content:""}.icon-shuffle:before{content:""}.icon-share-alt:before{content:""}.icon-share:before{content:""}.icon-rocket:before{content:""}.icon-question:before{content:""}.icon-pie-chart:before{content:""}.icon-pencil:before{content:""}.icon-note:before{content:""}.icon-music-tone-alt:before{content:""}.icon-music-tone:before{content:""}.icon-microphone:before{content:""}.icon-loop:before{content:""}.icon-logout:before{content:""}.icon-login:before{content:""}.icon-list:before{content:""}.icon-like:before{content:""}.icon-home:before{content:""}.icon-grid:before{content:""}.icon-graph:before{content:""}.icon-equalizer:before{content:""}.icon-dislike:before{content:""}.icon-cursor:before{content:""}.icon-control-start:before{content:""}.icon-control-rewind:before{content:""}.icon-control-play:before{content:""}.icon-control-pause:before{content:""}.icon-control-forward:before{content:""}.icon-control-end:before{content:""}.icon-calendar:before{content:""}.icon-bulb:before{content:""}.icon-bar-chart:before{content:""}.icon-arrow-up:before{content:""}.icon-arrow-right:before{content:""}.icon-arrow-left:before{content:""}.icon-arrow-down:before{content:""}.icon-ban:before{content:""}.icon-bubble:before{content:""}.icon-camcorder:before{content:""}.icon-camera:before{content:""}.icon-check:before{content:""}.icon-clock:before{content:""}.icon-close:before{content:""}.icon-cloud-download:before{content:""}.icon-cloud-upload:before{content:""}.icon-doc:before{content:""}.icon-envelope:before{content:""}.icon-eye:before{content:""}.icon-flag:before{content:""}.icon-folder:before{content:""}.icon-heart:before{content:""}.icon-info:before{content:""}.icon-key:before{content:""}.icon-link:before{content:""}.icon-lock:before{content:""}.icon-lock-open:before{content:""}.icon-magnifier:before{content:""}.icon-magnifier-add:before{content:""}.icon-magnifier-remove:before{content:""}.icon-paper-clip:before{content:""}.icon-paper-plane:before{content:""}.icon-plus:before{content:""}.icon-pointer:before{content:""}.icon-power:before{content:""}.icon-refresh:before{content:""}.icon-reload:before{content:""}.icon-settings:before{content:""}.icon-star:before{content:""}.icon-symbol-female:before{content:""}.icon-symbol-male:before{content:""}.icon-target:before{content:""}.icon-volume-1:before{content:""}.icon-volume-2:before{content:""}.icon-volume-off:before{content:""}.icon-users:before{content:""}.fc-slideshow{position:relative;width:338px;height:338px;border-radius:50%;margin:0 auto;-webkit-perspective:1200px;-moz-perspective:1200px;perspective:1200px;top:6px}.fc-slideshow nav{top:0;height:100%;width:100%;position:absolute;z-index:10000;display:none}.fc-slideshow nav>div{position:absolute;height:100%;top:0;width:50%}.fc-slideshow nav .fc-left{left:0}.fc-slideshow nav .fc-right{right:0}.fc-slideshow nav>div span{height:33%;width:100%;position:absolute;left:0}.fc-slideshow nav>div span:first-child{top:0}.fc-slideshow nav>div span:nth-child(2){top:33%}.fc-slideshow nav>div span:nth-child(3){top:66%}.fc-slideshow nav i,.no-csstransforms3d .fc-slideshow nav>div span{position:absolute;width:100%;height:40px;top:50%;margin-top:-20px;pointer-events:none;opacity:0;-webkit-backface-visibility:hidden;-webkit-transition:all .2s ease;-moz-backface-visibility:hidden;-moz-transition:all .2s ease;backface-visibility:hidden;transition:all .2s ease}.no-csstransforms3d .fc-slideshow nav>div span{z-index:1000;width:40px;background:rgba(0,0,0,0)}.no-csstransforms3d .fc-slideshow nav .fc-left span{left:-80px}.no-csstransforms3d .fc-slideshow nav .fc-right span{right:-80px;left:auto}.no-csstransforms3d .fc-slideshow nav i,.no-csstransforms3d .fc-slideshow nav em{width:40px;cursor:pointer}.fc-slideshow nav .fc-left i,.fc-slideshow nav .fc-left em{-webkit-transform-origin:100% 50%;-moz-transform-origin:100% 50%;transform-origin:100% 50%;text-align:left}.fc-slideshow nav .fc-right i,.fc-slideshow nav .fc-right em{-webkit-transform-origin:0% 50%;-moz-transform-origin:0% 50%;transform-origin:0% 50%;text-align:right}.csstransforms3d .fc-slideshow nav>div span:hover~i,.csstransforms3d .fc-slideshow nav>div span:hover~em,.no-csstransforms3d .fc-slideshow nav i,.no-csstransforms3d .fc-slideshow nav em,.no-csstransforms3d .fc-slideshow nav>div span{opacity:1}.csstransforms3d .fc-slideshow nav>div span:nth-child(2):hover~i,.csstransforms3d .fc-slideshow nav>div span:nth-child(2):hover~em{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);transform:rotate(0deg)}.csstransforms3d .fc-slideshow nav>.fc-left span:first-child:hover~i,.csstransforms3d .fc-slideshow nav>.fc-left span:first-child:hover~em,.csstransforms3d .fc-slideshow nav>.fc-right span:nth-child(3):hover~i,.csstransforms3d .fc-slideshow nav>.fc-right span:nth-child(3):hover~em{-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);transform:rotate(45deg)}.csstransforms3d .fc-slideshow nav>.fc-right span:first-child:hover~i,.csstransforms3d .fc-slideshow nav>.fc-right span:first-child:hover~em,.csstransforms3d .fc-slideshow nav>.fc-left span:nth-child(3):hover~i,.csstransforms3d .fc-slideshow nav>.fc-left span:nth-child(3):hover~em{-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);transform:rotate(-45deg)}ul.fc-slides{list-style:none;margin:0;padding:0}ul.fc-slides li{display:none}.no-js ul.fc-slides li{display:block}.fc-flip{width:100%;height:100%;border-radius:50%;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d}.fc-flip div{width:100%;height:100%;position:absolute;border-radius:50%;top:0;left:0;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}.fc-flip .fc-back{-webkit-transform:rotateY(-180deg);-moz-transform:rotateY(-180deg);transform:rotateY(-180deg)}.fc-slideshow img{border-radius:50%}.fc-slideshow h3{position:absolute;color:#fff;top:50%;margin-top:30px;line-height:50px;height:50px;left:80px;right:80px;background:#ff514c;font-size:22px;text-transform:uppercase;letter-spacing:2px;text-align:center;border-radius:20% 10% 50% 5%/25% 10% 30% 75%}.fc-overlay-light,.fc-overlay-dark{opacity:0}.fc-overlay-light{background:rgba(255,255,255,1)}.fc-overlay-dark{background:rgba(0,0,0,1)}.no-js .fc-slideshow{height:auto;box-shadow:none}.no-js .fc-slideshow h3{position:relative;width:auto;height:auto;left:auto;right:auto;top:auto;margin:5px}
/*!
 * Slidebars - A jQuery Framework for Off-Canvas Menus and Sidebars
 * Version: 2.0.2
 * Url: http://www.adchsm.com/slidebars/
 * Author: Adam Charles Smith
 * Author url: http://www.adchsm.com/
 * License: MIT
 * License url: http://www.adchsm.com/slidebars/license/
 */
[off-canvas*=reveal],[off-canvas*=shift]{z-index:0}[canvas=containers],[off-canvas],body,html{margin:0;padding:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}[canvas=containers]{width:100%;height:100%;-webkit-overflow-scrolling:touch}[canvas=containers]:after,[canvas=containers]:before{clear:both;content:'';display:table}[off-canvas]{display:none;position:fixed;overflow:hidden;overflow-y:auto;background-color:#000;color:#fff;-webkit-overflow-scrolling:touch}[off-canvas*=top]{width:100%;height:255px;top:0}[off-canvas*=right]{width:255px;height:100%;top:0;right:0}[off-canvas*=bottom]{width:100%;height:255px;bottom:0}[off-canvas*=left]{width:255px;height:100%;top:0;left:0}[off-canvas*=overlay]{z-index:9999}[canvas],[off-canvas]{-webkit-transition:-webkit-transform .3s;transition:transform .3s;-webkit-backface-visibility:hidden}@media print{[canvas]{-webkit-transform:translate(0,0)!important;-ms-transform:translate(0,0)!important;transform:translate(0,0)!important}[off-canvas]{display:none!important}}[class*=js-]{cursor:pointer}.restaurant .col-half-section{width:100%;min-height:1px;padding-left:15px;padding-right:15px;position:relative;max-width:570px;float:left;margin-left:30px;margin-right:0}.restaurant .col-half-section.col-half-section-right{float:right;margin-left:0;margin-right:30px}.restaurant .thumb-info-side-image .thumb-info-side-image-wrapper{float:left;margin-right:20px}.restaurant .thumb-info-side-image .thumb-info-caption .thumb-info-caption-text{padding:17px}.restaurant section.section-quaternary p,.restaurant section.section-tertiary p{color:#5e5e5e}.restaurant .special-menu{list-style:none;margin:0;padding:0;text-align:left}.restaurant .special-menu li{margin:0 0 32px 0;padding:0;clear:both}.restaurant .special-menu img{float:left;margin:0 25px 0 0;max-width:68px}.restaurant .special-menu h3{font-size:24px;padding:7px 0 4px 95px;margin:0;text-transform:none;font-style:italic}.restaurant .special-menu h3 em{font-size:16px}.restaurant .special-menu p{font-size:16px;font-style:italic;margin:0 0 0 95px;position:relative;display:block}.restaurant .special-menu p:before{border-bottom:2px dotted #ddd;content:"";height:1px;left:0%;position:absolute;bottom:5px;width:100%;z-index:1}.restaurant .special-menu p span{background:#fff;display:inline-block;position:relative;z-index:2;padding:0 10px 0 0}.restaurant .special-menu .special-menu-price{background:#fff;display:inline-block;float:right;font-size:22px;margin-top:-26px;padding:0 0 0 10px;position:relative;z-index:3}.restaurant section.section-no-border{border:0}.restaurant .thumb-info.thumb-info-centered-icons .thumb-info-action-custom a{display:block;width:100%;height:100%}.restaurant .thumb-info-caption-text-custom{background:#f4f4f4;margin:0 !important;padding:14px !important}.restaurant .custom-divider{height:56px;background:transparent url("/Portals/_default/skins/porto/Resources/img/custom-divider-1.png") no-repeat center center}.restaurant .contact-details p{font-size:15px;padding:45px 0 10px 0;text-transform:uppercase;color:rgba(255,255,255,.25)}.restaurant .contact-details p .separator{display:inline-block;padding:0 10px;font-size:10px;position:relative;top:-2px}.body>#footer .restaurant .contact-details p a,.body>#footer .restaurant .link{color:rgba(255,255,255,.25) !important;text-decoration:none}.body>#footer .restaurant .contact-details p a:hover,.body>#footer .restaurant a.link:hover{color:#fff !important}.restaurant .match-height .thumb-info-side-image .thumb-info-side-image-wrapper img{width:165px}.restaurant .match-height{min-height:625px}.restaurant .thumb-info-custom img{transform:none !important}.restaurant .btn-primary{border-radius:0}div.restaurant.mt-xlg,section.restaurant.mt-xlg>.mt-lg{display:flex}@media(max-width:1199px){.restaurant .col-half-section{max-width:468px}}@media(max-width:991px){.restaurant .p-none:first-child section.section{margin-bottom:0;margin-top:30px}.restaurant .p-none section.section{margin-bottom:0;margin-top:0}.restaurant .col-half-section{max-width:740px;float:none !important;margin:0 auto !important;padding-left:30px !important;padding-right:30px !important}.restaurant .match-height .thumb-info-side-image .thumb-info-side-image-wrapper img{max-width:120px}.restaurant .thumb-info-blog-custom img{max-width:120px;margin-bottom:10px !important}.restaurant .special-menu p{padding-bottom:35px}}@media(min-width:1500px){.event .custom-about-content .center .about-btn-tickets{margin-right:20px}.event .custom-about-content .center{text-align:left !important}}.event .custom-speaker-card{border-color:#e5e8eb;border-width:1px;border-style:solid;overflow:hidden;box-shadow:0 23px 32px 0 transparent;-webkit-transition:box-shadow .3s ease;-moz-transition:box-shadow .3s ease;transition:box-shadow .3s ease}.event .custom-speaker-card .speaker-photo{overflow:hidden}.event .custom-speaker-card .speaker-photo img{-webkit-transition:-webkit-transform .3s ease;-moz-transition:-moz-transform .3s ease;transition:transform .3s ease;width:100%}.event .custom-speaker-card .speaker-info{position:relative;border-top-width:5px;border-top-style:solid;text-align:center}.event .custom-speaker-card .speaker-info .speaker-social{font-size:14px;height:34px;left:50%;position:absolute;top:-20px;width:34px;border-radius:100%;-webkit-transform:translate(-50%,0);-moz-transform:translate(-50%,0);-ms-transform:translate(-50%,0);-o-transform:translate(-50%,0);transform:translate(-50%,0)}.event .custom-speaker-card .speaker-social-twitter .speaker-social{background-color:#00aced}.event .custom-speaker-card .speaker-social-gplus .speaker-social{background-color:#dd4b39}.event .custom-speaker-card .speaker-social-facebook .speaker-social{background-color:#3b5998}.event .custom-speaker-card .speaker-social-twitter{border-color:#00aced}.event .custom-speaker-card .speaker-social-gplus{border-color:#dd4b39}.event .custom-speaker-card .speaker-social-facebook{border-color:#3b5998}.event .custom-font-size-4{font-size:1.35714em !important;line-height:1;text-transform:inherit;font-weight:600}.event .speaker-info p{font-size:1em !important;line-height:1}.event .custom-speaker-card:hover .speaker-photo img{-webkit-transform:scale(1.1);-moz-transform:scale(1.1);-ms-transform:scale(1.1);-o-transform:scale(1.1);transform:scale(1.1)}.event .custom-speaker-card:hover{box-shadow:0 23px 32px 0 #e5e8eb}.event .speaker-photo a{text-decoration:none}.event .custom-font-style-1{letter-spacing:-.5px;font-size:1.4em;font-weight:600}.event.dialog h2{font-weight:600;line-height:1}.event .custom-line-height-1{line-height:1.6 !important}.event .font-size-sm{font-size:.9em !important}.event .custom-speaker-card .speaker-info .speaker-social .fa,.event .custom-speaker-card .speaker-info .speaker-social .fas,.event .custom-speaker-card .speaker-info .speaker-social .far,.event .custom-speaker-card .speaker-info .speaker-social .fal,.event .custom-speaker-card .speaker-info .speaker-social .fab{position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);-moz-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);-o-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.event .fa-long-arrow-right,.event .fa-long-arrow-alt-right{position:relative;display:inline-block;width:25px;height:10px;margin-top:4px;margin-left:15px;-webkit-transition:ease width 300ms;-moz-transition:ease width 300ms;transition:ease width 300ms}.event .custom-btn-style-1{padding:10px 30px;text-transform:uppercase;font-weight:600}.event .btn:hover .fa-long-arrow-right,.event .btn:hover .fa-long-arrow-alt-right{width:30px}.event .custom-border-radius{border-radius:30px !important}.event .custom-btn-border-1{border:1px solid #fff}.event .custom-about-content{border-style:dashed;border-width:1px}.event .custom-about-content .about-title{position:relative;padding-left:67px}.event .custom-about-content .about-title .icon{position:absolute;width:46px;left:0;top:0}.event .custom-about-content .about-title h3,.event .custom-about-content .about-title p{line-height:1}.event .custom-text-color-1{color:#c1eaff}.event .about-video{position:relative;background-size:cover;background-position:center}.event .about-video .play-video-custom{display:block;height:100%}.event .custom-about-carousel{position:relative}.event .custom-about-carousel>.wrapper{position:absolute;width:100%;height:100%;left:0;top:0}.event .custom-about-carousel .carousel-image{background-size:cover;background-position:center}.event .custom-about-carousel .owl-carousel{margin-bottom:0 !important}.event .custom-about-carousel .owl-carousel,.event .custom-about-carousel .owl-stage-outer,.event .custom-about-carousel .owl-stage,.event .custom-about-carousel .owl-item,.event .custom-about-carousel .carousel-image{height:100%}.event .custom-about-carousel .owl-dots{margin-top:0 !important;width:100%;bottom:35px !important;right:0}.event .custom-font-size-1{font-size:1em !important;line-height:1}.event .timeline-balloon .balloon-time .time-dot{position:relative;width:25px;height:25px;display:inline-block;vertical-align:middle}.event .custom-circle-date.no-border{border-color:transparent;box-shadow:none}.event .custom-circle-date{position:relative;width:118px;height:118px;border-radius:50%;border-width:1px;border-style:solid;z-index:2;box-shadow:0 11px 21px 0 rgba(229,232,235,.75)}.event .timeline-balloon{position:relative}.event .timeline-balloon::before{content:'';position:absolute;width:1px;left:83px;background-color:#e6ebeb}.event .timeline-balloon .balloon-cell{display:table-cell;vertical-align:top;width:100%}.event .timeline-balloon .balloon-time .time-text{display:inline-block;vertical-align:middle;width:68px}.event .timeline-balloon .balloon-time{width:93px;white-space:nowrap}.event .custom-font-size-3{font-size:.92857em !important;line-height:1}.event .timeline-balloon .balloon-content .balloon-photo{display:table-cell;vertical-align:top;height:64px;width:64px;max-width:64px;padding-top:6px}.event .timeline-balloon .balloon-time .time-dot::before{content:'';position:absolute;width:20px;height:20px;top:50%;left:50%;border-style:solid;border-width:2px;border-radius:50%;border-color:#43a6a3;-webkit-transform:translate(-50%,-50%);-moz-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);-o-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.event .timeline-balloon .balloon-time .time-dot::after{content:'';position:absolute;background-color:#43a6a3;width:7px;height:7px;top:50%;left:50%;border-radius:50%;-webkit-transform:translate(-50%,-50%);-moz-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);-o-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.event .timeline-balloon .balloon-content.balloon-shadow{box-shadow:0 11px 21px 0 rgba(229,232,235,.75)}.event .timeline-balloon .balloon-content{position:relative;margin-left:38px;border-width:1px;border-style:solid;border-radius:3px;border-color:#e6ebeb}.event .timeline-balloon .balloon-content .balloon-arrow{position:absolute;width:20px;height:20px;top:35px;left:-15px;border-width:1px;border-style:solid;border-right:none;border-bottom:none;border-color:#e6ebeb;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:left top;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;transform-origin:left top}.event .timeline-balloon .balloon-content .balloon-description p{line-height:1.6}.event .custom-circle-date .circle-dotted{position:absolute;padding:16px;width:106px;height:106px;top:5px;left:5px;display:table;border-style:dashed;border-width:1px;border-radius:50%}.event .timeline-balloon .balloon-content .balloon-description{display:table-cell}.event .timeline-balloon::before{height:120%;top:-35px}.event .timeline-balloon:last-of-type::before{height:75px}.event .custom-circle-date .circle-center{display:table-cell;vertical-align:middle}.event .timeline-balloon h5,.event .timeline-balloon span{text-transform:uppercase;font-weight:700}.event .custom-font-size-6{font-size:1.5em !important;line-height:1}.event.bg-light{background-color:#eff3f5 !important}.event .carousel-logo-item{position:relative;height:158px;overflow:hidden;box-shadow:0 23px 32px 0 transparent;will-change:border-color;border:1px solid transparent;-webkit-transition:border-color .4s ease,box-shadow .4s ease;-moz-transition:border-color .4s ease,box-shadow .4s ease;transition:border-color .4s ease,box-shadow .4s ease}.event .carousel-logo-item .carousel-logo-pannel{width:100%;height:100%;-webkit-transition:-webkit-transform .4s ease;-moz-transition:-moz-transform .4s ease;transition:transform .4s ease}.event .carousel-logo-item .carousel-logo-pb img{display:inline-block !important;vertical-align:middle;width:200px !important}.event .carousel-logo-item .carousel-logo-hover{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}.event .carousel-logo-item .carousel-logo-hover img{width:138px !important;max-height:65px}.event .carousel-logo-item .carousel-logo-hover .carousel-logo-description{max-height:45px;overflow-y:hidden}.event .owl-theme.custom-dots-style-1 .owl-dots{margin-top:35px}.event .owl-carousel.custom-dots-style-1 .owl-dots .owl-dot{position:relative;border-radius:50%;border-width:2px;border-style:solid;border-color:#fff;margin:0 3px;width:14px;height:14px}.event .owl-carousel.custom-dots-style-1 .owl-dots .owl-dot span{position:absolute;top:50%;left:50%;background-color:#fff;width:4px !important;height:4px !important;margin:0 !important;opacity:0;-webkit-transform:translate(-50%,-50%);-moz-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);-o-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.event .carousel-logo-item:hover{box-shadow:0 23px 32px 0 #e5e8eb;border-color:#d4d4d4}.event .carousel-logo-item:hover .carousel-logo-pannel{-webkit-transform:translateY(-100%);-moz-transform:translateY(-100%);-ms-transform:translateY(-100%);-o-transform:translateY(-100%);transform:translateY(-100%)}.event .carousel-logo-item .carousel-logo-pb::before{content:'';height:100%;display:inline-block;vertical-align:middle}.event .owl-carousel.custom-dots-style-1 .owl-dots .owl-dot.active span,.event .owl-carousel.custom-dots-style-1 .owl-dots .owl-dot:hover span{background-color:#fff;opacity:1}.event .owl-carousel.nav-inside{bottom:0;margin-top:0;right:0}.event .custom-venue-address{position:relative;margin-top:-30px;box-shadow:0 43px 112px -30px rgba(80,80,80,.9);z-index:1;-webkit-transform:translateY(20%);-moz-transform:translateY(20%);-ms-transform:translateY(20%);-o-transform:translateY(20%);transform:translateY(20%);display:flex;width:100%}.event .custom-venue-address>div{background-size:cover;background-repeat:no-repeat;background-position:center}.event .custom-arrow{content:'';position:absolute;width:35px;height:35px;left:60%;bottom:-29px;z-index:1;-webkit-transform:rotate(45deg) translateX(-50%);-moz-transform:rotate(45deg) translateX(-50%);-ms-transform:rotate(45deg) translateX(-50%);-o-transform:rotate(45deg) translateX(-50%);transform:rotate(45deg) translateX(-50%)}.event .font-weight-bold{font-weight:700 !important}.event .custom-font-size-2{font-size:1.07143em !important;line-height:1}.event .font-weight-normal{font-weight:400 !important}.event .counters strong{font-weight:bold}.event .custom-about-carousel .carousel-image img{height:100%}#footer .event .font-weight-light{font-weight:300 !important}#footer .event h4{font-size:1.442857em !important;line-height:1}#footer .event span,#footer .event a{color:#93949a !important}#footer .event a.btn{color:#fff !important}#footer .container .eventfooter.row>div{margin-bottom:25px !important}.event .play-video-custom img{position:absolute;top:50%;left:50%;margin-top:-45px;margin-left:-45px;-webkit-transition:-webkit-transform .3s ease !important;-moz-transition:-moz-transform .3s ease !important;transition:transform .3s ease !important}.event .play-video-custom:hover img{-webkit-transform:scale(1.1,1.1);-moz-transform:scale(1.1,1.1);-ms-transform:scale(1.1,1.1);-o-transform:scale(1.1,1.1);transform:scale(1.1,1.1)}.event a.buy-tickets.btn{margin-right:40px}.ddrheader .event a.buy-tickets.btn{margin-right:0}.event .background-color-light{background:#fff}@media(max-width:991px){.event .custom-about-carousel>.wrapper{position:inherit;height:400px}.event .custom-about-content .about-title{display:inline-block;text-align:left}.event .custom-about-content .btn{margin-left:10px;margin-right:10px}.event .custom-about-carousel>.wrapper{position:inherit;height:400px}.event .custom-about-content,#footer .event{text-align:center}#footer .container .eventfooter.row.mb-btm>.col-md-5,#footer .container .eventfooter.row.mb-btm>.col-md-3:nth-of-type(2){margin-bottom:100px !important}.event a.buy-tickets.btn{display:none}.event .about-video{min-height:300px}}@media(max-width:767px){.event .custom-circle-date{margin:0 auto 35px !important}.event .timeline-balloon:before{left:50%}.event .custom-venue-address .bg-image,.event .timeline-balloon .balloon-time .time-dot{display:none}.event .timeline-balloon .balloon-time .time-text{position:absolute;top:-11px;left:50%;text-align:center;background:#fff;border-width:1px;border-style:solid;border-radius:3px;border-color:#e6ebeb;padding:5px 0;z-index:1;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%)}.event .timeline-balloon .balloon-content{margin-left:0}.event.parallax{background-size:cover}.event .counter{margin:55px 0 !important}.event .custom-arrow{left:66%}.event .custom-venue-address{margin-top:-50px}}@media(max-width:320px){.event .fa-long-arrow-right,.event .fa-long-arrow-alt-right{display:none}}.church.section-no-border{border:none}.church .custom-text-color-1{color:#544b40 !important;font-weight:600}.church .text-md{font-size:17px}.church .f-italic{font-style:italic;font-size:25px;font-weight:normal}.church .animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.church .custom-btn-style-1{padding:12px 25px !important}.church.gallery{position:relative;overflow:hidden;padding:110px 0}.church .custom-cloud.left-pos{left:0}.church .custom-section-padding-1{padding:70px 0 160px !important}.church .custom-position-relative{position:relative}.church .custom-overflow-hidden{overflow:hidden}.church .custom-big-square.left-pos{left:-150px}.church .custom-box-shadow{box-shadow:0 0 60px -10px rgba(139,139,139,.5)}.church .custom-small-square.left-pos{left:57.6px;top:45%}.church .custom-small-square{position:absolute;width:192px;height:192px;top:50%;border:10px solid #fff;backface-visibility:hidden;-webkit-transform:translateY(-50%) rotate(45deg);-moz-transform:translateY(-50%) rotate(45deg);-ms-transform:translateY(-50%) rotate(45deg);-o-transform:translateY(-50%) rotate(45deg);transform:translateY(-50%) rotate(45deg);-webkit-animation-name:initial;-moz-animation-name:fadeInLeft;-o-animation-name:fadeInLeft;animation-name:initial}.church .custom-cloud.right-pos{right:0}.church .custom-cloud{position:absolute;width:auto;height:80%;top:11%;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%)}.church .custom-big-square.right-pos{right:-150px}.church .custom-big-square{position:absolute;width:312px;height:312px;top:43%;border:10px solid #fff;backface-visibility:hidden;-webkit-transform:translateY(-50%) rotate(45deg);-moz-transform:translateY(-50%) rotate(45deg);-ms-transform:translateY(-50%) rotate(45deg);-o-transform:translateY(-50%) rotate(45deg);transform:translateY(-50%) rotate(45deg);-webkit-animation-name:initial;-moz-animation-name:fadeInLeft;-o-animation-name:fadeInLeft;animation-name:initial}.church .custom-small-square.right-pos{right:57.6px;top:66%}.church .customFadeInLeft{-webkit-animation-name:customFadeInLeft;-moz-animation-name:customFadeInLeft;animation-name:customFadeInLeft}@keyframes customFadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,-50%,0) rotate(45deg);-moz-transform:translate3d(-100%,-50%,0) rotate(45deg);-ms-transform:translate3d(-100%,-50%,0) rotate(45deg);-o-transform:translate3d(-100%,-50%,0) rotate(45deg);transform:translate3d(-100%,-50%,0) rotate(45deg)}100%{opacity:1;-webkit-transform:translate3d(0,-50%,0) rotate(45deg);-moz-transform:translate3d(0,-50%,0) rotate(45deg);-ms-transform:translate3d(0,-50%,0) rotate(45deg);-o-transform:translate3d(0,-50%,0) rotate(45deg);transform:translate3d(0,-50%,0) rotate(45deg)}}.church .customFadeInRight{-webkit-animation-name:customFadeInRight;-moz-animation-name:customFadeInRight;animation-name:customFadeInRight}@keyframes customFadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,-50%,0) rotate(45deg);-moz-transform:translate3d(100%,-50%,0) rotate(45deg);-ms-transform:translate3d(100%,-50%,0) rotate(45deg);-o-transform:translate3d(100%,-50%,0) rotate(45deg);transform:translate3d(100%,-50%,0) rotate(45deg)}100%{opacity:1;-webkit-transform:translate3d(0,-50%,0) rotate(45deg);-moz-transform:translate3d(0,-50%,0) rotate(45deg);-ms-transform:translate3d(0,-50%,0) rotate(45deg);-o-transform:translate3d(0,-50%,0) rotate(45deg);transform:translate3d(0,-50%,0) rotate(45deg)}}.church .custom-top{position:relative;bottom:35px}.church .font-weight-bold{font-weight:600 !important}.church.section.section-secondary em{font-size:40px;color:#fff}.church.owl-carousel.custom-arrows-style-1 .owl-nav .owl-prev{left:10px;-webkit-transform:rotate(-180deg);-moz-transform:rotate(-180deg);-ms-transform:rotate(-180deg);-o-transform:rotate(-180deg);transform:rotate(-180deg)}.church.owl-carousel.custom-arrows-style-1 .owl-nav .owl-prev:before,.church.owl-carousel.custom-arrows-style-1 .owl-nav .owl-next:before{content:'';display:block;position:absolute;top:50%;right:-2px;left:initial;width:100%;border-top:1px solid #da7940;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%)}.church.owl-carousel.custom-arrows-style-1 .owl-nav .owl-prev:before,.church.owl-carousel.custom-arrows-style-1 .owl-nav .owl-next:before,.church.owl-carousel.custom-arrows-style-1 .owl-nav .owl-prev:after,.church.owl-carousel.custom-arrows-style-1 .owl-nav .owl-next:after{border-color:#da7940}.church.owl-carousel.custom-arrows-style-1 .owl-nav .owl-prev:after,.church.owl-carousel.custom-arrows-style-1 .owl-nav .owl-next:after{content:'';display:block;position:absolute;top:50%;right:0;width:25px;height:25px;border-top:1px solid #da7940;border-right:1px solid #da7940;-webkit-transform:translateY(-50%) rotate(45deg);-moz-transform:translateY(-50%) rotate(45deg);-ms-transform:translateY(-50%) rotate(45deg);-o-transform:translateY(-50%) rotate(45deg);transform:translateY(-50%) rotate(45deg)}.church.owl-carousel.custom-arrows-style-1 .owl-nav .owl-prev,.church.owl-carousel.custom-arrows-style-1 .owl-nav .owl-next{position:absolute;width:55px;background:transparent !important;-webkit-transition:ease all 300ms;-moz-transition:ease all 300ms;transition:ease all 300ms}.church.owl-carousel .owl-nav [class*="owl-"]{background:#101019 !important}.church.custom-testimonial-style .testimonial-quote{display:inline-block;padding:20px;border-radius:100%;line-height:1;margin:5px 0 20px;box-shadow:0 5px 20px 5px rgba(207,207,207,.9)}.church.custom-testimonial-style .testimonial-author strong{display:inline-block}.church.custom-testimonial-style .testimonial-author span{display:inline-block;font-size:16px}.church .custom-view-our-location{position:absolute;bottom:0;left:0;background:#36252b;width:100%;height:96px;overflow:hidden;z-index:1;-webkit-transition:ease all 300ms;-moz-transition:ease all 300ms;transition:ease all 300ms}.church .custom-view-our-location>img{position:absolute;top:-60px;left:50%;width:420px;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%)}.church .custom-view-our-location>a{display:block;position:absolute;top:0;left:0;width:100%;height:100%;font-size:20px;text-decoration:none;padding-top:35px}.church .custom-hr-color-1{background:#3f3035 !important}.church .custom-icon-size-1{font-size:25px}.church .custom-img-responsive-center{margin:0 auto}.church .custom-view-our-location:hover{opacity:.9}.church .custom-text-color-2{color:#beb7b9 !important;text-decoration:none !important}hr.church{background:#3f3035}.church .google-map{height:96px}.church.custom-overflow-hidden{overflow:hidden;position:relative}@media(max-width:991px){.church .owl-carousel.custom-sm-nav-bottom .owl-nav{top:100%;left:50%;margin-top:0;width:45%;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%)}.church .custom-sm-margin-bottom-1{margin-bottom:30px !important}.church .custom_center{text-align:center}}.Law .feature-box-icon em:before{font-size:50px}.Law .form-control,.Law .btn,.Law .thumb-info img,.Law .thumb-info{border-radius:0}.Law .testimonial.testimonial-style-4{box-shadow:none;border:none;padding:0}.Law .thumb-info-side-image .thumb-info-side-image-wrapper{float:left;margin-right:20px}.Law .font-size-md{font-size:1.1em}@media(min-width:992px){.Law .testimonial.testimonial-style-4{margin-right:20px}}@media(max-width:991px){.Law .half-section-right{padding-left:15px !important;padding-right:15px !important;max-width:740px;float:none !important;margin:0 auto !important}}@media(max-width:767px){.Law .form-group .row-pb{padding-bottom:15px}}html.rtl .DnnModule.DnnModule-DNN_HTML,html.rtl .DnnModule.DnnModule-DDRMenu,html.rtl header,html.rtl .page-top,html.rtl footer,html.rtl .dnnLogin{direction:rtl;text-align:right}html.rtl .dnnLogin .dnnFormItem label.dnnFormLabel,html.rtl .dnnRegistrationForm .dnnLabel,html.rtl .dnnLogin .dnnFormItem span.dnnFormLabel,html.rtl .dnnLogin .dnnForm .dnnFormItem,html.rtl .home-intro,html.rtl .featured-box-text-left{text-align:right !important}html.rtl .owl-carousel *{direction:ltr !important}html.rtl .align-right{text-align:left !important}html.rtl .align-left{text-align:right !important}html.rtl .pull-left{float:right !important}html.rtl .pull-right{float:left !important}html.rtl ul.fc-slides,html.rtl ul.social-icons{padding:0}html.rtl .home-intro .learn-more{margin-left:0;margin-right:15px}html.rtl .body>#footer .contact i,html.rtl .body>#footer .contact em{float:right;margin:7px 0 10px 8px}html.rtl .body #footer .terms:before,html.rtl .body #footer .privacy:before{float:right}html.rtl .v-menu ul.nav-main li{float:none}html.rtl .v-menu nav ul.nav-main li a em.fa-caret-down html.rtl .v-menu nav ul.nav-main li a i.fa-caret-down{right:auto;left:5px}html.rtl .v-menu nav ul.nav-main ul.dropdown-menu li>a{text-align:right}html.rtl .church .custom-event-infos ul li{margin-left:0;margin-right:15px}html.rtl .church .custom-event-infos ul li:first-child{margin-right:0}html.rtl .church .custom-margin-1{margin-left:0;margin-right:95px}html.rtl .church .custom-post-event .post-event-date{right:0;left:auto}html.rtl .church .custom-thumb-info-2 .thumb-info-caption{text-align:center}html.rtl .church .custom-thumb-info-post-infos ul li em{margin-right:0;margin-left:8px}html.rtl .event .custom-about-content .about-title{padding-left:0;padding-right:67px}html.rtl .event .custom-about-content .about-title .icon{right:0;left:auto}html.rtl .event .custom-about-content .center{text-align:right !important}html.rtl .event .custom-about-content .center .about-btn-tickets{margin-right:0;margin-left:20px}html.rtl .event .timeline-balloon::before{left:auto;right:83px}html.rtl .event .timeline-balloon .balloon-content{margin-left:0;margin-right:38px}html.rtl .event .timeline-balloon .balloon-content .balloon-arrow{right:-7px;border-left:none;border-top:none;border-bottom:1px solid #e6ebeb;border-right:1px solid #e6ebeb}html.rtl .Law .thumb-info-side-image .thumb-info-side-image-wrapper{float:right;margin-left:20px;margin-right:0}html.rtl .restaurant .thumb-info.thumb-info-centered-icons .thumb-info-action-custom .thumb-info-icon-custom:before{right:20%;left:2px}html.rtl .restaurant .thumb-info.thumb-info-centered-icons .thumb-info-action-custom .thumb-info-icon-custom:after{right:50%;left:2px}html.rtl .restaurant .col-half-section{float:right;margin-left:0;margin-right:30px}html.rtl .restaurant .col-half-section.col-half-section-right{float:left;margin-left:30px;margin-right:0}html.rtl .restaurant .special-menu{text-align:right}html.rtl .restaurant .special-menu img{float:right;margin:0 0 0 25px}html.rtl .restaurant .special-menu .special-menu-price{float:left;padding:0 10px 0 0}html.rtl .restaurant .special-menu p{margin:0 95px 0 0}html.rtl .restaurant .special-menu p span{padding:0 0 0 10px}html.rtl .shortcode-title{text-align:left}html.rtl .shortcode-title h4{float:right}html.rtl .btn-text-indent,html.rtl ul.social-icons li[class] a{overflow:hidden}html.rtl .pagination{padding-right:0}html.rtl .toggle.toggle-simple .toggle>label:after,html.rtl .list.list-ordened li:before{right:0;left:auto}html.rtl .toggle.toggle-simple .toggle>label{padding-right:32px}html.rtl .toggle>label:before{right:auto;left:5px;border-right-color:inherit;border-left-color:transparent}html.rtl .toggle.active>label:before{left:10px}html.rtl .toggle.toggle-simple .toggle>label:before{right:7px;left:auto}html.rtl .tabs-navigation .nav-tabs>li a .fa,html.rtl .tabs-navigation .nav-tabs>li a .fas,html.rtl .tabs-navigation .nav-tabs>li a .far,html.rtl .tabs-navigation .nav-tabs>li a .fal,html.rtl .tabs-navigation .nav-tabs>li a .fab{margin-right:0;margin-left:4px}html.rtl .tabs-vertical .nav-tabs{float:none}html.rtl .tabs-navigation .nav-tabs>li a:before{left:15px;right:unset;transform:rotate(180deg)}html.rtl .feature-box .feature-box-icon{float:right;margin:0}html.rtl .feature-box .feature-box-info{padding-right:50px;padding-left:0}html.rtl .feature-box.feature-box-style-2 .feature-box-info{padding-right:60px;padding-left:0}html.rtl .feature-box.feature-box-style-5 .feature-box-info{padding-right:84px;padding-left:0}html.rtl .feature-box.feature-box-style-4 .feature-box-info{padding-right:0}html.rtl .feature-box.reverse{text-align:left}html.rtl .feature-box.reverse .feature-box-icon{float:left}html.rtl .feature-box.reverse .feature-box-info{padding-left:50px;padding-right:0}html.rtl .modal-header .close{float:left}html.rtl .pagination>li{float:right}html.rtl ul,html.rtl ol{padding-right:40px;padding-left:0}html.rtl .list-unstyled{padding-right:0}html.rtl .list.list-ordened li{padding-left:0;padding-right:22px}html.rtl .list.list-ordened.list-ordened-style-2 li,html.rtl .list.list-ordened.list-ordened-style-3 li{padding-right:32px}html.rtl .list.list-icons li{padding-right:25px;padding-left:0}html.rtl .list.list-icons li .fa,html.rtl .list.list-icons li .fas,html.rtl .list.list-icons li .far,html.rtl .list.list-icons li .fal,html.rtl .list.list-icons li .fab{right:0}html.rtl .list.list-icons.list-icons-style-3 li,html.rtl .list.list-icons.list-icons-style-2 li{padding-right:36px}html.rtl .list.list-icons.list-icons-reverse li{padding-left:25px;padding-right:0;text-align:left}html.rtl .list.list-icons.list-icons-reverse.list-icons-style-3 li,html.rtl .list.list-icons.list-icons-reverse.list-icons-style-2 li{padding-left:36px}html.rtl .list.list-icons.list-icons-reverse li .fa,html.rtl .list.list-icons.list-icons-reverse li .fas,html.rtl .list.list-icons.list-icons-reverse li .far,html.rtl .list.list-icons.list-icons-reverse li .fal,html.rtl .list.list-icons.list-icons-reverse li .fab{left:0;right:auto}html.rtl .testimonial .testimonial-author .testimonial-author-thumbnail{float:right;margin-left:10px;margin-right:0}html.rtl .testimonial .testimonial-author p{text-align:right}html.rtl .testimonial .testimonial-arrow-down{margin:0 17px 0 0}html.rtl .testimonial.testimonial-style-2 .testimonial-author p,html.rtl .testimonial.testimonial-style-5 .testimonial-author p,html.rtl .testimonial.testimonial-style-6 .testimonial-author p{text-align:center !important}html.rtl .owl-carousel .testimonial .testimonial-author .testimonial-author-thumbnail{float:left;margin-right:10px}html.rtl .owl-carousel .testimonial .testimonial-author p{text-align:left}html.rtl .owl-carousel .testimonial .testimonial-arrow-down{margin:0 0 0 17px}html.rtl .testimonial blockquote{border:0}html.rtl blockquote{border-right:5px solid #eee;border-left:0}html.rtl .blockquote-reverse{padding-right:0;padding-left:15px;text-align:left;border-right:0;border-left:5px solid #eee}html.rtl blockquote.with-borders{border-top:1px solid #dfdfdf;border-bottom:1px solid #dfdfdf;border-left:1px solid #ececec;border-right:1px solid #ececec}html.rtl .call-to-action .call-to-action-content{margin-right:3%;margin-left:0}html.rtl .call-to-action .call-to-action-btn{left:25px;right:auto}html.rtl .pricing-table .plan-ribbon{left:30px;top:16px}html.rtl .pricing-table ul{padding:0}html.rtl .progress-bar{float:right}html.rtl .progress-bar-tooltip{left:5px;right:auto}html.rtl th{text-align:right}html.rtl .divider.divider-small.divider-small-right hr{margin-left:0;margin-right:auto}html.rtl .alert .fa,html.rtl .alert .fas,html.rtl .alert .far,html.rtl .alert .fal,html.rtl .alert .fab{margin-right:0;margin-left:5px}html.rtl .recent-posts .date{float:right;margin-left:10px;margin-right:0;margin-top:0}html.rtl .radio label,html.rtl .checkbox label{padding-left:0;padding-right:20px}html.rtl .radio input[type="radio"],html.rtl .radio-inline input[type="radio"],html.rtl .checkbox input[type="checkbox"],html.rtl .checkbox-inline input[type="checkbox"]{margin-left:0;margin-right:-20px}html.rtl .input-group .form-control{border-radius:6px;border-top-left-radius:0;border-bottom-left-radius:0}html.rtl .input-group-btn .btn{border-radius:6px;border-top-right-radius:0;border-bottom-right-radius:0}html.rtl .shop ul.products .product .add-to-cart-product .fa,html.rtl .shop ul.products .product .add-to-cart-product .fas,html.rtl .shop ul.products .product .add-to-cart-product .far,html.rtl .shop ul.products .product .add-to-cart-product .fal,html.rtl .shop ul.products .product .add-to-cart-product .fab{margin-right:0;margin-left:3px}html.rtl .shop .review_num{margin-right:0;margin-left:10px;float:right}html.rtl .shop .quantity{float:right;margin:0 0 25px 15px}html.rtl .shop .quantity .minus{left:0}html.rtl .product-thumb-info .product-thumb-info-content,html.rtl .shop table.cart td{text-align:right}html.rtl article.post-large{margin-left:0;margin-right:60px}html.rtl article.post-large .post-image,html.rtl article.post-large .post-date{margin-left:0;margin-right:-60px}html.rtl article.post .post-date{float:right}html.rtl article.post .post-meta i,html.rtl article.post .post-meta em{margin-right:0;margin-left:3px}html.rtl .post-block h3 i,html.rtl .post-block h3 em{margin-right:0;margin-left:7px}html.rtl .post-author .img-thumbnail{float:right;margin-left:20px;margin-right:0}html.rtl ul.comments{padding:0}html.rtl ul.comments li{padding:10px 115px 0 0}html.rtl ul.comments .comment-arrow{border-left:15px solid #f4f4f4;border-right:0;right:-15px}html.rtl ul.comments li .img-thumbnail{margin-right:-115px;margin-left:0}html.rtl ul.simple-post-list{padding:0}html.rtl ul.simple-post-list .post-image{float:right;margin-left:12px;margin-right:0}html.rtl .nav{padding-right:0}html.rtl ul.nav-list li a:before{border-right:4px solid #333;border-left:0}html.rtl ul.portfolio-list,html.rtl .portfolio-info ul,html.rtl ul.portfolio-details,html.rtl ul.team-list{padding:0}html.rtl .portfolio-info{float:left}html.rtl .portfolio-info ul li{margin-left:8px;margin-right:0;padding-left:8px;padding-right:0;border-left:1px solid #e6e6e6;border-right:0}html.rtl .portfolio-info ul li .fa,html.rtl .portfolio-info ul li .fas,html.rtl .portfolio-info ul li .far,html.rtl .portfolio-info ul li .fal,html.rtl .portfolio-info ul li .fab{margin-right:0;margin-left:4px}html.rtl .portfolio-info ul li:last-child{border-left:0;padding-left:0;margin-left:0}html.rtl ul.portfolio-details .list-icons>li{margin-left:10px;margin-right:0}html.rtl ul.history{padding:0}html.rtl ul.history li .thumb img{float:left}html.rtl ul.history li .featured-box{text-align:right}html.rtl ul.history li p{margin-right:53px;margin-left:0}html.rtl header .search,html.rtl header #login .registerGroup a{margin-left:0;margin-right:10px}html.rtl header div.search input.NormalTextBox:first-child{padding:6px 12px 6px 32px}html.rtl header .icon-search{right:auto;left:4px;overflow:hidden}html.rtl header div.social-icons,html.rtl header .btn-responsive-nav{margin-left:0;margin-right:20px}html.rtl header nav ul.nav-main li a i.fa-caret-down,html.rtl header nav ul.nav-main li a em.fa-caret-down{margin-left:0;margin-right:2px}html.rtl header nav ul.nav-main ul.dropdown-menu{border-radius:6px 0 6px 6px;margin-right:0;margin-left:0}html.rtl header nav ul.nav-main .dropdown-submenu>.dropdown-menu{left:auto;right:100%}html.rtl header nav ul.nav-main .dropdown-submenu>a:after{transform:rotate(180deg);right:auto;left:15px}html.rtl header.overlayHeader .close-btn{right:auto}html.rtl header.overlayHeader .btn-responsive-nav:before{right:auto;left:-72px}html.rtl header.overlayHeader.full-header .btn-responsive-nav:before{left:-86px}html.rtl header.inlineHeader .push-menu{top:8px;right:auto;left:-128px}html.rtl header.inlineHeader.flat-menu .push-menu{left:-10px}html.rtl header.inlineHeader.center .push-menu,html.rtl header.inlineHeader.no-border-top .push-menu{top:-42px;left:35px}html.rtl body.sticky-menu-active header.inlineHeader.center .push-menu{top:58px}html.rtl header.header-bottom.inlineHeader .push-menu{top:auto;left:5px}html.rtl body.sticky-menu-active header.header-bottom.inlineHeader .push-menu{top:10px}html.rtl header.inlineHeader.full-header .push-menu{left:-5px}html.rtl header.inlineHeader .push-menu:after{right:-323px}html.rtl body.sticky-menu-active header.header-bottom.inlineHeader .push-menu:after{right:-231px}html.rtl header.inlineHeader .push-menu .icon-right{padding:0 15px 0 0}html.rtl header.pushdownHeader .btn-push-nav{right:auto;left:15px;margin:0}html.rtl header.flat-header.pushdownHeader div.social-icons,html.rtl header.newHeader.pushdownHeader div.social-icons{margin-left:40px}html.rtl header.pushdownHeader nav.pushdown ul.nav-main li a i.fa-caret-down{left:5px;right:auto}html.rtl header nav ul.nav-main ul.dropdown-menu>li>a,html.rtl header.overlayHeader nav ul.nav-main li a,html.rtl header.inlineHeader .push-menu nav.push-down li a,html.rtl header.pushdownHeader .pushdown.nav-main ul li,html.rtl .slidebar .nav-pills>li>a,html.rtl .slidebar .dropdown-menu>li>a{text-align:right}html.rtl header.overlayHeader .overlay em.icon-right,html.rtl header.inlineHeader .push-menu .icon-right,html.rtl .slidebar .nav-pills li .dropdown-toggle::after,html.rtl .slidebar .close-icon em{float:left}html.rtl header.overlayHeader .overlay .fa-caret-right:before,html.rtl header.inlineHeader .push-menu .fa-caret-right:before{content:""}html.rtl header.overlayHeader .overlay .icon-back .fa-long-arrow-left:before,html.rtl header.inlineHeader .push-menu em.fa-long-arrow-left:before{content:""}@media(max-width:992px){html.rtl header nav ul.nav-main li a{text-align:right}html.rtl header nav ul.nav-main li a .fa-caret-down{right:auto;left:5px}html.rtl header.overlayHeader .close-btn{left:20px}}.twentytwenty-horizontal .twentytwenty-handle:before,.twentytwenty-horizontal .twentytwenty-handle:after,.twentytwenty-vertical .twentytwenty-handle:before,.twentytwenty-vertical .twentytwenty-handle:after{content:" ";display:block;background:#fff;position:absolute;z-index:30;-webkit-box-shadow:0 0 12px rgba(51,51,51,.5);-moz-box-shadow:0 0 12px rgba(51,51,51,.5);box-shadow:0 0 12px rgba(51,51,51,.5)}.twentytwenty-horizontal .twentytwenty-handle:before,.twentytwenty-horizontal .twentytwenty-handle:after{width:3px;height:9999px;left:50%;margin-left:-1.5px}.twentytwenty-vertical .twentytwenty-handle:before,.twentytwenty-vertical .twentytwenty-handle:after{width:9999px;height:3px;top:50%;margin-top:-1.5px}.twentytwenty-before-label,.twentytwenty-after-label,.twentytwenty-overlay{position:absolute;top:0;width:100%;height:100%}.twentytwenty-before-label,.twentytwenty-after-label,.twentytwenty-overlay{-webkit-transition-duration:.5s;-moz-transition-duration:.5s;transition-duration:.5s}.twentytwenty-before-label,.twentytwenty-after-label{-webkit-transition-property:opacity;-moz-transition-property:opacity;transition-property:opacity}.twentytwenty-before-label:before,.twentytwenty-after-label:before{color:#fff;font-size:13px;letter-spacing:.1em}.twentytwenty-before-label:before,.twentytwenty-after-label:before{position:absolute;background:rgba(255,255,255,.2);line-height:38px;padding:0 20px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}.twentytwenty-horizontal .twentytwenty-before-label:before,.twentytwenty-horizontal .twentytwenty-after-label:before{top:50%;margin-top:-19px}.twentytwenty-vertical .twentytwenty-before-label:before,.twentytwenty-vertical .twentytwenty-after-label:before{left:50%;margin-left:-45px;text-align:center;width:90px}.twentytwenty-left-arrow,.twentytwenty-right-arrow,.twentytwenty-up-arrow,.twentytwenty-down-arrow{width:0;height:0;border:6px inset transparent;position:absolute}.twentytwenty-left-arrow,.twentytwenty-right-arrow{top:50%;margin-top:-6px}.twentytwenty-up-arrow,.twentytwenty-down-arrow{left:50%;margin-left:-6px}.twentytwenty-container{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;z-index:0;overflow:hidden;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.twentytwenty-container img{max-width:100%;position:absolute;top:0;display:block}.twentytwenty-container.active .twentytwenty-overlay,.twentytwenty-container.active :hover.twentytwenty-overlay{background:rgba(0,0,0,0)}.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label,.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label,.twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-before-label,.twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-after-label{opacity:0}.twentytwenty-container *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.twentytwenty-before-label{opacity:0}.twentytwenty-before-label:before{content:attr(data-content)}.twentytwenty-after-label{opacity:0}.twentytwenty-after-label:before{content:attr(data-content)}.twentytwenty-horizontal .twentytwenty-before-label:before{left:10px}.twentytwenty-horizontal .twentytwenty-after-label:before{right:10px}.twentytwenty-vertical .twentytwenty-before-label:before{top:10px}.twentytwenty-vertical .twentytwenty-after-label:before{bottom:10px}.twentytwenty-overlay{-webkit-transition-property:background;-moz-transition-property:background;transition-property:background;background:rgba(0,0,0,0);z-index:25}.twentytwenty-overlay:hover{background:rgba(0,0,0,.5)}.twentytwenty-overlay:hover .twentytwenty-after-label{opacity:1}.twentytwenty-overlay:hover .twentytwenty-before-label{opacity:1}.twentytwenty-before{z-index:20}.twentytwenty-after{z-index:10}.twentytwenty-handle{height:38px;width:38px;position:absolute;left:50%;top:50%;margin-left:-22px;margin-top:-22px;border:3px solid #fff;-webkit-border-radius:1000px;-moz-border-radius:1000px;border-radius:1000px;-webkit-box-shadow:0 0 12px rgba(51,51,51,.5);-moz-box-shadow:0 0 12px rgba(51,51,51,.5);box-shadow:0 0 12px rgba(51,51,51,.5);z-index:40;cursor:pointer}.twentytwenty-horizontal .twentytwenty-handle:before{bottom:50%;margin-bottom:22px;-webkit-box-shadow:0 3px 0 white,0 0 12px rgba(51,51,51,.5);-moz-box-shadow:0 3px 0 white,0 0 12px rgba(51,51,51,.5);box-shadow:0 3px 0 white,0 0 12px rgba(51,51,51,.5)}.twentytwenty-horizontal .twentytwenty-handle:after{top:50%;margin-top:22px;-webkit-box-shadow:0 -3px 0 white,0 0 12px rgba(51,51,51,.5);-moz-box-shadow:0 -3px 0 white,0 0 12px rgba(51,51,51,.5);box-shadow:0 -3px 0 white,0 0 12px rgba(51,51,51,.5)}.twentytwenty-vertical .twentytwenty-handle:before{left:50%;margin-left:22px;-webkit-box-shadow:3px 0 0 white,0 0 12px rgba(51,51,51,.5);-moz-box-shadow:3px 0 0 white,0 0 12px rgba(51,51,51,.5);box-shadow:3px 0 0 white,0 0 12px rgba(51,51,51,.5)}.twentytwenty-vertical .twentytwenty-handle:after{right:50%;margin-right:22px;-webkit-box-shadow:-3px 0 0 white,0 0 12px rgba(51,51,51,.5);-moz-box-shadow:-3px 0 0 white,0 0 12px rgba(51,51,51,.5);box-shadow:-3px 0 0 white,0 0 12px rgba(51,51,51,.5)}.twentytwenty-left-arrow{border-right:6px solid #fff;left:50%;margin-left:-17px}.twentytwenty-right-arrow{border-left:6px solid #fff;right:50%;margin-right:-17px}.twentytwenty-up-arrow{border-bottom:6px solid #fff;top:50%;margin-top:-17px}.twentytwenty-down-arrow{border-top:6px solid #fff;bottom:50%;margin-bottom:-17px}.countdown{display:flex;text-align:center}.countdown>span{flex-basis:25%;max-width:25%;width:25%;font-size:1rem;line-height:1.5;color:#777}.countdown>span>span{display:block;font-size:3rem;line-height:1;color:#212529}.countdown.countdown-light>span{color:rgba(255,255,255,.6)}.countdown.countdown-light>span>span{color:#fff}.countdown.countdown-light.countdown-borders>span{border-color:#fff}.countdown.countdown-borders{margin-right:-15px;margin-left:-15px}.countdown.countdown-borders>span{border-width:2px;border-style:solid;border-color:#212529;margin-right:15px;margin-left:15px;padding:1.5rem}@media(max-width:767px){.countdown{flex-wrap:wrap}.countdown>span{flex-basis:calc(50% - 15px);max-width:calc(50% - 15px);width:calc(50% - 15px);margin-bottom:30px}.countdown>span:nth-child(3),.countdown>span:nth-child(4){margin-bottom:0}.countdown.countdown-borders{justify-content:space-between;margin-right:0;margin-left:0}.countdown.countdown-borders>span{margin-right:0;margin-left:0}}@media(max-width:576px){.countdown>span{flex-basis:100%;max-width:100%;width:100%;margin-bottom:50px}.countdown>span:nth-child(3){margin-bottom:50px}.countdown.countdown-borders>span{margin-bottom:30px}.countdown.countdown-borders>span:nth-child(3){margin-bottom:30px}}.loading-overlay-showing>.loading-overlay{opacity:1;visibility:visible}.loading-overlay{transition:visibility 0s ease-in-out .5s,opacity .5s ease-in-out;bottom:0;left:0;position:absolute;opacity:0;right:0;top:0;visibility:hidden;background:#fff !important}body>.loading-overlay{position:fixed;z-index:999999}.bounce-loader{transition:all .2s;margin:-9px 0 0 -35px;text-align:center;width:70px;left:50%;position:absolute;top:50%;z-index:10000}.bounce-loader .bounce1,.bounce-loader .bounce2,.bounce-loader .bounce3{-webkit-animation:1.4s ease-in-out 0s normal both infinite bouncedelay;animation:1.4s ease-in-out 0s normal both infinite bouncedelay;background-color:#ccc;border-radius:100%;box-shadow:0 0 20px 0 rgba(0,0,0,.15);display:inline-block;height:18px;width:18px}.bounce-loader .bounce1{-webkit-animation-delay:-.32s;animation-delay:-.32s}.bounce-loader .bounce2{-webkit-animation-delay:-.16s;animation-delay:-.16s}@-webkit-keyframes bouncedelay{0%,80%,100%{transform:scale(0)}40%{transform:scale(1)}}@keyframes bouncedelay{0%,80%,100%{transform:scale(0)}40%{transform:scale(1)}}html.safari.iphone .bounce-loader .bounce1,html.safari.iphone .bounce-loader .bounce2,html.safari.iphone .bounce-loader .bounce3{-webkit-animation:1.4s ease-in-out infinite bouncedelay;animation:1.4s ease-in-out infinite bouncedelay}.loading-overlay.loading-overlay-percentage{display:flex;align-items:center;justify-content:center}.loading-overlay.loading-overlay-percentage .page-loader-progress-wrapper{display:flex;font-size:65.6px;font-size:4.1rem;font-weight:bold;letter-spacing:-1.5px;color:#212121}.loading-overlay.loading-overlay-percentage.loading-overlay-percentage-effect-2 .loading-overlay-background-layer{position:absolute;top:0;left:0;bottom:0;right:0;width:0;background:#f4f4f4;z-index:0;transition:ease width 300ms}.loading-overlay.loading-overlay-percentage.loading-overlay-percentage-effect-2 .page-loader-progress-wrapper{position:relative;z-index:1}.cssload-thecube{width:40px;height:40px;margin:0 auto;margin-top:-20px;position:relative;transform:rotateZ(45deg)}.cssload-thecube .cssload-cube{position:relative;float:left;width:50%;height:50%;transform:rotateZ(45deg);transform:scale(1.1)}.cssload-thecube .cssload-cube:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background-color:#ccc;-webkit-animation:cssload-fold-thecube 1.68s infinite linear both;animation:cssload-fold-thecube 1.68s infinite linear both;transform-origin:100% 100%}.cssload-thecube .cssload-c2{transform:scale(1.1) rotateZ(90deg)}.cssload-thecube .cssload-c2:before{-webkit-animation-delay:.205s;animation-delay:.205s}.cssload-thecube .cssload-c3{transform:scale(1.1) rotateZ(180deg)}.cssload-thecube .cssload-c3:before{-webkit-animation-delay:.42s;animation-delay:.42s}.cssload-thecube .cssload-c4{transform:scale(1.1) rotateZ(270deg)}.cssload-thecube .cssload-c4:before{-webkit-animation-delay:.625s;animation-delay:.625s}@-webkit-keyframes cssload-fold-thecube{0%,10%{transform:perspective(129px) rotateX(-180deg);opacity:0}25%,75%{transform:perspective(129px) rotateX(0deg);opacity:1}90%,100%{transform:perspective(129px) rotateY(180deg);opacity:0}}@keyframes cssload-fold-thecube{0%,10%{transform:perspective(129px) rotateX(-180deg);opacity:0}25%,75%{transform:perspective(129px) rotateX(0deg);opacity:1}90%,100%{transform:perspective(129px) rotateY(180deg);opacity:0}}.cssload-cube-progress{display:block;margin:0 auto;width:29px;height:29px;position:relative;border:4px solid #ccc;-webkit-animation:cssload-cube-progress 2.3s infinite ease;animation:cssload-cube-progress 2.3s infinite ease}.cssload-cube-progress-inner{vertical-align:top;display:inline-block;width:100%;background-color:#ccc;-webkit-animation:cssload-cube-progress-inner 2.3s infinite ease-in;animation:cssload-cube-progress-inner 2.3s infinite ease-in}@-webkit-keyframes cssload-cube-progress{0%{transform:rotate(0deg)}25%{transform:rotate(180deg)}50%{transform:rotate(180deg)}75%{transform:rotate(360deg)}100%{transform:rotate(360deg)}}@keyframes cssload-cube-progress{0%{transform:rotate(0deg)}25%{transform:rotate(180deg)}50%{transform:rotate(180deg)}75%{transform:rotate(360deg)}100%{transform:rotate(360deg)}}@-webkit-keyframes cssload-cube-progress-inner{0%{height:0%}25%{height:0%}50%{height:100%}75%{height:100%}100%{height:0%}}@keyframes cssload-cube-progress-inner{0%{height:0%}25%{height:0%}50%{height:100%}75%{height:100%}100%{height:0%}}.cssload-float-rings-loader{position:relative;left:calc(50% - 15px);width:40px;height:40px;border-radius:50%;perspective:380px}.cssload-float-rings-inner{position:absolute;width:100%;height:100%;box-sizing:border-box;border-radius:50%}.cssload-float-rings-inner.cssload-one{left:0%;top:0%;-webkit-animation:cssload-rotate-one 1.15s linear infinite;animation:cssload-rotate-one 1.15s linear infinite;border-bottom:1px solid #ccc}.cssload-float-rings-inner.cssload-two{right:0%;top:0%;-webkit-animation:cssload-rotate-two 1.15s linear infinite;animation:cssload-rotate-two 1.15s linear infinite;border-right:1px solid #ccc}.cssload-float-rings-inner.cssload-three{right:0%;bottom:0%;-webkit-animation:cssload-rotate-three 1.15s linear infinite;animation:cssload-rotate-three 1.15s linear infinite;border-top:1px solid #ccc}@-webkit-keyframes cssload-rotate-one{0%{transform:rotateX(35deg) rotateY(-45deg) rotateZ(0deg)}100%{transform:rotateX(35deg) rotateY(-45deg) rotateZ(360deg)}}@keyframes cssload-rotate-one{0%{transform:rotateX(35deg) rotateY(-45deg) rotateZ(0deg)}100%{transform:rotateX(35deg) rotateY(-45deg) rotateZ(360deg)}}@-webkit-keyframes cssload-rotate-two{0%{transform:rotateX(50deg) rotateY(10deg) rotateZ(0deg)}100%{transform:rotateX(50deg) rotateY(10deg) rotateZ(360deg)}}@keyframes cssload-rotate-two{0%{transform:rotateX(50deg) rotateY(10deg) rotateZ(0deg)}100%{transform:rotateX(50deg) rotateY(10deg) rotateZ(360deg)}}@-webkit-keyframes cssload-rotate-three{0%{transform:rotateX(35deg) rotateY(55deg) rotateZ(0deg)}100%{transform:rotateX(35deg) rotateY(55deg) rotateZ(360deg)}}@keyframes cssload-rotate-three{0%{transform:rotateX(35deg) rotateY(55deg) rotateZ(0deg)}100%{transform:rotateX(35deg) rotateY(55deg) rotateZ(360deg)}}.cssload-float-bars-container{margin:-70px auto 0 auto;max-width:545px;transform:rotate(90deg)}.cssload-float-bars-container *{box-sizing:border-box}.cssload-float-bars-container ul li{list-style:none}.cssload-float-bars-flex-container{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-around}.cssload-float-bars-flex-container li{padding:10px;height:97px;width:97px;margin:29px 19px;position:relative;text-align:center}.cssload-float-bars-loading,.cssload-float-bars-loading:after,.cssload-float-bars-loading:before{display:inline-block;position:relative;width:5px;height:49px;background:#ccc;margin-top:5px;border-radius:975px;-webkit-animation:cssload-upDown2 1.15s ease infinite;animation:cssload-upDown2 1.15s ease infinite;-webkit-animation-direction:alternate;animation-direction:alternate;-webkit-animation-delay:.29s;animation-delay:.29s}.cssload-float-bars-loading:after,.cssload-float-bars-loading:before{position:absolute;content:'';-webkit-animation:cssload-upDown 1.15s ease infinite;animation:cssload-upDown 1.15s ease infinite;-webkit-animation-direction:alternate;animation-direction:alternate}.cssload-float-bars-loading:before{left:-10px}.cssload-float-bars-loading:after{left:10px;-webkit-animation-delay:.58s;animation-delay:.58s}@-webkit-keyframes cssload-upDown{from{transform:translateY(19px)}to{transform:translateY(-19px)}}@keyframes cssload-upDown{from{transform:translateY(19px)}to{transform:translateY(-19px)}}@-webkit-keyframes cssload-upDown2{from{transform:translateY(29px)}to{transform:translateY(-19px)}}@keyframes cssload-upDown2{from{transform:translateY(29px)}to{transform:translateY(-19px)}}.cssload-speeding-wheel-container{width:100%;height:49px;text-align:center}.cssload-speeding-wheel{width:49px;height:49px;margin:0 auto;border:3px solid #ccc;border-radius:50%;border-left-color:transparent;border-right-color:transparent;-webkit-animation:cssload-spin 575ms infinite linear;animation:cssload-spin 575ms infinite linear}@-webkit-keyframes cssload-spin{100%{transform:rotate(360deg);transform:rotate(360deg)}}@keyframes cssload-spin{100%{transform:rotate(360deg);transform:rotate(360deg)}}.cssload-zenith-container{width:100%;height:49px;text-align:center}.cssload-zenith{width:49px;height:49px;margin:0 auto;border-radius:50%;border-top-color:transparent;border-left-color:transparent;border-right-color:transparent;box-shadow:3px 3px 1px #ccc;-webkit-animation:cssload-spin 690ms infinite linear;animation:cssload-spin 690ms infinite linear}@keyframes cssload-spin{100%{transform:rotate(360deg);transform:rotate(360deg)}}.cssload-spinning-square-loading{position:relative;width:30px;height:30px;background:#ccc;display:block;margin:auto;-webkit-animation:1.15s cssload-spin infinite;animation:1.15s cssload-spin infinite}.cssload-spinning-square-loading:before,.cssload-spinning-square-loading:after{content:"";position:absolute;top:0;bottom:0;left:0;right:0;-webkit-animation:.58s infinite alternate linear;animation:.58s infinite alternate linear}.cssload-spinning-square-loading:before{background:#999;-webkit-animation-name:cssload-blur1;animation-name:cssload-blur1}.cssload-spinning-square-loading:after{background:#fff;-webkit-animation-name:cssload-blur2;animation-name:cssload-blur2}@keyframes cssload-spin{to{transform:rotate(360deg)}}@-webkit-keyframes cssload-blur1{to{transform:rotate(-30deg)}}@keyframes cssload-blur1{to{transform:rotate(-30deg)}}@-webkit-keyframes cssload-blur2{to{transform:rotate(-15deg)}}@keyframes cssload-blur2{to{transform:rotate(-15deg)}}.wrapper-pulse{margin-top:-60px}.cssload-pulse-loader{width:49px;height:49px;border-radius:50%;margin:3em;display:inline-block;position:relative;vertical-align:middle;background:#000}.cssload-pulse-loader,.cssload-pulse-loader:before,.cssload-pulse-loader:after{-webkit-animation:1.15s infinite ease-in-out;animation:1.15s infinite ease-in-out}.cssload-pulse-loader:before,.cssload-pulse-loader:after{width:100%;height:100%;border-radius:50%;position:absolute;top:0;left:0}.cssload-pulse-loader{-webkit-animation-name:cssload-pulse-loader;animation-name:cssload-pulse-loader}@-webkit-keyframes cssload-pulse-loader{from{transform:scale(0);opacity:1}to{transform:scale(1);opacity:0}}@keyframes cssload-pulse-loader{from{transform:scale(0);opacity:1}to{transform:scale(1);opacity:0}}@-webkit-keyframes shapeDividerToLeft{from{transform:translate3d(0,0,0)}to{transform:translate3d(-200%,0,0)}}@keyframes shapeDividerToLeft{from{transform:translate3d(0,0,0)}to{transform:translate3d(-200%,0,0)}}@-webkit-keyframes shapeDividerToRight{from{transform:translate3d(0,0,0)}to{transform:translate3d(200%,0,0)}}@keyframes shapeDividerToRight{from{transform:translate3d(0,0,0)}to{transform:translate3d(200%,0,0)}}.section.section-with-shape-divider{position:relative;overflow:hidden}.section.section-with-shape-divider .shape-divider{position:absolute;top:0;left:0;width:100%;height:80px;z-index:1}.section.section-with-shape-divider .shape-divider svg{position:absolute;top:0;left:50%;height:100%;transform:translate3d(-50%,0,0)}@media(min-width:1950px){.section.section-with-shape-divider .shape-divider svg{width:100%}}.section.section-with-shape-divider .shape-divider.shape-divider-bottom{top:auto;bottom:0}.section.section-with-shape-divider .shape-divider.shape-divider-reverse-y{transform:rotateY(180deg)}.section.section-with-shape-divider .shape-divider.shape-divider-reverse-x{transform:rotateX(180deg)}.section.section-with-shape-divider .shape-divider.shape-divider-reverse-xy{transform:rotateY(180deg) rotateX(180deg)}.section.section-with-shape-divider .shape-divider .shape-divider-horizontal-animation{position:absolute;top:0;left:0;width:100vw;height:100%;-webkit-animation-duration:45s;animation-duration:45s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}.section.section-with-shape-divider .shape-divider .shape-divider-horizontal-animation>svg{width:100vw;left:0;transform:none}.section.section-with-shape-divider .shape-divider .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-right.start{-webkit-animation-name:shapeDividerToRight;animation-name:shapeDividerToRight}.section.section-with-shape-divider .shape-divider .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-right>svg:nth-child(2){transform:rotateY(180deg) translate3d(99.9%,0,0)}@media(max-width:575px){.section.section-with-shape-divider .shape-divider .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-right>svg:nth-child(2){transform:rotateY(180deg) translate3d(99.8%,0,0)}}.section.section-with-shape-divider .shape-divider .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-right>svg:nth-child(3){transform:translate3d(-199.8%,0,0)}@media(max-width:575px){.section.section-with-shape-divider .shape-divider .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-right>svg:nth-child(3){transform:translate3d(-199.6%,0,0)}}.section.section-with-shape-divider .shape-divider .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-left.start{-webkit-animation-name:shapeDividerToLeft;animation-name:shapeDividerToLeft}.section.section-with-shape-divider .shape-divider .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-left>svg:nth-child(2){transform:rotateY(180deg) translate3d(-99.9%,0,0)}@media(max-width:575px){.section.section-with-shape-divider .shape-divider .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-left>svg:nth-child(2){transform:rotateY(180deg) translate3d(99.8%,0,0)}}.section.section-with-shape-divider .shape-divider .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-left>svg:nth-child(3){transform:translate3d(199.8%,0,0)}@media(max-width:575px){.section.section-with-shape-divider .shape-divider .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-left>svg:nth-child(3){transform:translate3d(199.6%,0,0)}}.section.section-with-shape-divider .shape-divider.shape-divider-reverse-y .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-right.start,.section.section-with-shape-divider .shape-divider.shape-divider-reverse-xy .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-right.start{-webkit-animation-name:shapeDividerToLeft;animation-name:shapeDividerToLeft}.section.section-with-shape-divider .shape-divider.shape-divider-reverse-y .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-right>svg:nth-child(2),.section.section-with-shape-divider .shape-divider.shape-divider-reverse-xy .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-right>svg:nth-child(2){transform:rotateY(180deg) translate3d(-99.9%,0,0)}@media(max-width:575px){.section.section-with-shape-divider .shape-divider.shape-divider-reverse-y .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-right>svg:nth-child(2),.section.section-with-shape-divider .shape-divider.shape-divider-reverse-xy .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-right>svg:nth-child(2){transform:rotateY(180deg) translate3d(-99.8%,0,0)}}.section.section-with-shape-divider .shape-divider.shape-divider-reverse-y .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-right>svg:nth-child(3),.section.section-with-shape-divider .shape-divider.shape-divider-reverse-xy .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-right>svg:nth-child(3){transform:translate3d(199.8%,0,0)}@media(max-width:575px){.section.section-with-shape-divider .shape-divider.shape-divider-reverse-y .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-right>svg:nth-child(3),.section.section-with-shape-divider .shape-divider.shape-divider-reverse-xy .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-right>svg:nth-child(3){transform:translate3d(199.6%,0,0)}}.section.section-with-shape-divider .shape-divider.shape-divider-reverse-y .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-left.start,.section.section-with-shape-divider .shape-divider.shape-divider-reverse-xy .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-left.start{-webkit-animation-name:shapeDividerToRight;animation-name:shapeDividerToRight}.section.section-with-shape-divider .shape-divider.shape-divider-reverse-y .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-left>svg:nth-child(2),.section.section-with-shape-divider .shape-divider.shape-divider-reverse-xy .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-left>svg:nth-child(2){transform:rotateY(180deg) translate3d(99.9%,0,0)}@media(max-width:575px){.section.section-with-shape-divider .shape-divider.shape-divider-reverse-y .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-left>svg:nth-child(2),.section.section-with-shape-divider .shape-divider.shape-divider-reverse-xy .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-left>svg:nth-child(2){transform:rotateY(180deg) translate3d(99.8%,0,0)}}.section.section-with-shape-divider .shape-divider.shape-divider-reverse-y .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-left>svg:nth-child(3),.section.section-with-shape-divider .shape-divider.shape-divider-reverse-xy .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-left>svg:nth-child(3){transform:translate3d(-199.8%,0,0)}@media(max-width:575px){.section.section-with-shape-divider .shape-divider.shape-divider-reverse-y .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-left>svg:nth-child(3),.section.section-with-shape-divider .shape-divider.shape-divider-reverse-xy .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-left>svg:nth-child(3){transform:translate3d(-199.6%,0,0)}}.section.section-with-shape-divider .shape-divider.shape-divider-reverse-x .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-right.start{-webkit-animation-name:shapeDividerToRight;animation-name:shapeDividerToRight}.section.section-with-shape-divider .shape-divider.shape-divider-reverse-x .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-left.start{-webkit-animation-name:shapeDividerToLeft;animation-name:shapeDividerToLeft}.section.section-with-shape-divider .shape-divider.shape-divider-reverse-x .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-left>svg:nth-child(2){transform:rotateY(180deg) translate3d(-99.9%,0,0)}@media(max-width:575px){.section.section-with-shape-divider .shape-divider.shape-divider-reverse-x .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-left>svg:nth-child(2){transform:rotateY(180deg) translate3d(-99.8%,0,0)}}.section.section-with-shape-divider .shape-divider.shape-divider-reverse-x .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-left>svg:nth-child(3){transform:translate3d(199.8%,0,0)}@media(max-width:575px){.section.section-with-shape-divider .shape-divider.shape-divider-reverse-x .shape-divider-horizontal-animation.shape-divider-horizontal-animation-to-left>svg:nth-child(3){transform:translate3d(199.6%,0,0)}}.section.section-with-shape-divider.overlay:before{z-index:1}.custom-svg-style-1{width:calc(100vw - 20px);height:100%;position:absolute;top:0;left:50%;transform:translate3d(-50%,0,0)}


/*
	* Style settings of LayerSlider
	*
	* (c) 2011-2013 George Krupa, John Gera & Kreatura Media
	*
	* Plugin web:			http://kreaturamedia.com/
	* Licenses: 			http://codecanyon.net/licenses/
*/



/* Global settings */

.ls-container {
	visibility: hidden;
	position: relative;
	z-index: 0;
}

.ls-lt-container {
	position: absolute;
}

.ls-lt-container,
.ls-lt-container * {
	text-align: left !important;
	direction: ltr !important;
}

.ls-container-fullscreen {
	margin: 0 auto !important;
	padding: 2% !important;
	background: black !important;
	border-radius: 0 !important;
	-moz-border-radius: 0 !important;
	-webkit-border-radius: 0 !important;
	border: none !important;
}

.ls-container-fullscreen .ls-thumbnail-wrapper,
.ls-container-fullscreen .ls-fullscreen,
.ls-container-fullscreen .ls-shadow {
	display: none !important;
}

.ls-overflow-hidden {
	overflow: hidden;
}

.ls-inner {
	position: relative;
	background-position: center center;
	z-index: 2;
	overflow: hidden;
}

.ls-loading-container {
	position: absolute !important;
	display: none;
	z-index: 3 !important;
	left: 50% !important;
	top: 50% !important;
}

.ls-loading-indicator {
	margin: 0 auto;
}

.ls-inner,
.ls-slide {
	width: 100%;
	height: 100%;
}

.ls-slide,
.ls-layer {
	position: absolute;
	display: none;
	background-position: center center;
	overflow: hidden;
}

.ls-active,
.ls-animating {
	display: block !important;
}

.ls-slide > * {
	position: absolute;
	line-height: normal;
	margin: 0;
	left: 0;
	top: 0;
}

.ls-slide .ls-bg {
	left: 0px;
	top: 0px;
	transform: none !important;
	-o-transform: none !important;
	-ms-transform: none !important;
	-moz-transform: none !important;
	-webkit-transform: none !important;
}

.ls-yourlogo {
	position: absolute;
	z-index: 99;
}



/* Timers */

.ls-bar-timer {
	position: absolute;
	width: 0;
	height: 2px;
	background: white;
	border-bottom: 2px solid #555;
	opacity: .55;
	filter: alpha(opacity=55);
	z-index: 4;
	top: 0;
}

.ls-circle-timer {
	width: 16px;
	height: 16px;
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 4;
	opacity: .65;
	filter: alpha(opacity=65);
	display: none;
}

.ls-ct-half {
	background: white;
}

.ls-ct-center {
	background: #444;
}

.ls-ct-left,
.ls-ct-right {
	width: 50%;
	height: 100%;
	overflow: hidden;
}

.ls-ct-left,
.ls-ct-right {
	float: left;
	position: relative;
}

.ls-ct-rotate {
	width: 200%;
	height: 100%;
	position: absolute;
	top: 0;
}

.ls-ct-left .ls-ct-rotate,
.ls-ct-right .ls-ct-hider,
.ls-ct-right .ls-ct-half {
	left: 0;
}

.ls-ct-right .ls-ct-rotate,
.ls-ct-left .ls-ct-hider,
.ls-ct-left .ls-ct-half {
	right: 0;
}

.ls-ct-hider,
.ls-ct-half {
	position: absolute;
	top: 0;
}

.ls-ct-hider {
	width: 50%;
	height: 100%;
	overflow: hidden;
}

.ls-ct-half {
	width: 200%;
	height: 100%;
}

.ls-ct-center {
	width: 50%;
	height: 50%;
	left: 25%;
	top: 25%;
	position: absolute;
}

.ls-ct-half,
.ls-ct-center {
	border-radius: 100px;
	-moz-border-radius: 100px;
	-webkit-border-radius: 100px;
}



/* Navigation */

.ls-bottom-nav-wrapper {
	height: 0;
}

.ls-bottom-slidebuttons {
	text-align: left;
}

.ls-bottom-nav-wrapper,
.ls-below-thumbnails {
	z-index: 2;
	height: 0;
	position: relative;
	text-align: center;
	margin: 0 auto;
}

.ls-below-thumbnails {
	display: none;
	z-index: 6;
}

.ls-bottom-nav-wrapper a,
.ls-nav-prev,
.ls-nav-next {
	outline: none;
}

* .ls-bottom-nav-wrapper *,
* .ls-bottom-nav-wrapper span * {
	direction: ltr !important;
}

.ls-bottom-slidebuttons {
	position: relative;
	z-index: 1000;
}

.ls-bottom-slidebuttons,
.ls-nav-start,
.ls-nav-stop,
.ls-nav-sides {
	position: relative;
}

.ls-nothumb {
	text-align: center !important;
}

.ls-link {
	position: absolute;
	width: 100% !important;
	height: 100% !important;
	left: 0 !important;
	top: 0 !important;
	background-image: url("/DesktopModules/LiveSlider/Resources/LayerSlider/css/blank.gif");
}

.ls-slide > a > * {
	background-image: url("/DesktopModules/LiveSlider/Resources/LayerSlider/css/blank.gif");
}



/* Embedded videos */

.ls-vpcontainer {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.ls-videopreview {
	width : 100%;
	height : 100%;
	position : absolute;
	left : 0;
	top : 0;
	cursor : pointer;
}

.ls-playvideo {
	position: absolute;
	left: 50%;
	top: 50%;
	cursor: pointer;
}



/* Thumbnails */

.ls-tn {
	display: none !important;
}

.ls-thumbnail-hover {
	display: none;
	position: absolute;
	left: 0;
}

.ls-thumbnail-hover-inner {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	display: none;
}

.ls-thumbnail-hover-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.ls-thumbnail-hover-img {
	position: absolute;
	overflow: hidden;
}

.ls-thumbnail-hover img {
	max-width: none !important;
	position: absolute;
	display: inline-block;
	visibility: visible !important;
	left: 50%;
	top: 0;
}

.ls-thumbnail-hover span {
	left: 50%;
	top: 100%;
	width: 0;
	height: 0;
	display: block;
	position: absolute;
	border-left-color: transparent !important;
	border-right-color: transparent !important;
	border-bottom-color: transparent !important;
}

.ls-thumbnail-wrapper {
	position: relative;
	width: 100%;
	margin: 0 auto;
	z-index: 4;
}

.ls-thumbnail {
	position: relative;
	margin: 0 auto;
}

.ls-thumbnail-inner,
.ls-thumbnail-slide-container {
	width: 100%;
}

.ls-thumbnail-slide-container {
	overflow: hidden !important;
	position: relative;
}

.ls-touchscroll {
	overflow-x: auto !important;
}

.ls-thumbnail-slide {
	text-align: center;
	white-space: nowrap;
	float: left;
	position: relative;
}

.ls-thumbnail-slide a {
	overflow: hidden;
	display: inline-block;
	width: 0;
	height: 0;
	position: relative;
}

.ls-thumbnail-slide img {
	max-width: none !important;
	max-height: 100% !important;
	height: 100%;
	visibility: visible !important;
}

.ls-shadow {
	display: none;
	position: absolute;
	z-index: 1;
	top: 100%;
	width: 100%;
	left: 0;
	overflow: hidden !important;
	visibility: hidden;
}

.ls-shadow img {
	width: 100% !important;
	height: auto !important;
	position: absolute !important;
	left: 0 !important;
	bottom: 0 !important;
}

.ls-bottom-nav-wrapper,
.ls-thumbnail-wrapper,
.ls-nav-prev,
.ls-nav-next {
	visibility: hidden;
}



/* WP plugin fullwidth */

.ls-wp-fullwidth-container {
	width: 100%;
	position: relative;
}

.ls-wp-fullwidth-helper {
	position: absolute;
}



/* 2D & 3D Layer Transitions */

.ls-overflow-hidden {
	overflow: hidden;
}

.ls-lt-tile {
	position: relative;
	float: left;
	perspective: 1000px;
	-o-perspective: 1000px;
	-ms-perspective: 1000px;
	-moz-perspective: 1000px;
	-webkit-perspective: 1000px;
}

.ls-lt-tile img {
	visibility: visible;
	display: inline-block;
}

.ls-curtiles {
	overflow: hidden;
}

.ls-curtiles,
.ls-nexttiles {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.ls-curtile, .ls-nexttile {
	overflow: hidden;
	position: absolute;
	width: 100% !important;
	height: 100% !important;
	backface-visibility: hidden;
	-o-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.ls-curtile {
	left: 0;
	top: 0;
}

.ls-curtile img,
.ls-nexttile img {
	position: absolute;
	filter: inherit;
}

.ls-3d-container {
	position: relative;
	overflow: visible !important;
}

.ls-3d-box {
	position: absolute;
	top: 50%;
	left: 50%;
	transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
}

.ls-3d-box div {
	overflow: hidden;
	background: #777;
	margin: 0;
	padding: 0;
	position: absolute;
}



/* Full screen */

.ls-fullscreen {
	position: absolute;
	z-index: 10;
	cursor: pointer;
	display: block;
}



/* Removing all default global styles of WordPress themes */

html * .ls-nav-prev,
html * .ls-nav-next,
html * .ls-container img,
html * .ls-bottom-nav-wrapper a,
html * .ls-container .ls-fullscreen,
body * .ls-nav-prev,
body * .ls-nav-next,
body * .ls-container img,
body * .ls-bottom-nav-wrapper a,
body * .ls-container .ls-fullscreen,
#ls-global * .ls-nav-prev,
#ls-global * .ls-nav-next,
#ls-global * .ls-container img,
#ls-global * .ls-bottom-nav-wrapper a,
#ls-global * .ls-container .ls-fullscreen,
html * .ls-thumbnail a,
body * .ls-thumbnail a,
#ls-global * .ls-thumbnail a {
	transition: none;
	-o-transition: none;
	-ms-transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	line-height: normal;
	outline: none;
	padding: 0;
	border: 0;
}

html * .ls-slide > a,
body * .ls-slide > a,
#ls-global * .ls-slide > a,
html * .ls-slide > h1,
body * .ls-slide > h1,
#ls-global * .ls-slide > h1,
html * .ls-slide > h2,
body * .ls-slide > h2,
#ls-global * .ls-slide > h2,
html * .ls-slide > h3,
body * .ls-slide > h3,
#ls-global * .ls-slide > h3,
html * .ls-slide > h4,
body * .ls-slide > h4,
#ls-global * .ls-slide > h4,
html * .ls-slide > h5,
body * .ls-slide > h5,
#ls-global * .ls-slide > h5,
html * .ls-slide > p,
body * .ls-slide > p,
#ls-global * .ls-slide > p,
html * .ls-slide > div,
body * .ls-slide > div,
#ls-global * .ls-slide > div,
html * .ls-slide > span,
body * .ls-slide > span,
#ls-global * .ls-slide > span,
html * .ls-slide > *,
body * .ls-slide > *,
#ls-global * .ls-slide > * {
	transition: none;
	-o-transition: none;
	-ms-transition: none;
	-moz-transition: none;
	-webkit-transition: none;
}

html * .ls-slide > *,
body * .ls-slide > *,
#ls-global * .ls-slide > * {
	margin: 0;
}

html * .ls-container img,
body * .ls-container img,
#ls-global * .ls-container img {
	background: none !important;
	min-width: 0 !important;
	max-width: none !important;
	border-radius: 0;
	box-shadow: none;
	border: 0;
	padding: 0;
}

/*html * .ls-thumbnail a img,
body * .ls-thumbnail a img,
#ls-global * .ls-thumbnail a img {
	min-width: 100% !important;
}
*/

html * .ls-wp-container .ls-slide > *,
body * .ls-wp-container .ls-slide > *,
#ls-global * .ls-wp-container .ls-slide > * {
	line-height: normal;
	outline: none;
	padding: 0;
	margin: 0;
	border: 0;
}

html * .ls-wp-container .ls-slide > a > *,
body * .ls-wp-container .ls-slide > a > *,
#ls-global * .ls-wp-container .ls-slide > a > * {
	margin: 0;
}

html * .ls-wp-container .ls-slide > a,
body * .ls-wp-container .ls-slide > a,
#ls-global * .ls-wp-container .ls-slide > a {
	text-decoration: none;
}

.ls-wp-fullwidth-container,
.ls-wp-fullwidth-helper,
.ls-container,
.ls-container * {
	box-sizing: content-box !important;
	-moz-box-sizing: content-box !important;
	-webkit-box-sizing: content-box !important;
}

html * .ls-yourlogo,
body * .ls-yourlogo,
#ls-global * .ls-yourlogo {
	margin: 0;
}

html * .ls-tn,
body * .ls-tn,
#ls-global * .ls-tn {
	display: none;
}

.site {
	overflow: visible !important;
}



/* Style of LayerSlider Debug Console */

.ls-debug-console * {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	color: white !important;
	text-shadow: none !important;
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", Helvetica, Arial, sans-serif !important;
	line-height: normal !important;
	-webkit-font-smoothing: antialiased !important;
	text-align: left !important;
	font-style: normal !important;
}

.ls-debug-console h1 {
	padding-top: 10px !important;
	font-size: 17px !important;
	font-weight: bold !important;
}

.ls-debug-console h1:first-child {
	padding-top: 0 !important;
}

.ls-debug-console ul {
	padding-top: 10px !important;
	list-style: none !important;
}

.ls-debug-console li {
	margin-left: 10px !important;
	font-size: 13px !important;
	position: relative !important;
	font-weight: normal !important;
}

html * .ls-debug-console li ul,
body * .ls-debug-console li ul,
#ls-global * .ls-debug-console li ul {
	display: none;
	width: 260px;
	left: -10px;
}

.ls-debug-console li ul {
	position: absolute !important;
	bottom: 100% !important;
	padding: 10px 10px 10px 0 !important;
	background: white !important;
	border-radius: 10px !important;
	box-shadow: 0 0 20px black !important;
}

html * .ls-debug-console li:hover ul,
body * .ls-debug-console li:hover ul,
#ls-global * .ls-debug-console li:hover ul {
	display: block;
}

.ls-debug-console li ul * {
	color: black !important;
}

.ls-debug-console a {
	text-decoration: none !important;
	border-bottom: 1px dotted white !important;
}

.ls-error {
	border-radius: 5px !important;
	-moz-border-radius: 5px !important;
	-wenkit-border-radius: 5px !important;
	background: white !important;
	height: auto !important;
	width: auto !important;
	color: white !important;
	padding: 20px 40px 30px 80px !important;
	position: relative !important;
	box-shadow: 0 2px 20px -5px black;
}

.ls-error p {
	line-height: normal !important;
	text-shadow: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	text-align: justify !important;
	font-family: Arial, sans-serif !important;
}

.ls-error .ls-error-title {
	line-height: 40px !important;
	color: red !important;
	font-weight: bold !important;
	font-size: 16px !important;
}

.ls-error .ls-error-text {
	color: #555 !important;
	font-weight: normal !important;
	font-size: 13px !important;
}

.ls-error .ls-exclam {
	width: 40px !important;
	height: 40px !important;
	position: absolute !important;
	left: 20px !important;
	top: 20px !important;
	border-radius: 50px !important;
	-moz-border-radius: 50px !important;
	-webkit-border-radius: 50px !important;
	font-size: 30px !important;
	font-weight: bold !important;
	color: white !important;
	line-height: 40px !important;
	background: red !important;
	text-align: center !important;
}



/* GPU Hardware Acceleration */

html * .ls-container .ls-shadow,
html * .ls-container .ls-slide > *,
html * .ls-container .ls-fullscreen,
html * .ls-container .ls-3d-container,
html * .ls-container .ls-lt-container,
html * .ls-container .ls-lt-container *,
html * .ls-container .ls-thumbnail-wrapper,
html * .ls-container .ls-bottom-nav-wrapper,
body * .ls-container .ls-shadow,
body * .ls-container .ls-slide > *,
body * .ls-container .ls-fullscreen,
body * .ls-container .ls-3d-container,
body * .ls-container .ls-lt-container,
body * .ls-container .ls-lt-container *,
body * .ls-container .ls-thumbnail-wrapper,
body * .ls-container .ls-bottom-nav-wrapper,
#ls-global * .ls-container .ls-shadow,
#ls-global * .ls-container .ls-slide > *,
#ls-global * .ls-container .ls-fullscreen,
#ls-global * .ls-container .ls-3d-container,
#ls-global * .ls-container .ls-lt-container,
#ls-global * .ls-container .ls-lt-container *,
#ls-global * .ls-container .ls-thumbnail-wrapper,
#ls-global * .ls-container .ls-bottom-nav-wrapper,
.ls-gpuhack {
	transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
}

.ls-videohack {
	transform: none !important;
	-o-transform: none !important;
	-ms-transform: none !important;
	-moz-transform: none !important;
	-webkit-transform: none !important;
	transform-origin: none !important;
	-o-transform-origin: none !important;
	-ms-transform-origin: none !important;
	-moz-transform-origin: none !important;
	-webkit-transform-origin: none !important;
}

.ls-oldiepnghack {
	filter: none !important;
}

.ls-gpuhack {
	width: 100% !important;
	height: 100% !important;
	left: 0px !important;
	top: 0px !important;
}


html * .ls-container .ls-webkit-hack,
body * .ls-container .ls-webkit-hack,
#ls-global * .ls-container .ls-webkit-hack {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}

/* GPU */

@media (transform-3d), (-o-transform-3d), (-ms-transform-3d), (-moz-transform-3d), (-webkit-transform-3d) {
	#ls-test3d {
		position: absolute;
		left: 9px;
		height: 3px;
	}
}

/* Mobile features */

.ls-forcehide {
	display: none !important;
}

.ls-nav-prev, .ls-nav-next, .ls-nav-start, .ls-nav-stop, .ls-bottom-slidebuttons a {
    text-indent: -9999px;
}


/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0");src:url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format('embedded-opentype'),url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0") format('woff2'),url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0") format('woff'),url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0") format('truetype'),url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}

@import url("/DesktopModules/EasyDNNNews/static/font-awesome/css/font-awesome.min.css");
.eds_modalWrapper {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99999;
  transition: all 200ms ease-in 0s;
  opacity: 0;
  visibility: hidden;
}
.eds_modalWrapper * {
  box-sizing: content-box;
}
.eds_modalWrapper *.eds_attendantsPrices li input[type=text] {
  width: 35px;
}
.eds_modalWrapper .eds_modalContent {
  position: relative;
  width: 90%;
  max-width: 600px;
  margin: 6% auto;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  display: none;
  box-sizing: border-box;
  font-family: Arial;
  color: #7b7b7b;
  font-size: 12px;
  text-align: left;
}
.eds_modalWrapper .eds_modalContent > div {
  position: relative;
  overflow: auto;
}
.eds_modalWrapper .eds_modalContent > div > div {
  padding: 20px;
}
.eds_modalWrapper .eds_modalContent .dnnLabel {
  margin: 0;
  padding: 0;
  text-align: left;
  width: auto;
}
.eds_modalWrapper .eds_modalContent .dnnFormHelp {
  right: 8px;
}
.eds_modalWrapper .eds_modalContent .dnnTooltip {
  display: inline;
}
.eds_modalWrapper .eds_modalContent > h3 {
  background-color: #189fd3;
  color: #fff !important;
  font: normal 18px/50px Arial !important;
  font-weight: normal;
  margin: 0;
  padding: 0 20px;
  letter-spacing: normal;
  border-radius: 3px 3px 0 0;
  height: 50px;
}
.eds_modalWrapper .eds_modalContent > h3::before {
  font-family: "FontAwesome";
  color: #fff;
  padding-right: 15px;
  font-size: 30px;
  line-height: 50px;
  vertical-align: middle;
}
.eds_modalWrapper .eds_modalContent > h3 > span,
.eds_modalWrapper .eds_modalContent > h3 > label {
  color: inherit;
  font: inherit;
}
.eds_modalWrapper .eds_modalContent input[type=text],
.eds_modalWrapper .eds_modalContent textarea,
.eds_modalWrapper .eds_modalContent select {
  background: none #F9F9F9;
  border: solid 1px #ddd;
  border-radius: 3px;
  box-shadow: none;
  line-height: 1;
  font-family: Arial;
  font-size: 12px;
  text-shadow: none;
  color: #444;
  margin: 0;
  padding: 0 10px;
  box-sizing: border-box;
  width: 240px;
  transition: box-shadow 200ms linear;
}
.eds_modalWrapper .eds_modalContent input[type=text]:hover,
.eds_modalWrapper .eds_modalContent textarea:hover,
.eds_modalWrapper .eds_modalContent select:hover {
  border: solid 1px #C1C1C1;
  box-shadow: none;
  color: #444;
  background: none #F9F9F9;
}
.eds_modalWrapper .eds_modalContent input[type=text]:focus,
.eds_modalWrapper .eds_modalContent textarea:focus,
.eds_modalWrapper .eds_modalContent select:focus {
  border: solid 1px #BABDC9;
  box-shadow: 0 0 3px #98ACF4;
  background: transparent #fff;
  color: #444;
}
.eds_modalWrapper .eds_modalContent input[type=text]:disabled,
.eds_modalWrapper .eds_modalContent textarea:disabled,
.eds_modalWrapper .eds_modalContent select:disabled {
  color: #929292;
  text-shadow: 1px 1px 0 #fff;
  cursor: not-allowed;
}
.eds_modalWrapper .eds_modalContent input[type=text].eds_numberOfTickets {
  width: 45px;
  border-right-width: 3px;
  border-right-color: #f00;
}
.eds_modalWrapper .eds_modalContent input[type=text],
.eds_modalWrapper .eds_modalContent select {
  height: 26px;
  padding-right: 0;
  width: 240px;
}
.eds_modalWrapper .eds_modalContent textarea {
  padding: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent input[type=text],
.eds_modalWrapper .eds_modalContent textarea,
.eds_modalWrapper .eds_modalContent select {
    width: 100% !important;
  }
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper {
  text-align: right;
  margin: 20px 0;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper.eds_alignCenter {
  text-align: center;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper button[type=button],
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper input[type=submit] {
  box-shadow: none !important;
  border: none !important;
  border-radius: 3px !important;
  font-family: Arial !important;
  font-size: 16px !important;
  font-weight: normal !important;
  line-height: 48px !important;
  text-shadow: none !important;
  padding: 0 30px !important;
  cursor: pointer !important;
  text-decoration: none !important;
  display: inline-block !important;
  text-transform: none !important;
  margin: 0 !important;
  height: auto !important;
  transition: all 100ms linear !important;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper input[type=submit] {
  background: none #189fd3 !important;
  color: #fff !important;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper input[type=submit]:hover {
  background: none #2cb3e7 !important;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper input[type=submit].edn_stripeSubmit {
  border: solid 2px #747bff !important;
  background: #fff url("/DesktopModules/EasyDNNNews/images/stripe_checkout.png") 13px center no-repeat !important;
  color: #747bff !important;
  border-radius: 24px !important;
  padding-right: 25px !important;
  padding-left: 50px !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper input[type=submit].edn_stripeSubmit:hover {
  background-color: #747bff !important;
  color: #fff !important;
  background-image: url("/DesktopModules/EasyDNNNews/images/stripe_checkout_white.png") !important;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper button[type=button].eds_modalClose {
  margin-right: 20px !important;
  background: none #e9e9ed !important;
  color: #7b7b7b !important;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper button[type=button].eds_modalClose:hover {
  background: none #d0d0d7 !important;
}
.eds_modalWrapper .eds_modalContent input[type=radio] + label,
.eds_modalWrapper .eds_modalContent input[type=checkbox] + label {
  line-height: 22px;
  margin-left: 3px;
  font-weight: normal;
  display: inline-block;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput {
  margin: 0 0 10px;
  padding: 0;
  white-space: nowrap;
  position: relative;
  font-size: 0;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput::after {
  display: block;
  content: "";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput .HTMLeditor,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > .dnnLeft,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > .dnnRight {
  float: none;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput input ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput textarea ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput select ~ span {
  font-size: 11px;
  line-height: 1;
  color: #C42323;
  margin-left: 8px;
  width: auto !important;
  display: inline;
  margin: 0;
  font-weight: normal;
  margin-left: 5px;
  position: absolute;
  left: 165px;
  bottom: -5px;
  top: auto;
  text-shadow: 0px 0px 2px #fff;
  transition: opacity 200ms ease;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput input ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput textarea ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput select ~ span {
    bottom: auto;
    left: auto;
    right: 10px;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput input:focus ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput textarea:focus ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput select:focus ~ span {
  opacity: 0.1;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_paymentInfo {
  font-size: 12px;
  line-height: 1;
  color: #3b3b3b;
  margin: 0 0 7px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_paymentInfo > span {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_paymentInfo.eds_estimatedTotal {
  font-weight: bold;
  font-size: 16px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_paymentInfo.eds_estimatedTotal > span {
  color: #e3011f;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput > label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > div,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > span {
    width: 100%;
    clear: both;
    float: none;
    display: block;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_noWidthLabel > label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_noWidthLabel > span {
  width: auto;
  white-space: normal;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_noWidthLabel > label {
  line-height: 1.3;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_noWidthLabel > input,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_noWidthLabel > label {
  vertical-align: top;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 > span {
  width: 100px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 input[type=text],
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 select,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 textarea {
  width: 280px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 input ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 textarea ~ span {
  left: 125px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 input ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 textarea ~ span {
    left: auto;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput input[type=text],
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput textarea,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput select {
  width: 440px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput input[type=text],
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput textarea,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput select {
    width: 280px;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput textarea {
  height: 110px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput .eds_flexGroup {
  display: flex;
  flex-flow: column;
}
@media (min-width: 992px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput .eds_flexGroup {
    flex-flow: row;
  }
}
@media (min-width: 992px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput .eds_flexGroup .eds_flexInput {
    flex-grow: 2;
    padding-right: 20px;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput .eds_flexGroup .eds_justifyCenter {
  justify-content: center;
}
@media (min-width: 992px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput .eds_flexGroup .inlineList {
    margin-top: 6px;
    margin-bottom: 0;
  }
}
@media (min-width: 480px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput .eds_flexGroup .inlineList > li {
    display: inline-block;
    vertical-align: middle;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput .eds_flexGroup .inlineList > li label {
  width: auto;
}
.eds_modalWrapper .eds_modalContent label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > span {
  font-family: Arial;
  font-size: 13px;
  line-height: 26px;
  color: #7B7B7B;
  width: 140px;
  display: inline-block;
  margin: 0 15px 0 0;
  vertical-align: top;
  font-weight: bold;
  text-decoration: none;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > span {
    display: block;
    width: 100%;
  }
}
.eds_modalWrapper .eds_modalContent a.dnnFormHelp,
.eds_modalWrapper .eds_modalContent .dnnForm .dnnFormItem a.dnnFormHelp,
.eds_modalWrapper .eds_modalContent .dnnTooltip label a.dnnFormHelp {
  font-family: Arial;
  font-size: 13px;
  line-height: 1;
  color: #7B7B7B;
}
.eds_modalWrapper .eds_modalContent > div .eds_eventRegistrationLoading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: rgba(255, 255, 255, 0.5) url("/DesktopModules/EasyDNNNews/static/common/images/eventRegistrationLoading.gif") no-repeat center center;
}
.eds_modalWrapper .edn_errorMessage {
  font-family: Arial;
  line-height: 1;
  font-size: 11px;
  color: #AB1111;
  margin-left: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .edn_errorMessage {
    display: block;
    margin-top: 2px;
    margin-left: 0;
  }
}
.eds_modalWrapper .eds_closeWindowButtonOuter {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  text-align: center;
  border: solid 1px #115f7d;
  border-radius: 3px;
  line-height: 0 !important;
  font-size: 0 !important;
  cursor: pointer;
  background: none transparent;
  transition: background 100ms linear;
}
.eds_modalWrapper .eds_closeWindowButtonOuter::before {
  font-family: "FontAwesome";
  color: #fff;
  font-size: 22px;
  line-height: 28px;
  content: "\f00d";
}
.eds_modalWrapper .eds_closeWindowButtonOuter:hover {
  background-color: #115f7d;
}
.eds_modalWrapper .edNews_tooltipContent {
  border-radius: 5px;
  border: 1px solid #B8D5E0;
  background: #0A445B;
  color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  max-width: 350px;
  position: absolute;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 16px;
  padding: 5px 8px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: all 400ms;
  top: auto;
  bottom: 100%;
  z-index: 999;
}
.eds_modalWrapper .edNews_tooltip {
  position: relative;
}
.eds_modalWrapper .edNews_tooltip::after {
  position: absolute;
  top: 0;
  left: auto;
  right: -6px;
  display: block;
  background: none;
  content: "\f059";
  font: 16px/1 "FontAwesome";
  text-align: center;
  padding: 0;
  color: #555;
  transition: color ease-in-out 0.4s;
}
.eds_modalWrapper .edNews_tooltip:hover .edNews_tooltipContent {
  opacity: 1;
  visibility: visible;
}
.eds_modalWrapper .eds_labelAndInput:first-child .edNews_tooltipContent {
  top: 100%;
  bottom: auto;
}
.eds_modalWrapper .eds_updateProfile {
  font-size: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
  text-align: right;
  float: right;
  margin: 11px 70px 0 0;
}
.eds_modalWrapper .eds_updateProfile > a {
  text-decoration: underline;
  color: #fff;
  font-size: 14px;
  line-height: 19px;
  display: inline-block;
  background: url("/DesktopModules/EasyDNNNews/static/common/images/user.png") no-repeat 0 0;
  padding: 1px 0 0 22px;
}
.eds_modalWrapper .eds_updateProfile > a:hover {
  text-decoration: none;
}
.eds_modalWrapper .eds_infoMessages {
  margin: 10px 0;
  display: block;
  line-height: 1.1 !important;
  font-size: 16px !important;
  color: #fff !important;
  padding: 15px 25px;
  border-radius: 2px;
  margin: 5px;
}
.eds_modalWrapper .eds_infoMessages::before {
  font-size: 21px;
  color: #fff !important;
  font-family: "FontAwesome";
  padding-right: 20px;
  line-height: 1;
}
.eds_modalWrapper .eds_infoMessages.eds_success {
  background-color: #00be9c;
}
.eds_modalWrapper .eds_infoMessages.eds_success::before {
  content: "\f058";
}
.eds_modalWrapper .eds_infoMessages.eds_info {
  background-color: #189fd3;
}
.eds_modalWrapper .eds_infoMessages.eds_info::before {
  content: "\f05a";
}
.eds_modalWrapper .eds_infoMessages.eds_warning {
  background-color: #f3c500;
}
.eds_modalWrapper .eds_infoMessages.eds_warning::before {
  content: "\f071";
}
.eds_modalWrapper .eds_infoMessages.eds_error {
  background-color: #e07171;
}
.eds_modalWrapper .eds_infoMessages.eds_error::before {
  content: "\f06a";
}
.eds_modalWrapper .eds_formStatus {
  padding-bottom: 15px;
}
.eds_modalWrapper .edNews_eventDateRestriction {
  margin: 10px 0 0;
}
.eds_modalWrapper .edNews_eventDateRestriction > table {
  width: 100%;
  border: solid 1px #ffffff;
  box-shadow: 0 0 0 1px #E9E9E9;
  margin-bottom: 10px;
  border-collapse: collapse;
  border-spacing: 0;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody {
  background-color: #F4F4F4;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr > td {
  padding: 4px;
  text-align: center;
  vertical-align: middle;
  border: none;
  border-bottom: solid 1px #E6E6E6;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr > td:first-child {
  background-color: #F4F4F4;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr > td input[type=radio] {
  margin: 10px;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr:nth-child(odd) > td {
  border-bottom: solid 1px #fff;
  background-color: #E6E6E6;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr:nth-child(odd) > td:first-child {
  background-image: linear-gradient(to top right, #F4F4F4, #F4F4F4 50%, #E6E6E6 50%, #E6E6E6);
  border-bottom-color: #F4F4F4;
  position: relative;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr:last-child > td {
  border-bottom: none;
}
.eds_modalWrapper .eds_styledRadio {
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
}
.eds_modalWrapper .eds_styledRadio * {
  vertical-align: middle;
  box-sizing: border-box;
}
.eds_modalWrapper .eds_styledRadio *::before,
.eds_modalWrapper .eds_styledRadio *::after {
  box-sizing: border-box;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] {
  display: none;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label {
  display: inline-block;
  position: relative;
  margin: 0;
  vertical-align: baseline;
  border-radius: 50% 0 0 50%;
  padding: 2px 0 0 25px;
  min-height: 25px;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label::before, .eds_modalWrapper .eds_styledRadio input[type=radio] + label::after {
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  border: 5px solid #fff;
  border-radius: 50%;
  background: #fff;
  margin: 0;
  padding: 0;
  content: "";
  font-size: 0;
  line-height: 0;
  transition: all ease-in-out 0.2s;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label::before {
  width: 20px;
  height: 20px;
  top: 2px;
  left: 2px;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label::after {
  border: 2px solid #919191;
  background: transparent;
  width: 18px;
  height: 18px;
  top: 3px;
  left: 3px;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label:hover::before {
  background: #60cb20 !important;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label:hover::after {
  border-color: #60cb20 !important;
}
.eds_modalWrapper .eds_styledRadio input[type=radio]:checked + label::before {
  background: #189fd3;
}
.eds_modalWrapper .eds_styledRadio input[type=radio]:checked + label::after {
  border-color: #189fd3;
}
.eds_modalWrapper .eds_styledRadio input[type=radio]:disabled {
  pointer-events: none;
}
.eds_modalWrapper .eds_styledRadio input[type=radio]:disabled + label {
  opacity: 0.6;
  pointer-events: none;
}
.eds_modalWrapper .eds_styledRadio.eds_noLabel {
  overflow: hidden;
  width: 22px;
  height: 22px;
}
.eds_modalWrapper .eds_preview_cell_title_disabled {
  opacity: 0.6;
}
.eds_modalWrapper.eds_modalVisible {
  opacity: 1;
  visibility: visible;
}
.eds_modalWrapper.eds_modalVisible .eds_modalContent {
  display: block;
}
.eds_modalWrapper.eds_contactForm .eds_modalContent > h3::before {
  content: "\f0e0";
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > h3::before {
  content: "\f022";
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > div {
  color: #7b7b7b;
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > div p {
  margin: 0;
  padding: 0;
  color: #7b7b7b;
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > div p + p {
  margin-top: 15px;
}
.eds_modalWrapper.eds_themeSettings .eds_modalContent {
  width: 90%;
  max-width: 1200px;
}
.eds_modalWrapper.eds_themeSettings .eds_modalContent > h3::before {
  content: "\f085";
}
.eds_modalWrapper.eds_themeSettings .eds_modalContent .edNews_adminTheme {
  overflow: unset;
  padding: 0;
}
.eds_modalWrapper.eds_width70 .eds_modalContent {
  width: 70%;
  max-width: 70%;
}
.eds_modalWrapper .edn__contentLoading {
  height: 200px;
  text-align: center;
}
.eds_modalWrapper .edn__contentLoading > img {
  display: inline-block;
  margin: 40px auto;
}
.eds_modalWrapper .eds_animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.eds_modalWrapper .styleDisplayNone {
  display: none !important;
}
.eds_modalWrapper .loading {
  position: relative;
}
.eds_modalWrapper .loading::before, .eds_modalWrapper .loading::after {
  display: block;
  position: absolute;
  content: "";
  z-index: 999;
}
.eds_modalWrapper .loading::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.4);
}
.eds_modalWrapper .loading::after {
  content: "\f021";
  font: 900 3rem/1 "FontAwesome";
  color: #189fd3;
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
  top: 50%;
  left: 50%;
  margin-top: -2rem;
  margin-left: -1rem;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.eds_modalWrapper .eds_fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.edNews_adminInfo {
  display: inline-block;
  margin: 1rem;
  border-width: 1px;
  border-style: solid;
  border: solid 1px #ababab;
  border-radius: 3px;
  padding: 5px 10px;
  line-height: 0;
  background-color: #fff;
  font: normal normal 12px/1.1 "Arial";
}
.edNews_adminInfo label {
  font: inherit;
}
.edNews_adminInfo.edNews_info {
  border-color: #85bdf8;
  color: #85bdf8 !important;
}
.edNews_adminInfo.edNews_warning {
  border-color: #fa6900;
  color: #fa6900 !important;
}
.edNews_adminInfo.edNews_blockCenter {
  display: block;
  margin-left: 0;
  margin-right: 0;
}
.edNews_adminInfo .edNews_textCenter {
  text-align: center;
}
.edNews_adminInfo .edNews_inputGroup * {
  vertical-align: middle;
}
.edNews_adminInfo .edNews_inputGroup input[type=checkbox],
.edNews_adminInfo .edNews_inputGroup input[type=radio] {
  margin: 0;
}
.edNews_adminInfo .edNews_inputGroup input + label {
  margin: 0 0 0 7px;
}

.eds_modalContent ul {
  margin: 15px 0;
  padding: 0;
}
.eds_modalContent ul li {
  list-style-type: none;
  margin: 0 0 5px;
  padding: 0;
}
.eds_modalContent ul li label {
  font-weight: normal;
}
.eds_modalContent ul li label span {
  font-weight: bold;
}

body.eds__modalWindowOpened {
  height: 100vh;
  overflow-y: hidden;
}

.personalBarContainer ~ div .eds_modalWrapper {
  left: 80px;
}

.news .edn_userDashboard {
  margin-bottom: 2rem;
  font-size: 0;
  position: relative;
  border-radius: 7px !important;
  border: none !important;
  background: none !important;
  padding: 0 !important;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .news .edn_userDashboard {
    margin-bottom: 1rem;
  }
}
.news .edn_userDashboard::before {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 32px;
  background-color: #f7f7f7;
  border-radius: 7px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .news .edn_userDashboard::before {
    height: 100%;
  }
}
.news .edn_userDashboard > div,
.news .edn_userDashboard a {
  display: inline-block;
}
.news .edn_userDashboard a {
  position: relative;
  font: 12px/32px Arial !important;
  color: #9b9b9b !important;
  text-decoration: none !important;
  text-align: center !important;
  padding: 0 0.4rem !important;
  background: none !important;
  transition: all 400ms !important;
  height: 32px !important;
  background-color: #f7f7f7 !important;
  cursor: pointer;
  text-transform: none !important;
  border: none !important;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .news .edn_userDashboard a {
    font-size: 0 !important;
    height: 40px !important;
  }
}
.news .edn_userDashboard a::before {
  display: inline-block;
  vertical-align: middle;
}
.news .edn_userDashboard a::before {
  font: 20px/0 "FontAwesome";
  transition: all 400ms;
  z-index: 1;
  color: #c9c9c9;
  padding-right: 0.2rem;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .news .edn_userDashboard a::before {
    font-size: 24px;
    padding-right: 0;
    line-height: 40px;
  }
}
.news .edn_userDashboard a:hover {
  color: #5f5f5f !important;
  background-color: #edeef0 !important;
  text-decoration: none !important;
}
.news .edn_userDashboard a:hover::before {
  color: #5f5f5f;
}
.news .edn_userDashboard a:first-child {
  border-top-left-radius: 7px;
}
.news .edn_userDashboard a:first-child:hover {
  border-top-left-radius: 0;
}
.news .edn_userDashboard a:last-child {
  border-top-right-radius: 7px;
}
.news .edn_userDashboard a:last-child:hover {
  border-top-right-radius: 0;
}
.news .edn_userDashboard a.add_article::before {
  content: "\f055";
}
.news .edn_userDashboard a.article_manager::before {
  content: "\f15c";
}
.news .edn_userDashboard a.event_manager::before {
  content: "\f133";
}
.news .edn_userDashboard a.approve_articles::before {
  content: "\f046";
}
.news .edn_userDashboard a.approve_comments::before {
  content: "\f0e6";
}
.news .edn_userDashboard a.category_manager::before {
  content: "\f0ca";
}
.news .edn_userDashboard a.dashboard::before {
  content: "\f26c";
}
.news .edn_userDashboard a.settings::before {
  content: "\f013";
}
.news .edn_userDashboard a.author_profile::before {
  content: "\f2be";
}
.news .edn_userDashboard a.themeSettings::before {
  content: "\f1fc";
}

.edn_widget_filtermenu_box {
  margin: 0 0 15px;
  overflow: hidden;
}
.edn_widget_filtermenu_box > h2.edn_module_title {
  background: url("/DesktopModules/EasyDNNnewsWidgets/Templates/_default/FilterMenu/BlogOne/images/gradient_title_bg.png") repeat-x #797979;
  margin: 0 0 5px;
  padding: 0;
  border: none;
  border-radius: 5px 5px 0 0;
}
.edn_widget_filtermenu_box > h2.edn_module_title span {
  display: block;
  font: 14px Arial;
  line-height: 18px;
  font-weight: bold;
  color: #fff;
  margin: 0;
  padding: 2px 10px 3px;
  min-height: 18px;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border: none;
  letter-spacing: normal;
}
.edn_widget_filtermenu_box h3.edn_optionsTitle {
  background: url("/DesktopModules/EasyDNNnewsWidgets/Templates/_default/FilterMenu/BlogOne/images/h3_bg.png") repeat-x 0 0 #E5E5E5;
  border-bottom: 1px solid #CCD2D6;
  color: #6C7174 !important;
  font-size: 12px;
  font-weight: bold;
  padding: 7px 10px 5px;
  text-shadow: 1px 0 0 white;
  margin: 0;
  font-family: Arial;
  letter-spacing: normal;
}
.edn_widget_filtermenu_box > div select {
  background: #fff url("/DesktopModules/EasyDNNnewsWidgets/Templates/_default/FilterMenu/BlogOne/images/select-background.png") repeat-x 0 0;
  border-color: white;
  border-image: none;
  border-style: solid;
  border-width: 1px;
  box-shadow: none;
  color: #5B5A5A;
  font-size: 12px;
  margin: 0;
  padding: 4px 9px;
  width: 100%;
  font-family: Arial;
}
.edn_widget_filtermenu_box .edn_filter_menu {
  padding: 0;
  margin: 0;
}
.edn_widget_filtermenu_box .edn_filter_menu li {
  list-style-type: none;
  padding: 0;
  margin: 0;
  border-top: solid 1px #ebebeb;
}
.edn_widget_filtermenu_box .edn_filter_menu li ul {
  margin: 0;
  padding: 0;
}
.edn_widget_filtermenu_box .edn_filter_menu li > div {
  padding: 5px 4px 4px 70px;
  margin: 0 0 3px;
  background-color: #d6d6d5;
  overflow: hidden;
}
.edn_widget_filtermenu_box .edn_filter_menu li > div .expand_collapse {
  float: right;
  display: block;
  margin: 0 0 0 4px;
  text-indent: -10000px;
  text-decoration: none;
  line-height: 12px;
  background: url("/DesktopModules/EasyDNNnewsWidgets/Templates/_default/FilterMenu/BlogOne/images/up_down.png") 3px 2px no-repeat;
  width: 15px;
  height: 13px;
}
.edn_widget_filtermenu_box .edn_filter_menu li > div .expand_collapse.collapse {
  background-position: -10px 3px;
}
.edn_widget_filtermenu_box .edn_filter_menu li > div:hover .expand_collapse {
  background-position: 3px -11px;
}
.edn_widget_filtermenu_box .edn_filter_menu li > div:hover .expand_collapse.collapse {
  background-position: -10px -10px;
}
.edn_widget_filtermenu_box .edn_filter_menu li > div label {
  color: #252525;
  font-size: 11px;
  font-family: Verdana, Geneva, sans-serif;
  line-height: 15px;
  display: inline;
  font-weight: normal;
  margin: 0;
}
.edn_widget_filtermenu_box .edn_filter_menu li > div input[type="checkbox"] {
  margin: 2px 4px 0 0;
  vertical-align: top;
  line-height: normal;
}
.edn_widget_filtermenu_box .edn_filter_menu li.level_0 > div {
  padding-left: 10px;
  background-color: #e3e4e2;
}
.edn_widget_filtermenu_box .edn_filter_menu li.level_1 > div {
  padding-left: 20px;
}
.edn_widget_filtermenu_box .edn_filter_menu li.level_2 > div {
  padding-left: 30px;
}
.edn_widget_filtermenu_box .edn_filter_menu li.level_3 > div {
  padding-left: 40px;
}
.edn_widget_filtermenu_box .edn_filter_menu li.level_4 > div {
  padding-left: 50px;
}
.edn_widget_filtermenu_box .edn_filter_menu li.level_5 > div {
  padding-left: 60px;
}
.edn_widget_filtermenu_box .edn_filter_menu li.active > div label {
  font-weight: bold;
}
.edn_widget_filtermenu_box .EDN_two-column {
  float: left;
  width: 49%;
  clear: none;
}
.edn_widget_filtermenu_box .EDN_two-column.EDN_right {
  float: right;
}
.edn_widget_filtermenu_box .EDN_button-wrapper {
  clear: both;
  width: 100%;
  overflow: hidden;
  padding: 8px;
}
.edn_widget_filtermenu_box .EDN_button-wrapper .edn_filter_button {
  background: url("/DesktopModules/EasyDNNnewsWidgets/Templates/_default/FilterMenu/BlogOne/images/button-bg.png") repeat-x 0 0 #A1A1A1;
  float: none;
  height: 20px;
  padding: 0 6px;
  text-indent: 0;
  text-transform: none;
  width: auto;
  border: solid 1px #fff;
  border-radius: 3px;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 20px;
}
.edn_widget_filtermenu_box .EDN_button-wrapper .edn_filter_button:hover {
  background-position: 0 -20px;
}


.bg-color-primary {
  background-color: #233771;
}
.body .dnnLogin .dnnLoginService,
.body div.dnnRegistrationForm {
  border-top-color: #233771;
}
.body .dnnLogin label,
.body .dnnRegistrationForm label,
.body .dnnLoginService a.dnnSecondaryAction,
.body .dnnRegistrationForm a.dnnSecondaryAction {
  color: #233771;
}
.body .dnnLogin a.dnnPrimaryAction,
.body .dnnRegistrationForm a.dnnPrimaryAction {
  background: #233771;
  border-color: #233771;
}
.body .dnnLogin a.dnnPrimaryAction:hover,
.body .dnnRegistrationForm a.dnnPrimaryAction:hover {
  border-color: #2f4a98;
  background-color: #2f4a98;
}
html header .navbar-collapse .nav-main > ul > li > a.dropdown-item.active,
html header .navbar-collapse .nav-main > ul > li.ms-active > a.dropdown-item {
  background-color: #233771;
  color: #ffffff;
}
html header .search span {
  font-family: Open Sans;
}
html header a {
  color: #233771;
  font-family: Open Sans;
  font-size: 11px;
}
html header a:hover,
html header a:focus {
  color: #2f4a98;
  font-family: Open Sans;
  font-size: 11px;
}
html header a:visited {
  color: #17244a;
  font-family: Open Sans;
  font-size: 11px;
}
html header .navbar-collapse .nav-main > ul > li > a {
  color: #233771;
  font-family: Open Sans;
  font-size: 12px;
}
html header .navbar-collapse .nav-main > ul > li.active > a {
  color: #ffffff;
  font-family: Open Sans;
  font-size: 12px;
}
html header .navbar-collapse .nav-main > ul > li:hover > a,
html header .navbar-collapse .nav-main > ul > li > a:focus,
html header .navbar-collapse .nav-main > ul > li.focused > a {
  color: #ffffff;
}
html header .navbar-collapse .nav-main > ul ul > li > a {
  color: #ffffff;
  font-family: Open Sans;
  font-size: 12px;
}
html .slidebar .nav-main > ul > li > a {
  color: #233771;
  font-family: Open Sans;
  font-size: 12px;
}
html .slidebar .nav-main > ul > li.active > a {
  color: #ffffff;
  font-family: Open Sans;
  font-size: 12px;
}
html .slidebar .nav-main > ul > li:hover > a,
html .slidebar .nav-main > ul > li > a:focus {
  color: #ffffff;
}
html .slidebar .nav-main > ul ul > li > a {
  color: #ffffff;
  font-family: Open Sans;
  font-size: 12px;
}
html .overlayHeader .navbar-collapse .nav-main > ul ul > li:hover > a,
html .inlineHeader .navbar-collapse .nav-main > ul ul > li:hover > a {
  color: #ffffff;
}
html header nav ul.nav-main .dropdown-full-color .dropdown-submenu > a:after {
  border-right-color: #ffffff;
  border-left-color: #ffffff;
}
html section.page-top h1 {
  color: #ffffff;
  font-family: Open Sans;
  font-size: 36px;
}
html section.page-top .breadcrumb span {
  color: #ffffff;
  font-family: Open Sans;
  font-size: 16px;
}
html section.page-top .breadcrumb span a {
  color: #ffffff;
  font-family: Open Sans;
  font-size: 16px;
}
html body {
  color: #777777;
  font-family: Open Sans;
  font-size: 14px;
}
html h1 {
  color: #333333;
  font-family: Open Sans;
  font-size: 36px;
}
html h2 {
  color: #333333;
  font-family: Open Sans;
  font-size: 30px;
}
html h3 {
  color: #333333;
  font-family: Open Sans;
  font-size: 25px;
}
html h4 {
  color: #333333;
  font-family: Open Sans;
  font-size: 20px;
}
html h5 {
  color: #333333;
  font-family: Open Sans;
  font-size: 14px;
}
html h6 {
  color: #333333;
  font-family: Open Sans;
  font-size: 14px;
}
html p,
html blockquote p,
html .testimonial.testimonial-style-5 blockquote p,
html .testimonial.testimonial-style-4 blockquote p,
html .testimonial.testimonial-style-3 blockquote p {
  color: #777777;
  font-family: Open Sans;
  font-size: 14px;
}
a {
  color: #233771;
  font-family: Open Sans;
  font-size: 14px;
}
a:visited {
  color: #233771;
  font-family: Open Sans;
  font-size: 14px;
}
a:hover,
a:focus {
  color: #233771;
  font-family: Open Sans;
  font-size: 14px;
}
a:active {
  color: #233771;
  font-family: Open Sans;
  font-size: 14px;
}
a.btn {
  font-family: Open Sans;
  font-size: 14px;
}
@media (min-width: 991px) {
  html header nav.mega-menu ul.nav-main li.mega-menu-item ul.sub-menu .mega-menu-sub-title {
    color: #333333;
    font-family: Open Sans;
    font-size: 12px;
  }
  html header nav.mega-menu ul.nav-main li.mega-menu-item ul.sub-menu a {
    color: #777777;
    font-family: Open Sans;
    font-size: 12px;
  }
}
header div.social-icons {
  display: block;
}
header #login .loginGroup {
  display: block;
}
header #login .registerGroup {
  display: block;
}
header nav.nav-main,
header .btn-responsive-nav,
header.pushdownHeader .btn-push-nav,
header .btn-responsive-nav .fas.fa-bars {
  display: inline-block;
}
footer .terms {
  display: inline-block;
}
footer .copyright,
footer .terms:before {
  display: inline-block;
}
footer .privacy {
  display: inline-block;
}
header .language {
  display: block;
}
.type-wrap-1 .typed-cursor {
  color: #233771;
}
.overlayHeader .nav-main.overlay ul > li.active > a,
.overlayHeader .nav-main.overlay ul > li:hover > a {
  background: transparent !important;
}
header .header-body {
  background: #ffffff;
}
body.sticky-menu-active header .header-body {
  border-bottom-color: #e6e6e6;
}
header.fixedheader .header-body {
  background: #ffffff !important;
}
.page-top {
  background-color: #0e0e0e;
  border-top-color: #282828;
}
.body > #footer {
  background: #0e0e0e;
  border-top-color: #0e0e0e;
}
.body > #footer .footer-copyright {
  background: #010101;
  border-top-color: #010101;
}
html .heading-primary,
html .lnk-primary,
html .text-color-primary {
  color: #233771 !important;
}
html .heading.heading-primary h1,
html .heading.heading-primary h2,
html .heading.heading-primary h3,
html .heading.heading-primary h4,
html .heading.heading-primary h5,
html .heading.heading-primary h6 {
  border-color: #233771;
}
html .heading-secondary,
html .lnk-secondary,
html .text-color-secondary {
  color: #E36159 !important;
}
html .heading.heading-secondary h1,
html .heading.heading-secondary h2,
html .heading.heading-secondary h3,
html .heading.heading-secondary h4,
html .heading.heading-secondary h5,
html .heading.heading-secondary h6 {
  border-color: #E36159;
}
html .heading-tertiary,
html .lnk-tertiary,
html .text-color-tertiary {
  color: #2BAAB1 !important;
}
html .heading.heading-tertiary h1,
html .heading.heading-tertiary h2,
html .heading.heading-tertiary h3,
html .heading.heading-tertiary h4,
html .heading.heading-tertiary h5,
html .heading.heading-tertiary h6 {
  border-color: #2BAAB1;
}
html .heading-quaternary,
html .lnk-quaternary,
html .text-color-quaternary {
  color: #383f48 !important;
}
html .heading.heading-quaternary h1,
html .heading.heading-quaternary h2,
html .heading.heading-quaternary h3,
html .heading.heading-quaternary h4,
html .heading.heading-quaternary h5,
html .heading.heading-quaternary h6 {
  border-color: #383f48;
}
html .heading-dark,
html .lnk-dark,
html .text-color-dark {
  color: #2e353e !important;
}
html .heading.heading-dark h1,
html .heading.heading-dark h2,
html .heading.heading-dark h3,
html .heading.heading-dark h4,
html .heading.heading-dark h5,
html .heading.heading-dark h6 {
  border-color: #2e353e;
}
html .heading-light,
html .lnk-light,
html .text-color-light {
  color: #FFF !important;
}
html .heading.heading-light h1,
html .heading.heading-light h2,
html .heading.heading-light h3,
html .heading.heading-light h4,
html .heading.heading-light h5,
html .heading.heading-light h6 {
  border-color: #FFF;
}
html .border-color-primary {
  border-color: #233771 !important;
}
html .border-color-secondary {
  border-color: #E36159 !important;
}
html .border-color-tertiary {
  border-color: #2BAAB1 !important;
}
html .border-color-quaternary {
  border-color: #383f48 !important;
}
html .border-color-dark {
  border-color: #2e353e !important;
}
html .border-color-light {
  border-color: #FFF !important;
}
html .svg-fill-color-primary {
  fill: #233771 !important;
}
html .svg-fill-color-secondary {
  fill: #E36159 !important;
}
html .svg-fill-color-tertiary {
  fill: #2BAAB1 !important;
}
html .svg-fill-color-quaternary {
  fill: #383f48 !important;
}
html .svg-fill-color-dark {
  fill: #2e353e !important;
}
html .svg-fill-color-light {
  fill: #FFF !important;
}
.simple-icon-list .simple-icon a:hover {
  background-color: #233771;
}
.alternative-font {
  color: #233771;
}
html .blockquote-primary {
  border-color: #233771 !important;
}
html .blockquote-secondary {
  border-color: #E36159 !important;
}
html .blockquote-tertiary {
  border-color: #2BAAB1 !important;
}
html .blockquote-quaternary {
  border-color: #383f48 !important;
}
html .blockquote-dark {
  border-color: #2e353e !important;
}
html .blockquote-light {
  border-color: #FFF !important;
}
p.drop-caps:first-child:first-letter {
  color: #233771;
}
p.drop-caps.drop-caps-style-2:first-child:first-letter {
  background-color: #233771;
}
ul.nav-pills > li.active > a {
  background-color: #233771;
  color: #FFF;
}
ul.nav-pills > li.active > a:hover,
ul.nav-pills > li.active > a:focus {
  background-color: #233771;
  color: #FFF;
}
html .nav-pills .nav-link.active {
  background-color: #233771;
  color: #FFF;
}
html .nav-pills .nav-link.active:hover,
html .nav-pills .nav-link.active:focus {
  background-color: #233771;
  color: #FFF;
}
.sort-source-wrapper .nav > li.active > a {
  color: #233771;
}
.sort-source-wrapper .nav > li.active > a:hover,
.sort-source-wrapper .nav > li.active > a:focus {
  color: #233771;
}
html .background-color-primary {
  background-color: #233771 !important;
}
html .background-color-secondary {
  background-color: #E36159 !important;
}
html .background-color-tertiary {
  background-color: #2BAAB1 !important;
}
html .background-color-quaternary {
  background-color: #383f48 !important;
}
html .background-color-dark {
  background-color: #2e353e !important;
}
html .background-color-light {
  background-color: #FFF !important;
}
html .label-primary {
  background-color: #233771;
}
html .badge-primary {
  background-color: #233771;
  color: #FFF;
}
html .label-secondary {
  background-color: #E36159;
}
html .badge-secondary {
  background-color: #E36159;
  color: #FFF;
}
html .label-tertiary {
  background-color: #2BAAB1;
}
html .badge-tertiary {
  background-color: #2BAAB1;
  color: #FFF;
}
html .label-quaternary {
  background-color: #383f48;
}
html .badge-quaternary {
  background-color: #383f48;
  color: #FFF;
}
html .label-dark {
  background-color: #2e353e;
}
html .badge-dark {
  background-color: #2e353e;
  color: #FFF;
}
html .label-light {
  background-color: #FFF;
}
html .badge-light {
  background-color: #FFF;
  color: #777;
}
html .btn-primary {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #233771;
  border-color: #233771 #233771 #17244a;
}
html .btn-primary:hover {
  border-color: #294084 #294084 #1d2e5e;
  background-color: #294084;
}
html .btn-primary:active,
html .btn-primary:focus {
  border-color: #1d2e5e #1d2e5e #1d2e5e;
  background-color: #1d2e5e;
}
html .btn-primary.dropdown-toggle {
  border-left-color: #1d2e5e;
}
html .btn-primary[disabled] {
  border-color: #3b5dbf;
  background-color: #3b5dbf;
}
html .btn-primary:hover {
  color: #FFF;
}
html .btn-primary:focus {
  box-shadow: 0 0 0 0.2rem #2f4a98 !important;
  color: #FFF;
}
html .btn-primary:active {
  border-color: #233771 #233771 #17244a !important;
  background-color: #17244a !important;
  color: #FFF;
}
html .btn-secondary {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #E36159;
  border-color: #E36159 #E36159 #dc372d;
}
html .btn-secondary:hover {
  border-color: #e7766f #e7766f #df4c43;
  background-color: #e7766f;
}
html .btn-secondary:active,
html .btn-secondary:focus {
  border-color: #df4c43 #df4c43 #df4c43;
  background-color: #df4c43;
}
html .btn-secondary.dropdown-toggle {
  border-left-color: #df4c43;
}
html .btn-secondary[disabled] {
  border-color: #f2b4b0;
  background-color: #f2b4b0;
}
html .btn-secondary:hover {
  color: #FFF;
}
html .btn-secondary:focus {
  box-shadow: 0 0 0 0.2rem #ea8b85 !important;
  color: #FFF;
}
html .btn-secondary:active {
  border-color: #E36159 #E36159 #dc372d !important;
  background-color: #dc372d !important;
  color: #FFF;
}
html .btn-tertiary {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #2BAAB1;
  border-color: #2BAAB1 #2BAAB1 #218388;
}
html .btn-tertiary:hover {
  border-color: #30bec6 #30bec6 #26969c;
  background-color: #30bec6;
}
html .btn-tertiary:active,
html .btn-tertiary:focus {
  border-color: #26969c #26969c #26969c;
  background-color: #26969c;
}
html .btn-tertiary.dropdown-toggle {
  border-left-color: #26969c;
}
html .btn-tertiary[disabled] {
  border-color: #68d4da;
  background-color: #68d4da;
}
html .btn-tertiary:hover {
  color: #FFF;
}
html .btn-tertiary:focus {
  box-shadow: 0 0 0 0.2rem #3fc9d0 !important;
  color: #FFF;
}
html .btn-tertiary:active {
  border-color: #2BAAB1 #2BAAB1 #218388 !important;
  background-color: #218388 !important;
  color: #FFF;
}
html .btn-quaternary {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #383f48;
  border-color: #383f48 #383f48 #22262b;
}
html .btn-quaternary:hover {
  border-color: #434c56 #434c56 #2d323a;
  background-color: #434c56;
}
html .btn-quaternary:active,
html .btn-quaternary:focus {
  border-color: #2d323a #2d323a #2d323a;
  background-color: #2d323a;
}
html .btn-quaternary.dropdown-toggle {
  border-left-color: #2d323a;
}
html .btn-quaternary[disabled] {
  border-color: #657181;
  background-color: #657181;
}
html .btn-quaternary:hover {
  color: #FFF;
}
html .btn-quaternary:focus {
  box-shadow: 0 0 0 0.2rem #4e5865 !important;
  color: #FFF;
}
html .btn-quaternary:active {
  border-color: #383f48 #383f48 #22262b !important;
  background-color: #22262b !important;
  color: #FFF;
}
html .btn-dark {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #2e353e;
  border-color: #2e353e #2e353e #181c21;
}
html .btn-dark:hover {
  border-color: #39424d #39424d #23282f;
  background-color: #39424d;
}
html .btn-dark:active,
html .btn-dark:focus {
  border-color: #23282f #23282f #23282f;
  background-color: #23282f;
}
html .btn-dark.dropdown-toggle {
  border-left-color: #23282f;
}
html .btn-dark[disabled] {
  border-color: #596779;
  background-color: #596779;
}
html .btn-dark:hover {
  color: #FFF;
}
html .btn-dark:focus {
  box-shadow: 0 0 0 0.2rem #444e5b !important;
  color: #FFF;
}
html .btn-dark:active {
  border-color: #2e353e #2e353e #181c21 !important;
  background-color: #181c21 !important;
  color: #FFF;
}
html .btn-light {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #FFF;
  border-color: #FFF #FFF #e6e6e6;
}
html .btn-light:hover {
  border-color: #ffffff #ffffff #f2f2f2;
  background-color: #ffffff;
}
html .btn-light:active,
html .btn-light:focus {
  border-color: #f2f2f2 #f2f2f2 #f2f2f2;
  background-color: #f2f2f2;
}
html .btn-light.dropdown-toggle {
  border-left-color: #f2f2f2;
}
html .btn-light[disabled] {
  border-color: #ffffff;
  background-color: #ffffff;
}
html .btn-light:hover {
  color: #777;
}
html .btn-light:focus {
  box-shadow: 0 0 0 0.2rem #ffffff !important;
  color: #777;
}
html .btn-light:active {
  border-color: #FFF #FFF #e6e6e6 !important;
  background-color: #e6e6e6 !important;
  color: #777;
}
html .btn-outline.btn-primary {
  background: transparent;
  border-color: #233771;
  color: #233771;
  text-shadow: none;
}
html .btn-outline.btn-primary:hover,
html .btn-outline.btn-primary:focus {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #233771;
  border-color: #233771 #233771 #17244a;
  border-color: #233771 !important;
  color: #FFF;
}
html .btn-outline.btn-primary:hover:hover,
html .btn-outline.btn-primary:focus:hover {
  border-color: #294084 #294084 #1d2e5e;
  background-color: #294084;
}
html .btn-outline.btn-primary:hover:active,
html .btn-outline.btn-primary:focus:active,
html .btn-outline.btn-primary:hover:focus,
html .btn-outline.btn-primary:focus:focus {
  border-color: #1d2e5e #1d2e5e #1d2e5e;
  background-color: #1d2e5e;
}
html .btn-outline.btn-primary:hover.dropdown-toggle,
html .btn-outline.btn-primary:focus.dropdown-toggle {
  border-left-color: #1d2e5e;
}
html .btn-outline.btn-primary:hover[disabled],
html .btn-outline.btn-primary:focus[disabled] {
  border-color: #3b5dbf;
  background-color: #3b5dbf;
}
html .btn-borders.btn-primary {
  background: transparent;
  border-color: #233771;
  color: #233771;
  text-shadow: none;
}
html .btn-borders.btn-primary:hover,
html .btn-borders.btn-primary:focus {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #233771;
  border-color: #233771 #233771 #17244a;
  border-color: #233771 !important;
  color: #FFF;
}
html .btn-borders.btn-primary:hover:hover,
html .btn-borders.btn-primary:focus:hover {
  border-color: #294084 #294084 #1d2e5e;
  background-color: #294084;
}
html .btn-borders.btn-primary:hover:active,
html .btn-borders.btn-primary:focus:active,
html .btn-borders.btn-primary:hover:focus,
html .btn-borders.btn-primary:focus:focus {
  border-color: #1d2e5e #1d2e5e #1d2e5e;
  background-color: #1d2e5e;
}
html .btn-borders.btn-primary:hover.dropdown-toggle,
html .btn-borders.btn-primary:focus.dropdown-toggle {
  border-left-color: #1d2e5e;
}
html .btn-borders.btn-primary:hover[disabled],
html .btn-borders.btn-primary:focus[disabled] {
  border-color: #3b5dbf;
  background-color: #3b5dbf;
}
html .btn-outline.btn-secondary {
  background: transparent;
  border-color: #E36159;
  color: #E36159;
  text-shadow: none;
}
html .btn-outline.btn-secondary:hover,
html .btn-outline.btn-secondary:focus {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #E36159;
  border-color: #E36159 #E36159 #dc372d;
  border-color: #E36159 !important;
  color: #FFF;
}
html .btn-outline.btn-secondary:hover:hover,
html .btn-outline.btn-secondary:focus:hover {
  border-color: #e7766f #e7766f #df4c43;
  background-color: #e7766f;
}
html .btn-outline.btn-secondary:hover:active,
html .btn-outline.btn-secondary:focus:active,
html .btn-outline.btn-secondary:hover:focus,
html .btn-outline.btn-secondary:focus:focus {
  border-color: #df4c43 #df4c43 #df4c43;
  background-color: #df4c43;
}
html .btn-outline.btn-secondary:hover.dropdown-toggle,
html .btn-outline.btn-secondary:focus.dropdown-toggle {
  border-left-color: #df4c43;
}
html .btn-outline.btn-secondary:hover[disabled],
html .btn-outline.btn-secondary:focus[disabled] {
  border-color: #f2b4b0;
  background-color: #f2b4b0;
}
html .btn-borders.btn-secondary {
  background: transparent;
  border-color: #E36159;
  color: #E36159;
  text-shadow: none;
}
html .btn-borders.btn-secondary:hover,
html .btn-borders.btn-secondary:focus {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #E36159;
  border-color: #E36159 #E36159 #dc372d;
  border-color: #E36159 !important;
  color: #FFF;
}
html .btn-borders.btn-secondary:hover:hover,
html .btn-borders.btn-secondary:focus:hover {
  border-color: #e7766f #e7766f #df4c43;
  background-color: #e7766f;
}
html .btn-borders.btn-secondary:hover:active,
html .btn-borders.btn-secondary:focus:active,
html .btn-borders.btn-secondary:hover:focus,
html .btn-borders.btn-secondary:focus:focus {
  border-color: #df4c43 #df4c43 #df4c43;
  background-color: #df4c43;
}
html .btn-borders.btn-secondary:hover.dropdown-toggle,
html .btn-borders.btn-secondary:focus.dropdown-toggle {
  border-left-color: #df4c43;
}
html .btn-borders.btn-secondary:hover[disabled],
html .btn-borders.btn-secondary:focus[disabled] {
  border-color: #f2b4b0;
  background-color: #f2b4b0;
}
html .btn-outline.btn-tertiary {
  background: transparent;
  border-color: #2BAAB1;
  color: #2BAAB1;
  text-shadow: none;
}
html .btn-outline.btn-tertiary:hover,
html .btn-outline.btn-tertiary:focus {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #2BAAB1;
  border-color: #2BAAB1 #2BAAB1 #218388;
  border-color: #2BAAB1 !important;
  color: #FFF;
}
html .btn-outline.btn-tertiary:hover:hover,
html .btn-outline.btn-tertiary:focus:hover {
  border-color: #30bec6 #30bec6 #26969c;
  background-color: #30bec6;
}
html .btn-outline.btn-tertiary:hover:active,
html .btn-outline.btn-tertiary:focus:active,
html .btn-outline.btn-tertiary:hover:focus,
html .btn-outline.btn-tertiary:focus:focus {
  border-color: #26969c #26969c #26969c;
  background-color: #26969c;
}
html .btn-outline.btn-tertiary:hover.dropdown-toggle,
html .btn-outline.btn-tertiary:focus.dropdown-toggle {
  border-left-color: #26969c;
}
html .btn-outline.btn-tertiary:hover[disabled],
html .btn-outline.btn-tertiary:focus[disabled] {
  border-color: #68d4da;
  background-color: #68d4da;
}
html .btn-borders.btn-tertiary {
  background: transparent;
  border-color: #2BAAB1;
  color: #2BAAB1;
  text-shadow: none;
}
html .btn-borders.btn-tertiary:hover,
html .btn-borders.btn-tertiary:focus {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #2BAAB1;
  border-color: #2BAAB1 #2BAAB1 #218388;
  border-color: #2BAAB1 !important;
  color: #FFF;
}
html .btn-borders.btn-tertiary:hover:hover,
html .btn-borders.btn-tertiary:focus:hover {
  border-color: #30bec6 #30bec6 #26969c;
  background-color: #30bec6;
}
html .btn-borders.btn-tertiary:hover:active,
html .btn-borders.btn-tertiary:focus:active,
html .btn-borders.btn-tertiary:hover:focus,
html .btn-borders.btn-tertiary:focus:focus {
  border-color: #26969c #26969c #26969c;
  background-color: #26969c;
}
html .btn-borders.btn-tertiary:hover.dropdown-toggle,
html .btn-borders.btn-tertiary:focus.dropdown-toggle {
  border-left-color: #26969c;
}
html .btn-borders.btn-tertiary:hover[disabled],
html .btn-borders.btn-tertiary:focus[disabled] {
  border-color: #68d4da;
  background-color: #68d4da;
}
html .btn-outline.btn-quaternary {
  background: transparent;
  border-color: #383f48;
  color: #383f48;
  text-shadow: none;
}
html .btn-outline.btn-quaternary:hover,
html .btn-outline.btn-quaternary:focus {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #383f48;
  border-color: #383f48 #383f48 #22262b;
  border-color: #383f48 !important;
  color: #FFF;
}
html .btn-outline.btn-quaternary:hover:hover,
html .btn-outline.btn-quaternary:focus:hover {
  border-color: #434c56 #434c56 #2d323a;
  background-color: #434c56;
}
html .btn-outline.btn-quaternary:hover:active,
html .btn-outline.btn-quaternary:focus:active,
html .btn-outline.btn-quaternary:hover:focus,
html .btn-outline.btn-quaternary:focus:focus {
  border-color: #2d323a #2d323a #2d323a;
  background-color: #2d323a;
}
html .btn-outline.btn-quaternary:hover.dropdown-toggle,
html .btn-outline.btn-quaternary:focus.dropdown-toggle {
  border-left-color: #2d323a;
}
html .btn-outline.btn-quaternary:hover[disabled],
html .btn-outline.btn-quaternary:focus[disabled] {
  border-color: #657181;
  background-color: #657181;
}
html .btn-borders.btn-quaternary {
  background: transparent;
  border-color: #383f48;
  color: #383f48;
  text-shadow: none;
}
html .btn-borders.btn-quaternary:hover,
html .btn-borders.btn-quaternary:focus {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #383f48;
  border-color: #383f48 #383f48 #22262b;
  border-color: #383f48 !important;
  color: #FFF;
}
html .btn-borders.btn-quaternary:hover:hover,
html .btn-borders.btn-quaternary:focus:hover {
  border-color: #434c56 #434c56 #2d323a;
  background-color: #434c56;
}
html .btn-borders.btn-quaternary:hover:active,
html .btn-borders.btn-quaternary:focus:active,
html .btn-borders.btn-quaternary:hover:focus,
html .btn-borders.btn-quaternary:focus:focus {
  border-color: #2d323a #2d323a #2d323a;
  background-color: #2d323a;
}
html .btn-borders.btn-quaternary:hover.dropdown-toggle,
html .btn-borders.btn-quaternary:focus.dropdown-toggle {
  border-left-color: #2d323a;
}
html .btn-borders.btn-quaternary:hover[disabled],
html .btn-borders.btn-quaternary:focus[disabled] {
  border-color: #657181;
  background-color: #657181;
}
html .btn-outline.btn-dark {
  background: transparent;
  border-color: #2e353e;
  color: #2e353e;
  text-shadow: none;
}
html .btn-outline.btn-dark:hover,
html .btn-outline.btn-dark:focus {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #2e353e;
  border-color: #2e353e #2e353e #181c21;
  border-color: #2e353e !important;
  color: #FFF;
}
html .btn-outline.btn-dark:hover:hover,
html .btn-outline.btn-dark:focus:hover {
  border-color: #39424d #39424d #23282f;
  background-color: #39424d;
}
html .btn-outline.btn-dark:hover:active,
html .btn-outline.btn-dark:focus:active,
html .btn-outline.btn-dark:hover:focus,
html .btn-outline.btn-dark:focus:focus {
  border-color: #23282f #23282f #23282f;
  background-color: #23282f;
}
html .btn-outline.btn-dark:hover.dropdown-toggle,
html .btn-outline.btn-dark:focus.dropdown-toggle {
  border-left-color: #23282f;
}
html .btn-outline.btn-dark:hover[disabled],
html .btn-outline.btn-dark:focus[disabled] {
  border-color: #596779;
  background-color: #596779;
}
html .btn-borders.btn-dark {
  background: transparent;
  border-color: #2e353e;
  color: #2e353e;
  text-shadow: none;
}
html .btn-borders.btn-dark:hover,
html .btn-borders.btn-dark:focus {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #2e353e;
  border-color: #2e353e #2e353e #181c21;
  border-color: #2e353e !important;
  color: #FFF;
}
html .btn-borders.btn-dark:hover:hover,
html .btn-borders.btn-dark:focus:hover {
  border-color: #39424d #39424d #23282f;
  background-color: #39424d;
}
html .btn-borders.btn-dark:hover:active,
html .btn-borders.btn-dark:focus:active,
html .btn-borders.btn-dark:hover:focus,
html .btn-borders.btn-dark:focus:focus {
  border-color: #23282f #23282f #23282f;
  background-color: #23282f;
}
html .btn-borders.btn-dark:hover.dropdown-toggle,
html .btn-borders.btn-dark:focus.dropdown-toggle {
  border-left-color: #23282f;
}
html .btn-borders.btn-dark:hover[disabled],
html .btn-borders.btn-dark:focus[disabled] {
  border-color: #596779;
  background-color: #596779;
}
html .btn-outline.btn-light {
  background: transparent;
  border-color: #FFF;
  color: #FFF;
  text-shadow: none;
}
html .btn-outline.btn-light:hover,
html .btn-outline.btn-light:focus {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #FFF;
  border-color: #FFF #FFF #e6e6e6;
  border-color: #FFF !important;
  color: #777;
}
html .btn-outline.btn-light:hover:hover,
html .btn-outline.btn-light:focus:hover {
  border-color: #ffffff #ffffff #f2f2f2;
  background-color: #ffffff;
}
html .btn-outline.btn-light:hover:active,
html .btn-outline.btn-light:focus:active,
html .btn-outline.btn-light:hover:focus,
html .btn-outline.btn-light:focus:focus {
  border-color: #f2f2f2 #f2f2f2 #f2f2f2;
  background-color: #f2f2f2;
}
html .btn-outline.btn-light:hover.dropdown-toggle,
html .btn-outline.btn-light:focus.dropdown-toggle {
  border-left-color: #f2f2f2;
}
html .btn-outline.btn-light:hover[disabled],
html .btn-outline.btn-light:focus[disabled] {
  border-color: #ffffff;
  background-color: #ffffff;
}
html .btn-borders.btn-light {
  background: transparent;
  border-color: #FFF;
  color: #FFF;
  text-shadow: none;
}
html .btn-borders.btn-light:hover,
html .btn-borders.btn-light:focus {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #FFF;
  border-color: #FFF #FFF #e6e6e6;
  border-color: #FFF !important;
  color: #777;
}
html .btn-borders.btn-light:hover:hover,
html .btn-borders.btn-light:focus:hover {
  border-color: #ffffff #ffffff #f2f2f2;
  background-color: #ffffff;
}
html .btn-borders.btn-light:hover:active,
html .btn-borders.btn-light:focus:active,
html .btn-borders.btn-light:hover:focus,
html .btn-borders.btn-light:focus:focus {
  border-color: #f2f2f2 #f2f2f2 #f2f2f2;
  background-color: #f2f2f2;
}
html .btn-borders.btn-light:hover.dropdown-toggle,
html .btn-borders.btn-light:focus.dropdown-toggle {
  border-left-color: #f2f2f2;
}
html .btn-borders.btn-light:hover[disabled],
html .btn-borders.btn-light:focus[disabled] {
  border-color: #ffffff;
  background-color: #ffffff;
}
.pagination > li > a,
.pagination > li > span,
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  color: #233771;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  background-color: #233771 !important;
  border-color: #233771;
}
body.dark .pagination > li > a,
body.dark .pagination > li > span,
body.dark .pagination > li > a:hover,
body.dark .pagination > li > span:hover,
body.dark .pagination > li > a:focus,
body.dark .pagination > li > span:focus {
  color: #233771;
}
body.dark .pagination > .active > a,
body.dark .pagination > .active > span,
body.dark .pagination > .active > a:hover,
body.dark .pagination > .active > span:hover,
body.dark .pagination > .active > a:focus,
body.dark .pagination > .active > span:focus {
  background-color: #233771;
  border-color: #233771;
}
.pagination > .active > a,
body.dark .pagination > .active > a {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #233771;
  border-color: #233771 #233771 #17244a;
}
.pagination > .active > a:hover,
body.dark .pagination > .active > a:hover {
  border-color: #294084 #294084 #1d2e5e;
  background-color: #294084;
}
.pagination > .active > a:active,
body.dark .pagination > .active > a:active,
.pagination > .active > a:focus,
body.dark .pagination > .active > a:focus {
  border-color: #1d2e5e #1d2e5e #1d2e5e;
  background-color: #1d2e5e;
}
.pagination > .active > a.dropdown-toggle,
body.dark .pagination > .active > a.dropdown-toggle {
  border-left-color: #1d2e5e;
}
.pagination > .active > a[disabled],
body.dark .pagination > .active > a[disabled] {
  border-color: #3b5dbf;
  background-color: #3b5dbf;
}
html .alert-primary {
  background-color: #233771;
  border-color: #1f3165;
  color: #FFF;
}
html .alert-primary .alert-link {
  color: #FFF;
}
html .alert-secondary {
  background-color: #E36159;
  border-color: #e1554c;
  color: #FFF;
}
html .alert-secondary .alert-link {
  color: #FFF;
}
html .alert-tertiary {
  background-color: #2BAAB1;
  border-color: #289ea5;
  color: #FFF;
}
html .alert-tertiary .alert-link {
  color: #FFF;
}
html .alert-quaternary {
  background-color: #383f48;
  border-color: #31373f;
  color: #FFF;
}
html .alert-quaternary .alert-link {
  color: #FFF;
}
html .alert-dark {
  background-color: #2e353e;
  border-color: #272d35;
  color: #FFF;
}
html .alert-dark .alert-link {
  color: #FFF;
}
html .alert-light {
  background-color: #FFF;
  border-color: #f7f7f7;
  color: #777;
}
html .alert-light .alert-link {
  color: #777;
}
html .progress-bar-primary {
  background-color: #233771;
}
html .progress-bar-secondary {
  background-color: #E36159;
}
html .progress-bar-tertiary {
  background-color: #2BAAB1;
}
html .progress-bar-quaternary {
  background-color: #383f48;
}
html .progress-bar-dark {
  background-color: #2e353e;
}
html .progress-bar-light {
  background-color: #FFF;
}
html section.section-primary {
  background-color: #233771 !important;
  border-color: #1d2e5e !important;
}
html section.section-primary h1,
html section.section-primary h2,
html section.section-primary h3,
html section.section-primary h4,
html section.section-primary h5,
html section.section-primary h6 {
  color: #FFF;
}
html section.section-primary p {
  color: #e6e6e6;
}
html section.section-secondary {
  background-color: #E36159 !important;
  border-color: #df4c43 !important;
}
html section.section-secondary h1,
html section.section-secondary h2,
html section.section-secondary h3,
html section.section-secondary h4,
html section.section-secondary h5,
html section.section-secondary h6 {
  color: #FFF;
}
html section.section-secondary p {
  color: #e6e6e6;
}
html section.section-tertiary {
  background-color: #2BAAB1 !important;
  border-color: #26969c !important;
}
html section.section-tertiary h1,
html section.section-tertiary h2,
html section.section-tertiary h3,
html section.section-tertiary h4,
html section.section-tertiary h5,
html section.section-tertiary h6 {
  color: #FFF;
}
html section.section-tertiary p {
  color: #e6e6e6;
}
html section.section-quaternary {
  background-color: #383f48 !important;
  border-color: #2d323a !important;
}
html section.section-quaternary h1,
html section.section-quaternary h2,
html section.section-quaternary h3,
html section.section-quaternary h4,
html section.section-quaternary h5,
html section.section-quaternary h6 {
  color: #FFF;
}
html section.section-quaternary p {
  color: #e6e6e6;
}
html section.section-dark {
  background-color: #2e353e !important;
  border-color: #23282f !important;
}
html section.section-dark h1,
html section.section-dark h2,
html section.section-dark h3,
html section.section-dark h4,
html section.section-dark h5,
html section.section-dark h6 {
  color: #FFF;
}
html section.section-dark p {
  color: #e6e6e6;
}
html section.section-light {
  background-color: #FFF !important;
  border-color: #f2f2f2 !important;
}
html section.section-light h1,
html section.section-light h2,
html section.section-light h3,
html section.section-light h4,
html section.section-light h5,
html section.section-light h6 {
  color: #777;
}
html section.section-light p {
  color: #5e5e5e;
}
html section.section-default-scale-1 {
  background-color: #dbdbdb !important;
  border-top-color: #d3d3d3 !important;
}
html section.section-default-scale-2 {
  background-color: #c1c1c1 !important;
  border-top-color: #b9b9b9 !important;
}
html section.section-default-scale-3 {
  background-color: #a8a8a8 !important;
  border-top-color: #a0a0a0 !important;
}
html section.section-default-scale-4 {
  background-color: #8e8e8e !important;
  border-top-color: #868686 !important;
}
html section.section-default-scale-5 {
  background-color: #757575 !important;
  border-top-color: #6d6d6d !important;
}
html section.section-default-scale-6 {
  background-color: #5b5b5b !important;
  border-top-color: #535353 !important;
}
html section.section-default-scale-7 {
  background-color: #424242 !important;
  border-top-color: #3a3a3a !important;
}
html section.section-default-scale-8 {
  background-color: #282828 !important;
  border-top-color: #202020 !important;
}
html section.section-default-scale-9 {
  background-color: #0f0f0f !important;
  border-top-color: #070707 !important;
}
html.dark section.section-default-scale-1 {
  background-color: #333a44 !important;
  border-top-color: #2c323b !important;
}
html.dark section.section-default-scale-2 {
  background-color: #495362 !important;
  border-top-color: #424b59 !important;
}
html.dark section.section-default-scale-3 {
  background-color: #5e6b7f !important;
  border-top-color: #586476 !important;
}
html.dark section.section-default-scale-4 {
  background-color: #77849a !important;
  border-top-color: #6e7d93 !important;
}
html.dark section.section-default-scale-5 {
  background-color: #949faf !important;
  border-top-color: #8b97a9 !important;
}
html.dark section.section-default-scale-6 {
  background-color: #b1b9c5 !important;
  border-top-color: #a8b1be !important;
}
html.dark section.section-default-scale-7 {
  background-color: #ced3db !important;
  border-top-color: #c5cbd4 !important;
}
html.dark section.section-default-scale-8 {
  background-color: #ebeef1 !important;
  border-top-color: #e3e6ea !important;
}
html.dark section.section-default-scale-9 {
  background-color: #ffffff !important;
  border-top-color: #f7f7f7 !important;
}
section.page-top h1 {
  border-bottom-color: #233771;
}
section.page-top.custom-product {
  background-color: #1d2e5e;
  border-top-color: #213369;
}
html .page-top-color.page-top-primary {
  background-color: #233771;
  border-bottom-color: #233771;
  color: #FFF;
}
html .page-top-color.page-top-primary h1 {
  color: #FFF;
}
html .page-top-color.page-top-primary h1 span {
  color: #FFF;
}
html .page-top-color.page-top-primary a {
  color: #FFF;
}
html .page-top-color.page-top-primary .breadcrumb > .active {
  color: #FFF;
}
html .page-top-color.page-top-secondary {
  background-color: #E36159;
  border-bottom-color: #E36159;
  color: #FFF;
}
html .page-top-color.page-top-secondary h1 {
  color: #FFF;
}
html .page-top-color.page-top-secondary h1 span {
  color: #FFF;
}
html .page-top-color.page-top-secondary a {
  color: #FFF;
}
html .page-top-color.page-top-secondary .breadcrumb > .active {
  color: #FFF;
}
html .page-top-color.page-top-tertiary {
  background-color: #2BAAB1;
  border-bottom-color: #2BAAB1;
  color: #FFF;
}
html .page-top-color.page-top-tertiary h1 {
  color: #FFF;
}
html .page-top-color.page-top-tertiary h1 span {
  color: #FFF;
}
html .page-top-color.page-top-tertiary a {
  color: #FFF;
}
html .page-top-color.page-top-tertiary .breadcrumb > .active {
  color: #FFF;
}
html .page-top-color.page-top-quaternary {
  background-color: #383f48;
  border-bottom-color: #383f48;
  color: #FFF;
}
html .page-top-color.page-top-quaternary h1 {
  color: #FFF;
}
html .page-top-color.page-top-quaternary h1 span {
  color: #FFF;
}
html .page-top-color.page-top-quaternary a {
  color: #FFF;
}
html .page-top-color.page-top-quaternary .breadcrumb > .active {
  color: #FFF;
}
html .page-top-color.page-top-dark {
  background-color: #2e353e;
  border-bottom-color: #2e353e;
  color: #FFF;
}
html .page-top-color.page-top-dark h1 {
  color: #FFF;
}
html .page-top-color.page-top-dark h1 span {
  color: #FFF;
}
html .page-top-color.page-top-dark a {
  color: #FFF;
}
html .page-top-color.page-top-dark .breadcrumb > .active {
  color: #FFF;
}
html .page-top-color.page-top-light {
  background-color: #FFF;
  border-bottom-color: #FFF;
  color: #777;
}
html .page-top-color.page-top-light h1 {
  color: #777;
}
html .page-top-color.page-top-light h1 span {
  color: #777;
}
html .page-top-color.page-top-light a {
  color: #777;
}
html .page-top-color.page-top-light .breadcrumb > .active {
  color: #777;
}
html .toggle-primary .toggle label,
html .toggle-primary .toggle .toggle-heading {
  color: #233771;
  border-left-color: #233771;
  border-right-color: #233771;
}
html .toggle-primary .toggle.active > label,
html .toggle-primary .toggle.active > .toggle-heading {
  background-color: #233771;
  border-color: #233771;
  color: #FFF;
}
html .toggle-primary.toggle-simple .toggle > label:after,
html .toggle-primary.toggle-simple .toggle > .toggle-heading:after {
  background-color: #233771;
}
html .toggle-secondary .toggle label,
html .toggle-secondary .toggle .toggle-heading {
  color: #E36159;
  border-left-color: #E36159;
  border-right-color: #E36159;
}
html .toggle-secondary .toggle.active > label,
html .toggle-secondary .toggle.active > .toggle-heading {
  background-color: #E36159;
  border-color: #E36159;
  color: #FFF;
}
html .toggle-secondary.toggle-simple .toggle > label:after,
html .toggle-secondary.toggle-simple .toggle > .toggle-heading:after {
  background-color: #E36159;
}
html .toggle-tertiary .toggle label,
html .toggle-tertiary .toggle .toggle-heading {
  color: #2BAAB1;
  border-left-color: #2BAAB1;
  border-right-color: #2BAAB1;
}
html .toggle-tertiary .toggle.active > label,
html .toggle-tertiary .toggle.active > .toggle-heading {
  background-color: #2BAAB1;
  border-color: #2BAAB1;
  color: #FFF;
}
html .toggle-tertiary.toggle-simple .toggle > label:after,
html .toggle-tertiary.toggle-simple .toggle > .toggle-heading:after {
  background-color: #2BAAB1;
}
html .toggle-quaternary .toggle label,
html .toggle-quaternary .toggle .toggle-heading {
  color: #383f48;
  border-left-color: #383f48;
  border-right-color: #383f48;
}
html .toggle-quaternary .toggle.active > label,
html .toggle-quaternary .toggle.active > .toggle-heading {
  background-color: #383f48;
  border-color: #383f48;
  color: #FFF;
}
html .toggle-quaternary.toggle-simple .toggle > label:after,
html .toggle-quaternary.toggle-simple .toggle > .toggle-heading:after {
  background-color: #383f48;
}
html .toggle-dark .toggle label,
html .toggle-dark .toggle .toggle-heading {
  color: #2e353e;
  border-left-color: #2e353e;
  border-right-color: #2e353e;
}
html .toggle-dark .toggle.active > label,
html .toggle-dark .toggle.active > .toggle-heading {
  background-color: #2e353e;
  border-color: #2e353e;
  color: #FFF;
}
html .toggle-dark.toggle-simple .toggle > label:after,
html .toggle-dark.toggle-simple .toggle > .toggle-heading:after {
  background-color: #2e353e;
}
html .toggle-light .toggle label,
html .toggle-light .toggle .toggle-heading {
  color: #FFF;
  border-left-color: #FFF;
  border-right-color: #FFF;
}
html .toggle-light .toggle.active > label,
html .toggle-light .toggle.active > .toggle-heading {
  background-color: #FFF;
  border-color: #FFF;
  color: #777;
}
html .toggle-light.toggle-simple .toggle > label:after,
html .toggle-light.toggle-simple .toggle > .toggle-heading:after {
  background-color: #FFF;
}
.thumb-info .thumb-info-type {
  background-color: #233771;
}
.thumb-info .thumb-info-action-icon {
  background-color: #233771;
}
.thumb-info-social-icons a {
  background-color: #233771;
}
.thumbnail .zoom {
  background-color: #233771;
}
.img-thumbnail .zoom {
  background-color: #233771;
}
html .thumb-info .thumb-info-action-icon-primary {
  background-color: #233771;
}
html .thumb-info .thumb-info-action-icon-primary i,
html .thumb-info .thumb-info-action-icon-primary em {
  color: #FFF;
}
html .thumb-info .thumb-info-action-icon-secondary {
  background-color: #E36159;
}
html .thumb-info .thumb-info-action-icon-secondary i,
html .thumb-info .thumb-info-action-icon-secondary em {
  color: #FFF;
}
html .thumb-info .thumb-info-action-icon-tertiary {
  background-color: #2BAAB1;
}
html .thumb-info .thumb-info-action-icon-tertiary i,
html .thumb-info .thumb-info-action-icon-tertiary em {
  color: #FFF;
}
html .thumb-info .thumb-info-action-icon-quaternary {
  background-color: #383f48;
}
html .thumb-info .thumb-info-action-icon-quaternary i,
html .thumb-info .thumb-info-action-icon-quaternary em {
  color: #FFF;
}
html .thumb-info .thumb-info-action-icon-dark {
  background-color: #2e353e;
}
html .thumb-info .thumb-info-action-icon-dark i,
html .thumb-info .thumb-info-action-icon-dark em {
  color: #FFF;
}
html .thumb-info .thumb-info-action-icon-light {
  background-color: #FFF;
}
html .thumb-info .thumb-info-action-icon-light i,
html .thumb-info .thumb-info-action-icon-light em {
  color: #777;
}
.inverted {
  background-color: #233771;
}
html .inverted-primary {
  background-color: #233771;
}
html .inverted-secondary {
  background-color: #E36159;
}
html .inverted-tertiary {
  background-color: #2BAAB1;
}
html .inverted-quaternary {
  background-color: #383f48;
}
html .inverted-dark {
  background-color: #2e353e;
}
html .inverted-light {
  background-color: #FFF;
}
.social-icons-list a {
  background-color: #233771;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #1c2c5a;
}
.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
  background-color: #1c2c5a;
}
.owl-carousel.show-nav-title .owl-controls .owl-nav [class*="owl-"] {
  color: #233771;
}
.owl-carousel.show-nav-title .owl-nav [class*="owl-"] {
  color: #233771;
}
.owl-theme .owl-controls .owl-nav [class*="owl-"] {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #233771;
  border-color: #233771 #233771 #17244a;
}
.owl-theme .owl-controls .owl-nav [class*="owl-"]:hover {
  border-color: #294084 #294084 #1d2e5e;
  background-color: #294084;
}
.owl-theme .owl-controls .owl-nav [class*="owl-"]:active,
.owl-theme .owl-controls .owl-nav [class*="owl-"]:focus {
  border-color: #1d2e5e #1d2e5e #1d2e5e;
  background-color: #1d2e5e;
}
.owl-theme .owl-controls .owl-nav [class*="owl-"].dropdown-toggle {
  border-left-color: #1d2e5e;
}
.owl-theme .owl-controls .owl-nav [class*="owl-"][disabled] {
  border-color: #3b5dbf;
  background-color: #3b5dbf;
}
.owl-nav [class*="owl-"] {
  color: #fff !important;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25) !important;
  background-color: #233771 !important;
  border-color: #233771 #233771 #17244a !important;
}
.owl-nav [class*="owl-"]:hover {
  border-color: #294084 #294084 #1d2e5e !important;
  background-color: #294084 !important;
}
.owl-nav [class*="owl-"]:active,
.owl-nav [class*="owl-"]:focus {
  border-color: #1d2e5e #1d2e5e #1d2e5e !important;
  background-color: #1d2e5e !important;
}
.owl-nav [class*="owl-"].dropdown-toggle {
  border-left-color: #1d2e5e !important;
}
.owl-nav [class*="owl-"][disabled] {
  border-color: #3b5dbf !important;
  background-color: #3b5dbf !important;
}
html body .tabs .nav-tabs a,
html.dark body .tabs .nav-tabs a,
html body .tabs .nav-tabs a:hover,
html.dark body .tabs .nav-tabs a:hover {
  color: #233771;
}
html body .tabs .nav-tabs a:hover,
html.dark body .tabs .nav-tabs a:hover,
html body .tabs .nav-tabs a:focus,
html.dark body .tabs .nav-tabs a:focus {
  border-top-color: #233771;
}
html body .tabs .nav-tabs li.active a,
html.dark body .tabs .nav-tabs li.active a {
  border-top-color: #233771;
  color: #233771;
}
html body .tabs .nav-tabs.nav-justified a:hover,
html.dark body .tabs .nav-tabs.nav-justified a:hover,
html body .tabs .nav-tabs.nav-justified a:focus,
html.dark body .tabs .nav-tabs.nav-justified a:focus {
  border-top-color: #233771;
}
html body .tabs.tabs-bottom .nav-tabs li a:hover,
html.dark body .tabs.tabs-bottom .nav-tabs li a:hover,
html body .tabs.tabs-bottom .nav-tabs li.active a,
html.dark body .tabs.tabs-bottom .nav-tabs li.active a,
html body .tabs.tabs-bottom .nav-tabs li.active a:hover,
html.dark body .tabs.tabs-bottom .nav-tabs li.active a:hover,
html body .tabs.tabs-bottom .nav-tabs li.active a:focus,
html.dark body .tabs.tabs-bottom .nav-tabs li.active a:focus {
  border-bottom-color: #233771;
}
html body .tabs.tabs-vertical.tabs-left .nav-tabs li a:hover,
html.dark body .tabs.tabs-vertical.tabs-left .nav-tabs li a:hover,
html body .tabs.tabs-vertical.tabs-left .nav-tabs li.active a,
html.dark body .tabs.tabs-vertical.tabs-left .nav-tabs li.active a,
html body .tabs.tabs-vertical.tabs-left .nav-tabs li.active a:hover,
html.dark body .tabs.tabs-vertical.tabs-left .nav-tabs li.active a:hover,
html body .tabs.tabs-vertical.tabs-left .nav-tabs li.active a:focus,
html.dark body .tabs.tabs-vertical.tabs-left .nav-tabs li.active a:focus {
  border-left-color: #233771;
}
html body .tabs.tabs-vertical.tabs-right .nav-tabs li a:hover,
html.dark body .tabs.tabs-vertical.tabs-right .nav-tabs li a:hover,
html body .tabs.tabs-vertical.tabs-right .nav-tabs li.active a,
html.dark body .tabs.tabs-vertical.tabs-right .nav-tabs li.active a,
html body .tabs.tabs-vertical.tabs-right .nav-tabs li.active a:hover,
html.dark body .tabs.tabs-vertical.tabs-right .nav-tabs li.active a:hover,
html body .tabs.tabs-vertical.tabs-right .nav-tabs li.active a:focus,
html.dark body .tabs.tabs-vertical.tabs-right .nav-tabs li.active a:focus {
  border-right-color: #233771;
}
html body .tabs-primary .nav-tabs li a,
html.dark body .tabs-primary .nav-tabs li a,
html body .tabs-primary .nav-tabs.nav-justified li a,
html.dark body .tabs-primary .nav-tabs.nav-justified li a,
html body .tabs-primary .nav-tabs li a:hover,
html.dark body .tabs-primary .nav-tabs li a:hover,
html body .tabs-primary .nav-tabs.nav-justified li a:hover,
html.dark body .tabs-primary .nav-tabs.nav-justified li a:hover {
  color: #233771;
}
html body .tabs-primary .nav-tabs li a:hover,
html.dark body .tabs-primary .nav-tabs li a:hover,
html body .tabs-primary .nav-tabs.nav-justified li a:hover,
html.dark body .tabs-primary .nav-tabs.nav-justified li a:hover {
  border-top-color: #233771;
}
html body .tabs-primary .nav-tabs li.active a,
html.dark body .tabs-primary .nav-tabs li.active a,
html body .tabs-primary .nav-tabs.nav-justified li.active a,
html.dark body .tabs-primary .nav-tabs.nav-justified li.active a,
html body .tabs-primary .nav-tabs li.active a:hover,
html.dark body .tabs-primary .nav-tabs li.active a:hover,
html body .tabs-primary .nav-tabs.nav-justified li.active a:hover,
html.dark body .tabs-primary .nav-tabs.nav-justified li.active a:hover,
html body .tabs-primary .nav-tabs li.active a:focus,
html.dark body .tabs-primary .nav-tabs li.active a:focus,
html body .tabs-primary .nav-tabs.nav-justified li.active a:focus,
html.dark body .tabs-primary .nav-tabs.nav-justified li.active a:focus {
  border-top-color: #233771;
  color: #233771;
}
html body .tabs-primary.tabs-bottom .nav-tabs li a:hover,
html.dark body .tabs-primary.tabs-bottom .nav-tabs li a:hover,
html body .tabs-primary.tabs-bottom .nav-tabs.nav-justified li a:hover,
html.dark body .tabs-primary.tabs-bottom .nav-tabs.nav-justified li a:hover {
  border-bottom-color: #233771;
}
html body .tabs-primary.tabs-bottom .nav-tabs li.active a,
html.dark body .tabs-primary.tabs-bottom .nav-tabs li.active a,
html body .tabs-primary.tabs-bottom .nav-tabs.nav-justified li.active a,
html.dark body .tabs-primary.tabs-bottom .nav-tabs.nav-justified li.active a,
html body .tabs-primary.tabs-bottom .nav-tabs li.active a:hover,
html.dark body .tabs-primary.tabs-bottom .nav-tabs li.active a:hover,
html body .tabs-primary.tabs-bottom .nav-tabs.nav-justified li.active a:hover,
html.dark body .tabs-primary.tabs-bottom .nav-tabs.nav-justified li.active a:hover,
html body .tabs-primary.tabs-bottom .nav-tabs li.active a:focus,
html.dark body .tabs-primary.tabs-bottom .nav-tabs li.active a:focus,
html body .tabs-primary.tabs-bottom .nav-tabs.nav-justified li.active a:focus,
html.dark body .tabs-primary.tabs-bottom .nav-tabs.nav-justified li.active a:focus {
  border-bottom-color: #233771;
}
html body .tabs-primary.tabs-vertical.tabs-left li a:hover,
html.dark body .tabs-primary.tabs-vertical.tabs-left li a:hover {
  border-left-color: #233771;
}
html body .tabs-primary.tabs-vertical.tabs-left li.active a,
html.dark body .tabs-primary.tabs-vertical.tabs-left li.active a,
html body .tabs-primary.tabs-vertical.tabs-left li.active a:hover,
html.dark body .tabs-primary.tabs-vertical.tabs-left li.active a:hover,
html body .tabs-primary.tabs-vertical.tabs-left li.active a:focus,
html.dark body .tabs-primary.tabs-vertical.tabs-left li.active a:focus {
  border-left-color: #233771;
}
html body .tabs-primary.tabs-vertical.tabs-right li a:hover,
html.dark body .tabs-primary.tabs-vertical.tabs-right li a:hover {
  border-right-color: #233771;
}
html body .tabs-primary.tabs-vertical.tabs-right li.active a,
html.dark body .tabs-primary.tabs-vertical.tabs-right li.active a,
html body .tabs-primary.tabs-vertical.tabs-right li.active a:hover,
html.dark body .tabs-primary.tabs-vertical.tabs-right li.active a:hover,
html body .tabs-primary.tabs-vertical.tabs-right li.active a:focus,
html.dark body .tabs-primary.tabs-vertical.tabs-right li.active a:focus {
  border-right-color: #233771;
}
html body .tabs-secondary .nav-tabs li a,
html.dark body .tabs-secondary .nav-tabs li a,
html body .tabs-secondary .nav-tabs.nav-justified li a,
html.dark body .tabs-secondary .nav-tabs.nav-justified li a,
html body .tabs-secondary .nav-tabs li a:hover,
html.dark body .tabs-secondary .nav-tabs li a:hover,
html body .tabs-secondary .nav-tabs.nav-justified li a:hover,
html.dark body .tabs-secondary .nav-tabs.nav-justified li a:hover {
  color: #E36159;
}
html body .tabs-secondary .nav-tabs li a:hover,
html.dark body .tabs-secondary .nav-tabs li a:hover,
html body .tabs-secondary .nav-tabs.nav-justified li a:hover,
html.dark body .tabs-secondary .nav-tabs.nav-justified li a:hover {
  border-top-color: #E36159;
}
html body .tabs-secondary .nav-tabs li.active a,
html.dark body .tabs-secondary .nav-tabs li.active a,
html body .tabs-secondary .nav-tabs.nav-justified li.active a,
html.dark body .tabs-secondary .nav-tabs.nav-justified li.active a,
html body .tabs-secondary .nav-tabs li.active a:hover,
html.dark body .tabs-secondary .nav-tabs li.active a:hover,
html body .tabs-secondary .nav-tabs.nav-justified li.active a:hover,
html.dark body .tabs-secondary .nav-tabs.nav-justified li.active a:hover,
html body .tabs-secondary .nav-tabs li.active a:focus,
html.dark body .tabs-secondary .nav-tabs li.active a:focus,
html body .tabs-secondary .nav-tabs.nav-justified li.active a:focus,
html.dark body .tabs-secondary .nav-tabs.nav-justified li.active a:focus {
  border-top-color: #E36159;
  color: #E36159;
}
html body .tabs-secondary.tabs-bottom .nav-tabs li a:hover,
html.dark body .tabs-secondary.tabs-bottom .nav-tabs li a:hover,
html body .tabs-secondary.tabs-bottom .nav-tabs.nav-justified li a:hover,
html.dark body .tabs-secondary.tabs-bottom .nav-tabs.nav-justified li a:hover {
  border-bottom-color: #E36159;
}
html body .tabs-secondary.tabs-bottom .nav-tabs li.active a,
html.dark body .tabs-secondary.tabs-bottom .nav-tabs li.active a,
html body .tabs-secondary.tabs-bottom .nav-tabs.nav-justified li.active a,
html.dark body .tabs-secondary.tabs-bottom .nav-tabs.nav-justified li.active a,
html body .tabs-secondary.tabs-bottom .nav-tabs li.active a:hover,
html.dark body .tabs-secondary.tabs-bottom .nav-tabs li.active a:hover,
html body .tabs-secondary.tabs-bottom .nav-tabs.nav-justified li.active a:hover,
html.dark body .tabs-secondary.tabs-bottom .nav-tabs.nav-justified li.active a:hover,
html body .tabs-secondary.tabs-bottom .nav-tabs li.active a:focus,
html.dark body .tabs-secondary.tabs-bottom .nav-tabs li.active a:focus,
html body .tabs-secondary.tabs-bottom .nav-tabs.nav-justified li.active a:focus,
html.dark body .tabs-secondary.tabs-bottom .nav-tabs.nav-justified li.active a:focus {
  border-bottom-color: #E36159;
}
html body .tabs-secondary.tabs-vertical.tabs-left li a:hover,
html.dark body .tabs-secondary.tabs-vertical.tabs-left li a:hover {
  border-left-color: #E36159;
}
html body .tabs-secondary.tabs-vertical.tabs-left li.active a,
html.dark body .tabs-secondary.tabs-vertical.tabs-left li.active a,
html body .tabs-secondary.tabs-vertical.tabs-left li.active a:hover,
html.dark body .tabs-secondary.tabs-vertical.tabs-left li.active a:hover,
html body .tabs-secondary.tabs-vertical.tabs-left li.active a:focus,
html.dark body .tabs-secondary.tabs-vertical.tabs-left li.active a:focus {
  border-left-color: #E36159;
}
html body .tabs-secondary.tabs-vertical.tabs-right li a:hover,
html.dark body .tabs-secondary.tabs-vertical.tabs-right li a:hover {
  border-right-color: #E36159;
}
html body .tabs-secondary.tabs-vertical.tabs-right li.active a,
html.dark body .tabs-secondary.tabs-vertical.tabs-right li.active a,
html body .tabs-secondary.tabs-vertical.tabs-right li.active a:hover,
html.dark body .tabs-secondary.tabs-vertical.tabs-right li.active a:hover,
html body .tabs-secondary.tabs-vertical.tabs-right li.active a:focus,
html.dark body .tabs-secondary.tabs-vertical.tabs-right li.active a:focus {
  border-right-color: #E36159;
}
html body .tabs-tertiary .nav-tabs li a,
html.dark body .tabs-tertiary .nav-tabs li a,
html body .tabs-tertiary .nav-tabs.nav-justified li a,
html.dark body .tabs-tertiary .nav-tabs.nav-justified li a,
html body .tabs-tertiary .nav-tabs li a:hover,
html.dark body .tabs-tertiary .nav-tabs li a:hover,
html body .tabs-tertiary .nav-tabs.nav-justified li a:hover,
html.dark body .tabs-tertiary .nav-tabs.nav-justified li a:hover {
  color: #2BAAB1;
}
html body .tabs-tertiary .nav-tabs li a:hover,
html.dark body .tabs-tertiary .nav-tabs li a:hover,
html body .tabs-tertiary .nav-tabs.nav-justified li a:hover,
html.dark body .tabs-tertiary .nav-tabs.nav-justified li a:hover {
  border-top-color: #2BAAB1;
}
html body .tabs-tertiary .nav-tabs li.active a,
html.dark body .tabs-tertiary .nav-tabs li.active a,
html body .tabs-tertiary .nav-tabs.nav-justified li.active a,
html.dark body .tabs-tertiary .nav-tabs.nav-justified li.active a,
html body .tabs-tertiary .nav-tabs li.active a:hover,
html.dark body .tabs-tertiary .nav-tabs li.active a:hover,
html body .tabs-tertiary .nav-tabs.nav-justified li.active a:hover,
html.dark body .tabs-tertiary .nav-tabs.nav-justified li.active a:hover,
html body .tabs-tertiary .nav-tabs li.active a:focus,
html.dark body .tabs-tertiary .nav-tabs li.active a:focus,
html body .tabs-tertiary .nav-tabs.nav-justified li.active a:focus,
html.dark body .tabs-tertiary .nav-tabs.nav-justified li.active a:focus {
  border-top-color: #2BAAB1;
  color: #2BAAB1;
}
html body .tabs-tertiary.tabs-bottom .nav-tabs li a:hover,
html.dark body .tabs-tertiary.tabs-bottom .nav-tabs li a:hover,
html body .tabs-tertiary.tabs-bottom .nav-tabs.nav-justified li a:hover,
html.dark body .tabs-tertiary.tabs-bottom .nav-tabs.nav-justified li a:hover {
  border-bottom-color: #2BAAB1;
}
html body .tabs-tertiary.tabs-bottom .nav-tabs li.active a,
html.dark body .tabs-tertiary.tabs-bottom .nav-tabs li.active a,
html body .tabs-tertiary.tabs-bottom .nav-tabs.nav-justified li.active a,
html.dark body .tabs-tertiary.tabs-bottom .nav-tabs.nav-justified li.active a,
html body .tabs-tertiary.tabs-bottom .nav-tabs li.active a:hover,
html.dark body .tabs-tertiary.tabs-bottom .nav-tabs li.active a:hover,
html body .tabs-tertiary.tabs-bottom .nav-tabs.nav-justified li.active a:hover,
html.dark body .tabs-tertiary.tabs-bottom .nav-tabs.nav-justified li.active a:hover,
html body .tabs-tertiary.tabs-bottom .nav-tabs li.active a:focus,
html.dark body .tabs-tertiary.tabs-bottom .nav-tabs li.active a:focus,
html body .tabs-tertiary.tabs-bottom .nav-tabs.nav-justified li.active a:focus,
html.dark body .tabs-tertiary.tabs-bottom .nav-tabs.nav-justified li.active a:focus {
  border-bottom-color: #2BAAB1;
}
html body .tabs-tertiary.tabs-vertical.tabs-left li a:hover,
html.dark body .tabs-tertiary.tabs-vertical.tabs-left li a:hover {
  border-left-color: #2BAAB1;
}
html body .tabs-tertiary.tabs-vertical.tabs-left li.active a,
html.dark body .tabs-tertiary.tabs-vertical.tabs-left li.active a,
html body .tabs-tertiary.tabs-vertical.tabs-left li.active a:hover,
html.dark body .tabs-tertiary.tabs-vertical.tabs-left li.active a:hover,
html body .tabs-tertiary.tabs-vertical.tabs-left li.active a:focus,
html.dark body .tabs-tertiary.tabs-vertical.tabs-left li.active a:focus {
  border-left-color: #2BAAB1;
}
html body .tabs-tertiary.tabs-vertical.tabs-right li a:hover,
html.dark body .tabs-tertiary.tabs-vertical.tabs-right li a:hover {
  border-right-color: #2BAAB1;
}
html body .tabs-tertiary.tabs-vertical.tabs-right li.active a,
html.dark body .tabs-tertiary.tabs-vertical.tabs-right li.active a,
html body .tabs-tertiary.tabs-vertical.tabs-right li.active a:hover,
html.dark body .tabs-tertiary.tabs-vertical.tabs-right li.active a:hover,
html body .tabs-tertiary.tabs-vertical.tabs-right li.active a:focus,
html.dark body .tabs-tertiary.tabs-vertical.tabs-right li.active a:focus {
  border-right-color: #2BAAB1;
}
html body .tabs-quaternary .nav-tabs li a,
html.dark body .tabs-quaternary .nav-tabs li a,
html body .tabs-quaternary .nav-tabs.nav-justified li a,
html.dark body .tabs-quaternary .nav-tabs.nav-justified li a,
html body .tabs-quaternary .nav-tabs li a:hover,
html.dark body .tabs-quaternary .nav-tabs li a:hover,
html body .tabs-quaternary .nav-tabs.nav-justified li a:hover,
html.dark body .tabs-quaternary .nav-tabs.nav-justified li a:hover {
  color: #383f48;
}
html body .tabs-quaternary .nav-tabs li a:hover,
html.dark body .tabs-quaternary .nav-tabs li a:hover,
html body .tabs-quaternary .nav-tabs.nav-justified li a:hover,
html.dark body .tabs-quaternary .nav-tabs.nav-justified li a:hover {
  border-top-color: #383f48;
}
html body .tabs-quaternary .nav-tabs li.active a,
html.dark body .tabs-quaternary .nav-tabs li.active a,
html body .tabs-quaternary .nav-tabs.nav-justified li.active a,
html.dark body .tabs-quaternary .nav-tabs.nav-justified li.active a,
html body .tabs-quaternary .nav-tabs li.active a:hover,
html.dark body .tabs-quaternary .nav-tabs li.active a:hover,
html body .tabs-quaternary .nav-tabs.nav-justified li.active a:hover,
html.dark body .tabs-quaternary .nav-tabs.nav-justified li.active a:hover,
html body .tabs-quaternary .nav-tabs li.active a:focus,
html.dark body .tabs-quaternary .nav-tabs li.active a:focus,
html body .tabs-quaternary .nav-tabs.nav-justified li.active a:focus,
html.dark body .tabs-quaternary .nav-tabs.nav-justified li.active a:focus {
  border-top-color: #383f48;
  color: #383f48;
}
html body .tabs-quaternary.tabs-bottom .nav-tabs li a:hover,
html.dark body .tabs-quaternary.tabs-bottom .nav-tabs li a:hover,
html body .tabs-quaternary.tabs-bottom .nav-tabs.nav-justified li a:hover,
html.dark body .tabs-quaternary.tabs-bottom .nav-tabs.nav-justified li a:hover {
  border-bottom-color: #383f48;
}
html body .tabs-quaternary.tabs-bottom .nav-tabs li.active a,
html.dark body .tabs-quaternary.tabs-bottom .nav-tabs li.active a,
html body .tabs-quaternary.tabs-bottom .nav-tabs.nav-justified li.active a,
html.dark body .tabs-quaternary.tabs-bottom .nav-tabs.nav-justified li.active a,
html body .tabs-quaternary.tabs-bottom .nav-tabs li.active a:hover,
html.dark body .tabs-quaternary.tabs-bottom .nav-tabs li.active a:hover,
html body .tabs-quaternary.tabs-bottom .nav-tabs.nav-justified li.active a:hover,
html.dark body .tabs-quaternary.tabs-bottom .nav-tabs.nav-justified li.active a:hover,
html body .tabs-quaternary.tabs-bottom .nav-tabs li.active a:focus,
html.dark body .tabs-quaternary.tabs-bottom .nav-tabs li.active a:focus,
html body .tabs-quaternary.tabs-bottom .nav-tabs.nav-justified li.active a:focus,
html.dark body .tabs-quaternary.tabs-bottom .nav-tabs.nav-justified li.active a:focus {
  border-bottom-color: #383f48;
}
html body .tabs-quaternary.tabs-vertical.tabs-left li a:hover,
html.dark body .tabs-quaternary.tabs-vertical.tabs-left li a:hover {
  border-left-color: #383f48;
}
html body .tabs-quaternary.tabs-vertical.tabs-left li.active a,
html.dark body .tabs-quaternary.tabs-vertical.tabs-left li.active a,
html body .tabs-quaternary.tabs-vertical.tabs-left li.active a:hover,
html.dark body .tabs-quaternary.tabs-vertical.tabs-left li.active a:hover,
html body .tabs-quaternary.tabs-vertical.tabs-left li.active a:focus,
html.dark body .tabs-quaternary.tabs-vertical.tabs-left li.active a:focus {
  border-left-color: #383f48;
}
html body .tabs-quaternary.tabs-vertical.tabs-right li a:hover,
html.dark body .tabs-quaternary.tabs-vertical.tabs-right li a:hover {
  border-right-color: #383f48;
}
html body .tabs-quaternary.tabs-vertical.tabs-right li.active a,
html.dark body .tabs-quaternary.tabs-vertical.tabs-right li.active a,
html body .tabs-quaternary.tabs-vertical.tabs-right li.active a:hover,
html.dark body .tabs-quaternary.tabs-vertical.tabs-right li.active a:hover,
html body .tabs-quaternary.tabs-vertical.tabs-right li.active a:focus,
html.dark body .tabs-quaternary.tabs-vertical.tabs-right li.active a:focus {
  border-right-color: #383f48;
}
html body .tabs-dark .nav-tabs li a,
html.dark body .tabs-dark .nav-tabs li a,
html body .tabs-dark .nav-tabs.nav-justified li a,
html.dark body .tabs-dark .nav-tabs.nav-justified li a,
html body .tabs-dark .nav-tabs li a:hover,
html.dark body .tabs-dark .nav-tabs li a:hover,
html body .tabs-dark .nav-tabs.nav-justified li a:hover,
html.dark body .tabs-dark .nav-tabs.nav-justified li a:hover {
  color: #2e353e;
}
html body .tabs-dark .nav-tabs li a:hover,
html.dark body .tabs-dark .nav-tabs li a:hover,
html body .tabs-dark .nav-tabs.nav-justified li a:hover,
html.dark body .tabs-dark .nav-tabs.nav-justified li a:hover {
  border-top-color: #2e353e;
}
html body .tabs-dark .nav-tabs li.active a,
html.dark body .tabs-dark .nav-tabs li.active a,
html body .tabs-dark .nav-tabs.nav-justified li.active a,
html.dark body .tabs-dark .nav-tabs.nav-justified li.active a,
html body .tabs-dark .nav-tabs li.active a:hover,
html.dark body .tabs-dark .nav-tabs li.active a:hover,
html body .tabs-dark .nav-tabs.nav-justified li.active a:hover,
html.dark body .tabs-dark .nav-tabs.nav-justified li.active a:hover,
html body .tabs-dark .nav-tabs li.active a:focus,
html.dark body .tabs-dark .nav-tabs li.active a:focus,
html body .tabs-dark .nav-tabs.nav-justified li.active a:focus,
html.dark body .tabs-dark .nav-tabs.nav-justified li.active a:focus {
  border-top-color: #2e353e;
  color: #2e353e;
}
html body .tabs-dark.tabs-bottom .nav-tabs li a:hover,
html.dark body .tabs-dark.tabs-bottom .nav-tabs li a:hover,
html body .tabs-dark.tabs-bottom .nav-tabs.nav-justified li a:hover,
html.dark body .tabs-dark.tabs-bottom .nav-tabs.nav-justified li a:hover {
  border-bottom-color: #2e353e;
}
html body .tabs-dark.tabs-bottom .nav-tabs li.active a,
html.dark body .tabs-dark.tabs-bottom .nav-tabs li.active a,
html body .tabs-dark.tabs-bottom .nav-tabs.nav-justified li.active a,
html.dark body .tabs-dark.tabs-bottom .nav-tabs.nav-justified li.active a,
html body .tabs-dark.tabs-bottom .nav-tabs li.active a:hover,
html.dark body .tabs-dark.tabs-bottom .nav-tabs li.active a:hover,
html body .tabs-dark.tabs-bottom .nav-tabs.nav-justified li.active a:hover,
html.dark body .tabs-dark.tabs-bottom .nav-tabs.nav-justified li.active a:hover,
html body .tabs-dark.tabs-bottom .nav-tabs li.active a:focus,
html.dark body .tabs-dark.tabs-bottom .nav-tabs li.active a:focus,
html body .tabs-dark.tabs-bottom .nav-tabs.nav-justified li.active a:focus,
html.dark body .tabs-dark.tabs-bottom .nav-tabs.nav-justified li.active a:focus {
  border-bottom-color: #2e353e;
}
html body .tabs-dark.tabs-vertical.tabs-left li a:hover,
html.dark body .tabs-dark.tabs-vertical.tabs-left li a:hover {
  border-left-color: #2e353e;
}
html body .tabs-dark.tabs-vertical.tabs-left li.active a,
html.dark body .tabs-dark.tabs-vertical.tabs-left li.active a,
html body .tabs-dark.tabs-vertical.tabs-left li.active a:hover,
html.dark body .tabs-dark.tabs-vertical.tabs-left li.active a:hover,
html body .tabs-dark.tabs-vertical.tabs-left li.active a:focus,
html.dark body .tabs-dark.tabs-vertical.tabs-left li.active a:focus {
  border-left-color: #2e353e;
}
html body .tabs-dark.tabs-vertical.tabs-right li a:hover,
html.dark body .tabs-dark.tabs-vertical.tabs-right li a:hover {
  border-right-color: #2e353e;
}
html body .tabs-dark.tabs-vertical.tabs-right li.active a,
html.dark body .tabs-dark.tabs-vertical.tabs-right li.active a,
html body .tabs-dark.tabs-vertical.tabs-right li.active a:hover,
html.dark body .tabs-dark.tabs-vertical.tabs-right li.active a:hover,
html body .tabs-dark.tabs-vertical.tabs-right li.active a:focus,
html.dark body .tabs-dark.tabs-vertical.tabs-right li.active a:focus {
  border-right-color: #2e353e;
}
html body .tabs-light .nav-tabs li a,
html.dark body .tabs-light .nav-tabs li a,
html body .tabs-light .nav-tabs.nav-justified li a,
html.dark body .tabs-light .nav-tabs.nav-justified li a,
html body .tabs-light .nav-tabs li a:hover,
html.dark body .tabs-light .nav-tabs li a:hover,
html body .tabs-light .nav-tabs.nav-justified li a:hover,
html.dark body .tabs-light .nav-tabs.nav-justified li a:hover {
  color: #FFF;
}
html body .tabs-light .nav-tabs li a:hover,
html.dark body .tabs-light .nav-tabs li a:hover,
html body .tabs-light .nav-tabs.nav-justified li a:hover,
html.dark body .tabs-light .nav-tabs.nav-justified li a:hover {
  border-top-color: #FFF;
}
html body .tabs-light .nav-tabs li.active a,
html.dark body .tabs-light .nav-tabs li.active a,
html body .tabs-light .nav-tabs.nav-justified li.active a,
html.dark body .tabs-light .nav-tabs.nav-justified li.active a,
html body .tabs-light .nav-tabs li.active a:hover,
html.dark body .tabs-light .nav-tabs li.active a:hover,
html body .tabs-light .nav-tabs.nav-justified li.active a:hover,
html.dark body .tabs-light .nav-tabs.nav-justified li.active a:hover,
html body .tabs-light .nav-tabs li.active a:focus,
html.dark body .tabs-light .nav-tabs li.active a:focus,
html body .tabs-light .nav-tabs.nav-justified li.active a:focus,
html.dark body .tabs-light .nav-tabs.nav-justified li.active a:focus {
  border-top-color: #FFF;
  color: #FFF;
}
html body .tabs-light.tabs-bottom .nav-tabs li a:hover,
html.dark body .tabs-light.tabs-bottom .nav-tabs li a:hover,
html body .tabs-light.tabs-bottom .nav-tabs.nav-justified li a:hover,
html.dark body .tabs-light.tabs-bottom .nav-tabs.nav-justified li a:hover {
  border-bottom-color: #FFF;
}
html body .tabs-light.tabs-bottom .nav-tabs li.active a,
html.dark body .tabs-light.tabs-bottom .nav-tabs li.active a,
html body .tabs-light.tabs-bottom .nav-tabs.nav-justified li.active a,
html.dark body .tabs-light.tabs-bottom .nav-tabs.nav-justified li.active a,
html body .tabs-light.tabs-bottom .nav-tabs li.active a:hover,
html.dark body .tabs-light.tabs-bottom .nav-tabs li.active a:hover,
html body .tabs-light.tabs-bottom .nav-tabs.nav-justified li.active a:hover,
html.dark body .tabs-light.tabs-bottom .nav-tabs.nav-justified li.active a:hover,
html body .tabs-light.tabs-bottom .nav-tabs li.active a:focus,
html.dark body .tabs-light.tabs-bottom .nav-tabs li.active a:focus,
html body .tabs-light.tabs-bottom .nav-tabs.nav-justified li.active a:focus,
html.dark body .tabs-light.tabs-bottom .nav-tabs.nav-justified li.active a:focus {
  border-bottom-color: #FFF;
}
html body .tabs-light.tabs-vertical.tabs-left li a:hover,
html.dark body .tabs-light.tabs-vertical.tabs-left li a:hover {
  border-left-color: #FFF;
}
html body .tabs-light.tabs-vertical.tabs-left li.active a,
html.dark body .tabs-light.tabs-vertical.tabs-left li.active a,
html body .tabs-light.tabs-vertical.tabs-left li.active a:hover,
html.dark body .tabs-light.tabs-vertical.tabs-left li.active a:hover,
html body .tabs-light.tabs-vertical.tabs-left li.active a:focus,
html.dark body .tabs-light.tabs-vertical.tabs-left li.active a:focus {
  border-left-color: #FFF;
}
html body .tabs-light.tabs-vertical.tabs-right li a:hover,
html.dark body .tabs-light.tabs-vertical.tabs-right li a:hover {
  border-right-color: #FFF;
}
html body .tabs-light.tabs-vertical.tabs-right li.active a,
html.dark body .tabs-light.tabs-vertical.tabs-right li.active a,
html body .tabs-light.tabs-vertical.tabs-right li.active a:hover,
html.dark body .tabs-light.tabs-vertical.tabs-right li.active a:hover,
html body .tabs-light.tabs-vertical.tabs-right li.active a:focus,
html.dark body .tabs-light.tabs-vertical.tabs-right li.active a:focus {
  border-right-color: #FFF;
}
html[dir="rtl"] .tabs.tabs-vertical.tabs-left .nav-tabs li a:hover,
html[dir="rtl"] .tabs.tabs-vertical.tabs-left .nav-tabs li.active a,
html[dir="rtl"] .tabs.tabs-vertical.tabs-left .nav-tabs li.active a:hover,
html[dir="rtl"] .tabs.tabs-vertical.tabs-left .nav-tabs li.active a:focus {
  border-right-color: #233771;
  border-left-color: transparent;
}
html[dir="rtl"] .tabs.tabs-vertical.tabs-right .nav-tabs li a:hover,
html[dir="rtl"] .tabs.tabs-vertical.tabs-right .nav-tabs li.active a,
html[dir="rtl"] .tabs.tabs-vertical.tabs-right .nav-tabs li.active a:hover,
html[dir="rtl"] .tabs.tabs-vertical.tabs-right .nav-tabs li.active a:focus {
  border-right-color: transparent;
  border-left-color: #233771;
}
.list.list-icons li .fa,
.list.list-icons li .fas,
.list.list-icons li .far,
.list.list-icons li .fal,
.list.list-icons li .fab {
  color: #233771;
  border-color: #233771;
}
.list.list-icons.list-icons-style-3 li .fa,
.list.list-icons.list-icons-style-3 li .fas,
.list.list-icons.list-icons-style-3 li .far,
.list.list-icons.list-icons-style-3 li .fal,
.list.list-icons.list-icons-style-3 li .fab {
  background-color: #233771;
}
.list.list-ordened li:before {
  color: #233771;
  border-color: #233771;
}
.list.list-ordened.list-ordened-style-3 li:before {
  background-color: #233771;
}
html .list-primary.list-icons li .fa,
html .list-primary.list-icons li .fas,
html .list-primary.list-icons li .far,
html .list-primary.list-icons li .fal,
html .list-primary.list-icons li .fab {
  color: #233771;
  border-color: #233771;
}
html .list-primary.list-icons.list-icons-style-3 li .fa,
html .list-primary.list-icons.list-icons-style-3 li .fas,
html .list-primary.list-icons.list-icons-style-3 li .far,
html .list-primary.list-icons.list-icons-style-3 li .fal,
html .list-primary.list-icons.list-icons-style-3 li .fab {
  background-color: #233771;
  color: #FFF;
}
html .list-primary.list-ordened li:before {
  color: #233771;
}
html .list-primary.list-ordened.list-ordened-style-3 li:before {
  background-color: #233771;
  color: #FFF;
}
html .list-secondary.list-icons li .fa,
html .list-secondary.list-icons li .fas,
html .list-secondary.list-icons li .far,
html .list-secondary.list-icons li .fal,
html .list-secondary.list-icons li .fab {
  color: #E36159;
  border-color: #E36159;
}
html .list-secondary.list-icons.list-icons-style-3 li .fa,
html .list-secondary.list-icons.list-icons-style-3 li .fas,
html .list-secondary.list-icons.list-icons-style-3 li .far,
html .list-secondary.list-icons.list-icons-style-3 li .fal,
html .list-secondary.list-icons.list-icons-style-3 li .fab {
  background-color: #E36159;
  color: #FFF;
}
html .list-secondary.list-ordened li:before {
  color: #E36159;
}
html .list-secondary.list-ordened.list-ordened-style-3 li:before {
  background-color: #233771;
  color: #FFF;
}
html .list-tertiary.list-icons li .fa,
html .list-tertiary.list-icons li .fas,
html .list-tertiary.list-icons li .far,
html .list-tertiary.list-icons li .fal,
html .list-tertiary.list-icons li .fab {
  color: #2BAAB1;
  border-color: #2BAAB1;
}
html .list-tertiary.list-icons.list-icons-style-3 li .fa,
html .list-tertiary.list-icons.list-icons-style-3 li .fas,
html .list-tertiary.list-icons.list-icons-style-3 li .far,
html .list-tertiary.list-icons.list-icons-style-3 li .fal,
html .list-tertiary.list-icons.list-icons-style-3 li .fab {
  background-color: #2BAAB1;
  color: #FFF;
}
html .list-tertiary.list-ordened li:before {
  color: #2BAAB1;
}
html .list-tertiary.list-ordened.list-ordened-style-3 li:before {
  background-color: #233771;
  color: #FFF;
}
html .list-quaternary.list-icons li .fa,
html .list-quaternary.list-icons li .fas,
html .list-quaternary.list-icons li .far,
html .list-quaternary.list-icons li .fal,
html .list-quaternary.list-icons li .fab {
  color: #383f48;
  border-color: #383f48;
}
html .list-quaternary.list-icons.list-icons-style-3 li .fa,
html .list-quaternary.list-icons.list-icons-style-3 li .fas,
html .list-quaternary.list-icons.list-icons-style-3 li .far,
html .list-quaternary.list-icons.list-icons-style-3 li .fal,
html .list-quaternary.list-icons.list-icons-style-3 li .fab {
  background-color: #383f48;
  color: #FFF;
}
html .list-quaternary.list-ordened li:before {
  color: #383f48;
}
html .list-quaternary.list-ordened.list-ordened-style-3 li:before {
  background-color: #233771;
  color: #FFF;
}
html .list-dark.list-icons li .fa,
html .list-dark.list-icons li .fas,
html .list-dark.list-icons li .far,
html .list-dark.list-icons li .fal,
html .list-dark.list-icons li .fab {
  color: #2e353e;
  border-color: #2e353e;
}
html .list-dark.list-icons.list-icons-style-3 li .fa,
html .list-dark.list-icons.list-icons-style-3 li .fas,
html .list-dark.list-icons.list-icons-style-3 li .far,
html .list-dark.list-icons.list-icons-style-3 li .fal,
html .list-dark.list-icons.list-icons-style-3 li .fab {
  background-color: #2e353e;
  color: #FFF;
}
html .list-dark.list-ordened li:before {
  color: #2e353e;
}
html .list-dark.list-ordened.list-ordened-style-3 li:before {
  background-color: #233771;
  color: #FFF;
}
html .list-light.list-icons li .fa,
html .list-light.list-icons li .fas,
html .list-light.list-icons li .far,
html .list-light.list-icons li .fal,
html .list-light.list-icons li .fab {
  color: #FFF;
  border-color: #FFF;
}
html .list-light.list-icons.list-icons-style-3 li .fa,
html .list-light.list-icons.list-icons-style-3 li .fas,
html .list-light.list-icons.list-icons-style-3 li .far,
html .list-light.list-icons.list-icons-style-3 li .fal,
html .list-light.list-icons.list-icons-style-3 li .fab {
  background-color: #FFF;
  color: #777;
}
html .list-light.list-ordened li:before {
  color: #FFF;
}
html .list-light.list-ordened.list-ordened-style-3 li:before {
  background-color: #233771;
  color: #777;
}
.parallax blockquote i.fa-quote-left,
.parallax blockquote em.fa-quote-left {
  color: #233771;
}
section.video blockquote i.fa-quote-left,
section.video blockquote em.fa-quote-left {
  color: #233771;
}
.panel-group .panel-heading a {
  color: #233771;
}
html .panel-group.panel-group-primary .panel-heading {
  background-color: #233771 !important;
}
html .panel-group.panel-group-primary .panel-heading a {
  color: #FFF;
}
html .panel-group.panel-group-secondary .panel-heading {
  background-color: #E36159 !important;
}
html .panel-group.panel-group-secondary .panel-heading a {
  color: #FFF;
}
html .panel-group.panel-group-tertiary .panel-heading {
  background-color: #2BAAB1 !important;
}
html .panel-group.panel-group-tertiary .panel-heading a {
  color: #FFF;
}
html .panel-group.panel-group-quaternary .panel-heading {
  background-color: #383f48 !important;
}
html .panel-group.panel-group-quaternary .panel-heading a {
  color: #FFF;
}
html .panel-group.panel-group-dark .panel-heading {
  background-color: #2e353e !important;
}
html .panel-group.panel-group-dark .panel-heading a {
  color: #FFF;
}
html .panel-group.panel-group-light .panel-heading {
  background-color: #FFF !important;
}
html .panel-group.panel-group-light .panel-heading a {
  color: #777;
}
html .divider.divider-primary .fa,
html .divider.divider-primary .fas,
html .divider.divider-primary .far,
html .divider.divider-primary .fal,
html .divider.divider-primary .fab {
  color: #233771;
}
html .divider.divider-primary.divider-small hr {
  background: #233771;
}
html .divider.divider-secondary .fa,
html .divider.divider-secondary .fas,
html .divider.divider-secondary .far,
html .divider.divider-secondary .fal,
html .divider.divider-secondary .fab {
  color: #E36159;
}
html .divider.divider-secondary.divider-small hr {
  background: #E36159;
}
html .divider.divider-tertiary .fa,
html .divider.divider-tertiary .fas,
html .divider.divider-tertiary .far,
html .divider.divider-tertiary .fal,
html .divider.divider-tertiary .fab {
  color: #2BAAB1;
}
html .divider.divider-tertiary.divider-small hr {
  background: #2BAAB1;
}
html .divider.divider-quaternary .fa,
html .divider.divider-quaternary .fas,
html .divider.divider-quaternary .far,
html .divider.divider-quaternary .fal,
html .divider.divider-quaternary .fab {
  color: #383f48;
}
html .divider.divider-quaternary.divider-small hr {
  background: #383f48;
}
html .divider.divider-dark .fa,
html .divider.divider-dark .fas,
html .divider.divider-dark .far,
html .divider.divider-dark .fal,
html .divider.divider-dark .fab {
  color: #2e353e;
}
html .divider.divider-dark.divider-small hr {
  background: #2e353e;
}
html .divider.divider-light .fa,
html .divider.divider-light .fas,
html .divider.divider-light .far,
html .divider.divider-light .fal,
html .divider.divider-light .fab {
  color: #FFF;
}
html .divider.divider-light.divider-small hr {
  background: #FFF;
}
html .divider.divider-style-2.divider-primary .fa,
html .divider.divider-style-2.divider-primary .fas,
html .divider.divider-style-2.divider-primary .far,
html .divider.divider-style-2.divider-primary .fal,
html .divider.divider-style-2.divider-primary .fab {
  background: #233771;
  color: #FFF;
}
html .divider.divider-style-2.divider-secondary .fa,
html .divider.divider-style-2.divider-secondary .fas,
html .divider.divider-style-2.divider-secondary .far,
html .divider.divider-style-2.divider-secondary .fal,
html .divider.divider-style-2.divider-secondary .fab {
  background: #E36159;
  color: #FFF;
}
html .divider.divider-style-2.divider-tertiary .fa,
html .divider.divider-style-2.divider-tertiary .fas,
html .divider.divider-style-2.divider-tertiary .far,
html .divider.divider-style-2.divider-tertiary .fal,
html .divider.divider-style-2.divider-tertiary .fab {
  background: #2BAAB1;
  color: #FFF;
}
html .divider.divider-style-2.divider-quaternary .fa,
html .divider.divider-style-2.divider-quaternary .fas,
html .divider.divider-style-2.divider-quaternary .far,
html .divider.divider-style-2.divider-quaternary .fal,
html .divider.divider-style-2.divider-quaternary .fab {
  background: #383f48;
  color: #FFF;
}
html .divider.divider-style-2.divider-dark .fa,
html .divider.divider-style-2.divider-dark .fas,
html .divider.divider-style-2.divider-dark .far,
html .divider.divider-style-2.divider-dark .fal,
html .divider.divider-style-2.divider-dark .fab {
  background: #2e353e;
  color: #FFF;
}
html .divider.divider-style-2.divider-light .fa,
html .divider.divider-style-2.divider-light .fas,
html .divider.divider-style-2.divider-light .far,
html .divider.divider-style-2.divider-light .fal,
html .divider.divider-style-2.divider-light .fab {
  background: #FFF;
  color: #777;
}
html .divider.divider-style-3.divider-primary .fa,
html .divider.divider-style-3.divider-primary .fas,
html .divider.divider-style-3.divider-primary .far,
html .divider.divider-style-3.divider-primary .fal,
html .divider.divider-style-3.divider-primary .fab {
  border-color: #233771;
}
html .divider.divider-style-3.divider-secondary .fa,
html .divider.divider-style-3.divider-secondary .fas,
html .divider.divider-style-3.divider-secondary .far,
html .divider.divider-style-3.divider-secondary .fal,
html .divider.divider-style-3.divider-secondary .fab {
  border-color: #E36159;
}
html .divider.divider-style-3.divider-tertiary .fa,
html .divider.divider-style-3.divider-tertiary .fas,
html .divider.divider-style-3.divider-tertiary .far,
html .divider.divider-style-3.divider-tertiary .fal,
html .divider.divider-style-3.divider-tertiary .fab {
  border-color: #2BAAB1;
}
html .divider.divider-style-3.divider-quaternary .fa,
html .divider.divider-style-3.divider-quaternary .fas,
html .divider.divider-style-3.divider-quaternary .far,
html .divider.divider-style-3.divider-quaternary .fal,
html .divider.divider-style-3.divider-quaternary .fab {
  border-color: #383f48;
}
html .divider.divider-style-3.divider-dark .fa,
html .divider.divider-style-3.divider-dark .fas,
html .divider.divider-style-3.divider-dark .far,
html .divider.divider-style-3.divider-dark .fal,
html .divider.divider-style-3.divider-dark .fab {
  border-color: #2e353e;
}
html .divider.divider-style-3.divider-light .fa,
html .divider.divider-style-3.divider-light .fas,
html .divider.divider-style-3.divider-light .far,
html .divider.divider-style-3.divider-light .fal,
html .divider.divider-style-3.divider-light .fab {
  border-color: #FFF;
}
@media (min-width: 992px) {
  header nav ul.nav-main > li.active > a,
  header nav ul.nav-main > li:hover > a,
  header nav ul.nav-main > li > a:focus,
  header nav ul.nav-main > li.focused > a {
    background-color: #233771 !important;
  }
  header nav ul.nav-main .dropdown > ul.dropdown-menu {
    border-top-color: #233771 !important;
  }
  header nav ul.nav-main .dropdown-submenu > a:after,
  header nav ul.nav-main .dropdown-submenu:hover > a:after {
    border-left-color: #233771;
  }
}
@media (min-width: 992px) {
  header.newHeader nav ul.nav-main > li.active > a,
  header.full-header nav ul.nav-main > li.active > a,
  header.newHeader nav ul.nav-main > li:hover > a,
  header.full-header nav ul.nav-main > li:hover > a,
  header.newHeader nav ul.nav-main > li > a:focus,
  header.full-header nav ul.nav-main > li > a:focus,
  header.newHeader nav ul.nav-main > li.focused > a,
  header.full-header nav ul.nav-main > li.focused > a {
    background-color: transparent !important;
  }
  header.newHeader.fixedheader nav > ul.nav-main > li.active > a,
  header.full-header.fixedheader nav > ul.nav-main > li.active > a,
  header.newHeader.fixedheader nav > ul.nav-main > li:hover > a,
  header.full-header.fixedheader nav > ul.nav-main > li:hover > a,
  header.newHeader.fixedheader nav > ul.nav-main > li > a:focus,
  header.full-header.fixedheader nav > ul.nav-main > li > a:focus,
  header.newHeader.fixedheader nav > ul.nav-main > li.focused > a,
  header.full-header.fixedheader nav > ul.nav-main > li.focused > a {
    background-color: #233771 !important;
  }
}
header nav ul.nav-main .tip {
  background: #233771;
  color: #FFF;
}
header nav ul.nav-main .tip:before {
  border-right-color: #233771;
}
.v-menu ul.nav-main {
  background-color: #171717;
  border-color: #171717;
}
.v-menu ul.nav-main li {
  border-bottom-color: #313131;
}
.v-menu ul.nav-main ul > li > a {
  color: #ffffff;
  font-family: Open Sans;
  font-size: 12px;
}
.v-menu ul.nav-main a {
  color: #ffffff;
  font-family: Open Sans;
  font-size: 12px;
}
.v-menu ul.nav-main li.active > a {
  color: #233771;
  font-family: Open Sans;
  font-size: 12px;
}
@media (max-width: 991px) {
  html header .nav-main-collapse {
    background: #171717;
  }
  html header .nav-main-collapse .nav-main ul > li > a {
    color: #ffffff;
    font-family: Open Sans;
    font-size: 12px;
  }
  html header .nav-main-collapse .nav-main ul > li.active > a,
  html header .nav-main-collapse .nav-main ul > li:hover > a,
  html header .nav-main-collapse .nav-main ul > li > a:focus,
  html header .nav-main-collapse .nav-main ul > li.focused > a {
    color: #233771;
    font-family: Open Sans;
    font-size: 12px;
  }
  html header .nav-main-collapse .nav-main ul ul > li > a {
    color: #ffffff;
    font-family: Open Sans;
    font-size: 12px;
  }
  html header.pushdownHeader .pushdown .scrollbar,
  html header.pushdownHeader .navbar-collapse:before,
  html header .header-nav-main-effect:before {
    background: #171717;
  }
  html html header.pushdownHeader .pushdown .scrollbar {
    border-color: #171717;
  }
}
html header nav ul.nav-main .tip-primary {
  background: #233771 !important;
  color: #FFF !important;
}
html header nav ul.nav-main .tip-primary:before {
  border-right-color: #233771 !important;
}
html header nav ul.nav-main .tip-secondary {
  background: #E36159 !important;
  color: #FFF !important;
}
html header nav ul.nav-main .tip-secondary:before {
  border-right-color: #E36159 !important;
}
html header nav ul.nav-main .tip-tertiary {
  background: #2BAAB1 !important;
  color: #FFF !important;
}
html header nav ul.nav-main .tip-tertiary:before {
  border-right-color: #2BAAB1 !important;
}
html header nav ul.nav-main .tip-quaternary {
  background: #383f48 !important;
  color: #FFF !important;
}
html header nav ul.nav-main .tip-quaternary:before {
  border-right-color: #383f48 !important;
}
html header nav ul.nav-main .tip-dark {
  background: #2e353e !important;
  color: #FFF !important;
}
html header nav ul.nav-main .tip-dark:before {
  border-right-color: #2e353e !important;
}
html header nav ul.nav-main .tip-light {
  background: #FFF !important;
  color: #777 !important;
}
html header nav ul.nav-main .tip-light:before {
  border-right-color: #FFF !important;
}
html[dir="rtl"] header nav ul.nav-main .tip.skin:before {
  border-left-color: #233771;
}
.darken-border-top {
  border-top: 5px solid #1d2e5e !important;
}
@media (min-width: 992px) {
  header.single-menu nav ul.nav-main li.active > a {
    border-top: 5px solid #233771;
  }
  header.colored .header-top {
    background-color: #233771;
  }
  header.colored .header-top ul.nav-top li a:hover {
    background-color: #294084 !important;
  }
  header.flat-menu nav ul.nav-main > li.active > a {
    background-color: transparent !important;
  }
  header.flat-menu nav ul.nav-main > li:hover > a,
  header.flat-menu nav ul.nav-main > li > a:hover {
    background-color: #233771 !important;
  }
  header nav.mega-menu ul.nav-main li.mega-menu-item ul.dropdown-menu {
    border-top-color: #233771;
  }
}
@media (min-width: 992px) {
  html header nav ul.nav-main li.dropdown-primary.open > a,
  html .newHeader.fixedheader nav ul.nav-main li.dropdown-primary.open > a,
  html .full-header.fixedheader nav ul.nav-main li.dropdown-primary.open > a,
  html header nav ul.nav-main li.dropdown-primary.active > a,
  html .newHeader.fixedheader nav ul.nav-main li.dropdown-primary.active > a,
  html .full-header.fixedheader nav ul.nav-main li.dropdown-primary.active > a,
  html header nav ul.nav-main li.dropdown-primary:hover > a,
  html .newHeader.fixedheader nav ul.nav-main li.dropdown-primary:hover > a,
  html .full-header.fixedheader nav ul.nav-main li.dropdown-primary:hover > a {
    background: #233771 !important;
  }
  html header nav ul.nav-main li.dropdown-primary > a:focus,
  html .newHeader.fixedheader nav ul.nav-main li.dropdown-primary > a:focus,
  html .full-header.fixedheader nav ul.nav-main li.dropdown-primary > a:focus {
    background: #233771 !important;
  }
  html header nav ul.nav-main .dropdown-primary > ul.dropdown-menu,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-primary > ul.dropdown-menu,
  html .full-header.fixedheader nav ul.nav-main .dropdown-primary > ul.dropdown-menu,
  html header nav ul.nav-main .dropdown-primary.mega-menu-item > ul.dropdown-menu,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-primary.mega-menu-item > ul.dropdown-menu,
  html .full-header.fixedheader nav ul.nav-main .dropdown-primary.mega-menu-item > ul.dropdown-menu,
  html header nav ul.nav-main .dropdown-primary > ul.dropdown-menu ul.dropdown-menu,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-primary > ul.dropdown-menu ul.dropdown-menu,
  html .full-header.fixedheader nav ul.nav-main .dropdown-primary > ul.dropdown-menu ul.dropdown-menu,
  html header nav ul.nav-main .dropdown-primary.mega-menu-item > ul.dropdown-menu ul.dropdown-menu,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-primary.mega-menu-item > ul.dropdown-menu ul.dropdown-menu,
  html .full-header.fixedheader nav ul.nav-main .dropdown-primary.mega-menu-item > ul.dropdown-menu ul.dropdown-menu {
    border-top-color: #233771 !important;
    background: #233771 !important;
  }
  html header nav ul.nav-main .dropdown-primary > ul.dropdown-menu li:hover > a,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-primary > ul.dropdown-menu li:hover > a,
  html .full-header.fixedheader nav ul.nav-main .dropdown-primary > ul.dropdown-menu li:hover > a,
  html header nav ul.nav-main .dropdown-primary.mega-menu-item > ul.dropdown-menu li:hover > a,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-primary.mega-menu-item > ul.dropdown-menu li:hover > a,
  html .full-header.fixedheader nav ul.nav-main .dropdown-primary.mega-menu-item > ul.dropdown-menu li:hover > a {
    background: #294084;
  }
  html header nav ul.nav-main .dropdown-primary > ul.dropdown-menu li a:focus,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-primary > ul.dropdown-menu li a:focus,
  html .full-header.fixedheader nav ul.nav-main .dropdown-primary > ul.dropdown-menu li a:focus,
  html header nav ul.nav-main .dropdown-primary.mega-menu-item > ul.dropdown-menu li a:focus,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-primary.mega-menu-item > ul.dropdown-menu li a:focus,
  html .full-header.fixedheader nav ul.nav-main .dropdown-primary.mega-menu-item > ul.dropdown-menu li a:focus {
    background: #294084;
  }
  html header nav ul.nav-main .dropdown-primary:hover ul.sub-menu li:hover a:hover,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-primary:hover ul.sub-menu li:hover a:hover,
  html .full-header.fixedheader nav ul.nav-main .dropdown-primary:hover ul.sub-menu li:hover a:hover,
  html header nav ul.nav-main .dropdown-primary.mega-menu-item:hover ul.sub-menu li:hover a:hover,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-primary.mega-menu-item:hover ul.sub-menu li:hover a:hover,
  html .full-header.fixedheader nav ul.nav-main .dropdown-primary.mega-menu-item:hover ul.sub-menu li:hover a:hover {
    background: #294084 !important;
  }
  html header nav ul.nav-main li.mega-menu-item.open > a,
  html .newHeader.fixedheader nav ul.nav-main li.mega-menu-item.open > a,
  html .full-header.fixedheader nav ul.nav-main li.mega-menu-item.open > a,
  html header nav ul.nav-main li.mega-menu-item.active > a,
  html .newHeader.fixedheader nav ul.nav-main li.mega-menu-item.active > a,
  html .full-header.fixedheader nav ul.nav-main li.mega-menu-item.active > a,
  html header nav ul.nav-main li.mega-menu-item:hover > a,
  html .newHeader.fixedheader nav ul.nav-main li.mega-menu-item:hover > a,
  html .full-header.fixedheader nav ul.nav-main li.mega-menu-item:hover > a {
    background: #233771 !important;
  }
  html header.newHeader nav ul.nav-main li.dropdown-primary.open > a,
  html header.header-bottom nav ul.nav-main li.dropdown-primary.open > a,
  html header.full-header nav ul.nav-main li.dropdown-primary.open > a,
  html header.newHeader nav ul.nav-main li.dropdown-primary.active > a,
  html header.header-bottom nav ul.nav-main li.dropdown-primary.active > a,
  html header.full-header nav ul.nav-main li.dropdown-primary.active > a,
  html header.newHeader nav ul.nav-main li.dropdown-primary.focused > a,
  html header.header-bottom nav ul.nav-main li.dropdown-primary.focused > a,
  html header.full-header nav ul.nav-main li.dropdown-primary.focused > a,
  html header.newHeader nav ul.nav-main li.dropdown-primary:hover > a,
  html header.header-bottom nav ul.nav-main li.dropdown-primary:hover > a,
  html header.full-header nav ul.nav-main li.dropdown-primary:hover > a {
    background: transparent !important;
  }
  html header.newHeader nav ul.nav-main li.dropdown-primary > a:focus,
  html header.header-bottom nav ul.nav-main li.dropdown-primary > a:focus,
  html header.full-header nav ul.nav-main li.dropdown-primary > a:focus {
    background: transparent !important;
  }
  html header.newHeader nav ul.nav-main li.mega-menu-item.open > a,
  html header.header-bottom nav ul.nav-main li.mega-menu-item.open > a,
  html header.full-header nav ul.nav-main li.mega-menu-item.open > a,
  html header.newHeader nav ul.nav-main li.mega-menu-item.active > a,
  html header.header-bottom nav ul.nav-main li.mega-menu-item.active > a,
  html header.full-header nav ul.nav-main li.mega-menu-item.active > a,
  html header.newHeader nav ul.nav-main li.mega-menu-item:hover > a,
  html header.header-bottom nav ul.nav-main li.mega-menu-item:hover > a,
  html header.full-header nav ul.nav-main li.mega-menu-item:hover > a {
    background: transparent !important;
  }
  html header nav ul.nav-main li.dropdown-secondary.open > a,
  html .newHeader.fixedheader nav ul.nav-main li.dropdown-secondary.open > a,
  html .full-header.fixedheader nav ul.nav-main li.dropdown-secondary.open > a,
  html header nav ul.nav-main li.dropdown-secondary.active > a,
  html .newHeader.fixedheader nav ul.nav-main li.dropdown-secondary.active > a,
  html .full-header.fixedheader nav ul.nav-main li.dropdown-secondary.active > a,
  html header nav ul.nav-main li.dropdown-secondary:hover > a,
  html .newHeader.fixedheader nav ul.nav-main li.dropdown-secondary:hover > a,
  html .full-header.fixedheader nav ul.nav-main li.dropdown-secondary:hover > a {
    background: #E36159 !important;
  }
  html header nav ul.nav-main li.dropdown-secondary > a:focus,
  html .newHeader.fixedheader nav ul.nav-main li.dropdown-secondary > a:focus,
  html .full-header.fixedheader nav ul.nav-main li.dropdown-secondary > a:focus {
    background: #E36159 !important;
  }
  html header nav ul.nav-main .dropdown-secondary > ul.dropdown-menu,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-secondary > ul.dropdown-menu,
  html .full-header.fixedheader nav ul.nav-main .dropdown-secondary > ul.dropdown-menu,
  html header nav ul.nav-main .dropdown-secondary.mega-menu-item > ul.dropdown-menu,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-secondary.mega-menu-item > ul.dropdown-menu,
  html .full-header.fixedheader nav ul.nav-main .dropdown-secondary.mega-menu-item > ul.dropdown-menu,
  html header nav ul.nav-main .dropdown-secondary > ul.dropdown-menu ul.dropdown-menu,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-secondary > ul.dropdown-menu ul.dropdown-menu,
  html .full-header.fixedheader nav ul.nav-main .dropdown-secondary > ul.dropdown-menu ul.dropdown-menu,
  html header nav ul.nav-main .dropdown-secondary.mega-menu-item > ul.dropdown-menu ul.dropdown-menu,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-secondary.mega-menu-item > ul.dropdown-menu ul.dropdown-menu,
  html .full-header.fixedheader nav ul.nav-main .dropdown-secondary.mega-menu-item > ul.dropdown-menu ul.dropdown-menu {
    border-top-color: #E36159 !important;
    background: #E36159 !important;
  }
  html header nav ul.nav-main .dropdown-secondary > ul.dropdown-menu li:hover > a,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-secondary > ul.dropdown-menu li:hover > a,
  html .full-header.fixedheader nav ul.nav-main .dropdown-secondary > ul.dropdown-menu li:hover > a,
  html header nav ul.nav-main .dropdown-secondary.mega-menu-item > ul.dropdown-menu li:hover > a,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-secondary.mega-menu-item > ul.dropdown-menu li:hover > a,
  html .full-header.fixedheader nav ul.nav-main .dropdown-secondary.mega-menu-item > ul.dropdown-menu li:hover > a {
    background: #e7766f;
  }
  html header nav ul.nav-main .dropdown-secondary > ul.dropdown-menu li a:focus,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-secondary > ul.dropdown-menu li a:focus,
  html .full-header.fixedheader nav ul.nav-main .dropdown-secondary > ul.dropdown-menu li a:focus,
  html header nav ul.nav-main .dropdown-secondary.mega-menu-item > ul.dropdown-menu li a:focus,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-secondary.mega-menu-item > ul.dropdown-menu li a:focus,
  html .full-header.fixedheader nav ul.nav-main .dropdown-secondary.mega-menu-item > ul.dropdown-menu li a:focus {
    background: #e7766f;
  }
  html header nav ul.nav-main .dropdown-secondary:hover ul.sub-menu li:hover a:hover,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-secondary:hover ul.sub-menu li:hover a:hover,
  html .full-header.fixedheader nav ul.nav-main .dropdown-secondary:hover ul.sub-menu li:hover a:hover,
  html header nav ul.nav-main .dropdown-secondary.mega-menu-item:hover ul.sub-menu li:hover a:hover,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-secondary.mega-menu-item:hover ul.sub-menu li:hover a:hover,
  html .full-header.fixedheader nav ul.nav-main .dropdown-secondary.mega-menu-item:hover ul.sub-menu li:hover a:hover {
    background: #e7766f !important;
  }
  html header nav ul.nav-main li.mega-menu-item.open > a,
  html .newHeader.fixedheader nav ul.nav-main li.mega-menu-item.open > a,
  html .full-header.fixedheader nav ul.nav-main li.mega-menu-item.open > a,
  html header nav ul.nav-main li.mega-menu-item.active > a,
  html .newHeader.fixedheader nav ul.nav-main li.mega-menu-item.active > a,
  html .full-header.fixedheader nav ul.nav-main li.mega-menu-item.active > a,
  html header nav ul.nav-main li.mega-menu-item:hover > a,
  html .newHeader.fixedheader nav ul.nav-main li.mega-menu-item:hover > a,
  html .full-header.fixedheader nav ul.nav-main li.mega-menu-item:hover > a {
    background: #233771 !important;
  }
  html header.newHeader nav ul.nav-main li.dropdown-secondary.open > a,
  html header.header-bottom nav ul.nav-main li.dropdown-secondary.open > a,
  html header.full-header nav ul.nav-main li.dropdown-secondary.open > a,
  html header.newHeader nav ul.nav-main li.dropdown-secondary.active > a,
  html header.header-bottom nav ul.nav-main li.dropdown-secondary.active > a,
  html header.full-header nav ul.nav-main li.dropdown-secondary.active > a,
  html header.newHeader nav ul.nav-main li.dropdown-secondary.focused > a,
  html header.header-bottom nav ul.nav-main li.dropdown-secondary.focused > a,
  html header.full-header nav ul.nav-main li.dropdown-secondary.focused > a,
  html header.newHeader nav ul.nav-main li.dropdown-secondary:hover > a,
  html header.header-bottom nav ul.nav-main li.dropdown-secondary:hover > a,
  html header.full-header nav ul.nav-main li.dropdown-secondary:hover > a {
    background: transparent !important;
  }
  html header.newHeader nav ul.nav-main li.dropdown-secondary > a:focus,
  html header.header-bottom nav ul.nav-main li.dropdown-secondary > a:focus,
  html header.full-header nav ul.nav-main li.dropdown-secondary > a:focus {
    background: transparent !important;
  }
  html header.newHeader nav ul.nav-main li.mega-menu-item.open > a,
  html header.header-bottom nav ul.nav-main li.mega-menu-item.open > a,
  html header.full-header nav ul.nav-main li.mega-menu-item.open > a,
  html header.newHeader nav ul.nav-main li.mega-menu-item.active > a,
  html header.header-bottom nav ul.nav-main li.mega-menu-item.active > a,
  html header.full-header nav ul.nav-main li.mega-menu-item.active > a,
  html header.newHeader nav ul.nav-main li.mega-menu-item:hover > a,
  html header.header-bottom nav ul.nav-main li.mega-menu-item:hover > a,
  html header.full-header nav ul.nav-main li.mega-menu-item:hover > a {
    background: transparent !important;
  }
  html header nav ul.nav-main li.dropdown-tertiary.open > a,
  html .newHeader.fixedheader nav ul.nav-main li.dropdown-tertiary.open > a,
  html .full-header.fixedheader nav ul.nav-main li.dropdown-tertiary.open > a,
  html header nav ul.nav-main li.dropdown-tertiary.active > a,
  html .newHeader.fixedheader nav ul.nav-main li.dropdown-tertiary.active > a,
  html .full-header.fixedheader nav ul.nav-main li.dropdown-tertiary.active > a,
  html header nav ul.nav-main li.dropdown-tertiary:hover > a,
  html .newHeader.fixedheader nav ul.nav-main li.dropdown-tertiary:hover > a,
  html .full-header.fixedheader nav ul.nav-main li.dropdown-tertiary:hover > a {
    background: #2BAAB1 !important;
  }
  html header nav ul.nav-main li.dropdown-tertiary > a:focus,
  html .newHeader.fixedheader nav ul.nav-main li.dropdown-tertiary > a:focus,
  html .full-header.fixedheader nav ul.nav-main li.dropdown-tertiary > a:focus {
    background: #2BAAB1 !important;
  }
  html header nav ul.nav-main .dropdown-tertiary > ul.dropdown-menu,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-tertiary > ul.dropdown-menu,
  html .full-header.fixedheader nav ul.nav-main .dropdown-tertiary > ul.dropdown-menu,
  html header nav ul.nav-main .dropdown-tertiary.mega-menu-item > ul.dropdown-menu,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-tertiary.mega-menu-item > ul.dropdown-menu,
  html .full-header.fixedheader nav ul.nav-main .dropdown-tertiary.mega-menu-item > ul.dropdown-menu,
  html header nav ul.nav-main .dropdown-tertiary > ul.dropdown-menu ul.dropdown-menu,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-tertiary > ul.dropdown-menu ul.dropdown-menu,
  html .full-header.fixedheader nav ul.nav-main .dropdown-tertiary > ul.dropdown-menu ul.dropdown-menu,
  html header nav ul.nav-main .dropdown-tertiary.mega-menu-item > ul.dropdown-menu ul.dropdown-menu,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-tertiary.mega-menu-item > ul.dropdown-menu ul.dropdown-menu,
  html .full-header.fixedheader nav ul.nav-main .dropdown-tertiary.mega-menu-item > ul.dropdown-menu ul.dropdown-menu {
    border-top-color: #2BAAB1 !important;
    background: #2BAAB1 !important;
  }
  html header nav ul.nav-main .dropdown-tertiary > ul.dropdown-menu li:hover > a,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-tertiary > ul.dropdown-menu li:hover > a,
  html .full-header.fixedheader nav ul.nav-main .dropdown-tertiary > ul.dropdown-menu li:hover > a,
  html header nav ul.nav-main .dropdown-tertiary.mega-menu-item > ul.dropdown-menu li:hover > a,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-tertiary.mega-menu-item > ul.dropdown-menu li:hover > a,
  html .full-header.fixedheader nav ul.nav-main .dropdown-tertiary.mega-menu-item > ul.dropdown-menu li:hover > a {
    background: #30bec6;
  }
  html header nav ul.nav-main .dropdown-tertiary > ul.dropdown-menu li a:focus,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-tertiary > ul.dropdown-menu li a:focus,
  html .full-header.fixedheader nav ul.nav-main .dropdown-tertiary > ul.dropdown-menu li a:focus,
  html header nav ul.nav-main .dropdown-tertiary.mega-menu-item > ul.dropdown-menu li a:focus,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-tertiary.mega-menu-item > ul.dropdown-menu li a:focus,
  html .full-header.fixedheader nav ul.nav-main .dropdown-tertiary.mega-menu-item > ul.dropdown-menu li a:focus {
    background: #30bec6;
  }
  html header nav ul.nav-main .dropdown-tertiary:hover ul.sub-menu li:hover a:hover,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-tertiary:hover ul.sub-menu li:hover a:hover,
  html .full-header.fixedheader nav ul.nav-main .dropdown-tertiary:hover ul.sub-menu li:hover a:hover,
  html header nav ul.nav-main .dropdown-tertiary.mega-menu-item:hover ul.sub-menu li:hover a:hover,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-tertiary.mega-menu-item:hover ul.sub-menu li:hover a:hover,
  html .full-header.fixedheader nav ul.nav-main .dropdown-tertiary.mega-menu-item:hover ul.sub-menu li:hover a:hover {
    background: #30bec6 !important;
  }
  html header nav ul.nav-main li.mega-menu-item.open > a,
  html .newHeader.fixedheader nav ul.nav-main li.mega-menu-item.open > a,
  html .full-header.fixedheader nav ul.nav-main li.mega-menu-item.open > a,
  html header nav ul.nav-main li.mega-menu-item.active > a,
  html .newHeader.fixedheader nav ul.nav-main li.mega-menu-item.active > a,
  html .full-header.fixedheader nav ul.nav-main li.mega-menu-item.active > a,
  html header nav ul.nav-main li.mega-menu-item:hover > a,
  html .newHeader.fixedheader nav ul.nav-main li.mega-menu-item:hover > a,
  html .full-header.fixedheader nav ul.nav-main li.mega-menu-item:hover > a {
    background: #233771 !important;
  }
  html header.newHeader nav ul.nav-main li.dropdown-tertiary.open > a,
  html header.header-bottom nav ul.nav-main li.dropdown-tertiary.open > a,
  html header.full-header nav ul.nav-main li.dropdown-tertiary.open > a,
  html header.newHeader nav ul.nav-main li.dropdown-tertiary.active > a,
  html header.header-bottom nav ul.nav-main li.dropdown-tertiary.active > a,
  html header.full-header nav ul.nav-main li.dropdown-tertiary.active > a,
  html header.newHeader nav ul.nav-main li.dropdown-tertiary.focused > a,
  html header.header-bottom nav ul.nav-main li.dropdown-tertiary.focused > a,
  html header.full-header nav ul.nav-main li.dropdown-tertiary.focused > a,
  html header.newHeader nav ul.nav-main li.dropdown-tertiary:hover > a,
  html header.header-bottom nav ul.nav-main li.dropdown-tertiary:hover > a,
  html header.full-header nav ul.nav-main li.dropdown-tertiary:hover > a {
    background: transparent !important;
  }
  html header.newHeader nav ul.nav-main li.dropdown-tertiary > a:focus,
  html header.header-bottom nav ul.nav-main li.dropdown-tertiary > a:focus,
  html header.full-header nav ul.nav-main li.dropdown-tertiary > a:focus {
    background: transparent !important;
  }
  html header.newHeader nav ul.nav-main li.mega-menu-item.open > a,
  html header.header-bottom nav ul.nav-main li.mega-menu-item.open > a,
  html header.full-header nav ul.nav-main li.mega-menu-item.open > a,
  html header.newHeader nav ul.nav-main li.mega-menu-item.active > a,
  html header.header-bottom nav ul.nav-main li.mega-menu-item.active > a,
  html header.full-header nav ul.nav-main li.mega-menu-item.active > a,
  html header.newHeader nav ul.nav-main li.mega-menu-item:hover > a,
  html header.header-bottom nav ul.nav-main li.mega-menu-item:hover > a,
  html header.full-header nav ul.nav-main li.mega-menu-item:hover > a {
    background: transparent !important;
  }
  html header nav ul.nav-main li.dropdown-quaternary.open > a,
  html .newHeader.fixedheader nav ul.nav-main li.dropdown-quaternary.open > a,
  html .full-header.fixedheader nav ul.nav-main li.dropdown-quaternary.open > a,
  html header nav ul.nav-main li.dropdown-quaternary.active > a,
  html .newHeader.fixedheader nav ul.nav-main li.dropdown-quaternary.active > a,
  html .full-header.fixedheader nav ul.nav-main li.dropdown-quaternary.active > a,
  html header nav ul.nav-main li.dropdown-quaternary:hover > a,
  html .newHeader.fixedheader nav ul.nav-main li.dropdown-quaternary:hover > a,
  html .full-header.fixedheader nav ul.nav-main li.dropdown-quaternary:hover > a {
    background: #383f48 !important;
  }
  html header nav ul.nav-main li.dropdown-quaternary > a:focus,
  html .newHeader.fixedheader nav ul.nav-main li.dropdown-quaternary > a:focus,
  html .full-header.fixedheader nav ul.nav-main li.dropdown-quaternary > a:focus {
    background: #383f48 !important;
  }
  html header nav ul.nav-main .dropdown-quaternary > ul.dropdown-menu,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-quaternary > ul.dropdown-menu,
  html .full-header.fixedheader nav ul.nav-main .dropdown-quaternary > ul.dropdown-menu,
  html header nav ul.nav-main .dropdown-quaternary.mega-menu-item > ul.dropdown-menu,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-quaternary.mega-menu-item > ul.dropdown-menu,
  html .full-header.fixedheader nav ul.nav-main .dropdown-quaternary.mega-menu-item > ul.dropdown-menu,
  html header nav ul.nav-main .dropdown-quaternary > ul.dropdown-menu ul.dropdown-menu,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-quaternary > ul.dropdown-menu ul.dropdown-menu,
  html .full-header.fixedheader nav ul.nav-main .dropdown-quaternary > ul.dropdown-menu ul.dropdown-menu,
  html header nav ul.nav-main .dropdown-quaternary.mega-menu-item > ul.dropdown-menu ul.dropdown-menu,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-quaternary.mega-menu-item > ul.dropdown-menu ul.dropdown-menu,
  html .full-header.fixedheader nav ul.nav-main .dropdown-quaternary.mega-menu-item > ul.dropdown-menu ul.dropdown-menu {
    border-top-color: #383f48 !important;
    background: #383f48 !important;
  }
  html header nav ul.nav-main .dropdown-quaternary > ul.dropdown-menu li:hover > a,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-quaternary > ul.dropdown-menu li:hover > a,
  html .full-header.fixedheader nav ul.nav-main .dropdown-quaternary > ul.dropdown-menu li:hover > a,
  html header nav ul.nav-main .dropdown-quaternary.mega-menu-item > ul.dropdown-menu li:hover > a,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-quaternary.mega-menu-item > ul.dropdown-menu li:hover > a,
  html .full-header.fixedheader nav ul.nav-main .dropdown-quaternary.mega-menu-item > ul.dropdown-menu li:hover > a {
    background: #434c56;
  }
  html header nav ul.nav-main .dropdown-quaternary > ul.dropdown-menu li a:focus,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-quaternary > ul.dropdown-menu li a:focus,
  html .full-header.fixedheader nav ul.nav-main .dropdown-quaternary > ul.dropdown-menu li a:focus,
  html header nav ul.nav-main .dropdown-quaternary.mega-menu-item > ul.dropdown-menu li a:focus,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-quaternary.mega-menu-item > ul.dropdown-menu li a:focus,
  html .full-header.fixedheader nav ul.nav-main .dropdown-quaternary.mega-menu-item > ul.dropdown-menu li a:focus {
    background: #434c56;
  }
  html header nav ul.nav-main .dropdown-quaternary:hover ul.sub-menu li:hover a:hover,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-quaternary:hover ul.sub-menu li:hover a:hover,
  html .full-header.fixedheader nav ul.nav-main .dropdown-quaternary:hover ul.sub-menu li:hover a:hover,
  html header nav ul.nav-main .dropdown-quaternary.mega-menu-item:hover ul.sub-menu li:hover a:hover,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-quaternary.mega-menu-item:hover ul.sub-menu li:hover a:hover,
  html .full-header.fixedheader nav ul.nav-main .dropdown-quaternary.mega-menu-item:hover ul.sub-menu li:hover a:hover {
    background: #434c56 !important;
  }
  html header nav ul.nav-main li.mega-menu-item.open > a,
  html .newHeader.fixedheader nav ul.nav-main li.mega-menu-item.open > a,
  html .full-header.fixedheader nav ul.nav-main li.mega-menu-item.open > a,
  html header nav ul.nav-main li.mega-menu-item.active > a,
  html .newHeader.fixedheader nav ul.nav-main li.mega-menu-item.active > a,
  html .full-header.fixedheader nav ul.nav-main li.mega-menu-item.active > a,
  html header nav ul.nav-main li.mega-menu-item:hover > a,
  html .newHeader.fixedheader nav ul.nav-main li.mega-menu-item:hover > a,
  html .full-header.fixedheader nav ul.nav-main li.mega-menu-item:hover > a {
    background: #233771 !important;
  }
  html header.newHeader nav ul.nav-main li.dropdown-quaternary.open > a,
  html header.header-bottom nav ul.nav-main li.dropdown-quaternary.open > a,
  html header.full-header nav ul.nav-main li.dropdown-quaternary.open > a,
  html header.newHeader nav ul.nav-main li.dropdown-quaternary.active > a,
  html header.header-bottom nav ul.nav-main li.dropdown-quaternary.active > a,
  html header.full-header nav ul.nav-main li.dropdown-quaternary.active > a,
  html header.newHeader nav ul.nav-main li.dropdown-quaternary.focused > a,
  html header.header-bottom nav ul.nav-main li.dropdown-quaternary.focused > a,
  html header.full-header nav ul.nav-main li.dropdown-quaternary.focused > a,
  html header.newHeader nav ul.nav-main li.dropdown-quaternary:hover > a,
  html header.header-bottom nav ul.nav-main li.dropdown-quaternary:hover > a,
  html header.full-header nav ul.nav-main li.dropdown-quaternary:hover > a {
    background: transparent !important;
  }
  html header.newHeader nav ul.nav-main li.dropdown-quaternary > a:focus,
  html header.header-bottom nav ul.nav-main li.dropdown-quaternary > a:focus,
  html header.full-header nav ul.nav-main li.dropdown-quaternary > a:focus {
    background: transparent !important;
  }
  html header.newHeader nav ul.nav-main li.mega-menu-item.open > a,
  html header.header-bottom nav ul.nav-main li.mega-menu-item.open > a,
  html header.full-header nav ul.nav-main li.mega-menu-item.open > a,
  html header.newHeader nav ul.nav-main li.mega-menu-item.active > a,
  html header.header-bottom nav ul.nav-main li.mega-menu-item.active > a,
  html header.full-header nav ul.nav-main li.mega-menu-item.active > a,
  html header.newHeader nav ul.nav-main li.mega-menu-item:hover > a,
  html header.header-bottom nav ul.nav-main li.mega-menu-item:hover > a,
  html header.full-header nav ul.nav-main li.mega-menu-item:hover > a {
    background: transparent !important;
  }
  html header nav ul.nav-main li.dropdown-dark.open > a,
  html .newHeader.fixedheader nav ul.nav-main li.dropdown-dark.open > a,
  html .full-header.fixedheader nav ul.nav-main li.dropdown-dark.open > a,
  html header nav ul.nav-main li.dropdown-dark.active > a,
  html .newHeader.fixedheader nav ul.nav-main li.dropdown-dark.active > a,
  html .full-header.fixedheader nav ul.nav-main li.dropdown-dark.active > a,
  html header nav ul.nav-main li.dropdown-dark:hover > a,
  html .newHeader.fixedheader nav ul.nav-main li.dropdown-dark:hover > a,
  html .full-header.fixedheader nav ul.nav-main li.dropdown-dark:hover > a {
    background: #2e353e !important;
  }
  html header nav ul.nav-main li.dropdown-dark > a:focus,
  html .newHeader.fixedheader nav ul.nav-main li.dropdown-dark > a:focus,
  html .full-header.fixedheader nav ul.nav-main li.dropdown-dark > a:focus {
    background: #2e353e !important;
  }
  html header nav ul.nav-main .dropdown-dark > ul.dropdown-menu,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-dark > ul.dropdown-menu,
  html .full-header.fixedheader nav ul.nav-main .dropdown-dark > ul.dropdown-menu,
  html header nav ul.nav-main .dropdown-dark.mega-menu-item > ul.dropdown-menu,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-dark.mega-menu-item > ul.dropdown-menu,
  html .full-header.fixedheader nav ul.nav-main .dropdown-dark.mega-menu-item > ul.dropdown-menu,
  html header nav ul.nav-main .dropdown-dark > ul.dropdown-menu ul.dropdown-menu,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-dark > ul.dropdown-menu ul.dropdown-menu,
  html .full-header.fixedheader nav ul.nav-main .dropdown-dark > ul.dropdown-menu ul.dropdown-menu,
  html header nav ul.nav-main .dropdown-dark.mega-menu-item > ul.dropdown-menu ul.dropdown-menu,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-dark.mega-menu-item > ul.dropdown-menu ul.dropdown-menu,
  html .full-header.fixedheader nav ul.nav-main .dropdown-dark.mega-menu-item > ul.dropdown-menu ul.dropdown-menu {
    border-top-color: #2e353e !important;
    background: #2e353e !important;
  }
  html header nav ul.nav-main .dropdown-dark > ul.dropdown-menu li:hover > a,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-dark > ul.dropdown-menu li:hover > a,
  html .full-header.fixedheader nav ul.nav-main .dropdown-dark > ul.dropdown-menu li:hover > a,
  html header nav ul.nav-main .dropdown-dark.mega-menu-item > ul.dropdown-menu li:hover > a,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-dark.mega-menu-item > ul.dropdown-menu li:hover > a,
  html .full-header.fixedheader nav ul.nav-main .dropdown-dark.mega-menu-item > ul.dropdown-menu li:hover > a {
    background: #39424d;
  }
  html header nav ul.nav-main .dropdown-dark > ul.dropdown-menu li a:focus,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-dark > ul.dropdown-menu li a:focus,
  html .full-header.fixedheader nav ul.nav-main .dropdown-dark > ul.dropdown-menu li a:focus,
  html header nav ul.nav-main .dropdown-dark.mega-menu-item > ul.dropdown-menu li a:focus,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-dark.mega-menu-item > ul.dropdown-menu li a:focus,
  html .full-header.fixedheader nav ul.nav-main .dropdown-dark.mega-menu-item > ul.dropdown-menu li a:focus {
    background: #39424d;
  }
  html header nav ul.nav-main .dropdown-dark:hover ul.sub-menu li:hover a:hover,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-dark:hover ul.sub-menu li:hover a:hover,
  html .full-header.fixedheader nav ul.nav-main .dropdown-dark:hover ul.sub-menu li:hover a:hover,
  html header nav ul.nav-main .dropdown-dark.mega-menu-item:hover ul.sub-menu li:hover a:hover,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-dark.mega-menu-item:hover ul.sub-menu li:hover a:hover,
  html .full-header.fixedheader nav ul.nav-main .dropdown-dark.mega-menu-item:hover ul.sub-menu li:hover a:hover {
    background: #39424d !important;
  }
  html header nav ul.nav-main li.mega-menu-item.open > a,
  html .newHeader.fixedheader nav ul.nav-main li.mega-menu-item.open > a,
  html .full-header.fixedheader nav ul.nav-main li.mega-menu-item.open > a,
  html header nav ul.nav-main li.mega-menu-item.active > a,
  html .newHeader.fixedheader nav ul.nav-main li.mega-menu-item.active > a,
  html .full-header.fixedheader nav ul.nav-main li.mega-menu-item.active > a,
  html header nav ul.nav-main li.mega-menu-item:hover > a,
  html .newHeader.fixedheader nav ul.nav-main li.mega-menu-item:hover > a,
  html .full-header.fixedheader nav ul.nav-main li.mega-menu-item:hover > a {
    background: #233771 !important;
  }
  html header.newHeader nav ul.nav-main li.dropdown-dark.open > a,
  html header.header-bottom nav ul.nav-main li.dropdown-dark.open > a,
  html header.full-header nav ul.nav-main li.dropdown-dark.open > a,
  html header.newHeader nav ul.nav-main li.dropdown-dark.active > a,
  html header.header-bottom nav ul.nav-main li.dropdown-dark.active > a,
  html header.full-header nav ul.nav-main li.dropdown-dark.active > a,
  html header.newHeader nav ul.nav-main li.dropdown-dark.focused > a,
  html header.header-bottom nav ul.nav-main li.dropdown-dark.focused > a,
  html header.full-header nav ul.nav-main li.dropdown-dark.focused > a,
  html header.newHeader nav ul.nav-main li.dropdown-dark:hover > a,
  html header.header-bottom nav ul.nav-main li.dropdown-dark:hover > a,
  html header.full-header nav ul.nav-main li.dropdown-dark:hover > a {
    background: transparent !important;
  }
  html header.newHeader nav ul.nav-main li.dropdown-dark > a:focus,
  html header.header-bottom nav ul.nav-main li.dropdown-dark > a:focus,
  html header.full-header nav ul.nav-main li.dropdown-dark > a:focus {
    background: transparent !important;
  }
  html header.newHeader nav ul.nav-main li.mega-menu-item.open > a,
  html header.header-bottom nav ul.nav-main li.mega-menu-item.open > a,
  html header.full-header nav ul.nav-main li.mega-menu-item.open > a,
  html header.newHeader nav ul.nav-main li.mega-menu-item.active > a,
  html header.header-bottom nav ul.nav-main li.mega-menu-item.active > a,
  html header.full-header nav ul.nav-main li.mega-menu-item.active > a,
  html header.newHeader nav ul.nav-main li.mega-menu-item:hover > a,
  html header.header-bottom nav ul.nav-main li.mega-menu-item:hover > a,
  html header.full-header nav ul.nav-main li.mega-menu-item:hover > a {
    background: transparent !important;
  }
  html header nav ul.nav-main li.dropdown-light.open > a,
  html .newHeader.fixedheader nav ul.nav-main li.dropdown-light.open > a,
  html .full-header.fixedheader nav ul.nav-main li.dropdown-light.open > a,
  html header nav ul.nav-main li.dropdown-light.active > a,
  html .newHeader.fixedheader nav ul.nav-main li.dropdown-light.active > a,
  html .full-header.fixedheader nav ul.nav-main li.dropdown-light.active > a,
  html header nav ul.nav-main li.dropdown-light:hover > a,
  html .newHeader.fixedheader nav ul.nav-main li.dropdown-light:hover > a,
  html .full-header.fixedheader nav ul.nav-main li.dropdown-light:hover > a {
    background: #FFF !important;
  }
  html header nav ul.nav-main li.dropdown-light > a:focus,
  html .newHeader.fixedheader nav ul.nav-main li.dropdown-light > a:focus,
  html .full-header.fixedheader nav ul.nav-main li.dropdown-light > a:focus {
    background: #FFF !important;
  }
  html header nav ul.nav-main .dropdown-light > ul.dropdown-menu,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-light > ul.dropdown-menu,
  html .full-header.fixedheader nav ul.nav-main .dropdown-light > ul.dropdown-menu,
  html header nav ul.nav-main .dropdown-light.mega-menu-item > ul.dropdown-menu,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-light.mega-menu-item > ul.dropdown-menu,
  html .full-header.fixedheader nav ul.nav-main .dropdown-light.mega-menu-item > ul.dropdown-menu,
  html header nav ul.nav-main .dropdown-light > ul.dropdown-menu ul.dropdown-menu,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-light > ul.dropdown-menu ul.dropdown-menu,
  html .full-header.fixedheader nav ul.nav-main .dropdown-light > ul.dropdown-menu ul.dropdown-menu,
  html header nav ul.nav-main .dropdown-light.mega-menu-item > ul.dropdown-menu ul.dropdown-menu,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-light.mega-menu-item > ul.dropdown-menu ul.dropdown-menu,
  html .full-header.fixedheader nav ul.nav-main .dropdown-light.mega-menu-item > ul.dropdown-menu ul.dropdown-menu {
    border-top-color: #FFF !important;
    background: #FFF !important;
  }
  html header nav ul.nav-main .dropdown-light > ul.dropdown-menu li:hover > a,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-light > ul.dropdown-menu li:hover > a,
  html .full-header.fixedheader nav ul.nav-main .dropdown-light > ul.dropdown-menu li:hover > a,
  html header nav ul.nav-main .dropdown-light.mega-menu-item > ul.dropdown-menu li:hover > a,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-light.mega-menu-item > ul.dropdown-menu li:hover > a,
  html .full-header.fixedheader nav ul.nav-main .dropdown-light.mega-menu-item > ul.dropdown-menu li:hover > a {
    background: #ffffff;
  }
  html header nav ul.nav-main .dropdown-light > ul.dropdown-menu li a:focus,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-light > ul.dropdown-menu li a:focus,
  html .full-header.fixedheader nav ul.nav-main .dropdown-light > ul.dropdown-menu li a:focus,
  html header nav ul.nav-main .dropdown-light.mega-menu-item > ul.dropdown-menu li a:focus,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-light.mega-menu-item > ul.dropdown-menu li a:focus,
  html .full-header.fixedheader nav ul.nav-main .dropdown-light.mega-menu-item > ul.dropdown-menu li a:focus {
    background: #ffffff;
  }
  html header nav ul.nav-main .dropdown-light:hover ul.sub-menu li:hover a:hover,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-light:hover ul.sub-menu li:hover a:hover,
  html .full-header.fixedheader nav ul.nav-main .dropdown-light:hover ul.sub-menu li:hover a:hover,
  html header nav ul.nav-main .dropdown-light.mega-menu-item:hover ul.sub-menu li:hover a:hover,
  html .newHeader.fixedheader nav ul.nav-main .dropdown-light.mega-menu-item:hover ul.sub-menu li:hover a:hover,
  html .full-header.fixedheader nav ul.nav-main .dropdown-light.mega-menu-item:hover ul.sub-menu li:hover a:hover {
    background: #ffffff !important;
  }
  html header nav ul.nav-main li.mega-menu-item.open > a,
  html .newHeader.fixedheader nav ul.nav-main li.mega-menu-item.open > a,
  html .full-header.fixedheader nav ul.nav-main li.mega-menu-item.open > a,
  html header nav ul.nav-main li.mega-menu-item.active > a,
  html .newHeader.fixedheader nav ul.nav-main li.mega-menu-item.active > a,
  html .full-header.fixedheader nav ul.nav-main li.mega-menu-item.active > a,
  html header nav ul.nav-main li.mega-menu-item:hover > a,
  html .newHeader.fixedheader nav ul.nav-main li.mega-menu-item:hover > a,
  html .full-header.fixedheader nav ul.nav-main li.mega-menu-item:hover > a {
    background: #233771 !important;
  }
  html header.newHeader nav ul.nav-main li.dropdown-light.open > a,
  html header.header-bottom nav ul.nav-main li.dropdown-light.open > a,
  html header.full-header nav ul.nav-main li.dropdown-light.open > a,
  html header.newHeader nav ul.nav-main li.dropdown-light.active > a,
  html header.header-bottom nav ul.nav-main li.dropdown-light.active > a,
  html header.full-header nav ul.nav-main li.dropdown-light.active > a,
  html header.newHeader nav ul.nav-main li.dropdown-light.focused > a,
  html header.header-bottom nav ul.nav-main li.dropdown-light.focused > a,
  html header.full-header nav ul.nav-main li.dropdown-light.focused > a,
  html header.newHeader nav ul.nav-main li.dropdown-light:hover > a,
  html header.header-bottom nav ul.nav-main li.dropdown-light:hover > a,
  html header.full-header nav ul.nav-main li.dropdown-light:hover > a {
    background: transparent !important;
  }
  html header.newHeader nav ul.nav-main li.dropdown-light > a:focus,
  html header.header-bottom nav ul.nav-main li.dropdown-light > a:focus,
  html header.full-header nav ul.nav-main li.dropdown-light > a:focus {
    background: transparent !important;
  }
  html header.newHeader nav ul.nav-main li.mega-menu-item.open > a,
  html header.header-bottom nav ul.nav-main li.mega-menu-item.open > a,
  html header.full-header nav ul.nav-main li.mega-menu-item.open > a,
  html header.newHeader nav ul.nav-main li.mega-menu-item.active > a,
  html header.header-bottom nav ul.nav-main li.mega-menu-item.active > a,
  html header.full-header nav ul.nav-main li.mega-menu-item.active > a,
  html header.newHeader nav ul.nav-main li.mega-menu-item:hover > a,
  html header.header-bottom nav ul.nav-main li.mega-menu-item:hover > a,
  html header.full-header nav ul.nav-main li.mega-menu-item:hover > a {
    background: transparent !important;
  }
}
@media (min-width: 992px) {
  html header .nav-bar-primary {
    background: #233771 !important;
  }
  html header .nav-bar-primary nav ul.nav-main > li > a {
    color: #ffffff !important;
  }
  html header .nav-bar-primary nav ul.nav-main > li.open a,
  html header .nav-bar-primary nav ul.nav-main > li.active > a,
  html header .nav-bar-primary nav ul.nav-main > li:hover > a {
    background: #ffffff !important;
    color: #233771 !important;
  }
  html header .nav-bar-primary nav ul.nav-main > li > a:focus {
    background: #ffffff !important;
    color: #233771 !important;
  }
  html header .nav-bar-primary nav ul.nav-main > li ul.dropdown-menu,
  html header .nav-bar-primary nav ul.nav-main > li.mega-menu-item ul.dropdown-menu {
    border-top-color: #ffffff !important;
  }
  html header .nav-bar-secondary {
    background: #233771 !important;
  }
  html header .nav-bar-secondary nav ul.nav-main > li > a {
    color: #ffffff !important;
  }
  html header .nav-bar-secondary nav ul.nav-main > li.open a,
  html header .nav-bar-secondary nav ul.nav-main > li.active > a,
  html header .nav-bar-secondary nav ul.nav-main > li:hover > a {
    background: #ffffff !important;
    color: #233771 !important;
  }
  html header .nav-bar-secondary nav ul.nav-main > li > a:focus {
    background: #ffffff !important;
    color: #233771 !important;
  }
  html header .nav-bar-secondary nav ul.nav-main > li ul.dropdown-menu,
  html header .nav-bar-secondary nav ul.nav-main > li.mega-menu-item ul.dropdown-menu {
    border-top-color: #ffffff !important;
  }
  html header .nav-bar-tertiary {
    background: #233771 !important;
  }
  html header .nav-bar-tertiary nav ul.nav-main > li > a {
    color: #ffffff !important;
  }
  html header .nav-bar-tertiary nav ul.nav-main > li.open a,
  html header .nav-bar-tertiary nav ul.nav-main > li.active > a,
  html header .nav-bar-tertiary nav ul.nav-main > li:hover > a {
    background: #ffffff !important;
    color: #233771 !important;
  }
  html header .nav-bar-tertiary nav ul.nav-main > li > a:focus {
    background: #ffffff !important;
    color: #233771 !important;
  }
  html header .nav-bar-tertiary nav ul.nav-main > li ul.dropdown-menu,
  html header .nav-bar-tertiary nav ul.nav-main > li.mega-menu-item ul.dropdown-menu {
    border-top-color: #ffffff !important;
  }
  html header .nav-bar-quaternary {
    background: #233771 !important;
  }
  html header .nav-bar-quaternary nav ul.nav-main > li > a {
    color: #ffffff !important;
  }
  html header .nav-bar-quaternary nav ul.nav-main > li.open a,
  html header .nav-bar-quaternary nav ul.nav-main > li.active > a,
  html header .nav-bar-quaternary nav ul.nav-main > li:hover > a {
    background: #ffffff !important;
    color: #233771 !important;
  }
  html header .nav-bar-quaternary nav ul.nav-main > li > a:focus {
    background: #ffffff !important;
    color: #233771 !important;
  }
  html header .nav-bar-quaternary nav ul.nav-main > li ul.dropdown-menu,
  html header .nav-bar-quaternary nav ul.nav-main > li.mega-menu-item ul.dropdown-menu {
    border-top-color: #ffffff !important;
  }
  html header .nav-bar-dark {
    background: #233771 !important;
  }
  html header .nav-bar-dark nav ul.nav-main > li > a {
    color: #ffffff !important;
  }
  html header .nav-bar-dark nav ul.nav-main > li.open a,
  html header .nav-bar-dark nav ul.nav-main > li.active > a,
  html header .nav-bar-dark nav ul.nav-main > li:hover > a {
    background: #ffffff !important;
    color: #233771 !important;
  }
  html header .nav-bar-dark nav ul.nav-main > li > a:focus {
    background: #ffffff !important;
    color: #233771 !important;
  }
  html header .nav-bar-dark nav ul.nav-main > li ul.dropdown-menu,
  html header .nav-bar-dark nav ul.nav-main > li.mega-menu-item ul.dropdown-menu {
    border-top-color: #ffffff !important;
  }
  html header .nav-bar-light {
    background: #233771 !important;
  }
  html header .nav-bar-light nav ul.nav-main > li > a {
    color: #ffffff !important;
  }
  html header .nav-bar-light nav ul.nav-main > li.open a,
  html header .nav-bar-light nav ul.nav-main > li.active > a,
  html header .nav-bar-light nav ul.nav-main > li:hover > a {
    background: #ffffff !important;
    color: #233771 !important;
  }
  html header .nav-bar-light nav ul.nav-main > li > a:focus {
    background: #ffffff !important;
    color: #233771 !important;
  }
  html header .nav-bar-light nav ul.nav-main > li ul.dropdown-menu,
  html header .nav-bar-light nav ul.nav-main > li.mega-menu-item ul.dropdown-menu {
    border-top-color: #ffffff !important;
  }
}
.testimonial blockquote {
  background: #294084;
}
.testimonial .testimonial-arrow-down {
  border-top-color: #294084;
}
html .testimonial-primary blockquote {
  background: #294084;
}
html .testimonial-primary .testimonial-arrow-down {
  border-top-color: #294084;
}
html .testimonial-secondary blockquote {
  background: #e7766f;
}
html .testimonial-secondary .testimonial-arrow-down {
  border-top-color: #e7766f;
}
html .testimonial-tertiary blockquote {
  background: #30bec6;
}
html .testimonial-tertiary .testimonial-arrow-down {
  border-top-color: #30bec6;
}
html .testimonial-quaternary blockquote {
  background: #434c56;
}
html .testimonial-quaternary .testimonial-arrow-down {
  border-top-color: #434c56;
}
html .testimonial-dark blockquote {
  background: #39424d;
}
html .testimonial-dark .testimonial-arrow-down {
  border-top-color: #39424d;
}
html .testimonial-light blockquote {
  background: #ffffff;
}
html .testimonial-light .testimonial-arrow-down {
  border-top-color: #ffffff;
}
.circular-bar.only-icon .fa,
.circular-bar.only-icon .fas,
.circular-bar.only-icon .far,
.circular-bar.only-icon .fal,
.circular-bar.only-icon .fab {
  color: #233771;
}
html .counters .counter-primary .fa,
html .counters .counter-primary .fas,
html .counters .counter-primary .far,
html .counters .counter-primary .fal,
html .counters .counter-primary .fab,
html .counters .counter-primary strong {
  color: #233771;
}
html .counters .counter-secondary .fa,
html .counters .counter-secondary .fas,
html .counters .counter-secondary .far,
html .counters .counter-secondary .fal,
html .counters .counter-secondary .fab,
html .counters .counter-secondary strong {
  color: #E36159;
}
html .counters .counter-tertiary .fa,
html .counters .counter-tertiary .fas,
html .counters .counter-tertiary .far,
html .counters .counter-tertiary .fal,
html .counters .counter-tertiary .fab,
html .counters .counter-tertiary strong {
  color: #2BAAB1;
}
html .counters .counter-quaternary .fa,
html .counters .counter-quaternary .fas,
html .counters .counter-quaternary .far,
html .counters .counter-quaternary .fal,
html .counters .counter-quaternary .fab,
html .counters .counter-quaternary strong {
  color: #383f48;
}
html .counters .counter-dark .fa,
html .counters .counter-dark .fas,
html .counters .counter-dark .far,
html .counters .counter-dark .fal,
html .counters .counter-dark .fab,
html .counters .counter-dark strong {
  color: #2e353e;
}
html .counters .counter-light .fa,
html .counters .counter-light .fas,
html .counters .counter-light .far,
html .counters .counter-light .fal,
html .counters .counter-light .fab,
html .counters .counter-light strong {
  color: #FFF;
}
html .countdown.countdown-primary span > span {
  color: #233771;
}
html .countdown.countdown-secondary span > span {
  color: #E36159;
}
html .countdown.countdown-tertiary span > span {
  color: #2BAAB1;
}
html .countdown.countdown-quaternary span > span {
  color: #383f48;
}
html .countdown.countdown-dark span > span {
  color: #2e353e;
}
html .countdown.countdown-light span > span {
  color: #FFF;
}
.icon-featured {
  background-color: #233771;
}
.featured-box-primary .icon-featured {
  background-color: #233771;
}
.featured-box-primary .icon-featured:after {
  border-color: #233771;
}
.featured-box-primary h4 {
  color: #233771;
}
.featured-box-primary .box-content {
  border-top-color: #233771;
}
html .featured-box-primary .icon-featured {
  background-color: #233771;
}
html .featured-box-primary h4 {
  color: #233771;
}
html .featured-box-primary .box-content {
  border-top-color: #233771;
}
html .featured-box-secondary .icon-featured {
  background-color: #E36159;
}
html .featured-box-secondary h4 {
  color: #E36159;
}
html .featured-box-secondary .box-content {
  border-top-color: #E36159;
}
html .featured-box-tertiary .icon-featured {
  background-color: #2BAAB1;
}
html .featured-box-tertiary h4 {
  color: #2BAAB1;
}
html .featured-box-tertiary .box-content {
  border-top-color: #2BAAB1;
}
html .featured-box-quaternary .icon-featured {
  background-color: #383f48;
}
html .featured-box-quaternary h4 {
  color: #383f48;
}
html .featured-box-quaternary .box-content {
  border-top-color: #383f48;
}
html .featured-box-dark .icon-featured {
  background-color: #2e353e;
}
html .featured-box-dark h4 {
  color: #2e353e;
}
html .featured-box-dark .box-content {
  border-top-color: #2e353e;
}
html .featured-box-light .icon-featured {
  background-color: #FFF;
}
html .featured-box-light h4 {
  color: #FFF;
}
html .featured-box-light .box-content {
  border-top-color: #FFF;
}
html .featured-boxes-style-3 .featured-box.featured-box-primary .icon-featured {
  border-color: #233771;
  color: #233771;
}
html .featured-boxes-style-3 .featured-box.featured-box-secondary .icon-featured {
  border-color: #E36159;
  color: #E36159;
}
html .featured-boxes-style-3 .featured-box.featured-box-tertiary .icon-featured {
  border-color: #2BAAB1;
  color: #2BAAB1;
}
html .featured-boxes-style-3 .featured-box.featured-box-quaternary .icon-featured {
  border-color: #383f48;
  color: #383f48;
}
html .featured-boxes-style-3 .featured-box.featured-box-dark .icon-featured {
  border-color: #2e353e;
  color: #2e353e;
}
html .featured-boxes-style-3 .featured-box.featured-box-light .icon-featured {
  border-color: #FFF;
  color: #FFF;
}
html .featured-boxes-style-4 .featured-box.featured-box-primary .icon-featured {
  border-color: #233771;
  color: #233771;
}
html .featured-boxes-style-4 .featured-box.featured-box-secondary .icon-featured {
  border-color: #E36159;
  color: #E36159;
}
html .featured-boxes-style-4 .featured-box.featured-box-tertiary .icon-featured {
  border-color: #2BAAB1;
  color: #2BAAB1;
}
html .featured-boxes-style-4 .featured-box.featured-box-quaternary .icon-featured {
  border-color: #383f48;
  color: #383f48;
}
html .featured-boxes-style-4 .featured-box.featured-box-dark .icon-featured {
  border-color: #2e353e;
  color: #2e353e;
}
html .featured-boxes-style-4 .featured-box.featured-box-light .icon-featured {
  border-color: #FFF;
  color: #FFF;
}
html .featured-boxes-style-5 .featured-box.featured-box-primary .icon-featured {
  color: #233771;
}
html .featured-boxes-style-5 .featured-box.featured-box-secondary .icon-featured {
  color: #E36159;
}
html .featured-boxes-style-5 .featured-box.featured-box-tertiary .icon-featured {
  color: #2BAAB1;
}
html .featured-boxes-style-5 .featured-box.featured-box-quaternary .icon-featured {
  color: #383f48;
}
html .featured-boxes-style-5 .featured-box.featured-box-dark .icon-featured {
  color: #2e353e;
}
html .featured-boxes-style-5 .featured-box.featured-box-light .icon-featured {
  color: #FFF;
}
html .featured-boxes-style-6 .featured-box.featured-box-primary .icon-featured {
  color: #233771;
}
html .featured-boxes-style-6 .featured-box.featured-box-secondary .icon-featured {
  color: #E36159;
}
html .featured-boxes-style-6 .featured-box.featured-box-tertiary .icon-featured {
  color: #2BAAB1;
}
html .featured-boxes-style-6 .featured-box.featured-box-quaternary .icon-featured {
  color: #383f48;
}
html .featured-boxes-style-6 .featured-box.featured-box-dark .icon-featured {
  color: #2e353e;
}
html .featured-boxes-style-6 .featured-box.featured-box-light .icon-featured {
  color: #FFF;
}
html .featured-boxes-style-8 .featured-box.featured-box-primary .icon-featured {
  color: #233771;
}
html .featured-boxes-style-8 .featured-box.featured-box-secondary .icon-featured {
  color: #E36159;
}
html .featured-boxes-style-8 .featured-box.featured-box-tertiary .icon-featured {
  color: #2BAAB1;
}
html .featured-boxes-style-8 .featured-box.featured-box-quaternary .icon-featured {
  color: #383f48;
}
html .featured-boxes-style-8 .featured-box.featured-box-dark .icon-featured {
  color: #2e353e;
}
html .featured-boxes-style-8 .featured-box.featured-box-light .icon-featured {
  color: #FFF;
}
html .featured-box-effect-2.featured-box-primary .icon-featured:after {
  box-shadow: 0 0 0 3px #233771;
}
html .featured-box-effect-2.featured-box-secondary .icon-featured:after {
  box-shadow: 0 0 0 3px #E36159;
}
html .featured-box-effect-2.featured-box-tertiary .icon-featured:after {
  box-shadow: 0 0 0 3px #2BAAB1;
}
html .featured-box-effect-2.featured-box-quaternary .icon-featured:after {
  box-shadow: 0 0 0 3px #383f48;
}
html .featured-box-effect-2.featured-box-dark .icon-featured:after {
  box-shadow: 0 0 0 3px #2e353e;
}
html .featured-box-effect-2.featured-box-light .icon-featured:after {
  box-shadow: 0 0 0 3px #FFF;
}
html .featured-box-effect-3.featured-box-primary .icon-featured:after {
  box-shadow: 0 0 0 10px #233771;
}
html .featured-box-effect-3.featured-box-primary:hover .icon-featured {
  background: #233771 !important;
}
html .featured-box-effect-3.featured-box-secondary .icon-featured:after {
  box-shadow: 0 0 0 10px #E36159;
}
html .featured-box-effect-3.featured-box-secondary:hover .icon-featured {
  background: #E36159 !important;
}
html .featured-box-effect-3.featured-box-tertiary .icon-featured:after {
  box-shadow: 0 0 0 10px #2BAAB1;
}
html .featured-box-effect-3.featured-box-tertiary:hover .icon-featured {
  background: #2BAAB1 !important;
}
html .featured-box-effect-3.featured-box-quaternary .icon-featured:after {
  box-shadow: 0 0 0 10px #383f48;
}
html .featured-box-effect-3.featured-box-quaternary:hover .icon-featured {
  background: #383f48 !important;
}
html .featured-box-effect-3.featured-box-dark .icon-featured:after {
  box-shadow: 0 0 0 10px #2e353e;
}
html .featured-box-effect-3.featured-box-dark:hover .icon-featured {
  background: #2e353e !important;
}
html .featured-box-effect-3.featured-box-light .icon-featured:after {
  box-shadow: 0 0 0 10px #FFF;
}
html .featured-box-effect-3.featured-box-light:hover .icon-featured {
  background: #FFF !important;
}
.feature-box .feature-box-icon {
  background-color: #233771;
}
html .feature-box-primary .feature-box-icon {
  background-color: #233771;
}
html .feature-box-secondary .feature-box-icon {
  background-color: #E36159;
}
html .feature-box-tertiary .feature-box-icon {
  background-color: #2BAAB1;
}
html .feature-box-quaternary .feature-box-icon {
  background-color: #383f48;
}
html .feature-box-dark .feature-box-icon {
  background-color: #2e353e;
}
html .feature-box-light .feature-box-icon {
  background-color: #FFF;
}
.feature-box.feature-box-style-2 .feature-box-icon i.fa,
.feature-box.feature-box-style-2 .feature-box-icon em.fa,
.feature-box.feature-box-style-2 .feature-box-icon i.fas,
.feature-box.feature-box-style-2 .feature-box-icon em.fas,
.feature-box.feature-box-style-2 .feature-box-icon i.far,
.feature-box.feature-box-style-2 .feature-box-icon em.far,
.feature-box.feature-box-style-2 .feature-box-icon i.fal,
.feature-box.feature-box-style-2 .feature-box-icon em.fal,
.feature-box.feature-box-style-2 .feature-box-icon i.fab,
.feature-box.feature-box-style-2 .feature-box-icon em.fab {
  color: #233771;
}
html .feature-box-primary.feature-box-style-2 .feature-box-icon i.fa,
html .feature-box-primary.feature-box-style-2 .feature-box-icon em.fa,
html .feature-box-primary.feature-box-style-2 .feature-box-icon i.fas,
html .feature-box-primary.feature-box-style-2 .feature-box-icon em.fas,
html .feature-box-primary.feature-box-style-2 .feature-box-icon i.far,
html .feature-box-primary.feature-box-style-2 .feature-box-icon em.far,
html .feature-box-primary.feature-box-style-2 .feature-box-icon i.fal,
html .feature-box-primary.feature-box-style-2 .feature-box-icon em.fal,
html .feature-box-primary.feature-box-style-2 .feature-box-icon i.fab,
html .feature-box-primary.feature-box-style-2 .feature-box-icon em.fab {
  color: #233771;
}
html .feature-box-secondary.feature-box-style-2 .feature-box-icon i.fa,
html .feature-box-secondary.feature-box-style-2 .feature-box-icon em.fa,
html .feature-box-secondary.feature-box-style-2 .feature-box-icon i.fas,
html .feature-box-secondary.feature-box-style-2 .feature-box-icon em.fas,
html .feature-box-secondary.feature-box-style-2 .feature-box-icon i.far,
html .feature-box-secondary.feature-box-style-2 .feature-box-icon em.far,
html .feature-box-secondary.feature-box-style-2 .feature-box-icon i.fal,
html .feature-box-secondary.feature-box-style-2 .feature-box-icon em.fal,
html .feature-box-secondary.feature-box-style-2 .feature-box-icon i.fab,
html .feature-box-secondary.feature-box-style-2 .feature-box-icon em.fab {
  color: #E36159;
}
html .feature-box-tertiary.feature-box-style-2 .feature-box-icon i.fa,
html .feature-box-tertiary.feature-box-style-2 .feature-box-icon em.fa,
html .feature-box-tertiary.feature-box-style-2 .feature-box-icon i.fas,
html .feature-box-tertiary.feature-box-style-2 .feature-box-icon em.fas,
html .feature-box-tertiary.feature-box-style-2 .feature-box-icon i.far,
html .feature-box-tertiary.feature-box-style-2 .feature-box-icon em.far,
html .feature-box-tertiary.feature-box-style-2 .feature-box-icon i.fal,
html .feature-box-tertiary.feature-box-style-2 .feature-box-icon em.fal,
html .feature-box-tertiary.feature-box-style-2 .feature-box-icon i.fab,
html .feature-box-tertiary.feature-box-style-2 .feature-box-icon em.fab {
  color: #2BAAB1;
}
html .feature-box-quaternary.feature-box-style-2 .feature-box-icon i.fa,
html .feature-box-quaternary.feature-box-style-2 .feature-box-icon em.fa,
html .feature-box-quaternary.feature-box-style-2 .feature-box-icon i.fas,
html .feature-box-quaternary.feature-box-style-2 .feature-box-icon em.fas,
html .feature-box-quaternary.feature-box-style-2 .feature-box-icon i.far,
html .feature-box-quaternary.feature-box-style-2 .feature-box-icon em.far,
html .feature-box-quaternary.feature-box-style-2 .feature-box-icon i.fal,
html .feature-box-quaternary.feature-box-style-2 .feature-box-icon em.fal,
html .feature-box-quaternary.feature-box-style-2 .feature-box-icon i.fab,
html .feature-box-quaternary.feature-box-style-2 .feature-box-icon em.fab {
  color: #383f48;
}
html .feature-box-dark.feature-box-style-2 .feature-box-icon i.fa,
html .feature-box-dark.feature-box-style-2 .feature-box-icon em.fa,
html .feature-box-dark.feature-box-style-2 .feature-box-icon i.fas,
html .feature-box-dark.feature-box-style-2 .feature-box-icon em.fas,
html .feature-box-dark.feature-box-style-2 .feature-box-icon i.far,
html .feature-box-dark.feature-box-style-2 .feature-box-icon em.far,
html .feature-box-dark.feature-box-style-2 .feature-box-icon i.fal,
html .feature-box-dark.feature-box-style-2 .feature-box-icon em.fal,
html .feature-box-dark.feature-box-style-2 .feature-box-icon i.fab,
html .feature-box-dark.feature-box-style-2 .feature-box-icon em.fab {
  color: #2e353e;
}
html .feature-box-light.feature-box-style-2 .feature-box-icon i.fa,
html .feature-box-light.feature-box-style-2 .feature-box-icon em.fa,
html .feature-box-light.feature-box-style-2 .feature-box-icon i.fas,
html .feature-box-light.feature-box-style-2 .feature-box-icon em.fas,
html .feature-box-light.feature-box-style-2 .feature-box-icon i.far,
html .feature-box-light.feature-box-style-2 .feature-box-icon em.far,
html .feature-box-light.feature-box-style-2 .feature-box-icon i.fal,
html .feature-box-light.feature-box-style-2 .feature-box-icon em.fal,
html .feature-box-light.feature-box-style-2 .feature-box-icon i.fab,
html .feature-box-light.feature-box-style-2 .feature-box-icon em.fab {
  color: #FFF;
}
.feature-box.feature-box-style-3 .feature-box-icon {
  border-color: #233771;
}
.feature-box.feature-box-style-3 .feature-box-icon i.fa,
.feature-box.feature-box-style-3 .feature-box-icon em.fa,
.feature-box.feature-box-style-3 .feature-box-icon i.fas,
.feature-box.feature-box-style-3 .feature-box-icon em.fas,
.feature-box.feature-box-style-3 .feature-box-icon i.far,
.feature-box.feature-box-style-3 .feature-box-icon em.far,
.feature-box.feature-box-style-3 .feature-box-icon i.fal,
.feature-box.feature-box-style-3 .feature-box-icon em.fal,
.feature-box.feature-box-style-3 .feature-box-icon i.fab,
.feature-box.feature-box-style-3 .feature-box-icon em.fab {
  color: #233771;
}
html .feature-box-primary.feature-box-style-3 .feature-box-icon {
  border-color: #233771;
}
html .feature-box-primary.feature-box-style-3 .feature-box-icon i.fa,
html .feature-box-primary.feature-box-style-3 .feature-box-icon em.fa,
html .feature-box-primary.feature-box-style-3 .feature-box-icon i.fas,
html .feature-box-primary.feature-box-style-3 .feature-box-icon em.fas,
html .feature-box-primary.feature-box-style-3 .feature-box-icon i.far,
html .feature-box-primary.feature-box-style-3 .feature-box-icon em.far,
html .feature-box-primary.feature-box-style-3 .feature-box-icon i.fal,
html .feature-box-primary.feature-box-style-3 .feature-box-icon em.fal,
html .feature-box-primary.feature-box-style-3 .feature-box-icon i.fab,
html .feature-box-primary.feature-box-style-3 .feature-box-icon em.fab {
  color: #233771;
}
html .feature-box-secondary.feature-box-style-3 .feature-box-icon {
  border-color: #E36159;
}
html .feature-box-secondary.feature-box-style-3 .feature-box-icon i.fa,
html .feature-box-secondary.feature-box-style-3 .feature-box-icon em.fa,
html .feature-box-secondary.feature-box-style-3 .feature-box-icon i.fas,
html .feature-box-secondary.feature-box-style-3 .feature-box-icon em.fas,
html .feature-box-secondary.feature-box-style-3 .feature-box-icon i.far,
html .feature-box-secondary.feature-box-style-3 .feature-box-icon em.far,
html .feature-box-secondary.feature-box-style-3 .feature-box-icon i.fal,
html .feature-box-secondary.feature-box-style-3 .feature-box-icon em.fal,
html .feature-box-secondary.feature-box-style-3 .feature-box-icon i.fab,
html .feature-box-secondary.feature-box-style-3 .feature-box-icon em.fab {
  color: #E36159;
}
html .feature-box-tertiary.feature-box-style-3 .feature-box-icon {
  border-color: #2BAAB1;
}
html .feature-box-tertiary.feature-box-style-3 .feature-box-icon i.fa,
html .feature-box-tertiary.feature-box-style-3 .feature-box-icon em.fa,
html .feature-box-tertiary.feature-box-style-3 .feature-box-icon i.fas,
html .feature-box-tertiary.feature-box-style-3 .feature-box-icon em.fas,
html .feature-box-tertiary.feature-box-style-3 .feature-box-icon i.far,
html .feature-box-tertiary.feature-box-style-3 .feature-box-icon em.far,
html .feature-box-tertiary.feature-box-style-3 .feature-box-icon i.fal,
html .feature-box-tertiary.feature-box-style-3 .feature-box-icon em.fal,
html .feature-box-tertiary.feature-box-style-3 .feature-box-icon i.fab,
html .feature-box-tertiary.feature-box-style-3 .feature-box-icon em.fab {
  color: #2BAAB1;
}
html .feature-box-quaternary.feature-box-style-3 .feature-box-icon {
  border-color: #383f48;
}
html .feature-box-quaternary.feature-box-style-3 .feature-box-icon i.fa,
html .feature-box-quaternary.feature-box-style-3 .feature-box-icon em.fa,
html .feature-box-quaternary.feature-box-style-3 .feature-box-icon i.fas,
html .feature-box-quaternary.feature-box-style-3 .feature-box-icon em.fas,
html .feature-box-quaternary.feature-box-style-3 .feature-box-icon i.far,
html .feature-box-quaternary.feature-box-style-3 .feature-box-icon em.far,
html .feature-box-quaternary.feature-box-style-3 .feature-box-icon i.fal,
html .feature-box-quaternary.feature-box-style-3 .feature-box-icon em.fal,
html .feature-box-quaternary.feature-box-style-3 .feature-box-icon i.fab,
html .feature-box-quaternary.feature-box-style-3 .feature-box-icon em.fab {
  color: #383f48;
}
html .feature-box-dark.feature-box-style-3 .feature-box-icon {
  border-color: #2e353e;
}
html .feature-box-dark.feature-box-style-3 .feature-box-icon i.fa,
html .feature-box-dark.feature-box-style-3 .feature-box-icon em.fa,
html .feature-box-dark.feature-box-style-3 .feature-box-icon i.fas,
html .feature-box-dark.feature-box-style-3 .feature-box-icon em.fas,
html .feature-box-dark.feature-box-style-3 .feature-box-icon i.far,
html .feature-box-dark.feature-box-style-3 .feature-box-icon em.far,
html .feature-box-dark.feature-box-style-3 .feature-box-icon i.fal,
html .feature-box-dark.feature-box-style-3 .feature-box-icon em.fal,
html .feature-box-dark.feature-box-style-3 .feature-box-icon i.fab,
html .feature-box-dark.feature-box-style-3 .feature-box-icon em.fab {
  color: #2e353e;
}
html .feature-box-light.feature-box-style-3 .feature-box-icon {
  border-color: #FFF;
}
html .feature-box-light.feature-box-style-3 .feature-box-icon i.fa,
html .feature-box-light.feature-box-style-3 .feature-box-icon em.fa,
html .feature-box-light.feature-box-style-3 .feature-box-icon i.fas,
html .feature-box-light.feature-box-style-3 .feature-box-icon em.fas,
html .feature-box-light.feature-box-style-3 .feature-box-icon i.far,
html .feature-box-light.feature-box-style-3 .feature-box-icon em.far,
html .feature-box-light.feature-box-style-3 .feature-box-icon i.fal,
html .feature-box-light.feature-box-style-3 .feature-box-icon em.fal,
html .feature-box-light.feature-box-style-3 .feature-box-icon i.fab,
html .feature-box-light.feature-box-style-3 .feature-box-icon em.fab {
  color: #FFF;
}
.feature-box.feature-box-style-4 .feature-box-icon i.fa,
.feature-box.feature-box-style-4 .feature-box-icon em.fa,
.feature-box.feature-box-style-4 .feature-box-icon i.fas,
.feature-box.feature-box-style-4 .feature-box-icon em.fas,
.feature-box.feature-box-style-4 .feature-box-icon i.far,
.feature-box.feature-box-style-4 .feature-box-icon em.far,
.feature-box.feature-box-style-4 .feature-box-icon i.fal,
.feature-box.feature-box-style-4 .feature-box-icon em.fal,
.feature-box.feature-box-style-4 .feature-box-icon i.fab,
.feature-box.feature-box-style-4 .feature-box-icon em.fab {
  color: #233771;
}
html .feature-box-primary.feature-box-style-4 .feature-box-icon i.fa,
html .feature-box-primary.feature-box-style-4 .feature-box-icon em.fa,
html .feature-box-primary.feature-box-style-4 .feature-box-icon i.fas,
html .feature-box-primary.feature-box-style-4 .feature-box-icon em.fas,
html .feature-box-primary.feature-box-style-4 .feature-box-icon i.far,
html .feature-box-primary.feature-box-style-4 .feature-box-icon em.far,
html .feature-box-primary.feature-box-style-4 .feature-box-icon i.fal,
html .feature-box-primary.feature-box-style-4 .feature-box-icon em.fal,
html .feature-box-primary.feature-box-style-4 .feature-box-icon i.fab,
html .feature-box-primary.feature-box-style-4 .feature-box-icon em.fab {
  color: #233771;
}
html .feature-box-secondary.feature-box-style-4 .feature-box-icon i.fa,
html .feature-box-secondary.feature-box-style-4 .feature-box-icon em.fa,
html .feature-box-secondary.feature-box-style-4 .feature-box-icon i.fas,
html .feature-box-secondary.feature-box-style-4 .feature-box-icon em.fas,
html .feature-box-secondary.feature-box-style-4 .feature-box-icon i.far,
html .feature-box-secondary.feature-box-style-4 .feature-box-icon em.far,
html .feature-box-secondary.feature-box-style-4 .feature-box-icon i.fal,
html .feature-box-secondary.feature-box-style-4 .feature-box-icon em.fal,
html .feature-box-secondary.feature-box-style-4 .feature-box-icon i.fab,
html .feature-box-secondary.feature-box-style-4 .feature-box-icon em.fab {
  color: #E36159;
}
html .feature-box-tertiary.feature-box-style-4 .feature-box-icon i.fa,
html .feature-box-tertiary.feature-box-style-4 .feature-box-icon em.fa,
html .feature-box-tertiary.feature-box-style-4 .feature-box-icon i.fas,
html .feature-box-tertiary.feature-box-style-4 .feature-box-icon em.fas,
html .feature-box-tertiary.feature-box-style-4 .feature-box-icon i.far,
html .feature-box-tertiary.feature-box-style-4 .feature-box-icon em.far,
html .feature-box-tertiary.feature-box-style-4 .feature-box-icon i.fal,
html .feature-box-tertiary.feature-box-style-4 .feature-box-icon em.fal,
html .feature-box-tertiary.feature-box-style-4 .feature-box-icon i.fab,
html .feature-box-tertiary.feature-box-style-4 .feature-box-icon em.fab {
  color: #2BAAB1;
}
html .feature-box-quaternary.feature-box-style-4 .feature-box-icon i.fa,
html .feature-box-quaternary.feature-box-style-4 .feature-box-icon em.fa,
html .feature-box-quaternary.feature-box-style-4 .feature-box-icon i.fas,
html .feature-box-quaternary.feature-box-style-4 .feature-box-icon em.fas,
html .feature-box-quaternary.feature-box-style-4 .feature-box-icon i.far,
html .feature-box-quaternary.feature-box-style-4 .feature-box-icon em.far,
html .feature-box-quaternary.feature-box-style-4 .feature-box-icon i.fal,
html .feature-box-quaternary.feature-box-style-4 .feature-box-icon em.fal,
html .feature-box-quaternary.feature-box-style-4 .feature-box-icon i.fab,
html .feature-box-quaternary.feature-box-style-4 .feature-box-icon em.fab {
  color: #383f48;
}
html .feature-box-dark.feature-box-style-4 .feature-box-icon i.fa,
html .feature-box-dark.feature-box-style-4 .feature-box-icon em.fa,
html .feature-box-dark.feature-box-style-4 .feature-box-icon i.fas,
html .feature-box-dark.feature-box-style-4 .feature-box-icon em.fas,
html .feature-box-dark.feature-box-style-4 .feature-box-icon i.far,
html .feature-box-dark.feature-box-style-4 .feature-box-icon em.far,
html .feature-box-dark.feature-box-style-4 .feature-box-icon i.fal,
html .feature-box-dark.feature-box-style-4 .feature-box-icon em.fal,
html .feature-box-dark.feature-box-style-4 .feature-box-icon i.fab,
html .feature-box-dark.feature-box-style-4 .feature-box-icon em.fab {
  color: #2e353e;
}
html .feature-box-light.feature-box-style-4 .feature-box-icon i.fa,
html .feature-box-light.feature-box-style-4 .feature-box-icon em.fa,
html .feature-box-light.feature-box-style-4 .feature-box-icon i.fas,
html .feature-box-light.feature-box-style-4 .feature-box-icon em.fas,
html .feature-box-light.feature-box-style-4 .feature-box-icon i.far,
html .feature-box-light.feature-box-style-4 .feature-box-icon em.far,
html .feature-box-light.feature-box-style-4 .feature-box-icon i.fal,
html .feature-box-light.feature-box-style-4 .feature-box-icon em.fal,
html .feature-box-light.feature-box-style-4 .feature-box-icon i.fab,
html .feature-box-light.feature-box-style-4 .feature-box-icon em.fab {
  color: #FFF;
}
.feature-box.feature-box-style-5 .feature-box-icon i.fa,
.feature-box.feature-box-style-5 .feature-box-icon em.fa,
.feature-box.feature-box-style-5 .feature-box-icon i.fas,
.feature-box.feature-box-style-5 .feature-box-icon em.fas,
.feature-box.feature-box-style-5 .feature-box-icon i.far,
.feature-box.feature-box-style-5 .feature-box-icon em.far,
.feature-box.feature-box-style-5 .feature-box-icon i.fal,
.feature-box.feature-box-style-5 .feature-box-icon em.fal,
.feature-box.feature-box-style-5 .feature-box-icon i.fab,
.feature-box.feature-box-style-5 .feature-box-icon em.fab {
  color: #233771;
}
html .feature-box-primary.feature-box-style-5 .feature-box-icon i.fa,
html .feature-box-primary.feature-box-style-5 .feature-box-icon em.fa,
html .feature-box-primary.feature-box-style-5 .feature-box-icon i.fas,
html .feature-box-primary.feature-box-style-5 .feature-box-icon em.fas,
html .feature-box-primary.feature-box-style-5 .feature-box-icon i.far,
html .feature-box-primary.feature-box-style-5 .feature-box-icon em.far,
html .feature-box-primary.feature-box-style-5 .feature-box-icon i.fal,
html .feature-box-primary.feature-box-style-5 .feature-box-icon em.fal,
html .feature-box-primary.feature-box-style-5 .feature-box-icon i.fab,
html .feature-box-primary.feature-box-style-5 .feature-box-icon em.fab {
  color: #233771;
}
html .feature-box-secondary.feature-box-style-5 .feature-box-icon i.fa,
html .feature-box-secondary.feature-box-style-5 .feature-box-icon em.fa,
html .feature-box-secondary.feature-box-style-5 .feature-box-icon i.fas,
html .feature-box-secondary.feature-box-style-5 .feature-box-icon em.fas,
html .feature-box-secondary.feature-box-style-5 .feature-box-icon i.far,
html .feature-box-secondary.feature-box-style-5 .feature-box-icon em.far,
html .feature-box-secondary.feature-box-style-5 .feature-box-icon i.fal,
html .feature-box-secondary.feature-box-style-5 .feature-box-icon em.fal,
html .feature-box-secondary.feature-box-style-5 .feature-box-icon i.fab,
html .feature-box-secondary.feature-box-style-5 .feature-box-icon em.fab {
  color: #E36159;
}
html .feature-box-tertiary.feature-box-style-5 .feature-box-icon i.fa,
html .feature-box-tertiary.feature-box-style-5 .feature-box-icon em.fa,
html .feature-box-tertiary.feature-box-style-5 .feature-box-icon i.fas,
html .feature-box-tertiary.feature-box-style-5 .feature-box-icon em.fas,
html .feature-box-tertiary.feature-box-style-5 .feature-box-icon i.far,
html .feature-box-tertiary.feature-box-style-5 .feature-box-icon em.far,
html .feature-box-tertiary.feature-box-style-5 .feature-box-icon i.fal,
html .feature-box-tertiary.feature-box-style-5 .feature-box-icon em.fal,
html .feature-box-tertiary.feature-box-style-5 .feature-box-icon i.fab,
html .feature-box-tertiary.feature-box-style-5 .feature-box-icon em.fab {
  color: #2BAAB1;
}
html .feature-box-quaternary.feature-box-style-5 .feature-box-icon i.fa,
html .feature-box-quaternary.feature-box-style-5 .feature-box-icon em.fa,
html .feature-box-quaternary.feature-box-style-5 .feature-box-icon i.fas,
html .feature-box-quaternary.feature-box-style-5 .feature-box-icon em.fas,
html .feature-box-quaternary.feature-box-style-5 .feature-box-icon i.far,
html .feature-box-quaternary.feature-box-style-5 .feature-box-icon em.far,
html .feature-box-quaternary.feature-box-style-5 .feature-box-icon i.fal,
html .feature-box-quaternary.feature-box-style-5 .feature-box-icon em.fal,
html .feature-box-quaternary.feature-box-style-5 .feature-box-icon i.fab,
html .feature-box-quaternary.feature-box-style-5 .feature-box-icon em.fab {
  color: #383f48;
}
html .feature-box-dark.feature-box-style-5 .feature-box-icon i.fa,
html .feature-box-dark.feature-box-style-5 .feature-box-icon em.fa,
html .feature-box-dark.feature-box-style-5 .feature-box-icon i.fas,
html .feature-box-dark.feature-box-style-5 .feature-box-icon em.fas,
html .feature-box-dark.feature-box-style-5 .feature-box-icon i.far,
html .feature-box-dark.feature-box-style-5 .feature-box-icon em.far,
html .feature-box-dark.feature-box-style-5 .feature-box-icon i.fal,
html .feature-box-dark.feature-box-style-5 .feature-box-icon em.fal,
html .feature-box-dark.feature-box-style-5 .feature-box-icon i.fab,
html .feature-box-dark.feature-box-style-5 .feature-box-icon em.fab {
  color: #2e353e;
}
html .feature-box-light.feature-box-style-5 .feature-box-icon i.fa,
html .feature-box-light.feature-box-style-5 .feature-box-icon em.fa,
html .feature-box-light.feature-box-style-5 .feature-box-icon i.fas,
html .feature-box-light.feature-box-style-5 .feature-box-icon em.fas,
html .feature-box-light.feature-box-style-5 .feature-box-icon i.far,
html .feature-box-light.feature-box-style-5 .feature-box-icon em.far,
html .feature-box-light.feature-box-style-5 .feature-box-icon i.fal,
html .feature-box-light.feature-box-style-5 .feature-box-icon em.fal,
html .feature-box-light.feature-box-style-5 .feature-box-icon i.fab,
html .feature-box-light.feature-box-style-5 .feature-box-icon em.fab {
  color: #FFF;
}
html .feature-box-primary.feature-box-style-6 .feature-box-icon i.fa,
html .feature-box-primary.feature-box-style-6 .feature-box-icon em.fa,
html .feature-box-primary.feature-box-style-6 .feature-box-icon i.fas,
html .feature-box-primary.feature-box-style-6 .feature-box-icon em.fas,
html .feature-box-primary.feature-box-style-6 .feature-box-icon i.far,
html .feature-box-primary.feature-box-style-6 .feature-box-icon em.far,
html .feature-box-primary.feature-box-style-6 .feature-box-icon i.fal,
html .feature-box-primary.feature-box-style-6 .feature-box-icon em.fal,
html .feature-box-primary.feature-box-style-6 .feature-box-icon i.fab,
html .feature-box-primary.feature-box-style-6 .feature-box-icon em.fab {
  color: #233771;
}
html .feature-box-secondary.feature-box-style-6 .feature-box-icon i.fa,
html .feature-box-secondary.feature-box-style-6 .feature-box-icon em.fa,
html .feature-box-secondary.feature-box-style-6 .feature-box-icon i.fas,
html .feature-box-secondary.feature-box-style-6 .feature-box-icon em.fas,
html .feature-box-secondary.feature-box-style-6 .feature-box-icon i.far,
html .feature-box-secondary.feature-box-style-6 .feature-box-icon em.far,
html .feature-box-secondary.feature-box-style-6 .feature-box-icon i.fal,
html .feature-box-secondary.feature-box-style-6 .feature-box-icon em.fal,
html .feature-box-secondary.feature-box-style-6 .feature-box-icon i.fab,
html .feature-box-secondary.feature-box-style-6 .feature-box-icon em.fab {
  color: #E36159;
}
html .feature-box-tertiary.feature-box-style-6 .feature-box-icon i.fa,
html .feature-box-tertiary.feature-box-style-6 .feature-box-icon em.fa,
html .feature-box-tertiary.feature-box-style-6 .feature-box-icon i.fas,
html .feature-box-tertiary.feature-box-style-6 .feature-box-icon em.fas,
html .feature-box-tertiary.feature-box-style-6 .feature-box-icon i.far,
html .feature-box-tertiary.feature-box-style-6 .feature-box-icon em.far,
html .feature-box-tertiary.feature-box-style-6 .feature-box-icon i.fal,
html .feature-box-tertiary.feature-box-style-6 .feature-box-icon em.fal,
html .feature-box-tertiary.feature-box-style-6 .feature-box-icon i.fab,
html .feature-box-tertiary.feature-box-style-6 .feature-box-icon em.fab {
  color: #2BAAB1;
}
html .feature-box-quaternary.feature-box-style-6 .feature-box-icon i.fa,
html .feature-box-quaternary.feature-box-style-6 .feature-box-icon em.fa,
html .feature-box-quaternary.feature-box-style-6 .feature-box-icon i.fas,
html .feature-box-quaternary.feature-box-style-6 .feature-box-icon em.fas,
html .feature-box-quaternary.feature-box-style-6 .feature-box-icon i.far,
html .feature-box-quaternary.feature-box-style-6 .feature-box-icon em.far,
html .feature-box-quaternary.feature-box-style-6 .feature-box-icon i.fal,
html .feature-box-quaternary.feature-box-style-6 .feature-box-icon em.fal,
html .feature-box-quaternary.feature-box-style-6 .feature-box-icon i.fab,
html .feature-box-quaternary.feature-box-style-6 .feature-box-icon em.fab {
  color: #383f48;
}
html .feature-box-dark.feature-box-style-6 .feature-box-icon i.fa,
html .feature-box-dark.feature-box-style-6 .feature-box-icon em.fa,
html .feature-box-dark.feature-box-style-6 .feature-box-icon i.fas,
html .feature-box-dark.feature-box-style-6 .feature-box-icon em.fas,
html .feature-box-dark.feature-box-style-6 .feature-box-icon i.far,
html .feature-box-dark.feature-box-style-6 .feature-box-icon em.far,
html .feature-box-dark.feature-box-style-6 .feature-box-icon i.fal,
html .feature-box-dark.feature-box-style-6 .feature-box-icon em.fal,
html .feature-box-dark.feature-box-style-6 .feature-box-icon i.fab,
html .feature-box-dark.feature-box-style-6 .feature-box-icon em.fab {
  color: #2e353e;
}
html .feature-box-light.feature-box-style-6 .feature-box-icon i.fa,
html .feature-box-light.feature-box-style-6 .feature-box-icon em.fa,
html .feature-box-light.feature-box-style-6 .feature-box-icon i.fas,
html .feature-box-light.feature-box-style-6 .feature-box-icon em.fas,
html .feature-box-light.feature-box-style-6 .feature-box-icon i.far,
html .feature-box-light.feature-box-style-6 .feature-box-icon em.far,
html .feature-box-light.feature-box-style-6 .feature-box-icon i.fal,
html .feature-box-light.feature-box-style-6 .feature-box-icon em.fal,
html .feature-box-light.feature-box-style-6 .feature-box-icon i.fab,
html .feature-box-light.feature-box-style-6 .feature-box-icon em.fab {
  color: #FFF;
}
html .featured-boxes-full-scale > [class*="col-"]:nth-child(1) .featured-box-full-primary {
  background-color: #17244a;
}
html .featured-boxes-full-scale > [class*="col-"]:nth-child(2) .featured-box-full-primary {
  background-color: #1d2e5e;
}
html .featured-boxes-full-scale > [class*="col-"]:nth-child(3) .featured-box-full-primary {
  background-color: #233771;
}
html .featured-boxes-full-scale > [class*="col-"]:nth-child(4) .featured-box-full-primary {
  background-color: #294084;
}
html .featured-boxes-full-scale > [class*="col-"]:nth-child(5) .featured-box-full-primary {
  background-color: #2f4a98;
}
html .featured-boxes-full-scale > [class*="col-"]:nth-child(6) .featured-box-full-primary {
  background-color: #3553ab;
}
html .featured-boxes-full .featured-box-full-primary {
  background-color: #233771;
  color: #FFF;
}
html .featured-boxes-full .featured-box-full-secondary {
  background-color: #E36159;
  color: #FFF;
}
html .featured-boxes-full .featured-box-full-tertiary {
  background-color: #2BAAB1;
  color: #FFF;
}
html .featured-boxes-full .featured-box-full-quaternary {
  background-color: #383f48;
  color: #FFF;
}
html .featured-boxes-full .featured-box-full-dark {
  background-color: #2e353e;
  color: #FFF;
}
html .featured-boxes-full .featured-box-full-light {
  background-color: #FFF;
  color: #777;
}
.pricing-table .most-popular {
  border-color: #233771;
}
.pricing-table .most-popular h3 {
  background-color: #233771 !important;
}
.pricing-table.princig-table-flat .plan h3 {
  background-color: #233771;
}
.pricing-table.princig-table-flat .plan h3 span {
  background: #233771;
}
html .call-to-action.featured.featured-primary {
  border-top-color: #233771;
}
html .call-to-action.call-to-action-primary {
  background: #233771;
}
html .call-to-action.call-to-action-primary {
  background: #233771;
}
html .call-to-action.call-to-action-primary h3,
html .call-to-action.call-to-action-primary p {
  color: #FFF;
}
html .call-to-action.featured.featured-secondary {
  border-top-color: #E36159;
}
html .call-to-action.call-to-action-secondary {
  background: #E36159;
}
html .call-to-action.call-to-action-secondary {
  background: #E36159;
}
html .call-to-action.call-to-action-secondary h3,
html .call-to-action.call-to-action-secondary p {
  color: #FFF;
}
html .call-to-action.featured.featured-tertiary {
  border-top-color: #2BAAB1;
}
html .call-to-action.call-to-action-tertiary {
  background: #2BAAB1;
}
html .call-to-action.call-to-action-tertiary {
  background: #2BAAB1;
}
html .call-to-action.call-to-action-tertiary h3,
html .call-to-action.call-to-action-tertiary p {
  color: #FFF;
}
html .call-to-action.featured.featured-quaternary {
  border-top-color: #383f48;
}
html .call-to-action.call-to-action-quaternary {
  background: #383f48;
}
html .call-to-action.call-to-action-quaternary {
  background: #383f48;
}
html .call-to-action.call-to-action-quaternary h3,
html .call-to-action.call-to-action-quaternary p {
  color: #FFF;
}
html .call-to-action.featured.featured-dark {
  border-top-color: #2e353e;
}
html .call-to-action.call-to-action-dark {
  background: #2e353e;
}
html .call-to-action.call-to-action-dark {
  background: #2e353e;
}
html .call-to-action.call-to-action-dark h3,
html .call-to-action.call-to-action-dark p {
  color: #FFF;
}
html .call-to-action.featured.featured-light {
  border-top-color: #FFF;
}
html .call-to-action.call-to-action-light {
  background: #FFF;
}
html .call-to-action.call-to-action-light {
  background: #FFF;
}
html .call-to-action.call-to-action-light h3,
html .call-to-action.call-to-action-light p {
  color: #777;
}
section.timeline .timeline-box.left:before,
section.timeline .timeline-box.right:before {
  background: #233771;
  box-shadow: 0 0 0 3px #FFF, 0 0 0 6px #233771;
}
ul.history li .featured-box .box-content {
  border-top-color: #233771;
}
.recent-posts .date .month,
article.post .post-date .month {
  background-color: #233771;
}
.recent-posts .date .day,
article.post .post-date .day {
  color: #233771;
}
.slider .tp-bannertimer {
  background-color: #233771;
}
.home-concept strong {
  color: #233771;
}
.home-intro p em {
  color: #2f4a98;
}
.shop ul.products li.product .onsale {
  background-color: #233771;
  border-bottom-color: #192852;
}
.shop .star-rating span,
.shop .cart-totals tr.total .amount {
  color: #233771;
}
footer .footer-ribbon {
  background: #233771;
}
footer .footer-ribbon:before {
  border-right-color: #111b37;
  border-left-color: #111b37;
}
footer.light h1,
footer.light h2,
footer.light h3,
footer.light h4,
footer.light a {
  color: #233771 !important;
}
footer.color {
  background: #233771;
  border-top-color: #233771;
}
footer.color .footer-ribbon {
  background: #17244a;
}
footer.color .footer-ribbon:before {
  border-right-color: #050810;
}
footer.color .footer-copyright {
  background: #1d2e5e;
  border-top-color: #1d2e5e;
}
html footer.color-primary {
  background: #233771;
  border-top-color: #233771;
}
html footer.color-primary .footer-ribbon {
  background: #17244a;
}
html footer.color-primary .footer-ribbon:before {
  border-right-color: #050810;
}
html footer.color-primary .footer-copyright {
  background: #1d2e5e;
  border-top-color: #1d2e5e;
}
html footer.color-secondary {
  background: #E36159;
  border-top-color: #E36159;
}
html footer.color-secondary .footer-ribbon {
  background: #dc372d;
}
html footer.color-secondary .footer-ribbon:before {
  border-right-color: #a1231b;
}
html footer.color-secondary .footer-copyright {
  background: #df4c43;
  border-top-color: #df4c43;
}
html footer.color-tertiary {
  background: #2BAAB1;
  border-top-color: #2BAAB1;
}
html footer.color-tertiary .footer-ribbon {
  background: #218388;
}
html footer.color-tertiary .footer-ribbon:before {
  border-right-color: #12474a;
}
html footer.color-tertiary .footer-copyright {
  background: #26969c;
  border-top-color: #26969c;
}
html footer.color-quaternary {
  background: #383f48;
  border-top-color: #383f48;
}
html footer.color-quaternary .footer-ribbon {
  background: #22262b;
}
html footer.color-quaternary .footer-ribbon:before {
  border-right-color: #000000;
}
html footer.color-quaternary .footer-copyright {
  background: #2d323a;
  border-top-color: #2d323a;
}
html footer.color-dark {
  background: #2e353e;
  border-top-color: #2e353e;
}
html footer.color-dark .footer-ribbon {
  background: #181c21;
}
html footer.color-dark .footer-ribbon:before {
  border-right-color: #000000;
}
html footer.color-dark .footer-copyright {
  background: #23282f;
  border-top-color: #23282f;
}
html footer.color-light {
  background: #FFF;
  border-top-color: #FFF;
}
html footer.color-light .footer-ribbon {
  background: #e6e6e6;
}
html footer.color-light .footer-ribbon:before {
  border-right-color: #bfbfbf;
}
html footer.color-light .footer-copyright {
  background: #f2f2f2;
  border-top-color: #f2f2f2;
}
html.boxed .body {
  border-top-color: #233771;
  border-bottom-color: #233771;
}
section.highlight {
  background-color: #233771 !important;
  border-color: #1d2e5e !important;
}
section.page-top.custom-product {
  background-color: #1d2e5e;
  border-top-color: #213369;
}
ul.list.icons li i,
ul.list.icons li em,
.title-primary span {
  color: #233771;
}
section.toggle label {
  color: #233771;
  border-left-color: #233771;
}
section.toggle.active > label {
  background-color: #233771;
  border-color: #233771;
  color: #FFF;
}
div.featured-box-secundary div.box-content {
  border-top-color: #233771;
}
p.drop-caps.secundary:first-child:first-letter {
  background-color: #233771;
}
.event-primary,
.event .timeline-balloon .balloon-time .time-dot::after {
  background-color: #233771;
}
.event .owl-carousel.custom-dots-style-1.custom-dots-color-primary .owl-dots .owl-dot {
  border-color: #233771;
}
.event .owl-carousel.custom-dots-style-1.custom-dots-color-primary .owl-dots .owl-dot span {
  background-color: #233771;
}
.event .timeline-balloon .balloon-time .time-dot::before {
  border-color: #233771;
}
.event .custom-text-color-1 {
  color: #adbce6;
}
.accordion .card-header a {
  color: #233771;
}
html .accordion.accordion-primary .card-header {
  background-color: #233771 !important;
}
html .accordion.accordion-primary .card-header a {
  color: #FFF;
}
html .accordion.accordion-secondary .card-header {
  background-color: #E36159 !important;
}
html .accordion.accordion-secondary .card-header a {
  color: #FFF;
}
html .accordion.accordion-tertiary .card-header {
  background-color: #2BAAB1 !important;
}
html .accordion.accordion-tertiary .card-header a {
  color: #FFF;
}
html .accordion.accordion-quaternary .card-header {
  background-color: #383f48 !important;
}
html .accordion.accordion-quaternary .card-header a {
  color: #FFF;
}
html .accordion.accordion-dark .card-header {
  background-color: #2e353e !important;
}
html .accordion.accordion-dark .card-header a {
  color: #FFF;
}
html .accordion.accordion-light .card-header {
  background-color: #FFF !important;
}
html .accordion.accordion-light .card-header a {
  color: #777;
}

